@marteye/studiojs 1.1.17 → 1.1.19

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/dist/index.d.ts CHANGED
@@ -193,7 +193,7 @@ interface Accessory {
193
193
  interface SettingsGlobalAttributes {
194
194
  [id: string]: AttributeDefinition;
195
195
  }
196
- type AttributeValueType = string | number | boolean | Timestamp | Media;
196
+ type AttributeValueType = string | number | boolean | Timestamp | Media | Media[];
197
197
  /****
198
198
  * Used to grant a user access to a market.
199
199
  * Each member of staff should have their own.
@@ -994,7 +994,7 @@ interface WebhookEvent<T> {
994
994
  objectBefore?: T;
995
995
  };
996
996
  }
997
- type SupportedAttributeTypes = "string" | "number" | "boolean" | "date" | "datetime" | "time";
997
+ type SupportedAttributeTypes = "string" | "number" | "boolean" | "date" | "datetime" | "media" | "mediaset" | "time";
998
998
  interface AttributeDefinition {
999
999
  id: string;
1000
1000
  name: string;