repzo 1.0.220 → 1.0.221
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/lib/types/index.d.ts +4 -2
- package/package.json +1 -1
- package/src/types/index.ts +6 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -16777,6 +16777,7 @@ export declare namespace Service {
|
|
|
16777
16777
|
result: {
|
|
16778
16778
|
sequence: StringId;
|
|
16779
16779
|
duration_on_sequence_ms: number;
|
|
16780
|
+
sequence_landing_count: number;
|
|
16780
16781
|
slides: {
|
|
16781
16782
|
slide: StringId;
|
|
16782
16783
|
feedback: "positive" | "negative" | "notProvided";
|
|
@@ -16829,6 +16830,7 @@ export declare namespace Service {
|
|
|
16829
16830
|
result?: {
|
|
16830
16831
|
sequence: StringId;
|
|
16831
16832
|
duration_on_sequence_ms: number;
|
|
16833
|
+
sequence_landing_count: number;
|
|
16832
16834
|
slides: {
|
|
16833
16835
|
slide: StringId;
|
|
16834
16836
|
feedback: "positive" | "negative" | "notProvided";
|
|
@@ -16841,7 +16843,7 @@ export declare namespace Service {
|
|
|
16841
16843
|
}[];
|
|
16842
16844
|
interactions: {
|
|
16843
16845
|
interaction_time: number;
|
|
16844
|
-
interaction_type: "slide_landing" | "slide_leaving" | "zoom" | "feedback_given" | "presentation_play" | "presentation_end" | "presentation_cancel";
|
|
16846
|
+
interaction_type: "slide_landing" | "slide_leaving" | "sequence_landing" | "sequence_leaving" | "zoom" | "feedback_given" | "presentation_play" | "presentation_end" | "presentation_cancel";
|
|
16845
16847
|
interaction_detail: "in" | "out" | "positive" | "negative" | "notProvided" | null;
|
|
16846
16848
|
slide?: StringId;
|
|
16847
16849
|
sequence?: StringId;
|
|
@@ -16851,7 +16853,7 @@ export declare namespace Service {
|
|
|
16851
16853
|
export interface CLMActivityInteraction {
|
|
16852
16854
|
_id: StringId;
|
|
16853
16855
|
interaction_time: number;
|
|
16854
|
-
interaction_type: "slide_landing" | "slide_leaving" | "zoom" | "feedback_given" | "presentation_play" | "presentation_end" | "presentation_cancel";
|
|
16856
|
+
interaction_type: "slide_landing" | "slide_leaving" | "sequence_landing" | "sequence_leaving" | "zoom" | "feedback_given" | "presentation_play" | "presentation_end" | "presentation_cancel";
|
|
16855
16857
|
interaction_detail: "in" | "out" | "positive" | "negative" | "notProvided" | null;
|
|
16856
16858
|
slide?: StringId;
|
|
16857
16859
|
sequence?: StringId;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -18713,6 +18713,7 @@ export namespace Service {
|
|
|
18713
18713
|
result: {
|
|
18714
18714
|
sequence: StringId;
|
|
18715
18715
|
duration_on_sequence_ms: number;
|
|
18716
|
+
sequence_landing_count: number;
|
|
18716
18717
|
slides: {
|
|
18717
18718
|
slide: StringId;
|
|
18718
18719
|
feedback: "positive" | "negative" | "notProvided";
|
|
@@ -18761,6 +18762,7 @@ export namespace Service {
|
|
|
18761
18762
|
result?: {
|
|
18762
18763
|
sequence: StringId;
|
|
18763
18764
|
duration_on_sequence_ms: number;
|
|
18765
|
+
sequence_landing_count: number;
|
|
18764
18766
|
slides: {
|
|
18765
18767
|
slide: StringId;
|
|
18766
18768
|
feedback: "positive" | "negative" | "notProvided";
|
|
@@ -18776,6 +18778,8 @@ export namespace Service {
|
|
|
18776
18778
|
interaction_type:
|
|
18777
18779
|
| "slide_landing"
|
|
18778
18780
|
| "slide_leaving"
|
|
18781
|
+
| "sequence_landing"
|
|
18782
|
+
| "sequence_leaving"
|
|
18779
18783
|
| "zoom"
|
|
18780
18784
|
| "feedback_given"
|
|
18781
18785
|
| "presentation_play"
|
|
@@ -18800,6 +18804,8 @@ export namespace Service {
|
|
|
18800
18804
|
interaction_type:
|
|
18801
18805
|
| "slide_landing"
|
|
18802
18806
|
| "slide_leaving"
|
|
18807
|
+
| "sequence_landing"
|
|
18808
|
+
| "sequence_leaving"
|
|
18803
18809
|
| "zoom"
|
|
18804
18810
|
| "feedback_given"
|
|
18805
18811
|
| "presentation_play"
|