@hivegpt/hiveai-angular 0.0.201 → 0.0.203
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 +24 -24
- package/bundles/hivegpt-hiveai-angular.umd.js +1969 -1984
- package/bundles/hivegpt-hiveai-angular.umd.js.map +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js.map +1 -1
- package/environments/environment.d.ts +14 -14
- package/environments/environment.d.ts.map +1 -1
- package/esm2015/environments/environment.js +15 -15
- package/esm2015/hivegpt-hiveai-angular.js +10 -10
- package/esm2015/lib/components/NotificationSocket.js +39 -39
- package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +1105 -1120
- package/esm2015/lib/components/chatbot/chatbot.component.js +50 -50
- package/esm2015/lib/components/conversation.service.js +45 -45
- package/esm2015/lib/components/socket-service.service.js +69 -69
- package/esm2015/lib/components/video-player/video-player.component.js +123 -123
- package/esm2015/lib/hivegpt.module.js +19 -19
- package/esm2015/lib/models/video.js +2 -2
- package/esm2015/lib/pipes/safe-html.pipe.js +19 -19
- package/esm2015/lib/utils/utils.js +36 -36
- package/esm2015/public-api.js +7 -7
- package/fesm2015/hivegpt-hiveai-angular.js +1467 -1482
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/hivegpt-hiveai-angular.d.ts +9 -9
- package/hivegpt-hiveai-angular.d.ts.map +1 -1
- package/hivegpt-hiveai-angular.metadata.json +1 -1
- package/lib/components/NotificationSocket.d.ts +4 -4
- package/lib/components/NotificationSocket.d.ts.map +1 -1
- package/lib/components/chat-drawer/chat-drawer.component.d.ts +178 -178
- package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -1
- package/lib/components/chatbot/chatbot.component.d.ts +35 -35
- package/lib/components/chatbot/chatbot.component.d.ts.map +1 -1
- package/lib/components/conversation.service.d.ts +12 -12
- package/lib/components/conversation.service.d.ts.map +1 -1
- package/lib/components/socket-service.service.d.ts +18 -18
- package/lib/components/socket-service.service.d.ts.map +1 -1
- package/lib/components/video-player/video-player.component.d.ts +35 -35
- package/lib/components/video-player/video-player.component.d.ts.map +1 -1
- package/lib/hivegpt.module.d.ts +2 -2
- package/lib/hivegpt.module.d.ts.map +1 -1
- package/lib/models/video.d.ts +34 -34
- package/lib/models/video.d.ts.map +1 -1
- package/lib/pipes/safe-html.pipe.d.ts +7 -7
- package/lib/pipes/safe-html.pipe.d.ts.map +1 -1
- package/lib/utils/utils.d.ts +2 -2
- package/lib/utils/utils.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +3 -3
- package/public-api.d.ts.map +1 -1
package/lib/models/video.d.ts
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
export interface IVideo {
|
|
2
|
-
id: string;
|
|
3
|
-
title: string;
|
|
4
|
-
url: string;
|
|
5
|
-
thumbnail: string;
|
|
6
|
-
isPlaying: boolean;
|
|
7
|
-
userId: string;
|
|
8
|
-
eventId: string;
|
|
9
|
-
aoiIds: string[];
|
|
10
|
-
insertTimeStamp: string;
|
|
11
|
-
isDeleted: boolean;
|
|
12
|
-
appropriate: Appropriate[];
|
|
13
|
-
isIntroVideo: boolean;
|
|
14
|
-
videoRating: VideoRating[];
|
|
15
|
-
likes: VideoLike[];
|
|
16
|
-
vttUrl: string;
|
|
17
|
-
processedUrls: string;
|
|
18
|
-
duration: string;
|
|
19
|
-
}
|
|
20
|
-
interface VideoRating {
|
|
21
|
-
userId: string;
|
|
22
|
-
rateValue: string;
|
|
23
|
-
insertTimeStamp: string;
|
|
24
|
-
}
|
|
25
|
-
interface VideoLike {
|
|
26
|
-
userId: string;
|
|
27
|
-
isLiked: boolean;
|
|
28
|
-
insertTimeStamp: string;
|
|
29
|
-
}
|
|
30
|
-
interface Appropriate {
|
|
31
|
-
userId: string;
|
|
32
|
-
insertTimeStamp: string;
|
|
33
|
-
}
|
|
34
|
-
export {};
|
|
1
|
+
export interface IVideo {
|
|
2
|
+
id: string;
|
|
3
|
+
title: string;
|
|
4
|
+
url: string;
|
|
5
|
+
thumbnail: string;
|
|
6
|
+
isPlaying: boolean;
|
|
7
|
+
userId: string;
|
|
8
|
+
eventId: string;
|
|
9
|
+
aoiIds: string[];
|
|
10
|
+
insertTimeStamp: string;
|
|
11
|
+
isDeleted: boolean;
|
|
12
|
+
appropriate: Appropriate[];
|
|
13
|
+
isIntroVideo: boolean;
|
|
14
|
+
videoRating: VideoRating[];
|
|
15
|
+
likes: VideoLike[];
|
|
16
|
+
vttUrl: string;
|
|
17
|
+
processedUrls: string;
|
|
18
|
+
duration: string;
|
|
19
|
+
}
|
|
20
|
+
interface VideoRating {
|
|
21
|
+
userId: string;
|
|
22
|
+
rateValue: string;
|
|
23
|
+
insertTimeStamp: string;
|
|
24
|
+
}
|
|
25
|
+
interface VideoLike {
|
|
26
|
+
userId: string;
|
|
27
|
+
isLiked: boolean;
|
|
28
|
+
insertTimeStamp: string;
|
|
29
|
+
}
|
|
30
|
+
interface Appropriate {
|
|
31
|
+
userId: string;
|
|
32
|
+
insertTimeStamp: string;
|
|
33
|
+
}
|
|
34
|
+
export {};
|
|
35
35
|
//# sourceMappingURL=video.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"video.d.ts","sourceRoot":"/
|
|
1
|
+
{"version":3,"file":"video.d.ts","sourceRoot":"D:/hiveGPT-AI-packages/HiveAI-Packages/projects/hivegpt/eventsgpt-angular/src/","sources":["lib/models/video.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,MAAM;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,OAAO,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,WAAW,EAAE,CAAC;IAC3B,YAAY,EAAE,OAAO,CAAC;IACtB,WAAW,EAAE,WAAW,EAAE,CAAC;IAC3B,KAAK,EAAE,SAAS,EAAE,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,UAAU,WAAW;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,UAAU,SAAS;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,UAAU,WAAW;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
-
export declare class SafeHtmlPipe implements PipeTransform {
|
|
4
|
-
private sanitizer;
|
|
5
|
-
constructor(sanitizer: DomSanitizer);
|
|
6
|
-
transform(html: any): unknown;
|
|
7
|
-
}
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
export declare class SafeHtmlPipe implements PipeTransform {
|
|
4
|
+
private sanitizer;
|
|
5
|
+
constructor(sanitizer: DomSanitizer);
|
|
6
|
+
transform(html: any): unknown;
|
|
7
|
+
}
|
|
8
8
|
//# sourceMappingURL=safe-html.pipe.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"safe-html.pipe.d.ts","sourceRoot":"/
|
|
1
|
+
{"version":3,"file":"safe-html.pipe.d.ts","sourceRoot":"D:/hiveGPT-AI-packages/HiveAI-Packages/projects/hivegpt/eventsgpt-angular/src/","sources":["lib/pipes/safe-html.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEzD,qBAGa,YAAa,YAAW,aAAa;IAEpC,OAAO,CAAC,SAAS;gBAAT,SAAS,EAAE,YAAY;IAG3C,SAAS,CAAC,IAAI,KAAA,GAAG,OAAO;CAIzB"}
|
package/lib/utils/utils.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const formatNow: (timezone?: string) => string;
|
|
2
|
-
export declare const formatTimeStamps: (timezone: string, timestamps: any) => string;
|
|
1
|
+
export declare const formatNow: (timezone?: string) => string;
|
|
2
|
+
export declare const formatTimeStamps: (timezone: string, timestamps: any) => string;
|
|
3
3
|
//# sourceMappingURL=utils.d.ts.map
|
package/lib/utils/utils.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"/
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"D:/hiveGPT-AI-packages/HiveAI-Packages/projects/hivegpt/eventsgpt-angular/src/","sources":["lib/utils/utils.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,SAAS,cAAe,MAAM,WAY1C,CAAC;AAEF,eAAO,MAAM,gBAAgB,aAAc,MAAM,cAAc,GAAG,WAUjE,CAAC"}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './lib/components/chat-drawer/chat-drawer.component';
|
|
2
|
-
export * from './lib/components/chatbot/chatbot.component';
|
|
3
|
-
export * from './lib/hivegpt.module';
|
|
1
|
+
export * from './lib/components/chat-drawer/chat-drawer.component';
|
|
2
|
+
export * from './lib/components/chatbot/chatbot.component';
|
|
3
|
+
export * from './lib/hivegpt.module';
|
|
4
4
|
//# sourceMappingURL=public-api.d.ts.map
|
package/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"/
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"D:/hiveGPT-AI-packages/HiveAI-Packages/projects/hivegpt/eventsgpt-angular/src/","sources":["public-api.ts"],"names":[],"mappings":"AAIA,cAAc,oDAAoD,CAAC;AACnE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sBAAsB,CAAC"}
|