@marteye/studiojs 1.1.17 → 1.1.18

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/types.d.ts CHANGED
@@ -109,7 +109,7 @@ export interface Printer {
109
109
  export interface SettingsGlobalAttributes {
110
110
  [id: string]: AttributeDefinition;
111
111
  }
112
- export type AttributeValueType = string | number | boolean | Timestamp | Media;
112
+ export type AttributeValueType = string | number | boolean | Timestamp | Media | Media[];
113
113
  /****
114
114
  * Used to grant a user access to a market.
115
115
  * Each member of staff should have their own.
@@ -890,7 +890,7 @@ export interface WebhookEvent<T> {
890
890
  objectBefore?: T;
891
891
  };
892
892
  }
893
- export type SupportedAttributeTypes = "string" | "number" | "boolean" | "date" | "datetime" | "time";
893
+ export type SupportedAttributeTypes = "string" | "number" | "boolean" | "date" | "datetime" | "media" | "mediaset" | "time";
894
894
  export interface AttributeDefinition {
895
895
  id: string;
896
896
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marteye/studiojs",
3
- "version": "1.1.17",
3
+ "version": "1.1.18",
4
4
  "description": "MartEye Studio JavaScript SDK",
5
5
  "license": "MIT",
6
6
  "type": "module",