@smarterplan/ngx-smarterplan-core 1.2.39 → 1.2.46

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.
@@ -57,6 +57,7 @@ export declare class FeatureService extends BaseObjectService {
57
57
  setAudio(feature: Feature): void;
58
58
  setExternalLinks(feature: Feature): void;
59
59
  setEmbeds(feature: Feature): void;
60
+ setIframes(feature: Feature): void;
60
61
  getFirstFeatureForSpace(spaceID: string): Promise<Feature>;
61
62
  updateIconForAllFeaturesInSpace(tagIcon: string, spaceID: string, categoryID?: string): Promise<{
62
63
  features: Feature[];
@@ -226,7 +226,8 @@ export declare enum CommentType {
226
226
  URL = "URL",
227
227
  YOUTUBE = "YOUTUBE",
228
228
  URL_SHOP = "URL_SHOP",
229
- EMBED = "EMBED"
229
+ EMBED = "EMBED",
230
+ IFRAME = "IFRAME"
230
231
  }
231
232
  export declare enum StatusEquipment {
232
233
  TO_SETUP = "TO_SETUP",
@@ -700,6 +701,7 @@ export declare type Feature = {
700
701
  description: string;
701
702
  }> | null;
702
703
  embeds?: Array<MediaContent> | null;
704
+ iframes?: Array<MediaContent> | null;
703
705
  comments?: {
704
706
  __typename?: 'ModelCommentConnection';
705
707
  items?: Array<Comment | null> | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smarterplan/ngx-smarterplan-core",
3
- "version": "1.2.39",
3
+ "version": "1.2.46",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.2.0",
6
6
  "@angular/core": "^13.2.0",