@cometchat/calls-sdk-react-native 4.0.8 → 4.0.9-experimental.1

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.
Files changed (41) hide show
  1. package/dist/CometChatErrorConstants.d.ts +124 -124
  2. package/dist/Constants.d.ts +724 -724
  3. package/dist/Helper copy.d.ts +1 -1
  4. package/dist/Helper.d.ts +7 -7
  5. package/dist/api/APIHandler.d.ts +42 -42
  6. package/dist/api/endpoints.d.ts +7 -7
  7. package/dist/api/helper.d.ts +69 -69
  8. package/dist/api/index.d.ts +2 -2
  9. package/dist/constants/CallConstants.d.ts +136 -136
  10. package/dist/constants/index.d.ts +1 -1
  11. package/dist/defaultCallsettings.d.ts +2 -2
  12. package/dist/index.d.ts +9 -9
  13. package/dist/index.js +59 -59
  14. package/dist/models/CallAppSettings.d.ts +42 -42
  15. package/dist/models/CallGroup.d.ts +14 -14
  16. package/dist/models/CallLog.d.ts +276 -276
  17. package/dist/models/CallLogFilterParams.d.ts +97 -97
  18. package/dist/models/CallSettings.d.ts +316 -316
  19. package/dist/models/CallUser.d.ts +14 -14
  20. package/dist/models/CometChatCallLogs.d.ts +193 -193
  21. package/dist/models/CometChatCalls.d.ts +115 -110
  22. package/dist/models/CometChatCallsComponent.d.ts +13 -13
  23. package/dist/models/CometChatCallsComponentCore.d.ts +18 -18
  24. package/dist/models/CometChatCallsException.d.ts +7 -7
  25. package/dist/models/CometChatPresenterComponent.d.ts +13 -13
  26. package/dist/models/ErrorModel.d.ts +11 -11
  27. package/dist/models/Listner.d.ts +64 -64
  28. package/dist/models/ListnerHandler.d.ts +10 -10
  29. package/dist/models/MessageComponent.d.ts +7 -7
  30. package/dist/models/Participant.d.ts +184 -184
  31. package/dist/models/PresenterSettings.d.ts +194 -194
  32. package/dist/models/RTCUser.d.ts +18 -18
  33. package/dist/models/Recording.d.ts +86 -86
  34. package/dist/models/index.d.ts +9 -9
  35. package/dist/types/ICallAppSettings.d.ts +6 -6
  36. package/dist/types/ICallSettings.d.ts +60 -60
  37. package/dist/types/RTCUser.d.ts +6 -6
  38. package/dist/types/callEvents.d.ts +53 -53
  39. package/dist/types/common.d.ts +18 -18
  40. package/dist/types/index.d.ts +2 -2
  41. package/package.json +1 -1
@@ -1,97 +1,97 @@
1
- /**
2
- * Represents the parameters used to filter call logs.
3
- */
4
- export declare class CallLogFilterParams {
5
- /**
6
- * The number of items to display per page.
7
- */
8
- private perPage;
9
- /**
10
- * The page number to display.
11
- */
12
- private page;
13
- /**
14
- * The mode of the call.
15
- */
16
- private mode;
17
- /**
18
- * The type of the call.
19
- */
20
- private type;
21
- /**
22
- * The status of the call.
23
- */
24
- private status;
25
- /**
26
- * The direction of the call.
27
- */
28
- private direction;
29
- /**
30
- * Whether the call has recordings.
31
- */
32
- private hasRecording;
33
- /**
34
- * The user ID.
35
- */
36
- private uid;
37
- /**
38
- * The group ID.
39
- */
40
- private guid;
41
- /**
42
- * Creates a new instance of the CallLogFilterParams class.
43
- * @param data - The data to initialize the call log filter parameters object.
44
- */
45
- /**
46
- * Sets the direction of the call.
47
- * @param value - The direction of the call.
48
- */
49
- setDirection(value: string): void;
50
- /**
51
- * Sets the status of the call.
52
- * @param value - The status of the call.
53
- */
54
- setStatus(value: string): void;
55
- /**
56
- * Sets the type of the call.
57
- * @param value - The type of the call.
58
- */
59
- setType(value: string): void;
60
- /**
61
- * Sets the number of items to display per page.
62
- * @param value - The number of items to display per page.
63
- */
64
- setPerPage(value: number): void;
65
- /**
66
- * Sets the page number to display.
67
- * @param value - The page number to display.
68
- */
69
- setPage(value: number): void;
70
- /**
71
- * Sets the mode of the call.
72
- * @param value - The mode of the call.
73
- */
74
- setMode(value: string): void;
75
- /**
76
- * Sets whether the call has recordings.
77
- * @param value - Whether the call has recordings.
78
- */
79
- setHasRecordings(value: boolean): void;
80
- /**
81
- * Sets the user ID.
82
- * @param value - The user ID.
83
- */
84
- setUid(value: string): void;
85
- /**
86
- * Sets the group ID.
87
- * @param value - The group ID.
88
- */
89
- setGuid(value: string): void;
90
- /**
91
- * Converts the filter parameters to a map of key-value pairs.
92
- * @returns A map of key-value pairs representing the filter parameters.
93
- */
94
- toMap(): {
95
- [key: string]: string;
96
- };
97
- }
1
+ /**
2
+ * Represents the parameters used to filter call logs.
3
+ */
4
+ export declare class CallLogFilterParams {
5
+ /**
6
+ * The number of items to display per page.
7
+ */
8
+ private perPage;
9
+ /**
10
+ * The page number to display.
11
+ */
12
+ private page;
13
+ /**
14
+ * The mode of the call.
15
+ */
16
+ private mode;
17
+ /**
18
+ * The type of the call.
19
+ */
20
+ private type;
21
+ /**
22
+ * The status of the call.
23
+ */
24
+ private status;
25
+ /**
26
+ * The direction of the call.
27
+ */
28
+ private direction;
29
+ /**
30
+ * Whether the call has recordings.
31
+ */
32
+ private hasRecording;
33
+ /**
34
+ * The user ID.
35
+ */
36
+ private uid;
37
+ /**
38
+ * The group ID.
39
+ */
40
+ private guid;
41
+ /**
42
+ * Creates a new instance of the CallLogFilterParams class.
43
+ * @param data - The data to initialize the call log filter parameters object.
44
+ */
45
+ /**
46
+ * Sets the direction of the call.
47
+ * @param value - The direction of the call.
48
+ */
49
+ setDirection(value: string): void;
50
+ /**
51
+ * Sets the status of the call.
52
+ * @param value - The status of the call.
53
+ */
54
+ setStatus(value: string): void;
55
+ /**
56
+ * Sets the type of the call.
57
+ * @param value - The type of the call.
58
+ */
59
+ setType(value: string): void;
60
+ /**
61
+ * Sets the number of items to display per page.
62
+ * @param value - The number of items to display per page.
63
+ */
64
+ setPerPage(value: number): void;
65
+ /**
66
+ * Sets the page number to display.
67
+ * @param value - The page number to display.
68
+ */
69
+ setPage(value: number): void;
70
+ /**
71
+ * Sets the mode of the call.
72
+ * @param value - The mode of the call.
73
+ */
74
+ setMode(value: string): void;
75
+ /**
76
+ * Sets whether the call has recordings.
77
+ * @param value - Whether the call has recordings.
78
+ */
79
+ setHasRecordings(value: boolean): void;
80
+ /**
81
+ * Sets the user ID.
82
+ * @param value - The user ID.
83
+ */
84
+ setUid(value: string): void;
85
+ /**
86
+ * Sets the group ID.
87
+ * @param value - The group ID.
88
+ */
89
+ setGuid(value: string): void;
90
+ /**
91
+ * Converts the filter parameters to a map of key-value pairs.
92
+ * @returns A map of key-value pairs representing the filter parameters.
93
+ */
94
+ toMap(): {
95
+ [key: string]: string;
96
+ };
97
+ }