@webex/calling 0.0.1-next.0 → 0.0.1-next.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 (122) hide show
  1. package/README.md +51 -66
  2. package/dist/module/CallHistory/CallHistory.js +84 -84
  3. package/dist/module/CallHistory/callHistoryFixtures.js +307 -307
  4. package/dist/module/CallHistory/constants.js +9 -9
  5. package/dist/module/CallHistory/types.js +1 -1
  6. package/dist/module/CallSettings/CallSettings.js +65 -65
  7. package/dist/module/CallSettings/UcmBackendConnector.js +100 -100
  8. package/dist/module/CallSettings/WxCallBackendConnector.js +287 -287
  9. package/dist/module/CallSettings/constants.js +11 -11
  10. package/dist/module/CallSettings/testFixtures.js +62 -62
  11. package/dist/module/CallSettings/types.js +1 -1
  12. package/dist/module/CallingClient/CallingClient.js +268 -268
  13. package/dist/module/CallingClient/callRecordFixtures.js +93 -93
  14. package/dist/module/CallingClient/calling/CallerId/index.js +169 -169
  15. package/dist/module/CallingClient/calling/CallerId/types.js +1 -1
  16. package/dist/module/CallingClient/calling/call.js +1649 -1649
  17. package/dist/module/CallingClient/calling/callManager.js +274 -274
  18. package/dist/module/CallingClient/calling/index.js +2 -2
  19. package/dist/module/CallingClient/calling/types.js +53 -53
  20. package/dist/module/CallingClient/callingClientFixtures.js +38 -38
  21. package/dist/module/CallingClient/constants.js +122 -122
  22. package/dist/module/CallingClient/line/index.js +110 -110
  23. package/dist/module/CallingClient/line/types.js +14 -14
  24. package/dist/module/CallingClient/registration/index.js +1 -1
  25. package/dist/module/CallingClient/registration/register.js +507 -507
  26. package/dist/module/CallingClient/registration/registerFixtures.js +28 -28
  27. package/dist/module/CallingClient/registration/types.js +1 -1
  28. package/dist/module/CallingClient/types.js +1 -1
  29. package/dist/module/Contacts/ContactsClient.js +487 -487
  30. package/dist/module/Contacts/constants.js +20 -20
  31. package/dist/module/Contacts/contactFixtures.js +284 -284
  32. package/dist/module/Contacts/types.js +10 -10
  33. package/dist/module/Errors/catalog/CallError.js +26 -26
  34. package/dist/module/Errors/catalog/CallingDeviceError.js +18 -18
  35. package/dist/module/Errors/catalog/ExtendedError.js +10 -10
  36. package/dist/module/Errors/catalog/LineError.js +24 -24
  37. package/dist/module/Errors/index.js +2 -2
  38. package/dist/module/Errors/types.js +48 -48
  39. package/dist/module/Events/impl/index.js +19 -19
  40. package/dist/module/Events/types.js +74 -74
  41. package/dist/module/Logger/index.js +114 -114
  42. package/dist/module/Logger/types.js +25 -25
  43. package/dist/module/Metrics/index.js +232 -232
  44. package/dist/module/Metrics/types.js +37 -37
  45. package/dist/module/SDKConnector/index.js +39 -39
  46. package/dist/module/SDKConnector/types.js +1 -1
  47. package/dist/module/SDKConnector/utils.js +12 -12
  48. package/dist/module/Voicemail/BroadworksBackendConnector.js +289 -289
  49. package/dist/module/Voicemail/UcmBackendConnector.js +275 -275
  50. package/dist/module/Voicemail/Voicemail.js +110 -110
  51. package/dist/module/Voicemail/WxCallBackendConnector.js +279 -279
  52. package/dist/module/Voicemail/constants.js +29 -29
  53. package/dist/module/Voicemail/types.js +1 -1
  54. package/dist/module/Voicemail/voicemailFixture.js +449 -449
  55. package/dist/module/common/Utils.js +802 -802
  56. package/dist/module/common/constants.js +40 -40
  57. package/dist/module/common/index.js +1 -1
  58. package/dist/module/common/testUtil.js +938 -938
  59. package/dist/module/common/types.js +57 -57
  60. package/dist/module/index.js +8 -8
  61. package/dist/types/CallHistory/CallHistory.d.ts +18 -18
  62. package/dist/types/CallHistory/callHistoryFixtures.d.ts +94 -94
  63. package/dist/types/CallHistory/constants.d.ts +9 -9
  64. package/dist/types/CallHistory/types.d.ts +20 -20
  65. package/dist/types/CallSettings/CallSettings.d.ts +19 -19
  66. package/dist/types/CallSettings/UcmBackendConnector.d.ts +19 -19
  67. package/dist/types/CallSettings/WxCallBackendConnector.d.ts +21 -21
  68. package/dist/types/CallSettings/constants.d.ts +11 -11
  69. package/dist/types/CallSettings/testFixtures.d.ts +15 -15
  70. package/dist/types/CallSettings/types.d.ts +107 -107
  71. package/dist/types/CallingClient/CallingClient.d.ts +37 -37
  72. package/dist/types/CallingClient/callRecordFixtures.d.ts +3 -3
  73. package/dist/types/CallingClient/calling/CallerId/index.d.ts +17 -17
  74. package/dist/types/CallingClient/calling/CallerId/types.d.ts +41 -41
  75. package/dist/types/CallingClient/calling/call.d.ts +94 -94
  76. package/dist/types/CallingClient/calling/call.d.ts.map +1 -1
  77. package/dist/types/CallingClient/calling/callManager.d.ts +21 -21
  78. package/dist/types/CallingClient/calling/index.d.ts +2 -2
  79. package/dist/types/CallingClient/calling/types.d.ts +203 -203
  80. package/dist/types/CallingClient/calling/types.d.ts.map +1 -1
  81. package/dist/types/CallingClient/callingClientFixtures.d.ts +18 -18
  82. package/dist/types/CallingClient/constants.d.ts +122 -122
  83. package/dist/types/CallingClient/line/index.d.ts +38 -38
  84. package/dist/types/CallingClient/line/types.d.ts +50 -50
  85. package/dist/types/CallingClient/registration/index.d.ts +1 -1
  86. package/dist/types/CallingClient/registration/register.d.ts +64 -64
  87. package/dist/types/CallingClient/registration/registerFixtures.d.ts +28 -28
  88. package/dist/types/CallingClient/registration/types.d.ts +20 -20
  89. package/dist/types/CallingClient/types.d.ts +29 -29
  90. package/dist/types/Contacts/ContactsClient.d.ts +27 -27
  91. package/dist/types/Contacts/constants.d.ts +19 -19
  92. package/dist/types/Contacts/contactFixtures.d.ts +280 -280
  93. package/dist/types/Contacts/types.d.ts +74 -74
  94. package/dist/types/Errors/catalog/CallError.d.ts +11 -11
  95. package/dist/types/Errors/catalog/CallingDeviceError.d.ts +10 -10
  96. package/dist/types/Errors/catalog/ExtendedError.d.ts +6 -6
  97. package/dist/types/Errors/catalog/LineError.d.ts +10 -10
  98. package/dist/types/Errors/index.d.ts +2 -2
  99. package/dist/types/Errors/types.d.ts +60 -60
  100. package/dist/types/Events/impl/index.d.ts +8 -8
  101. package/dist/types/Events/types.d.ts +283 -283
  102. package/dist/types/Logger/index.d.ts +12 -12
  103. package/dist/types/Logger/types.d.ts +25 -25
  104. package/dist/types/Metrics/index.d.ts +5 -5
  105. package/dist/types/Metrics/types.d.ts +42 -42
  106. package/dist/types/SDKConnector/index.d.ts +12 -12
  107. package/dist/types/SDKConnector/types.d.ts +128 -128
  108. package/dist/types/SDKConnector/utils.d.ts +5 -5
  109. package/dist/types/Voicemail/BroadworksBackendConnector.d.ts +27 -27
  110. package/dist/types/Voicemail/UcmBackendConnector.d.ts +34 -34
  111. package/dist/types/Voicemail/Voicemail.d.ts +27 -27
  112. package/dist/types/Voicemail/WxCallBackendConnector.d.ts +23 -23
  113. package/dist/types/Voicemail/constants.d.ts +29 -29
  114. package/dist/types/Voicemail/types.d.ts +133 -133
  115. package/dist/types/Voicemail/voicemailFixture.d.ts +349 -349
  116. package/dist/types/common/Utils.d.ts +34 -34
  117. package/dist/types/common/constants.d.ts +40 -40
  118. package/dist/types/common/index.d.ts +1 -1
  119. package/dist/types/common/testUtil.d.ts +3611 -3611
  120. package/dist/types/common/types.d.ts +191 -191
  121. package/dist/types/index.d.ts +8 -8
  122. package/package.json +6 -41
@@ -1,350 +1,350 @@
1
- export declare const bwToken = "bwtoken";
2
- export declare const broadworksTokenType: {
3
- body: {
4
- token: {
5
- bearer: string;
6
- };
7
- };
8
- };
9
- export declare const broadworksUserInfoUrl = "https://xsp-alpha.broadcloudpbx.net/com.broadsoft.xsi-actions/v2.0/user/bgerman@wcslab.broadcloud.org/VoiceMessagingMessages";
10
- export declare const broadworksUserMessageId = "274a236c-9212-4679-8b40-2786ea460538";
11
- export declare const braodworksUserMessageInfo = "/v2.0/user/bgerman@wcslab.broadcloud.org/VoiceMessagingMessages";
12
- export declare const ucmBackendInfoUrl = "https://gw.telemetry.int-ucmgmt.cisco.com/vmgateway/api/v1/users/8a67806f-fc4d-446b-a131-31e71ea5b0e9/voicemails";
13
- export declare const voicemailContent = "/?offset=0&limit=20&sortOrder=DESC";
14
- export declare const orgId = "1704d30d-a131-4bc7-9449-948487643793";
15
- export declare const name = "Adrian";
16
- export declare const userid = "admin";
17
- export declare const address = "tel1372";
18
- export declare const userId = "8a67806f-fc4d-446b-a131-31e71ea5b0e9";
19
- export declare const voicemailSummaryUrl: string;
20
- export declare const getVoicemailListJsonBWRKS: {
21
- statusCode: number;
22
- VoiceMessagingMessages: {
23
- messageInfoList: {
24
- messageInfo: {
25
- duration: {
26
- $: string;
27
- };
28
- callingPartyInfo: {
29
- name: {
30
- $: string;
31
- };
32
- userId: {
33
- $: string;
34
- };
35
- address: {
36
- $: string;
37
- };
38
- };
39
- time: {
40
- $: string;
41
- };
42
- messageId: {
43
- $: string;
44
- };
45
- }[];
46
- };
47
- };
48
- };
49
- export declare const getAscVoicemailListJsonBWRKS: {
50
- statusCode: number;
51
- VoiceMessagingMessages: {
52
- messageInfoList: {
53
- messageInfo: {
54
- duration: {
55
- $: string;
56
- };
57
- callingPartyInfo: {
58
- name: {
59
- $: string;
60
- };
61
- userId: {
62
- $: string;
63
- };
64
- address: {
65
- $: string;
66
- };
67
- };
68
- time: {
69
- $: string;
70
- };
71
- messageId: {
72
- $: string;
73
- };
74
- }[];
75
- };
76
- };
77
- };
78
- export declare const getDescVoicemailListJsonBWRKS: {
79
- statusCode: number;
80
- VoiceMessagingMessages: {
81
- messageInfoList: {
82
- messageInfo: {
83
- duration: {
84
- $: string;
85
- };
86
- callingPartyInfo: {
87
- name: {
88
- $: string;
89
- };
90
- userId: {
91
- $: string;
92
- };
93
- address: {
94
- $: string;
95
- };
96
- };
97
- time: {
98
- $: string;
99
- };
100
- messageId: {
101
- $: string;
102
- };
103
- }[];
104
- };
105
- };
106
- };
107
- export declare const getVoicemailListJsonWXC: {
108
- statusCode: number;
109
- body: {
110
- VoiceMessagingMessages: {
111
- messageInfoList: {
112
- messageInfo: {
113
- duration: {
114
- $: string;
115
- };
116
- callingPartyInfo: {
117
- name: {
118
- $: string;
119
- };
120
- userId: {
121
- $: string;
122
- };
123
- address: {
124
- $: string;
125
- };
126
- };
127
- time: {
128
- $: string;
129
- };
130
- messageId: {
131
- $: string;
132
- };
133
- }[];
134
- };
135
- };
136
- };
137
- };
138
- export declare const mockBWRKSData: {
139
- body: {
140
- devices: {
141
- settings: {
142
- broadworksXsiActionsUrl: string;
143
- };
144
- }[];
145
- };
146
- };
147
- export declare const mockVoicemailBody: {
148
- body: {
149
- statusCode: number;
150
- items: {
151
- duration: {
152
- $: string;
153
- };
154
- callingPartyInfo: {
155
- name: {
156
- $: string;
157
- };
158
- userId: {
159
- $: string;
160
- };
161
- address: {
162
- $: string;
163
- };
164
- };
165
- time: {
166
- $: string;
167
- };
168
- messageId: {
169
- $: string;
170
- };
171
- }[];
172
- };
173
- };
174
- export declare const mockWXCData: {
175
- body: {
176
- items: {
177
- xsiActionsEndpoint: string;
178
- }[];
179
- };
180
- };
181
- export declare const getAscVoicemailListJsonWXC: {
182
- statusCode: number;
183
- body: {
184
- VoiceMessagingMessages: {
185
- messageInfoList: {
186
- messageInfo: {
187
- duration: {
188
- $: string;
189
- };
190
- callingPartyInfo: {
191
- name: {
192
- $: string;
193
- };
194
- userId: {
195
- $: string;
196
- };
197
- address: {
198
- $: string;
199
- };
200
- };
201
- time: {
202
- $: string;
203
- };
204
- messageId: {
205
- $: string;
206
- };
207
- }[];
208
- };
209
- };
210
- };
211
- };
212
- export declare const getDescVoicemailListJsonWXC: {
213
- statusCode: number;
214
- body: {
215
- VoiceMessagingMessages: {
216
- messageInfoList: {
217
- messageInfo: {
218
- duration: {
219
- $: string;
220
- };
221
- callingPartyInfo: {
222
- name: {
223
- $: string;
224
- };
225
- userId: {
226
- $: string;
227
- };
228
- address: {
229
- $: string;
230
- };
231
- };
232
- time: {
233
- $: string;
234
- };
235
- messageId: {
236
- $: string;
237
- };
238
- }[];
239
- };
240
- };
241
- };
242
- };
243
- export declare const mockUCMVoicemailBody: {
244
- body: {
245
- statusCode: number;
246
- items: {
247
- Duration: number;
248
- MsgId: string;
249
- ArrivalTime: number;
250
- Read: string;
251
- callingPartyInfo: {
252
- name: string;
253
- userId: string;
254
- };
255
- CallerId: {
256
- CallerNumber: string;
257
- CallerName: string;
258
- };
259
- }[];
260
- };
261
- };
262
- export declare const getVoiceMailListJsonUCM: {
263
- statusCode: number;
264
- body: {
265
- Message: {
266
- Duration: number;
267
- MsgId: string;
268
- ArrivalTime: number;
269
- Read: string;
270
- callingPartyInfo: {
271
- name: string;
272
- userId: string;
273
- };
274
- CallerId: {
275
- CallerNumber: string;
276
- CallerName: string;
277
- };
278
- }[];
279
- };
280
- };
281
- export declare const getDescVoiceMailListJsonUCM: {
282
- statusCode: number;
283
- body: {
284
- Message: {
285
- voicemailList: {
286
- duration: {
287
- $: number;
288
- };
289
- time: {
290
- $: number;
291
- };
292
- messageId: {
293
- $: string;
294
- };
295
- callingPartyInfo: {
296
- name: {
297
- $: string;
298
- };
299
- userId: {
300
- $: string;
301
- };
302
- address: {
303
- $: string;
304
- };
305
- };
306
- }[];
307
- };
308
- };
309
- };
310
- export declare const mockVoicemailTranscriptResponse: {
311
- body: string;
312
- statusCode: number;
313
- method: string;
314
- headers: {
315
- 'cache-control': string;
316
- connection: string;
317
- 'content-language': string;
318
- 'content-type': string;
319
- date: string;
320
- expires: string;
321
- 'keep-alive': string;
322
- pragma: string;
323
- 'strict-transport-security': string;
324
- trackingid: string;
325
- 'transfer-encoding': string;
326
- 'x-content-type-options': string;
327
- 'x-frame-options': string;
328
- 'x-xss-protection': string;
329
- };
330
- url: string;
331
- options: {
332
- uri: string;
333
- method: string;
334
- json: boolean;
335
- headers: {
336
- trackingid: string;
337
- 'spark-user-agent': string;
338
- authorization: string;
339
- 'cisco-no-http-redirect': boolean;
340
- };
341
- $timings: {
342
- requestStart: number;
343
- networkStart: number;
344
- networkEnd: number;
345
- requestEnd: number;
346
- };
347
- $redirectCount: number;
348
- };
349
- };
1
+ export declare const bwToken = "bwtoken";
2
+ export declare const broadworksTokenType: {
3
+ body: {
4
+ token: {
5
+ bearer: string;
6
+ };
7
+ };
8
+ };
9
+ export declare const broadworksUserInfoUrl = "https://xsp-alpha.broadcloudpbx.net/com.broadsoft.xsi-actions/v2.0/user/bgerman@wcslab.broadcloud.org/VoiceMessagingMessages";
10
+ export declare const broadworksUserMessageId = "274a236c-9212-4679-8b40-2786ea460538";
11
+ export declare const braodworksUserMessageInfo = "/v2.0/user/bgerman@wcslab.broadcloud.org/VoiceMessagingMessages";
12
+ export declare const ucmBackendInfoUrl = "https://gw.telemetry.int-ucmgmt.cisco.com/vmgateway/api/v1/users/8a67806f-fc4d-446b-a131-31e71ea5b0e9/voicemails";
13
+ export declare const voicemailContent = "/?offset=0&limit=20&sortOrder=DESC";
14
+ export declare const orgId = "1704d30d-a131-4bc7-9449-948487643793";
15
+ export declare const name = "Adrian";
16
+ export declare const userid = "admin";
17
+ export declare const address = "tel1372";
18
+ export declare const userId = "8a67806f-fc4d-446b-a131-31e71ea5b0e9";
19
+ export declare const voicemailSummaryUrl: string;
20
+ export declare const getVoicemailListJsonBWRKS: {
21
+ statusCode: number;
22
+ VoiceMessagingMessages: {
23
+ messageInfoList: {
24
+ messageInfo: {
25
+ duration: {
26
+ $: string;
27
+ };
28
+ callingPartyInfo: {
29
+ name: {
30
+ $: string;
31
+ };
32
+ userId: {
33
+ $: string;
34
+ };
35
+ address: {
36
+ $: string;
37
+ };
38
+ };
39
+ time: {
40
+ $: string;
41
+ };
42
+ messageId: {
43
+ $: string;
44
+ };
45
+ }[];
46
+ };
47
+ };
48
+ };
49
+ export declare const getAscVoicemailListJsonBWRKS: {
50
+ statusCode: number;
51
+ VoiceMessagingMessages: {
52
+ messageInfoList: {
53
+ messageInfo: {
54
+ duration: {
55
+ $: string;
56
+ };
57
+ callingPartyInfo: {
58
+ name: {
59
+ $: string;
60
+ };
61
+ userId: {
62
+ $: string;
63
+ };
64
+ address: {
65
+ $: string;
66
+ };
67
+ };
68
+ time: {
69
+ $: string;
70
+ };
71
+ messageId: {
72
+ $: string;
73
+ };
74
+ }[];
75
+ };
76
+ };
77
+ };
78
+ export declare const getDescVoicemailListJsonBWRKS: {
79
+ statusCode: number;
80
+ VoiceMessagingMessages: {
81
+ messageInfoList: {
82
+ messageInfo: {
83
+ duration: {
84
+ $: string;
85
+ };
86
+ callingPartyInfo: {
87
+ name: {
88
+ $: string;
89
+ };
90
+ userId: {
91
+ $: string;
92
+ };
93
+ address: {
94
+ $: string;
95
+ };
96
+ };
97
+ time: {
98
+ $: string;
99
+ };
100
+ messageId: {
101
+ $: string;
102
+ };
103
+ }[];
104
+ };
105
+ };
106
+ };
107
+ export declare const getVoicemailListJsonWXC: {
108
+ statusCode: number;
109
+ body: {
110
+ VoiceMessagingMessages: {
111
+ messageInfoList: {
112
+ messageInfo: {
113
+ duration: {
114
+ $: string;
115
+ };
116
+ callingPartyInfo: {
117
+ name: {
118
+ $: string;
119
+ };
120
+ userId: {
121
+ $: string;
122
+ };
123
+ address: {
124
+ $: string;
125
+ };
126
+ };
127
+ time: {
128
+ $: string;
129
+ };
130
+ messageId: {
131
+ $: string;
132
+ };
133
+ }[];
134
+ };
135
+ };
136
+ };
137
+ };
138
+ export declare const mockBWRKSData: {
139
+ body: {
140
+ devices: {
141
+ settings: {
142
+ broadworksXsiActionsUrl: string;
143
+ };
144
+ }[];
145
+ };
146
+ };
147
+ export declare const mockVoicemailBody: {
148
+ body: {
149
+ statusCode: number;
150
+ items: {
151
+ duration: {
152
+ $: string;
153
+ };
154
+ callingPartyInfo: {
155
+ name: {
156
+ $: string;
157
+ };
158
+ userId: {
159
+ $: string;
160
+ };
161
+ address: {
162
+ $: string;
163
+ };
164
+ };
165
+ time: {
166
+ $: string;
167
+ };
168
+ messageId: {
169
+ $: string;
170
+ };
171
+ }[];
172
+ };
173
+ };
174
+ export declare const mockWXCData: {
175
+ body: {
176
+ items: {
177
+ xsiActionsEndpoint: string;
178
+ }[];
179
+ };
180
+ };
181
+ export declare const getAscVoicemailListJsonWXC: {
182
+ statusCode: number;
183
+ body: {
184
+ VoiceMessagingMessages: {
185
+ messageInfoList: {
186
+ messageInfo: {
187
+ duration: {
188
+ $: string;
189
+ };
190
+ callingPartyInfo: {
191
+ name: {
192
+ $: string;
193
+ };
194
+ userId: {
195
+ $: string;
196
+ };
197
+ address: {
198
+ $: string;
199
+ };
200
+ };
201
+ time: {
202
+ $: string;
203
+ };
204
+ messageId: {
205
+ $: string;
206
+ };
207
+ }[];
208
+ };
209
+ };
210
+ };
211
+ };
212
+ export declare const getDescVoicemailListJsonWXC: {
213
+ statusCode: number;
214
+ body: {
215
+ VoiceMessagingMessages: {
216
+ messageInfoList: {
217
+ messageInfo: {
218
+ duration: {
219
+ $: string;
220
+ };
221
+ callingPartyInfo: {
222
+ name: {
223
+ $: string;
224
+ };
225
+ userId: {
226
+ $: string;
227
+ };
228
+ address: {
229
+ $: string;
230
+ };
231
+ };
232
+ time: {
233
+ $: string;
234
+ };
235
+ messageId: {
236
+ $: string;
237
+ };
238
+ }[];
239
+ };
240
+ };
241
+ };
242
+ };
243
+ export declare const mockUCMVoicemailBody: {
244
+ body: {
245
+ statusCode: number;
246
+ items: {
247
+ Duration: number;
248
+ MsgId: string;
249
+ ArrivalTime: number;
250
+ Read: string;
251
+ callingPartyInfo: {
252
+ name: string;
253
+ userId: string;
254
+ };
255
+ CallerId: {
256
+ CallerNumber: string;
257
+ CallerName: string;
258
+ };
259
+ }[];
260
+ };
261
+ };
262
+ export declare const getVoiceMailListJsonUCM: {
263
+ statusCode: number;
264
+ body: {
265
+ Message: {
266
+ Duration: number;
267
+ MsgId: string;
268
+ ArrivalTime: number;
269
+ Read: string;
270
+ callingPartyInfo: {
271
+ name: string;
272
+ userId: string;
273
+ };
274
+ CallerId: {
275
+ CallerNumber: string;
276
+ CallerName: string;
277
+ };
278
+ }[];
279
+ };
280
+ };
281
+ export declare const getDescVoiceMailListJsonUCM: {
282
+ statusCode: number;
283
+ body: {
284
+ Message: {
285
+ voicemailList: {
286
+ duration: {
287
+ $: number;
288
+ };
289
+ time: {
290
+ $: number;
291
+ };
292
+ messageId: {
293
+ $: string;
294
+ };
295
+ callingPartyInfo: {
296
+ name: {
297
+ $: string;
298
+ };
299
+ userId: {
300
+ $: string;
301
+ };
302
+ address: {
303
+ $: string;
304
+ };
305
+ };
306
+ }[];
307
+ };
308
+ };
309
+ };
310
+ export declare const mockVoicemailTranscriptResponse: {
311
+ body: string;
312
+ statusCode: number;
313
+ method: string;
314
+ headers: {
315
+ 'cache-control': string;
316
+ connection: string;
317
+ 'content-language': string;
318
+ 'content-type': string;
319
+ date: string;
320
+ expires: string;
321
+ 'keep-alive': string;
322
+ pragma: string;
323
+ 'strict-transport-security': string;
324
+ trackingid: string;
325
+ 'transfer-encoding': string;
326
+ 'x-content-type-options': string;
327
+ 'x-frame-options': string;
328
+ 'x-xss-protection': string;
329
+ };
330
+ url: string;
331
+ options: {
332
+ uri: string;
333
+ method: string;
334
+ json: boolean;
335
+ headers: {
336
+ trackingid: string;
337
+ 'spark-user-agent': string;
338
+ authorization: string;
339
+ 'cisco-no-http-redirect': boolean;
340
+ };
341
+ $timings: {
342
+ requestStart: number;
343
+ networkStart: number;
344
+ networkEnd: number;
345
+ requestEnd: number;
346
+ };
347
+ $redirectCount: number;
348
+ };
349
+ };
350
350
  //# sourceMappingURL=voicemailFixture.d.ts.map