@jambonz/time-series 0.2.3 → 0.2.4
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/index.js +2 -0
- package/package.json +1 -1
- package/test/unit-tests.js +3 -0
package/index.js
CHANGED
package/package.json
CHANGED
package/test/unit-tests.js
CHANGED
|
@@ -208,11 +208,14 @@ test('write timeseries data', async(t) => {
|
|
|
208
208
|
result = await writeCallCountApp(
|
|
209
209
|
{
|
|
210
210
|
calls_in_progress: 20,
|
|
211
|
+
service_provider_sid: 'zzzzz',
|
|
211
212
|
application_sid: 'zzzzz'
|
|
212
213
|
});
|
|
213
214
|
result = await writeCallCountApp(
|
|
214
215
|
{
|
|
215
216
|
calls_in_progress: 21,
|
|
217
|
+
service_provider_sid: 'zzzzz',
|
|
218
|
+
account_sid: 'zzzzz',
|
|
216
219
|
application_sid: 'zzzzz'
|
|
217
220
|
});
|
|
218
221
|
t.pass('wrote call counts for application');
|