@parra/parra-js-sdk 0.2.107 → 0.2.109
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/dist/ParraAPI.d.ts +14 -12
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -512,24 +512,24 @@ export interface MutableStarQuestionBody {
|
|
|
512
512
|
trailing_label?: string;
|
|
513
513
|
}
|
|
514
514
|
export interface ShortTextQuestionBody {
|
|
515
|
-
placeholder?: string;
|
|
516
|
-
min_length?: number;
|
|
517
|
-
max_length?: number;
|
|
515
|
+
placeholder?: string | null;
|
|
516
|
+
min_length?: number | null;
|
|
517
|
+
max_length?: number | null;
|
|
518
518
|
}
|
|
519
519
|
export interface MutableShortTextQuestionBody {
|
|
520
|
-
placeholder?: string;
|
|
521
|
-
min_length?: number;
|
|
522
|
-
max_length?: number;
|
|
520
|
+
placeholder?: string | null;
|
|
521
|
+
min_length?: number | null;
|
|
522
|
+
max_length?: number | null;
|
|
523
523
|
}
|
|
524
524
|
export interface LongTextQuestionBody {
|
|
525
|
-
placeholder?: string;
|
|
526
|
-
min_length?: number;
|
|
527
|
-
max_length?: number;
|
|
525
|
+
placeholder?: string | null;
|
|
526
|
+
min_length?: number | null;
|
|
527
|
+
max_length?: number | null;
|
|
528
528
|
}
|
|
529
529
|
export interface MutableLongTextQuestionBody {
|
|
530
|
-
placeholder?: string;
|
|
531
|
-
min_length?: number;
|
|
532
|
-
max_length?: number;
|
|
530
|
+
placeholder?: string | null;
|
|
531
|
+
min_length?: number | null;
|
|
532
|
+
max_length?: number | null;
|
|
533
533
|
}
|
|
534
534
|
export interface MutableBooleanQuestionOption {
|
|
535
535
|
title: string;
|
|
@@ -702,6 +702,8 @@ export interface Event {
|
|
|
702
702
|
metadata?: Map<string, any> | null;
|
|
703
703
|
}
|
|
704
704
|
export interface Session {
|
|
705
|
+
started_at?: string | null;
|
|
706
|
+
ended_at?: string | null;
|
|
705
707
|
user_properties?: Map<string, any> | null;
|
|
706
708
|
events?: Array<Event>;
|
|
707
709
|
}
|