stentor-models 1.54.1 → 1.54.6

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.
@@ -6,6 +6,10 @@ export interface Card extends BaseDisplay {
6
6
  * Card title
7
7
  */
8
8
  title: string;
9
+ /**
10
+ * Card secondary title, if available it is smaller font below title
11
+ */
12
+ subTitle?: string;
9
13
  /**
10
14
  * Description, typically used in the body of the card
11
15
  */
@@ -109,7 +109,7 @@ export interface BaseRequest {
109
109
  *
110
110
  * If the channel supports it, it will be populated.
111
111
  */
112
- attributes?: object;
112
+ attributes?: Record<string, unknown>;
113
113
  }
114
114
  export interface ApiAccessData {
115
115
  apiBaseUrl: string;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.54.1",
7
+ "version": "1.54.6",
8
8
  "description": "Models for 📣 stentor",
9
9
  "types": "lib/index",
10
10
  "typings": "lib/index",
@@ -31,7 +31,7 @@
31
31
  "clean": "rm -rf ./lib/* && rm -rf ./dist/*"
32
32
  },
33
33
  "dependencies": {
34
- "@xapp/patterns": "1.40.63"
34
+ "@xapp/patterns": "1.40.83"
35
35
  },
36
- "gitHead": "0b655d6c025372fc26cc117f2eb458c209c87e67"
36
+ "gitHead": "a7abb20cf2d8970d6ccf665d2f502fef3a40b8f0"
37
37
  }