@rolatech/angular-services 20.3.3-beta.1 → 20.3.3-beta.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-services",
|
|
3
|
-
"version": "20.3.3-beta.
|
|
3
|
+
"version": "20.3.3-beta.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@rolatech/angular-common": "20.3.3-beta.
|
|
15
|
+
"@rolatech/angular-common": "20.3.3-beta.2",
|
|
16
16
|
"tslib": "^2.3.0"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
@@ -1953,6 +1953,16 @@ declare class CategoryService extends BaseService {
|
|
|
1953
1953
|
static ɵprov: i0.ɵɵInjectableDeclaration<CategoryService>;
|
|
1954
1954
|
}
|
|
1955
1955
|
|
|
1956
|
+
interface MarkdownEvent {
|
|
1957
|
+
type: 'markdown';
|
|
1958
|
+
id: string;
|
|
1959
|
+
title: string;
|
|
1960
|
+
mediaUrl?: string;
|
|
1961
|
+
link?: string;
|
|
1962
|
+
price?: number;
|
|
1963
|
+
address?: string;
|
|
1964
|
+
phone?: string;
|
|
1965
|
+
}
|
|
1956
1966
|
interface GroupEvent {
|
|
1957
1967
|
type: 'group';
|
|
1958
1968
|
id: string;
|
|
@@ -1977,6 +1987,9 @@ type AssistantSegment = {
|
|
|
1977
1987
|
} | {
|
|
1978
1988
|
kind: 'group';
|
|
1979
1989
|
item: GroupEvent;
|
|
1990
|
+
} | {
|
|
1991
|
+
kind: 'markdown';
|
|
1992
|
+
item: MarkdownEvent;
|
|
1980
1993
|
} | {
|
|
1981
1994
|
kind: 'json';
|
|
1982
1995
|
data: unknown;
|