@peacom/core 0.0.197 → 0.0.199
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/README.md +11 -11
- package/package.json +1 -1
- package/src/lib/model/message/Message.d.ts +5 -0
package/README.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
# core
|
2
|
-
|
3
|
-
This library was generated with [Nx](https://nx.dev).
|
4
|
-
|
5
|
-
## Building
|
6
|
-
|
7
|
-
Run `nx build core` to build the library.
|
8
|
-
|
9
|
-
## Running unit tests
|
10
|
-
|
11
|
-
Run `nx test core` to execute the unit tests via [Jest](https://jestjs.io).
|
1
|
+
# core
|
2
|
+
|
3
|
+
This library was generated with [Nx](https://nx.dev).
|
4
|
+
|
5
|
+
## Building
|
6
|
+
|
7
|
+
Run `nx build core` to build the library.
|
8
|
+
|
9
|
+
## Running unit tests
|
10
|
+
|
11
|
+
Run `nx test core` to execute the unit tests via [Jest](https://jestjs.io).
|
package/package.json
CHANGED
@@ -123,6 +123,11 @@ export interface RawMessage {
|
|
123
123
|
fileSize?: string | number;
|
124
124
|
trackingData?: "";
|
125
125
|
richCards?: RichCard[];
|
126
|
+
rcsRichCardsOpts?: {
|
127
|
+
type: 'STANDALONE' | 'CAROUSEL';
|
128
|
+
orientation?: string;
|
129
|
+
imageAlign?: string;
|
130
|
+
};
|
126
131
|
viberRichCardRow?: number;
|
127
132
|
viberRichCardCol?: number;
|
128
133
|
fileResolution?: string;
|