@edgeiq/edgeiq-api-js 1.3.1 → 1.3.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.
@@ -5,6 +5,9 @@ export interface Branding {
5
5
  primary_color: string;
6
6
  logo_background_color: string;
7
7
  portal_title: string;
8
+ secondary_color: string;
9
+ sidebar_text_color: string;
10
+ gradient_sidbar: boolean;
8
11
  }
9
12
  export interface Aliases {
10
13
  gateway: string;
@@ -6,35 +6,9 @@ export declare type RuleActionBodyType = 'html' | 'text';
6
6
  export declare type LocationVia = 'gps' | 'cell_tower' | 'bluetooth' | 'wifi' | 'other';
7
7
  export declare type GeneratedAtFormat = 'rfc3339' | 'unix_timestamp';
8
8
  export declare type LocationTransitionDirectionType = 'arriving' | 'leaving';
9
- export declare type DerivedValuesTypes = [
10
- 'count',
11
- 'min',
12
- 'max',
13
- 'avg',
14
- 'sum',
15
- 'convert_indexed_keys'
16
- ];
17
- export declare type WhereConditionTypes = ['where', 'or_where'];
18
- export declare type WhereConditionOperators = [
19
- 'equal',
20
- 'not_equal',
21
- 'greater_than',
22
- 'greater_than_equal',
23
- 'less_than',
24
- 'less_than_equal',
25
- 'in',
26
- 'not_in',
27
- 'starts_with',
28
- 'ends_with',
29
- 'contains',
30
- 'strict_contains',
31
- 'length_equals',
32
- 'length_not_equals',
33
- 'length_greater_than',
34
- 'length_greater_than_equal',
35
- 'length_less_than',
36
- 'length_less_than_equal'
37
- ];
9
+ export declare type DerivedValuesTypes = 'count' | 'min' | 'max' | 'avg' | 'sum' | 'convert_indexed_keys';
10
+ export declare type WhereConditionTypes = 'where' | 'or_where';
11
+ export declare type WhereConditionOperators = 'equal' | 'not_equal' | 'greater_than' | 'greater_than_equal' | 'less_than' | 'less_than_equal' | 'in' | 'not_in' | 'starts_with' | 'ends_with' | 'contains' | 'strict_contains' | 'length_equals' | 'length_not_equals' | 'length_greater_than' | 'length_greater_than_equal' | 'length_less_than' | 'length_less_than_equal';
38
12
  export interface CredentialData {
39
13
  type?: string;
40
14
  value: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgeiq/edgeiq-api-js",
3
- "version": "1.3.1",
3
+ "version": "1.3.4",
4
4
  "author": "EdgeIQ",
5
5
  "license": "ISC",
6
6
  "description": "This project presents EdgeIQ API SDK.",