@twilio/conversations 2.0.1-rc.9 → 2.1.0-rc.5

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 (88) hide show
  1. package/CHANGELOG.md +74 -0
  2. package/NOTICE.txt +679 -0
  3. package/builds/browser.js +892 -619
  4. package/builds/browser.js.map +1 -1
  5. package/builds/lib.d.ts +371 -124
  6. package/builds/lib.js +892 -619
  7. package/builds/lib.js.map +1 -1
  8. package/builds/twilio-conversations.js +1067 -939
  9. package/builds/twilio-conversations.min.js +2 -14
  10. package/dist/aggregated-delivery-receipt.js +6 -1
  11. package/dist/aggregated-delivery-receipt.js.map +1 -1
  12. package/dist/client.js +165 -142
  13. package/dist/client.js.map +1 -1
  14. package/dist/command-executor.js +16 -14
  15. package/dist/command-executor.js.map +1 -1
  16. package/dist/configuration.js +14 -10
  17. package/dist/configuration.js.map +1 -1
  18. package/dist/conversation.js +232 -159
  19. package/dist/conversation.js.map +1 -1
  20. package/dist/data/conversations.js +82 -78
  21. package/dist/data/conversations.js.map +1 -1
  22. package/dist/data/messages.js +43 -39
  23. package/dist/data/messages.js.map +1 -1
  24. package/dist/data/participants.js +100 -78
  25. package/dist/data/participants.js.map +1 -1
  26. package/dist/data/users.js +24 -22
  27. package/dist/data/users.js.map +1 -1
  28. package/dist/detailed-delivery-receipt.js +1 -1
  29. package/dist/detailed-delivery-receipt.js.map +1 -1
  30. package/dist/index.js +1 -0
  31. package/dist/index.js.map +1 -1
  32. package/dist/interfaces/attributes.js +147 -0
  33. package/dist/interfaces/attributes.js.map +1 -0
  34. package/dist/interfaces/notification-types.js +5 -5
  35. package/dist/interfaces/notification-types.js.map +1 -1
  36. package/dist/logger.js +36 -15
  37. package/dist/logger.js.map +1 -1
  38. package/dist/media.js +21 -9
  39. package/dist/media.js.map +1 -1
  40. package/dist/message-builder.js +56 -3
  41. package/dist/message-builder.js.map +1 -1
  42. package/dist/message.js +158 -78
  43. package/dist/message.js.map +1 -1
  44. package/dist/packages/conversations/package.json.js +1 -1
  45. package/dist/participant.js +101 -50
  46. package/dist/participant.js.map +1 -1
  47. package/dist/push-notification.js.map +1 -1
  48. package/dist/rest-paginator.js +16 -6
  49. package/dist/rest-paginator.js.map +1 -1
  50. package/dist/services/network.js +18 -14
  51. package/dist/services/network.js.map +1 -1
  52. package/dist/services/typing-indicator.js +20 -17
  53. package/dist/services/typing-indicator.js.map +1 -1
  54. package/dist/unsent-message.js.map +1 -1
  55. package/dist/user.js +87 -60
  56. package/dist/user.js.map +1 -1
  57. package/dist/util/deferred.js +3 -1
  58. package/dist/util/deferred.js.map +1 -1
  59. package/dist/util/index.js +6 -6
  60. package/dist/util/index.js.map +1 -1
  61. package/docs/assets/js/search.js +1 -1
  62. package/docs/classes/AggregatedDeliveryReceipt.html +15 -0
  63. package/docs/classes/Client.html +39 -30
  64. package/docs/classes/Conversation.html +52 -30
  65. package/docs/classes/DetailedDeliveryReceipt.html +16 -1
  66. package/docs/classes/Media.html +15 -0
  67. package/docs/classes/Message.html +88 -7
  68. package/docs/classes/MessageBuilder.html +93 -2
  69. package/docs/classes/Participant.html +52 -8
  70. package/docs/classes/PushNotification.html +15 -0
  71. package/docs/classes/RestPaginator.html +15 -0
  72. package/docs/classes/UnsentMessage.html +15 -0
  73. package/docs/classes/User.html +22 -7
  74. package/docs/index.html +37 -3
  75. package/docs/interfaces/ClientOptions.html +15 -0
  76. package/docs/interfaces/ConversationBindings.html +3118 -0
  77. package/docs/interfaces/ConversationEmailBinding.html +3118 -0
  78. package/docs/interfaces/ConversationState.html +15 -0
  79. package/docs/interfaces/CreateConversationOptions.html +16 -1
  80. package/docs/interfaces/LastMessage.html +15 -0
  81. package/docs/interfaces/Paginator.html +15 -0
  82. package/docs/interfaces/ParticipantBindings.html +3118 -0
  83. package/docs/interfaces/ParticipantEmailBinding.html +3118 -0
  84. package/docs/interfaces/PushNotificationData.html +15 -0
  85. package/docs/interfaces/SendEmailOptions.html +15 -0
  86. package/docs/interfaces/SendMediaOptions.html +15 -0
  87. package/docs/modules.html +37 -3
  88. package/package.json +24 -18
package/NOTICE.txt ADDED
@@ -0,0 +1,679 @@
1
+ This software includes babel's modular runtime helpers (runtime) under the following license(s)
2
+ - URL: https://babel.dev/docs/en/next/babel-runtime
3
+
4
+ MIT License
5
+
6
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining
9
+ a copy of this software and associated documentation files (the
10
+ "Software"), to deal in the Software without restriction, including
11
+ without limitation the rights to use, copy, modify, merge, publish,
12
+ distribute, sublicense, and/or sell copies of the Software, and to
13
+ permit persons to whom the Software is furnished to do so, subject to
14
+ the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be
17
+ included in all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
+
27
+ ----------------------------------------------------------------------------------------------------
28
+
29
+ This software includes Runtime for Regenerator-compiled generator and async functions. (regenerator-runtime) under the following license(s)
30
+
31
+ MIT License
32
+
33
+ Copyright (c) 2014-present, Facebook, Inc.
34
+
35
+ Permission is hereby granted, free of charge, to any person obtaining a copy
36
+ of this software and associated documentation files (the "Software"), to deal
37
+ in the Software without restriction, including without limitation the rights
38
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
39
+ copies of the Software, and to permit persons to whom the Software is
40
+ furnished to do so, subject to the following conditions:
41
+
42
+ The above copyright notice and this permission notice shall be included in all
43
+ copies or substantial portions of the Software.
44
+
45
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
46
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
47
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
48
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
49
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
50
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
51
+ SOFTWARE.
52
+
53
+ ----------------------------------------------------------------------------------------------------
54
+
55
+ This software includes Standard library (core-js) under the following license(s)
56
+ - URL: https://github.com/zloirock/core-js#readme
57
+
58
+ Copyright (c) 2014-2021 Denis Pushkarev
59
+
60
+ Permission is hereby granted, free of charge, to any person obtaining a copy
61
+ of this software and associated documentation files (the "Software"), to deal
62
+ in the Software without restriction, including without limitation the rights
63
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
64
+ copies of the Software, and to permit persons to whom the Software is
65
+ furnished to do so, subject to the following conditions:
66
+
67
+ The above copyright notice and this permission notice shall be included in
68
+ all copies or substantial portions of the Software.
69
+
70
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
71
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
72
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
73
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
74
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
75
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
76
+ THE SOFTWARE.
77
+
78
+ ----------------------------------------------------------------------------------------------------
79
+
80
+ This software includes Minimal lightweight logging for JavaScript, adding reliable log level methods to any available console.log methods (loglevel) under the following license(s)
81
+ - URL: https://github.com/pimterry/loglevel
82
+
83
+ MIT License
84
+
85
+ Copyright (c) <year> <copyright holders>
86
+
87
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
88
+
89
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
90
+
91
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
92
+ ----------------------------------------------------------------------------------------------------
93
+
94
+ This software includes XMLHttpRequest for Node (xmlhttprequest) under the following license(s)
95
+ - URL: https://github.com/driverdan/node-XMLHttpRequest#readme
96
+
97
+ Copyright (c) 2010 passive.ly LLC
98
+
99
+ Permission is hereby granted, free of charge, to any person
100
+ obtaining a copy of this software and associated documentation
101
+ files (the "Software"), to deal in the Software without
102
+ restriction, including without limitation the rights to use,
103
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
104
+ copies of the Software, and to permit persons to whom the
105
+ Software is furnished to do so, subject to the following
106
+ conditions:
107
+
108
+ The above copyright notice and this permission notice shall be
109
+ included in all copies or substantial portions of the Software.
110
+
111
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
112
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
113
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
114
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
115
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
116
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
117
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
118
+ OTHER DEALINGS IN THE SOFTWARE.
119
+
120
+ ----------------------------------------------------------------------------------------------------
121
+
122
+ This software includes Client library for TwilSock service (twilsock) under the following license(s)
123
+
124
+ The following license applies to all parts of this software except as
125
+ documented below.
126
+
127
+ Copyright (c) 2016, Twilio, inc.
128
+ All rights reserved.
129
+
130
+ Redistribution and use in source and binary forms, with or without
131
+ modification, are permitted provided that the following conditions are
132
+ met:
133
+
134
+ 1. Redistributions of source code must retain the above copyright
135
+ notice, this list of conditions and the following disclaimer.
136
+
137
+ 2. Redistributions in binary form must reproduce the above copyright
138
+ notice, this list of conditions and the following disclaimer in
139
+ the documentation and/or other materials provided with the
140
+ distribution.
141
+
142
+ 3. Neither the name of Twilio nor the names of its contributors may
143
+ be used to endorse or promote products derived from this software
144
+ without specific prior written permission.
145
+
146
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
147
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
148
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
149
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
150
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
151
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
152
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
153
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
154
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
155
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
156
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
157
+
158
+ This software includes javascript-state-machine under the following license.
159
+
160
+ Copyright (c) 2012, 2013, 2014, 2015, Jake Gordon and contributors
161
+
162
+ Permission is hereby granted, free of charge, to any person obtaining a copy
163
+ of this software and associated documentation files (the "Software"), to deal
164
+ in the Software without restriction, including without limitation the rights
165
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
166
+ copies of the Software, and to permit persons to whom the Software is
167
+ furnished to do so, subject to the following conditions:
168
+
169
+ The above copyright notice and this permission notice shall be included in all
170
+ copies or substantial portions of the Software.
171
+
172
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
173
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
174
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
175
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
176
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
177
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
178
+
179
+ This software includes loglevel under the following license.
180
+
181
+ Copyright (c) 2013 Tim Perry
182
+
183
+ Permission is hereby granted, free of charge, to any person
184
+ obtaining a copy of this software and associated documentation
185
+ files (the "Software"), to deal in the Software without
186
+ restriction, including without limitation the rights to use,
187
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
188
+ copies of the Software, and to permit persons to whom the
189
+ Software is furnished to do so, subject to the following
190
+ conditions:
191
+
192
+ The above copyright notice and this permission notice shall be
193
+ included in all copies or substantial portions of the Software.
194
+
195
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
196
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
197
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
198
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
199
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
200
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
201
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
202
+ OTHER DEALINGS IN THE SOFTWARE.
203
+
204
+
205
+ ----------------------------------------------------------------------------------------------------
206
+
207
+ This software includes Node/Js-module for parsing and making sense of ISO8601-durations (iso8601-duration) under the following license(s)
208
+ - URL: https://github.com/tolu/ISO8601-duration#readme
209
+
210
+ MIT License
211
+
212
+ Copyright (c) <year> <copyright holders>
213
+
214
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
215
+
216
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
217
+
218
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
219
+ ----------------------------------------------------------------------------------------------------
220
+
221
+ This software includes A finite state machine library (javascript-state-machine) under the following license(s)
222
+ - URL: https://github.com/jakesgordon/javascript-state-machine
223
+
224
+ Copyright (c) 2012, 2013, 2014, 2015, 2016, 2017, 2018, Jake Gordon and contributors
225
+
226
+ Permission is hereby granted, free of charge, to any person obtaining a copy
227
+ of this software and associated documentation files (the "Software"), to deal
228
+ in the Software without restriction, including without limitation the rights
229
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
230
+ copies of the Software, and to permit persons to whom the Software is
231
+ furnished to do so, subject to the following conditions:
232
+
233
+ The above copyright notice and this permission notice shall be included in all
234
+ copies or substantial portions of the Software.
235
+
236
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
237
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
238
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
239
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
240
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
241
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
242
+ SOFTWARE.
243
+
244
+
245
+ ----------------------------------------------------------------------------------------------------
246
+
247
+ This software includes A platform detection library that works on nearly all JavaScript platforms. (platform) under the following license(s)
248
+ - URL: https://github.com/bestiejs/platform.js#readme
249
+
250
+ Copyright 2014-2020 Benjamin Tan
251
+ Copyright 2011-2013 John-David Dalton
252
+
253
+ Permission is hereby granted, free of charge, to any person obtaining
254
+ a copy of this software and associated documentation files (the
255
+ "Software"), to deal in the Software without restriction, including
256
+ without limitation the rights to use, copy, modify, merge, publish,
257
+ distribute, sublicense, and/or sell copies of the Software, and to
258
+ permit persons to whom the Software is furnished to do so, subject to
259
+ the following conditions:
260
+
261
+ The above copyright notice and this permission notice shall be
262
+ included in all copies or substantial portions of the Software.
263
+
264
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
265
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
266
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
267
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
268
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
269
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
270
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
271
+
272
+ ----------------------------------------------------------------------------------------------------
273
+
274
+ This software includes RFC4122 (v1, v4, and v5) UUIDs (uuid) under the following license(s)
275
+ - URL: https://github.com/uuidjs/uuid#readme
276
+
277
+ The MIT License (MIT)
278
+
279
+ Copyright (c) 2010-2016 Robert Kieffer and other contributors
280
+
281
+ Permission is hereby granted, free of charge, to any person obtaining a copy
282
+ of this software and associated documentation files (the "Software"), to deal
283
+ in the Software without restriction, including without limitation the rights
284
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
285
+ copies of the Software, and to permit persons to whom the Software is
286
+ furnished to do so, subject to the following conditions:
287
+
288
+ The above copyright notice and this permission notice shall be included in all
289
+ copies or substantial portions of the Software.
290
+
291
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
292
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
293
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
294
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
295
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
296
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
297
+ SOFTWARE.
298
+
299
+ ----------------------------------------------------------------------------------------------------
300
+
301
+ This software includes Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js (ws) under the following license(s)
302
+ - URL: https://github.com/websockets/ws
303
+
304
+ The MIT License (MIT)
305
+
306
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
307
+
308
+ Permission is hereby granted, free of charge, to any person obtaining a copy
309
+ of this software and associated documentation files (the "Software"), to deal
310
+ in the Software without restriction, including without limitation the rights
311
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
312
+ copies of the Software, and to permit persons to whom the Software is
313
+ furnished to do so, subject to the following conditions:
314
+
315
+ The above copyright notice and this permission notice shall be included in all
316
+ copies or substantial portions of the Software.
317
+
318
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
319
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
320
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
321
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
322
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
323
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
324
+ SOFTWARE.
325
+
326
+ ----------------------------------------------------------------------------------------------------
327
+
328
+ This software includes asynchronous function queue with adjustable concurrency (async-limiter) under the following license(s)
329
+ - URL: https://github.com/strml/async-limiter#readme
330
+
331
+ The MIT License (MIT)
332
+ Copyright (c) 2017 Samuel Reed <samuel.trace.reed@gmail.com>
333
+
334
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
335
+
336
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
337
+
338
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
339
+
340
+ ----------------------------------------------------------------------------------------------------
341
+
342
+ This software includes A library to create readable "multipart/form-data" in node and the browser. (isomorphic-form-data) under the following license(s)
343
+ - URL: https://github.com/form-data/isomorphic-form-data#readme
344
+
345
+ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
346
+
347
+ Permission is hereby granted, free of charge, to any person obtaining a copy
348
+ of this software and associated documentation files (the "Software"), to deal
349
+ in the Software without restriction, including without limitation the rights
350
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
351
+ copies of the Software, and to permit persons to whom the Software is
352
+ furnished to do so, subject to the following conditions:
353
+
354
+ The above copyright notice and this permission notice shall be included in
355
+ all copies or substantial portions of the Software.
356
+
357
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
358
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
359
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
360
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
361
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
362
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
363
+ THE SOFTWARE.
364
+
365
+ ----------------------------------------------------------------------------------------------------
366
+
367
+ This software includes A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications. (form-data) under the following license(s)
368
+ - URL: https://github.com/form-data/form-data#readme
369
+
370
+ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
371
+
372
+ Permission is hereby granted, free of charge, to any person obtaining a copy
373
+ of this software and associated documentation files (the "Software"), to deal
374
+ in the Software without restriction, including without limitation the rights
375
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
376
+ copies of the Software, and to permit persons to whom the Software is
377
+ furnished to do so, subject to the following conditions:
378
+
379
+ The above copyright notice and this permission notice shall be included in
380
+ all copies or substantial portions of the Software.
381
+
382
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
383
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
384
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
385
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
386
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
387
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
388
+ THE SOFTWARE.
389
+
390
+ ----------------------------------------------------------------------------------------------------
391
+
392
+ This software includes Minimal async jobs utility library, with streams support (asynckit) under the following license(s)
393
+ - URL: https://github.com/alexindigo/asynckit#readme
394
+
395
+ The MIT License (MIT)
396
+
397
+ Copyright (c) 2016 Alex Indigo
398
+
399
+ Permission is hereby granted, free of charge, to any person obtaining a copy
400
+ of this software and associated documentation files (the "Software"), to deal
401
+ in the Software without restriction, including without limitation the rights
402
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
403
+ copies of the Software, and to permit persons to whom the Software is
404
+ furnished to do so, subject to the following conditions:
405
+
406
+ The above copyright notice and this permission notice shall be included in all
407
+ copies or substantial portions of the Software.
408
+
409
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
410
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
411
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
412
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
413
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
414
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
415
+ SOFTWARE.
416
+
417
+ ----------------------------------------------------------------------------------------------------
418
+
419
+ This software includes A stream that emits multiple other streams one after another. (combined-stream) under the following license(s)
420
+ - URL: https://github.com/felixge/node-combined-stream
421
+
422
+ Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
423
+
424
+ Permission is hereby granted, free of charge, to any person obtaining a copy
425
+ of this software and associated documentation files (the "Software"), to deal
426
+ in the Software without restriction, including without limitation the rights
427
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
428
+ copies of the Software, and to permit persons to whom the Software is
429
+ furnished to do so, subject to the following conditions:
430
+
431
+ The above copyright notice and this permission notice shall be included in
432
+ all copies or substantial portions of the Software.
433
+
434
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
435
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
436
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
437
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
438
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
439
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
440
+ THE SOFTWARE.
441
+
442
+ ----------------------------------------------------------------------------------------------------
443
+
444
+ This software includes Buffers events from a stream until you are ready to handle them. (delayed-stream) under the following license(s)
445
+ - URL: https://github.com/felixge/node-delayed-stream
446
+
447
+ Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
448
+
449
+ Permission is hereby granted, free of charge, to any person obtaining a copy
450
+ of this software and associated documentation files (the "Software"), to deal
451
+ in the Software without restriction, including without limitation the rights
452
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
453
+ copies of the Software, and to permit persons to whom the Software is
454
+ furnished to do so, subject to the following conditions:
455
+
456
+ The above copyright notice and this permission notice shall be included in
457
+ all copies or substantial portions of the Software.
458
+
459
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
460
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
461
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
462
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
463
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
464
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
465
+ THE SOFTWARE.
466
+
467
+ ----------------------------------------------------------------------------------------------------
468
+
469
+ This software includes The ultimate javascript content-type utility. (mime-types) under the following license(s)
470
+ - URL: https://github.com/jshttp/mime-types#readme
471
+
472
+ (The MIT License)
473
+
474
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
475
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
476
+
477
+ Permission is hereby granted, free of charge, to any person obtaining
478
+ a copy of this software and associated documentation files (the
479
+ 'Software'), to deal in the Software without restriction, including
480
+ without limitation the rights to use, copy, modify, merge, publish,
481
+ distribute, sublicense, and/or sell copies of the Software, and to
482
+ permit persons to whom the Software is furnished to do so, subject to
483
+ the following conditions:
484
+
485
+ The above copyright notice and this permission notice shall be
486
+ included in all copies or substantial portions of the Software.
487
+
488
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
489
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
490
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
491
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
492
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
493
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
494
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
495
+
496
+ ----------------------------------------------------------------------------------------------------
497
+
498
+ This software includes Media Type Database (mime-db) under the following license(s)
499
+ - URL: https://github.com/jshttp/mime-db#readme
500
+
501
+
502
+ The MIT License (MIT)
503
+
504
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
505
+
506
+ Permission is hereby granted, free of charge, to any person obtaining a copy
507
+ of this software and associated documentation files (the "Software"), to deal
508
+ in the Software without restriction, including without limitation the rights
509
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
510
+ copies of the Software, and to permit persons to whom the Software is
511
+ furnished to do so, subject to the following conditions:
512
+
513
+ The above copyright notice and this permission notice shall be included in
514
+ all copies or substantial portions of the Software.
515
+
516
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
517
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
518
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
519
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
520
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
521
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
522
+ THE SOFTWARE.
523
+
524
+ ----------------------------------------------------------------------------------------------------
525
+
526
+ This software includes The Lodash method `_.isEqual` exported as a module. (lodash.isequal) under the following license(s)
527
+ - URL: https://lodash.com/
528
+
529
+ Copyright JS Foundation and other contributors <https://js.foundation/>
530
+
531
+ Based on Underscore.js, copyright Jeremy Ashkenas,
532
+ DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
533
+
534
+ This software consists of voluntary contributions made by many
535
+ individuals. For exact contribution history, see the revision history
536
+ available at https://github.com/lodash/lodash
537
+
538
+ The following license applies to all parts of this software except as
539
+ documented below:
540
+
541
+ ====
542
+
543
+ Permission is hereby granted, free of charge, to any person obtaining
544
+ a copy of this software and associated documentation files (the
545
+ "Software"), to deal in the Software without restriction, including
546
+ without limitation the rights to use, copy, modify, merge, publish,
547
+ distribute, sublicense, and/or sell copies of the Software, and to
548
+ permit persons to whom the Software is furnished to do so, subject to
549
+ the following conditions:
550
+
551
+ The above copyright notice and this permission notice shall be
552
+ included in all copies or substantial portions of the Software.
553
+
554
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
555
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
556
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
557
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
558
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
559
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
560
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
561
+
562
+ ====
563
+
564
+ Copyright and related rights for sample code are waived via CC0. Sample
565
+ code is defined as all source code displayed within the prose of the
566
+ documentation.
567
+
568
+ CC0: http://creativecommons.org/publicdomain/zero/1.0/
569
+
570
+ ====
571
+
572
+ Files located in the node_modules and vendor directories are externally
573
+ maintained libraries used by this software which have their own
574
+ licenses; we recommend you read them, as their terms may differ from the
575
+ terms above.
576
+
577
+ ----------------------------------------------------------------------------------------------------
578
+
579
+ This software includes Twilio Sync client library (twilio-sync) under the following license(s)
580
+
581
+ The following license applies to all parts of this software except as
582
+ documented below.
583
+
584
+ Copyright (c) 2016, Twilio, inc.
585
+ All rights reserved.
586
+
587
+ Redistribution and use in source and binary forms, with or without
588
+ modification, are permitted provided that the following conditions are
589
+ met:
590
+
591
+ 1. Redistributions of source code must retain the above copyright
592
+ notice, this list of conditions and the following disclaimer.
593
+
594
+ 2. Redistributions in binary form must reproduce the above copyright
595
+ notice, this list of conditions and the following disclaimer in
596
+ the documentation and/or other materials provided with the
597
+ distribution.
598
+
599
+ 3. Neither the name of Twilio nor the names of its contributors may
600
+ be used to endorse or promote products derived from this software
601
+ without specific prior written permission.
602
+
603
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
604
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
605
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
606
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
607
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
608
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
609
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
610
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
611
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
612
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
613
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
614
+
615
+ This software includes loglevel under the following license.
616
+
617
+ Copyright (c) 2013 Tim Perry
618
+
619
+ Permission is hereby granted, free of charge, to any person
620
+ obtaining a copy of this software and associated documentation
621
+ files (the "Software"), to deal in the Software without
622
+ restriction, including without limitation the rights to use,
623
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
624
+ copies of the Software, and to permit persons to whom the
625
+ Software is furnished to do so, subject to the following
626
+ conditions:
627
+
628
+ The above copyright notice and this permission notice shall be
629
+ included in all copies or substantial portions of the Software.
630
+
631
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
632
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
633
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
634
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
635
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
636
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
637
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
638
+ OTHER DEALINGS IN THE SOFTWARE.
639
+
640
+ This software includes Backoff library under the following license
641
+
642
+ Copyright (C) 2012 Mathieu Turcotte
643
+
644
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
645
+ this software and associated documentation files (the "Software"), to deal in
646
+ the Software without restriction, including without limitation the rights to
647
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
648
+ of the Software, and to permit persons to whom the Software is furnished to do
649
+ so, subject to the following conditions:
650
+
651
+ The above copyright notice and this permission notice shall be included in all
652
+ copies or substantial portions of the Software.
653
+
654
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
655
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
656
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
657
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
658
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
659
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
660
+ SOFTWARE.
661
+
662
+ This software includes Event-to-Promise library under the following license
663
+
664
+ Copyright (c) 2014, Julien Fontanet <julien.fontanet@isonoe.net>.
665
+
666
+ Permission to use, copy, modify, and/or distribute this software for any purpose
667
+ with or without fee is hereby granted, provided that the above copyright notice
668
+ and this permission notice appear in all copies.
669
+
670
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
671
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
672
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
673
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
674
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
675
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
676
+ THIS SOFTWARE.
677
+
678
+ ----------------------------------------------------------------------------------------------------
679
+