comprodls-sdk 2.20.0 → 2.22.0
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/comprodls-sdk.js +673 -152
- package/dist/comprodls-sdk.min.js +18 -18
- package/lib/comprodls.js +7 -5
- package/lib/config/index.js +6 -0
- package/lib/services/auth/index.js +110 -9
- package/lib/services/taxonomy/index.js +411 -0
- package/package.json +1 -1
package/dist/comprodls-sdk.js
CHANGED
|
@@ -45,10 +45,11 @@ var workflows = require('./services/workflows');
|
|
|
45
45
|
var integrations = require('./services/integrations');
|
|
46
46
|
var validations = require('./token/validations');
|
|
47
47
|
var drive = require('./services/drive');
|
|
48
|
+
var taxonomy = require('./services/taxonomy');
|
|
48
49
|
|
|
49
50
|
|
|
50
51
|
/*********************************
|
|
51
|
-
* Setting Up Module Entry Point
|
|
52
|
+
* Setting Up Module Entry Point
|
|
52
53
|
**********************************/
|
|
53
54
|
exports.init = init;
|
|
54
55
|
|
|
@@ -62,10 +63,10 @@ function comproDLS(environment, realm, options) {
|
|
|
62
63
|
options = options || {};
|
|
63
64
|
environment = environment || 'production';
|
|
64
65
|
realm = realm || 'global';
|
|
65
|
-
/*
|
|
66
|
+
/*
|
|
66
67
|
* Instance level parameters, used across all API calls. These are set to null.
|
|
67
68
|
* Either authWithToken or authWithCredentials must be called to set these
|
|
68
|
-
* with valid values.
|
|
69
|
+
* with valid values.
|
|
69
70
|
*/
|
|
70
71
|
|
|
71
72
|
/* API Token is a JSON Object with following structure
|
|
@@ -75,7 +76,7 @@ function comproDLS(environment, realm, options) {
|
|
|
75
76
|
*/
|
|
76
77
|
this.token = null;
|
|
77
78
|
|
|
78
|
-
//Organization Id
|
|
79
|
+
//Organization Id
|
|
79
80
|
this.orgId = null;
|
|
80
81
|
this.traceid = options.traceid;
|
|
81
82
|
|
|
@@ -112,7 +113,7 @@ function comproDLS(environment, realm, options) {
|
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
/****************************************
|
|
115
|
-
* Setting Up SDK Public Functions/Objects
|
|
116
|
+
* Setting Up SDK Public Functions/Objects
|
|
116
117
|
*****************************************/
|
|
117
118
|
//Token Management
|
|
118
119
|
comproDLS.prototype.authWithCredentials = token_manager.authWithCredentials;
|
|
@@ -145,8 +146,9 @@ comproDLS.prototype.Invitations = invitations;
|
|
|
145
146
|
comproDLS.prototype.Workflows = workflows;
|
|
146
147
|
comproDLS.prototype.Integrations = integrations;
|
|
147
148
|
comproDLS.prototype.Drive = drive;
|
|
149
|
+
comproDLS.prototype.Taxonomy = taxonomy;
|
|
148
150
|
|
|
149
|
-
},{"./config":2,"./helpers":3,"./open_access":10,"./services/activity":13,"./services/analytics":14,"./services/attempts":15,"./services/auth":16,"./services/collab":17,"./services/drive":18,"./services/integrations":19,"./services/invitations":20,"./services/lrs":21,"./services/product":22,"./services/pub":23,"./services/push":26,"./services/pushX":24,"./services/sisevents":27,"./services/spaces":28,"./services/superuser":29,"./services/
|
|
151
|
+
},{"./config":2,"./helpers":3,"./open_access":10,"./services/activity":13,"./services/analytics":14,"./services/attempts":15,"./services/auth":16,"./services/collab":17,"./services/drive":18,"./services/integrations":19,"./services/invitations":20,"./services/lrs":21,"./services/product":22,"./services/pub":23,"./services/push":26,"./services/pushX":24,"./services/sisevents":27,"./services/spaces":28,"./services/superuser":29,"./services/taxonomy":30,"./services/workflows":31,"./services/xapi":32,"./token":33,"./token/validations":34}],2:[function(require,module,exports){
|
|
150
152
|
/*************************************************************************
|
|
151
153
|
*
|
|
152
154
|
* COMPRO CONFIDENTIAL
|
|
@@ -286,6 +288,7 @@ exports.AUTH_API_URLS = {
|
|
|
286
288
|
createClass: '/org/{orgId}/classes',
|
|
287
289
|
createMultipleClasses: '/org/{orgId}/classes/multi',
|
|
288
290
|
specificClass: '/org/{orgId}/classes/{classId}',
|
|
291
|
+
cloneClass: '/org/{orgId}/classes/{classId}/clone',
|
|
289
292
|
|
|
290
293
|
ClassAppdata: '/org/{orgId}/classes/{classid}/appdata',
|
|
291
294
|
|
|
@@ -459,6 +462,11 @@ exports.DRIVE_API_URLS = {
|
|
|
459
462
|
getAParticularDocument: '/accounts/{accountid}/users/{extuserid}/documents/{documentid}',
|
|
460
463
|
getAllDocumentsInAFolder: '/accounts/{accountid}/users/{extuserid}/documents'
|
|
461
464
|
};
|
|
465
|
+
|
|
466
|
+
exports.TAXONOMY_API_URLS = {
|
|
467
|
+
associateTagsWithEntity: '/org/{orgId}/taxonomy/associate-tags-with-entity',
|
|
468
|
+
tags: '/org/{orgId}/context/{context}/taxonomy/{taxonomyId}/tags'
|
|
469
|
+
};
|
|
462
470
|
|
|
463
471
|
},{}],3:[function(require,module,exports){
|
|
464
472
|
/*************************************************************************
|
|
@@ -745,7 +753,7 @@ function addClassIdQueryParam(url, classId) {
|
|
|
745
753
|
function setupAPIToken(request, token) {
|
|
746
754
|
return request.set('Authorization', token.access_token);
|
|
747
755
|
};
|
|
748
|
-
},{"../../../config":2,"../../../helpers":3,"../errors":7,"./validations":6,"q":
|
|
756
|
+
},{"../../../config":2,"../../../helpers":3,"../errors":7,"./validations":6,"q":89,"string-template":130,"superagent":132}],6:[function(require,module,exports){
|
|
749
757
|
/*************************************************************************
|
|
750
758
|
*
|
|
751
759
|
* COMPRO CONFIDENTIAL
|
|
@@ -1077,7 +1085,7 @@ validator.validators.contains = function(value, options) {
|
|
|
1077
1085
|
}
|
|
1078
1086
|
}
|
|
1079
1087
|
};
|
|
1080
|
-
},{"./errors":7,"validate.js":
|
|
1088
|
+
},{"./errors":7,"validate.js":140}],10:[function(require,module,exports){
|
|
1081
1089
|
/*************************************************************************
|
|
1082
1090
|
*
|
|
1083
1091
|
* COMPRO CONFIDENTIAL
|
|
@@ -1200,7 +1208,7 @@ function getSingleInvitation(organizationId, options) {
|
|
|
1200
1208
|
}
|
|
1201
1209
|
|
|
1202
1210
|
|
|
1203
|
-
},{"../helpers":3,"q":
|
|
1211
|
+
},{"../helpers":3,"q":89,"superagent":132}],11:[function(require,module,exports){
|
|
1204
1212
|
/*************************************************************************
|
|
1205
1213
|
*
|
|
1206
1214
|
* COMPRO CONFIDENTIAL
|
|
@@ -1411,7 +1419,7 @@ Activity.prototype.getQuestionsCount = function () {
|
|
|
1411
1419
|
return dfd.promise;
|
|
1412
1420
|
}
|
|
1413
1421
|
|
|
1414
|
-
},{"../../helpers":3,"./attempt":12,"extend":
|
|
1422
|
+
},{"../../helpers":3,"./attempt":12,"extend":67,"q":89,"superagent":132}],12:[function(require,module,exports){
|
|
1415
1423
|
/*************************************************************************
|
|
1416
1424
|
*
|
|
1417
1425
|
* COMPRO CONFIDENTIAL
|
|
@@ -1844,7 +1852,7 @@ Attempt.prototype.submit = function (userresponse) {
|
|
|
1844
1852
|
return dfd.promise;
|
|
1845
1853
|
};
|
|
1846
1854
|
|
|
1847
|
-
},{"../../helpers":3,"extend":
|
|
1855
|
+
},{"../../helpers":3,"extend":67,"q":89,"superagent":132}],13:[function(require,module,exports){
|
|
1848
1856
|
/*************************************************************************
|
|
1849
1857
|
*
|
|
1850
1858
|
* COMPRO CONFIDENTIAL
|
|
@@ -3483,7 +3491,7 @@ function getTimeseriesAnalytics(options) {
|
|
|
3483
3491
|
}
|
|
3484
3492
|
return dfd.promise;
|
|
3485
3493
|
}
|
|
3486
|
-
},{"../../helpers":3,"agentkeepalive":
|
|
3494
|
+
},{"../../helpers":3,"agentkeepalive":36,"q":89,"superagent":132}],15:[function(require,module,exports){
|
|
3487
3495
|
/*************************************************************************
|
|
3488
3496
|
*
|
|
3489
3497
|
* COMPRO CONFIDENTIAL
|
|
@@ -3827,7 +3835,7 @@ function getUserLastAttemptForActivity(options) {
|
|
|
3827
3835
|
return dfd.promise;
|
|
3828
3836
|
}
|
|
3829
3837
|
|
|
3830
|
-
},{"../../helpers":3,"q":
|
|
3838
|
+
},{"../../helpers":3,"q":89,"superagent":132}],16:[function(require,module,exports){
|
|
3831
3839
|
/*************************************************************************
|
|
3832
3840
|
*
|
|
3833
3841
|
* COMPRO CONFIDENTIAL
|
|
@@ -3899,6 +3907,7 @@ function auth() {
|
|
|
3899
3907
|
createClass: createClass.bind(this),
|
|
3900
3908
|
updateClass: updateClass.bind(this),
|
|
3901
3909
|
createMultipleClasses: createMultipleClasses.bind(this),
|
|
3910
|
+
cloneClass: cloneClass.bind(this),
|
|
3902
3911
|
getAllClasses: getAllClasses.bind(this),
|
|
3903
3912
|
getParticularClass: getParticularClass.bind(this),
|
|
3904
3913
|
getParticularShadowClass: getParticularShadowClass.bind(this),
|
|
@@ -4607,15 +4616,21 @@ function getJob(options) {
|
|
|
4607
4616
|
return dfd.promise;
|
|
4608
4617
|
}
|
|
4609
4618
|
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
//
|
|
4618
|
-
//
|
|
4619
|
+
|
|
4620
|
+
/**
|
|
4621
|
+
* @param {*} options {
|
|
4622
|
+
* search: 'search string', // Optional
|
|
4623
|
+
* sortField: ['startdate', 'enddate', 'title', 'created', 'tagname_1'] // Optional
|
|
4624
|
+
* // Default: 'created’.
|
|
4625
|
+
* sortOrder: ['desc', 'asc'] // Optional, Default: 'desc’.
|
|
4626
|
+
* cursor: 'cursor' // Optional, cursor to get next set of groups.
|
|
4627
|
+
* limit: integer, // Optional, limit number of Classes in response.
|
|
4628
|
+
* lookup: 'string', // Optional, Exact query search (',' separated key value pairs).
|
|
4629
|
+
* // E.g. key1:val1,key2:val2
|
|
4630
|
+
* lookup-operator: ['OR', 'AND'] // Optional
|
|
4631
|
+
* }
|
|
4632
|
+
* @returns {entities: [{}, {}, ...], count: <integer>, cursor: <string>}
|
|
4633
|
+
*/
|
|
4619
4634
|
function getAllClasses(options) {
|
|
4620
4635
|
var self = this;
|
|
4621
4636
|
|
|
@@ -4624,11 +4639,23 @@ function getAllClasses(options) {
|
|
|
4624
4639
|
|
|
4625
4640
|
//Validations
|
|
4626
4641
|
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
4642
|
+
|
|
4627
4643
|
if(err) {
|
|
4628
4644
|
dfd.reject(err);
|
|
4629
4645
|
} else {
|
|
4630
4646
|
var queryStr = 'orgid:"' + self.orgId + '"';
|
|
4631
4647
|
|
|
4648
|
+
if (options.lookup && options['lookup-operator']) {
|
|
4649
|
+
var lookupString = options.lookup;
|
|
4650
|
+
var lookupArray = lookupString.split(',').map(function (item) {
|
|
4651
|
+
var lookupItem = item.trim();
|
|
4652
|
+
var tempArr = lookupItem.split(':');
|
|
4653
|
+
lookupItem = '(' + tempArr[0] + '.keyword:' + tempArr[1] + ')';
|
|
4654
|
+
return lookupItem;
|
|
4655
|
+
});
|
|
4656
|
+
queryStr += ' AND (' + lookupArray.join(' ' + options['lookup-operator'] + ' ') + ')';
|
|
4657
|
+
}
|
|
4658
|
+
|
|
4632
4659
|
if(options.search) {
|
|
4633
4660
|
queryStr = queryStr + ' AND (title:"' + options.search + '" OR class.instructor.first_name:"' + options.search +
|
|
4634
4661
|
'" OR class.instructor.last_name:"' + options.search + '" OR description:"' + options.search + '")';
|
|
@@ -4636,12 +4663,19 @@ function getAllClasses(options) {
|
|
|
4636
4663
|
|
|
4637
4664
|
var sortField = options.sortField || '';
|
|
4638
4665
|
sortField = sortField.replace(/ext_/ig, '').split(',').shift().trim() || 'created';
|
|
4666
|
+
|
|
4639
4667
|
if(sortField === 'enddate' || sortField === 'startdate') {
|
|
4640
4668
|
sortField = 'class.' + sortField;
|
|
4641
4669
|
}
|
|
4670
|
+
|
|
4642
4671
|
if(sortField === 'title') {
|
|
4643
4672
|
sortField = sortField + '.keyword';
|
|
4644
4673
|
}
|
|
4674
|
+
|
|
4675
|
+
if (sortField === 'tagname_1') {
|
|
4676
|
+
sortField = sortField + '.keyword';
|
|
4677
|
+
}
|
|
4678
|
+
|
|
4645
4679
|
var sortOrder = options.sortOrder || 'desc';
|
|
4646
4680
|
var sortObj = {}, sortArr = [];
|
|
4647
4681
|
sortObj[sortField] = sortOrder;
|
|
@@ -4713,6 +4747,28 @@ function getAllClasses(options) {
|
|
|
4713
4747
|
provision_method: classEntity.class.provision_method,
|
|
4714
4748
|
title: classEntity.title
|
|
4715
4749
|
};
|
|
4750
|
+
|
|
4751
|
+
/**
|
|
4752
|
+
* Add class-tag association specific fields
|
|
4753
|
+
*/
|
|
4754
|
+
if (classEntity.tagid_1) {
|
|
4755
|
+
classObj.tagid_1 = classEntity.tagid_1;
|
|
4756
|
+
classObj.tagname_1 = classEntity.tagname_1;
|
|
4757
|
+
classObj.taglookup_1 = classEntity.taglookup_1;
|
|
4758
|
+
}
|
|
4759
|
+
|
|
4760
|
+
if (classEntity.tagid_2) {
|
|
4761
|
+
classObj.tagid_2 = classEntity.tagid_2;
|
|
4762
|
+
classObj.tagname_2 = classEntity.tagname_2;
|
|
4763
|
+
classObj.taglookup_2 = classEntity.taglookup_2;
|
|
4764
|
+
}
|
|
4765
|
+
|
|
4766
|
+
if (classEntity.tagid_3) {
|
|
4767
|
+
classObj.tagid_3 = classEntity.tagid_3;
|
|
4768
|
+
classObj.tagname_3 = classEntity.tagname_3;
|
|
4769
|
+
classObj.taglookup_3 = classEntity.taglookup_3;
|
|
4770
|
+
}
|
|
4771
|
+
|
|
4716
4772
|
responseObject.entities.push(classObj);
|
|
4717
4773
|
}
|
|
4718
4774
|
dfd.resolve(responseObject);
|
|
@@ -5415,6 +5471,7 @@ function createClass(options) {
|
|
|
5415
5471
|
|
|
5416
5472
|
if(options.description){ params.description = options.description; }
|
|
5417
5473
|
if(options.class_ownership){ params.class_ownership = options.class_ownership; }
|
|
5474
|
+
if(options.ext_data){ params.ext_data = options.ext_data; }
|
|
5418
5475
|
|
|
5419
5476
|
//Setup request with URL and Params
|
|
5420
5477
|
var requestAPI = request.post(url).send(params);
|
|
@@ -6448,8 +6505,60 @@ function deleteItemsFromShowcaseOfAClass(options){
|
|
|
6448
6505
|
}
|
|
6449
6506
|
return dfd.promise;
|
|
6450
6507
|
}
|
|
6508
|
+
|
|
6509
|
+
/**
|
|
6510
|
+
* options = {
|
|
6511
|
+
* classid: 'class id of the class',
|
|
6512
|
+
* title: 'title of clone class',
|
|
6513
|
+
* startdate: 'Epoch(Unix) timestamp in milliseconds',
|
|
6514
|
+
* enddate: 'Epoch(Unix) timestamp in milliseconds',
|
|
6515
|
+
* instructor: 'user who clones the class',
|
|
6516
|
+
* clone_setting: {}, // Optional field
|
|
6517
|
+
* }
|
|
6518
|
+
*/
|
|
6519
|
+
function cloneClass(options) {
|
|
6520
|
+
var self = this;
|
|
6521
|
+
|
|
6522
|
+
//Initializing promise
|
|
6523
|
+
var dfd = q.defer();
|
|
6524
|
+
|
|
6525
|
+
//Validations
|
|
6526
|
+
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
6527
|
+
if(err) {
|
|
6528
|
+
dfd.reject(err);
|
|
6529
|
+
} else {
|
|
6530
|
+
if(options && options.title && options.startdate && options.enddate
|
|
6531
|
+
&& options.instructor && options.classid) {
|
|
6532
|
+
//Passed all validations, Contruct API url
|
|
6533
|
+
var url = self.config.DEFAULT_HOSTS.AUTH + self.config.AUTH_API_URLS.cloneClass;
|
|
6534
|
+
url = helpers.api.constructAPIUrl(url, { orgId: self.orgId, classId: options.classid });
|
|
6535
|
+
|
|
6536
|
+
//Setup request with URL and Params
|
|
6537
|
+
var requestAPI = request.post(url).send(options);
|
|
6538
|
+
if(self.traceid) { requestAPI.set('X-Amzn-Trace-Id', self.traceid); }
|
|
6539
|
+
|
|
6540
|
+
//Setup token in Authorization header
|
|
6541
|
+
requestAPI = helpers.api.setupAPIToken(requestAPI, self.token);
|
|
6542
|
+
|
|
6543
|
+
requestAPI.end(function(err, response) {
|
|
6544
|
+
if(err) {
|
|
6545
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.API_ERROR, err);
|
|
6546
|
+
dfd.reject(err);
|
|
6547
|
+
} else {
|
|
6548
|
+
dfd.resolve(response.body);
|
|
6549
|
+
}
|
|
6550
|
+
});
|
|
6551
|
+
} else {
|
|
6552
|
+
err = {};
|
|
6553
|
+
err.message = err.description = 'title or startdate or enddate or instructor or classid not found in request options.';
|
|
6554
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.SDK_ERROR, err);
|
|
6555
|
+
dfd.reject(err);
|
|
6556
|
+
}
|
|
6557
|
+
}
|
|
6558
|
+
return dfd.promise;
|
|
6559
|
+
}
|
|
6451
6560
|
|
|
6452
|
-
},{"../../helpers":3,"../../helpers/lib/api/converter":4,"agentkeepalive":
|
|
6561
|
+
},{"../../helpers":3,"../../helpers/lib/api/converter":4,"agentkeepalive":36,"q":89,"superagent":132}],17:[function(require,module,exports){
|
|
6453
6562
|
/*************************************************************************
|
|
6454
6563
|
*
|
|
6455
6564
|
* COMPRO CONFIDENTIAL
|
|
@@ -6919,7 +7028,7 @@ function updateConnectionForUser(orgid, token, config, options, action) {
|
|
|
6919
7028
|
return dfd.promise;
|
|
6920
7029
|
}
|
|
6921
7030
|
|
|
6922
|
-
},{"../../helpers":3,"q":
|
|
7031
|
+
},{"../../helpers":3,"q":89,"superagent":132}],18:[function(require,module,exports){
|
|
6923
7032
|
/*************************************************************************
|
|
6924
7033
|
*
|
|
6925
7034
|
* COMPRO CONFIDENTIAL
|
|
@@ -7065,7 +7174,7 @@ function getAllDocumentsInAFolder(options) {
|
|
|
7065
7174
|
return dfd.promise;
|
|
7066
7175
|
}
|
|
7067
7176
|
|
|
7068
|
-
},{"../../helpers":3,"q":
|
|
7177
|
+
},{"../../helpers":3,"q":89,"superagent":132}],19:[function(require,module,exports){
|
|
7069
7178
|
/*************************************************************************
|
|
7070
7179
|
*
|
|
7071
7180
|
* COMPRO CONFIDENTIAL
|
|
@@ -7403,7 +7512,7 @@ function publishCustomEvents(options) {
|
|
|
7403
7512
|
return deferred.promise;
|
|
7404
7513
|
}
|
|
7405
7514
|
|
|
7406
|
-
},{"../../helpers":3,"../../helpers/lib/api/converter":4,"q":
|
|
7515
|
+
},{"../../helpers":3,"../../helpers/lib/api/converter":4,"q":89,"superagent":132}],20:[function(require,module,exports){
|
|
7407
7516
|
/*************************************************************************
|
|
7408
7517
|
*
|
|
7409
7518
|
* COMPRO CONFIDENTIAL
|
|
@@ -7728,7 +7837,7 @@ function resendSingleInvitation(options) {
|
|
|
7728
7837
|
return dfd.promise;
|
|
7729
7838
|
}
|
|
7730
7839
|
|
|
7731
|
-
},{"../../helpers":3,"q":
|
|
7840
|
+
},{"../../helpers":3,"q":89,"superagent":132}],21:[function(require,module,exports){
|
|
7732
7841
|
/*************************************************************************
|
|
7733
7842
|
*
|
|
7734
7843
|
* COMPRO CONFIDENTIAL
|
|
@@ -8189,7 +8298,7 @@ function createStatement(options) {
|
|
|
8189
8298
|
}*/
|
|
8190
8299
|
|
|
8191
8300
|
|
|
8192
|
-
},{"../../helpers":3,"q":
|
|
8301
|
+
},{"../../helpers":3,"q":89,"tincanjs":134}],22:[function(require,module,exports){
|
|
8193
8302
|
/*************************************************************************
|
|
8194
8303
|
*
|
|
8195
8304
|
* COMPRO CONFIDENTIAL
|
|
@@ -8537,7 +8646,7 @@ function getSingleProductFamily(options) {
|
|
|
8537
8646
|
return dfd.promise;
|
|
8538
8647
|
}
|
|
8539
8648
|
|
|
8540
|
-
},{"../../helpers":3,"q":
|
|
8649
|
+
},{"../../helpers":3,"q":89,"superagent":132}],23:[function(require,module,exports){
|
|
8541
8650
|
/*************************************************************************
|
|
8542
8651
|
*
|
|
8543
8652
|
* COMPRO CONFIDENTIAL
|
|
@@ -9137,7 +9246,7 @@ function getAllProductFamilies(options) {
|
|
|
9137
9246
|
return dfd.promise;
|
|
9138
9247
|
}
|
|
9139
9248
|
|
|
9140
|
-
},{"../../helpers":3,"q":
|
|
9249
|
+
},{"../../helpers":3,"q":89,"superagent":132}],24:[function(require,module,exports){
|
|
9141
9250
|
/*************************************************************************
|
|
9142
9251
|
*
|
|
9143
9252
|
* COMPRO CONFIDENTIAL
|
|
@@ -9329,7 +9438,7 @@ function grantByAccountIdOnExtUserId(options) {
|
|
|
9329
9438
|
}
|
|
9330
9439
|
|
|
9331
9440
|
|
|
9332
|
-
},{"../../helpers":3,"./pubnubClientWrapper":25,"q":
|
|
9441
|
+
},{"../../helpers":3,"./pubnubClientWrapper":25,"q":89,"superagent":132}],25:[function(require,module,exports){
|
|
9333
9442
|
var pubNub = require("pubnub");
|
|
9334
9443
|
var EventEmitter = require("events").EventEmitter;
|
|
9335
9444
|
var helpers = require('../../helpers');
|
|
@@ -9542,7 +9651,7 @@ module.exports = function () {
|
|
|
9542
9651
|
|
|
9543
9652
|
}; //End of Client Wrapper module
|
|
9544
9653
|
|
|
9545
|
-
},{"../../helpers":3,"events":
|
|
9654
|
+
},{"../../helpers":3,"events":66,"pubnub":87}],26:[function(require,module,exports){
|
|
9546
9655
|
/*************************************************************************
|
|
9547
9656
|
*
|
|
9548
9657
|
* COMPRO CONFIDENTIAL
|
|
@@ -9731,7 +9840,7 @@ function _setup(orgId, userId) {
|
|
|
9731
9840
|
return dfd.promise;
|
|
9732
9841
|
}
|
|
9733
9842
|
|
|
9734
|
-
},{"../../helpers":3,"events":
|
|
9843
|
+
},{"../../helpers":3,"events":66,"q":89,"socket.io-client":108}],27:[function(require,module,exports){
|
|
9735
9844
|
/*************************************************************************
|
|
9736
9845
|
*
|
|
9737
9846
|
* COMPRO CONFIDENTIAL
|
|
@@ -9846,7 +9955,7 @@ function postSISEvent(options) {
|
|
|
9846
9955
|
return dfd.promise;
|
|
9847
9956
|
}
|
|
9848
9957
|
|
|
9849
|
-
},{"../../helpers":3,"q":
|
|
9958
|
+
},{"../../helpers":3,"q":89,"superagent":132,"underscore":136}],28:[function(require,module,exports){
|
|
9850
9959
|
/*************************************************************************
|
|
9851
9960
|
*
|
|
9852
9961
|
* COMPRO CONFIDENTIAL
|
|
@@ -10883,7 +10992,7 @@ function updateInstituteTitle(options){
|
|
|
10883
10992
|
return dfd.promise;
|
|
10884
10993
|
}
|
|
10885
10994
|
|
|
10886
|
-
},{"../../helpers":3,"q":
|
|
10995
|
+
},{"../../helpers":3,"q":89,"superagent":132}],29:[function(require,module,exports){
|
|
10887
10996
|
/*************************************************************************
|
|
10888
10997
|
*
|
|
10889
10998
|
* COMPRO CONFIDENTIAL
|
|
@@ -11060,7 +11169,419 @@ function provisionSpacesToSuperAdmin(options) {
|
|
|
11060
11169
|
return dfd.promise;
|
|
11061
11170
|
}
|
|
11062
11171
|
|
|
11063
|
-
},{"../../helpers":3,"q":
|
|
11172
|
+
},{"../../helpers":3,"q":89,"superagent":132}],30:[function(require,module,exports){
|
|
11173
|
+
/*************************************************************************
|
|
11174
|
+
*
|
|
11175
|
+
* COMPRO CONFIDENTIAL
|
|
11176
|
+
* __________________
|
|
11177
|
+
*
|
|
11178
|
+
* [2015] - [2020] Compro Technologies Private Limited
|
|
11179
|
+
* All Rights Reserved.
|
|
11180
|
+
*
|
|
11181
|
+
* NOTICE: All information contained herein is, and remains
|
|
11182
|
+
* the property of Compro Technologies Private Limited. The
|
|
11183
|
+
* intellectual and technical concepts contained herein are
|
|
11184
|
+
* proprietary to Compro Technologies Private Limited and may
|
|
11185
|
+
* be covered by U.S. and Foreign Patents, patents in process,
|
|
11186
|
+
* and are protected by trade secret or copyright law.
|
|
11187
|
+
*
|
|
11188
|
+
* Dissemination of this information or reproduction of this material
|
|
11189
|
+
* is strictly forbidden unless prior written permission is obtained
|
|
11190
|
+
* from Compro Technologies Pvt. Ltd..
|
|
11191
|
+
***************************************************************************/
|
|
11192
|
+
|
|
11193
|
+
/***********************************************************
|
|
11194
|
+
* comproDLS SDK AUTH API Adaptor
|
|
11195
|
+
* Functions for calling AUTH API.
|
|
11196
|
+
************************************************************/
|
|
11197
|
+
|
|
11198
|
+
var q = require('q');
|
|
11199
|
+
var request = require('superagent');
|
|
11200
|
+
var helpers = require('../../helpers');
|
|
11201
|
+
|
|
11202
|
+
var DLSError = helpers.errors.DLSError;
|
|
11203
|
+
|
|
11204
|
+
/*********************************
|
|
11205
|
+
* Setting Up Module Entry Point
|
|
11206
|
+
**********************************/
|
|
11207
|
+
module.exports = taxonomy;
|
|
11208
|
+
//Taxonomy Adaptor Contsructor
|
|
11209
|
+
function taxonomy() {
|
|
11210
|
+
return {
|
|
11211
|
+
associateTagsWithEntity: associateTagsWithEntity.bind(this),
|
|
11212
|
+
createTags: createTags.bind(this),
|
|
11213
|
+
updateTags: updateTags.bind(this),
|
|
11214
|
+
deleteTags: deleteTags.bind(this),
|
|
11215
|
+
getTag: getTag.bind(this),
|
|
11216
|
+
getTagHierarchy: getTagHierarchy.bind(this),
|
|
11217
|
+
getAllTags: getAllTags.bind(this)
|
|
11218
|
+
};
|
|
11219
|
+
}
|
|
11220
|
+
|
|
11221
|
+
/*********************************
|
|
11222
|
+
* Public Function definitions
|
|
11223
|
+
**********************************/
|
|
11224
|
+
|
|
11225
|
+
/**
|
|
11226
|
+
* options = {
|
|
11227
|
+
* entity_type: 'type of entity',
|
|
11228
|
+
* entity_id: 'id of the entity',
|
|
11229
|
+
* tags: 'array of tags for association with entity'
|
|
11230
|
+
*/
|
|
11231
|
+
function associateTagsWithEntity(options) {
|
|
11232
|
+
var self = this;
|
|
11233
|
+
|
|
11234
|
+
//Initializing promise
|
|
11235
|
+
var dfd = q.defer();
|
|
11236
|
+
|
|
11237
|
+
//Validations
|
|
11238
|
+
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
11239
|
+
if (err) {
|
|
11240
|
+
dfd.reject(err);
|
|
11241
|
+
} else {
|
|
11242
|
+
if (options && options.entity_type && options.entity_id && options.tags) {
|
|
11243
|
+
//Passed all validations, Contruct API url
|
|
11244
|
+
var url = self.config.DEFAULT_HOSTS.AUTH +
|
|
11245
|
+
self.config.TAXONOMY_API_URLS.associateTagsWithEntity;
|
|
11246
|
+
url = helpers.api.constructAPIUrl(url, { orgId: self.orgId });
|
|
11247
|
+
|
|
11248
|
+
//Setup request with URL and Params
|
|
11249
|
+
var requestAPI = request.put(url).send(options);
|
|
11250
|
+
|
|
11251
|
+
if (self.traceid) {
|
|
11252
|
+
requestAPI.set('X-Amzn-Trace-Id', self.traceid);
|
|
11253
|
+
}
|
|
11254
|
+
|
|
11255
|
+
//Setup token in Authorization header
|
|
11256
|
+
requestAPI = helpers.api.setupAPIToken(requestAPI, self.token);
|
|
11257
|
+
|
|
11258
|
+
requestAPI.end(function(err, response) {
|
|
11259
|
+
if (err) {
|
|
11260
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.API_ERROR, err);
|
|
11261
|
+
dfd.reject(err);
|
|
11262
|
+
} else {
|
|
11263
|
+
dfd.resolve(response.body);
|
|
11264
|
+
}
|
|
11265
|
+
});
|
|
11266
|
+
} else {
|
|
11267
|
+
err = {};
|
|
11268
|
+
err.message = err.description = 'entity_id or entity_type or tags not found in request options.';
|
|
11269
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.SDK_ERROR, err);
|
|
11270
|
+
dfd.reject(err);
|
|
11271
|
+
}
|
|
11272
|
+
}
|
|
11273
|
+
|
|
11274
|
+
return dfd.promise;
|
|
11275
|
+
}
|
|
11276
|
+
|
|
11277
|
+
|
|
11278
|
+
/*
|
|
11279
|
+
options = {
|
|
11280
|
+
context: "string", //mandatory
|
|
11281
|
+
taxonomyid: "string", //mandatory
|
|
11282
|
+
body: {
|
|
11283
|
+
tags: [{
|
|
11284
|
+
"tagid": "",
|
|
11285
|
+
"tagname": "",
|
|
11286
|
+
"tag_data": {} // optional
|
|
11287
|
+
}]
|
|
11288
|
+
}
|
|
11289
|
+
}
|
|
11290
|
+
*/
|
|
11291
|
+
function createTags(options) {
|
|
11292
|
+
var self = this;
|
|
11293
|
+
// Initializing promise
|
|
11294
|
+
var dfd = q.defer();
|
|
11295
|
+
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
11296
|
+
if(err) { dfd.reject(err); }
|
|
11297
|
+
else {
|
|
11298
|
+
if(options && options.context && options.taxonomyid && options.body && options.body.tags && (options.body.tags.length > 0)) {
|
|
11299
|
+
// Passed all validations, Contruct API url
|
|
11300
|
+
var url = self.config.DEFAULT_HOSTS.AUTH + self.config.TAXONOMY_API_URLS.tags;
|
|
11301
|
+
url = helpers.api.constructAPIUrl(url,{ orgId: self.orgId, context: options.context, taxonomyId: options.taxonomyid });
|
|
11302
|
+
|
|
11303
|
+
var requestAPI = request.post(url)
|
|
11304
|
+
.set('Content-Type', 'application/json')
|
|
11305
|
+
.set('Accept', 'application/json')
|
|
11306
|
+
.send(options.body);
|
|
11307
|
+
if(self.traceid) { requestAPI.set('X-Amzn-Trace-Id', self.traceid); }
|
|
11308
|
+
//Setup token in Authorization header
|
|
11309
|
+
requestAPI = helpers.api.setupAPIToken(requestAPI, self.token);
|
|
11310
|
+
|
|
11311
|
+
requestAPI.end(function(error, response) {
|
|
11312
|
+
if(error) {
|
|
11313
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.API_ERROR, error);
|
|
11314
|
+
dfd.reject(err);
|
|
11315
|
+
}
|
|
11316
|
+
else { dfd.resolve(response.body); }
|
|
11317
|
+
});
|
|
11318
|
+
} else {
|
|
11319
|
+
err = {};
|
|
11320
|
+
err.message = err.description = 'Mandatory param - context or taxonomyid or body.tags(min. 1 tag) ' +
|
|
11321
|
+
'not found in request options.';
|
|
11322
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.SDK_ERROR, err);
|
|
11323
|
+
dfd.reject(err);
|
|
11324
|
+
}
|
|
11325
|
+
}
|
|
11326
|
+
return dfd.promise;
|
|
11327
|
+
}
|
|
11328
|
+
|
|
11329
|
+
/* options = {
|
|
11330
|
+
"context": "string", //mandatory
|
|
11331
|
+
"taxonomyid": "string" //mandatory
|
|
11332
|
+
"body": {
|
|
11333
|
+
"tagid": "string", //mandatory
|
|
11334
|
+
"tagname": "string",
|
|
11335
|
+
"tag_data": {}
|
|
11336
|
+
}
|
|
11337
|
+
};
|
|
11338
|
+
*/
|
|
11339
|
+
function updateTags(options) {
|
|
11340
|
+
var self = this;
|
|
11341
|
+
// Initializing promise
|
|
11342
|
+
var dfd = q.defer();
|
|
11343
|
+
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
11344
|
+
if(err) { dfd.reject(err); }
|
|
11345
|
+
else {
|
|
11346
|
+
if(options && options.context && options.taxonomyid && options.body && options.body.tagid) {
|
|
11347
|
+
|
|
11348
|
+
// Passed all validations, Contruct API url
|
|
11349
|
+
var url = self.config.DEFAULT_HOSTS.AUTH + self.config.TAXONOMY_API_URLS.tags;
|
|
11350
|
+
url = helpers.api.constructAPIUrl(url,{ orgId: self.orgId, context: options.context, taxonomyId: options.taxonomyid });
|
|
11351
|
+
|
|
11352
|
+
// Setup request with URL and Params
|
|
11353
|
+
var requestAPI = request.put(url)
|
|
11354
|
+
.set('Content-Type', 'application/json')
|
|
11355
|
+
.set('Accept', 'application/json')
|
|
11356
|
+
.send(options.body);
|
|
11357
|
+
if(self.traceid) { requestAPI.set('X-Amzn-Trace-Id', self.traceid); }
|
|
11358
|
+
|
|
11359
|
+
//Setup token in Authorization header
|
|
11360
|
+
requestAPI = helpers.api.setupAPIToken(requestAPI, self.token);
|
|
11361
|
+
|
|
11362
|
+
requestAPI.end(function (error, response) {
|
|
11363
|
+
if(error) {
|
|
11364
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.API_ERROR, error);
|
|
11365
|
+
dfd.reject(err);
|
|
11366
|
+
}
|
|
11367
|
+
else { dfd.resolve(response.body); }
|
|
11368
|
+
});
|
|
11369
|
+
}
|
|
11370
|
+
else {
|
|
11371
|
+
err = {};
|
|
11372
|
+
err.message = err.description = 'Mandatory params - context or taxonomyid or tagid not found in ' +
|
|
11373
|
+
'request options.';
|
|
11374
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.SDK_ERROR, err);
|
|
11375
|
+
dfd.reject(err);
|
|
11376
|
+
}
|
|
11377
|
+
}
|
|
11378
|
+
return dfd.promise;
|
|
11379
|
+
}
|
|
11380
|
+
|
|
11381
|
+
/* options = {
|
|
11382
|
+
"context": "string", // required
|
|
11383
|
+
"taxonomyid" : "string", // required
|
|
11384
|
+
"tagid" : "string"
|
|
11385
|
+
};
|
|
11386
|
+
*/
|
|
11387
|
+
function deleteTags(options) {
|
|
11388
|
+
var self = this;
|
|
11389
|
+
// Initializing promise
|
|
11390
|
+
var dfd = q.defer();
|
|
11391
|
+
|
|
11392
|
+
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
11393
|
+
if(err) { dfd.reject(err); }
|
|
11394
|
+
else {
|
|
11395
|
+
if (options && options.context && options.taxonomyid) {
|
|
11396
|
+
// Passed all validations, Contruct API url
|
|
11397
|
+
var url = self.config.DEFAULT_HOSTS.AUTH + self.config.TAXONOMY_API_URLS.tags;
|
|
11398
|
+
url = helpers.api.constructAPIUrl(url, { orgId: self.orgId, context: options.context, taxonomyId: options.taxonomyid });
|
|
11399
|
+
|
|
11400
|
+
var queryParam = {};
|
|
11401
|
+
if(options.tagid) { queryParam.tagid = options.tagid; }
|
|
11402
|
+
|
|
11403
|
+
// Setup request with URL and Params
|
|
11404
|
+
var requestAPI = request.delete(url).query(queryParam);
|
|
11405
|
+
|
|
11406
|
+
//Setup token in Authorization header
|
|
11407
|
+
requestAPI = helpers.api.setupAPIToken(requestAPI, self.token);
|
|
11408
|
+
if(self.traceid) { requestAPI.set('X-Amzn-Trace-Id', self.traceid); }
|
|
11409
|
+
|
|
11410
|
+
requestAPI.end(function (error, response) {
|
|
11411
|
+
if (error) {
|
|
11412
|
+
err = {};
|
|
11413
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.API_ERROR, error);
|
|
11414
|
+
dfd.reject(err);
|
|
11415
|
+
}
|
|
11416
|
+
else {
|
|
11417
|
+
dfd.resolve(response.body);
|
|
11418
|
+
}
|
|
11419
|
+
});
|
|
11420
|
+
}
|
|
11421
|
+
else {
|
|
11422
|
+
err = {};
|
|
11423
|
+
err.message = err.description = 'context or taxonomyid or tagid not found in request options.';
|
|
11424
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.SDK_ERROR, err);
|
|
11425
|
+
dfd.reject(err);
|
|
11426
|
+
}
|
|
11427
|
+
}
|
|
11428
|
+
return dfd.promise;
|
|
11429
|
+
}
|
|
11430
|
+
|
|
11431
|
+
/*
|
|
11432
|
+
options = {
|
|
11433
|
+
context: "string", //mandatory
|
|
11434
|
+
taxonomyid: "string", //mandatory
|
|
11435
|
+
tagid: "string" //mandatory
|
|
11436
|
+
}
|
|
11437
|
+
*/
|
|
11438
|
+
function getTag(options) {
|
|
11439
|
+
var self = this;
|
|
11440
|
+
// Initializing promise
|
|
11441
|
+
var dfd = q.defer();
|
|
11442
|
+
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
11443
|
+
if(err) { dfd.reject(err); }
|
|
11444
|
+
// Validations
|
|
11445
|
+
else {
|
|
11446
|
+
if(options && options.context && options.taxonomyid && options.tagid) {
|
|
11447
|
+
// Passed all validations, Contruct API url
|
|
11448
|
+
var url = self.config.DEFAULT_HOSTS.AUTH + self.config.TAXONOMY_API_URLS.tags;
|
|
11449
|
+
url = helpers.api.constructAPIUrl(url, { orgId: self.orgId, context: options.context, taxonomyId: options.taxonomyid });
|
|
11450
|
+
|
|
11451
|
+
// Setup request with URL and Params
|
|
11452
|
+
var queryParam = {
|
|
11453
|
+
hierarchy: false,
|
|
11454
|
+
tagid: options.tagid
|
|
11455
|
+
};
|
|
11456
|
+
|
|
11457
|
+
var requestAPI = request.get(url)
|
|
11458
|
+
.set('Content-Type', 'application/json')
|
|
11459
|
+
.set('Accept', 'application/json')
|
|
11460
|
+
.query(queryParam);
|
|
11461
|
+
if(self.traceid) { requestAPI.set('X-Amzn-Trace-Id', self.traceid); }
|
|
11462
|
+
|
|
11463
|
+
//Setup token in Authorization header
|
|
11464
|
+
requestAPI = helpers.api.setupAPIToken(requestAPI, self.token);
|
|
11465
|
+
|
|
11466
|
+
requestAPI.end(function(error, response) {
|
|
11467
|
+
if(error) {
|
|
11468
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.API_ERROR, error);
|
|
11469
|
+
dfd.reject(err);
|
|
11470
|
+
}
|
|
11471
|
+
else { dfd.resolve(response.body); }
|
|
11472
|
+
});
|
|
11473
|
+
} else {
|
|
11474
|
+
err = {};
|
|
11475
|
+
err.message = err.description = 'Mandatory param - context or taxonomyid or tagid not found in request options.';
|
|
11476
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.SDK_ERROR, err);
|
|
11477
|
+
dfd.reject(err);
|
|
11478
|
+
}
|
|
11479
|
+
}
|
|
11480
|
+
return dfd.promise;
|
|
11481
|
+
}
|
|
11482
|
+
|
|
11483
|
+
/*
|
|
11484
|
+
options = {
|
|
11485
|
+
context: "string", //mandatory
|
|
11486
|
+
taxonomyid: "string", //mandatory
|
|
11487
|
+
tagid: "string" //mandatory
|
|
11488
|
+
}
|
|
11489
|
+
*/
|
|
11490
|
+
function getTagHierarchy(options) {
|
|
11491
|
+
var self = this;
|
|
11492
|
+
// Initializing promise
|
|
11493
|
+
var dfd = q.defer();
|
|
11494
|
+
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
11495
|
+
if(err) { dfd.reject(err); }
|
|
11496
|
+
// Validations
|
|
11497
|
+
else {
|
|
11498
|
+
if(options && options.context && options.taxonomyid && options.tagid) {
|
|
11499
|
+
// Passed all validations, Contruct API url
|
|
11500
|
+
var url = self.config.DEFAULT_HOSTS.AUTH + self.config.TAXONOMY_API_URLS.tags;
|
|
11501
|
+
url = helpers.api.constructAPIUrl(url, { orgId: self.orgId, context: options.context, taxonomyId: options.taxonomyid });
|
|
11502
|
+
|
|
11503
|
+
// Setup request with URL and Params
|
|
11504
|
+
var queryParam = {
|
|
11505
|
+
hierarchy: true,
|
|
11506
|
+
tagid: options.tagid
|
|
11507
|
+
};
|
|
11508
|
+
|
|
11509
|
+
var requestAPI = request.get(url)
|
|
11510
|
+
.set('Content-Type', 'application/json')
|
|
11511
|
+
.set('Accept', 'application/json')
|
|
11512
|
+
.query(queryParam);
|
|
11513
|
+
if(self.traceid) { requestAPI.set('X-Amzn-Trace-Id', self.traceid); }
|
|
11514
|
+
|
|
11515
|
+
//Setup token in Authorization header
|
|
11516
|
+
requestAPI = helpers.api.setupAPIToken(requestAPI, self.token);
|
|
11517
|
+
|
|
11518
|
+
requestAPI.end(function(error, response) {
|
|
11519
|
+
if(error) {
|
|
11520
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.API_ERROR, error);
|
|
11521
|
+
dfd.reject(err);
|
|
11522
|
+
}
|
|
11523
|
+
else { dfd.resolve(response.body); }
|
|
11524
|
+
});
|
|
11525
|
+
} else {
|
|
11526
|
+
err = {};
|
|
11527
|
+
err.message = err.description = 'Mandatory param - context or taxonomyid or tagid not found in request options.';
|
|
11528
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.SDK_ERROR, err);
|
|
11529
|
+
dfd.reject(err);
|
|
11530
|
+
}
|
|
11531
|
+
}
|
|
11532
|
+
return dfd.promise;
|
|
11533
|
+
}
|
|
11534
|
+
|
|
11535
|
+
/*
|
|
11536
|
+
options = {
|
|
11537
|
+
context: "string", //mandatory
|
|
11538
|
+
taxonomyid: "string" //mandatory
|
|
11539
|
+
}
|
|
11540
|
+
*/
|
|
11541
|
+
function getAllTags(options) {
|
|
11542
|
+
var self = this;
|
|
11543
|
+
// Initializing promise
|
|
11544
|
+
var dfd = q.defer();
|
|
11545
|
+
var err = helpers.validations.isAuthenticated(self.orgId, self.token);
|
|
11546
|
+
if(err) { dfd.reject(err); }
|
|
11547
|
+
// Validations
|
|
11548
|
+
else {
|
|
11549
|
+
if(options && options.context && options.taxonomyid) {
|
|
11550
|
+
// Passed all validations, Contruct API url
|
|
11551
|
+
var url = self.config.DEFAULT_HOSTS.AUTH + self.config.TAXONOMY_API_URLS.tags;
|
|
11552
|
+
url = helpers.api.constructAPIUrl(url, { orgId: self.orgId, context: options.context, taxonomyId: options.taxonomyid });
|
|
11553
|
+
|
|
11554
|
+
// Setup request with URL and Params
|
|
11555
|
+
var queryParam = {
|
|
11556
|
+
hierarchy: true
|
|
11557
|
+
};
|
|
11558
|
+
|
|
11559
|
+
var requestAPI = request.get(url)
|
|
11560
|
+
.set('Content-Type', 'application/json')
|
|
11561
|
+
.set('Accept', 'application/json')
|
|
11562
|
+
.query(queryParam);
|
|
11563
|
+
if(self.traceid) { requestAPI.set('X-Amzn-Trace-Id', self.traceid); }
|
|
11564
|
+
|
|
11565
|
+
//Setup token in Authorization header
|
|
11566
|
+
requestAPI = helpers.api.setupAPIToken(requestAPI, self.token);
|
|
11567
|
+
|
|
11568
|
+
requestAPI.end(function(error, response) {
|
|
11569
|
+
if(error) {
|
|
11570
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.API_ERROR, error);
|
|
11571
|
+
dfd.reject(err);
|
|
11572
|
+
}
|
|
11573
|
+
else { dfd.resolve(response.body); }
|
|
11574
|
+
});
|
|
11575
|
+
} else {
|
|
11576
|
+
err = {};
|
|
11577
|
+
err.message = err.description = 'Mandatory param - context or taxonomyid not found in request options.';
|
|
11578
|
+
err = new DLSError(helpers.errors.ERROR_TYPES.SDK_ERROR, err);
|
|
11579
|
+
dfd.reject(err);
|
|
11580
|
+
}
|
|
11581
|
+
}
|
|
11582
|
+
return dfd.promise;
|
|
11583
|
+
}
|
|
11584
|
+
},{"../../helpers":3,"q":89,"superagent":132}],31:[function(require,module,exports){
|
|
11064
11585
|
/*************************************************************************
|
|
11065
11586
|
*
|
|
11066
11587
|
* COMPRO CONFIDENTIAL
|
|
@@ -11526,7 +12047,7 @@ function updateWorkflowRequest(options) {
|
|
|
11526
12047
|
}
|
|
11527
12048
|
return dfd.promise;
|
|
11528
12049
|
}
|
|
11529
|
-
},{"./../../helpers":3,"q":
|
|
12050
|
+
},{"./../../helpers":3,"q":89,"superagent":132}],32:[function(require,module,exports){
|
|
11530
12051
|
/*************************************************************************
|
|
11531
12052
|
*
|
|
11532
12053
|
* COMPRO CONFIDENTIAL
|
|
@@ -11803,7 +12324,7 @@ function resetUserProductProgress(options) {
|
|
|
11803
12324
|
return dfd.promise;
|
|
11804
12325
|
}
|
|
11805
12326
|
|
|
11806
|
-
},{"../../helpers":3,"q":
|
|
12327
|
+
},{"../../helpers":3,"q":89,"superagent":132}],33:[function(require,module,exports){
|
|
11807
12328
|
/*************************************************************************
|
|
11808
12329
|
*
|
|
11809
12330
|
* COMPRO CONFIDENTIAL
|
|
@@ -11919,7 +12440,7 @@ function authWithToken(organizationId, token, options) {
|
|
|
11919
12440
|
return dfd.promise;
|
|
11920
12441
|
};
|
|
11921
12442
|
|
|
11922
|
-
},{"../helpers":3,"./validations":
|
|
12443
|
+
},{"../helpers":3,"./validations":34,"q":89,"superagent":132}],34:[function(require,module,exports){
|
|
11923
12444
|
/*************************************************************************
|
|
11924
12445
|
*
|
|
11925
12446
|
* COMPRO CONFIDENTIAL
|
|
@@ -12009,7 +12530,7 @@ function validateAuthWithExtUser(organizationId, options) {
|
|
|
12009
12530
|
};
|
|
12010
12531
|
|
|
12011
12532
|
|
|
12012
|
-
},{"../helpers":3}],
|
|
12533
|
+
},{"../helpers":3}],35:[function(require,module,exports){
|
|
12013
12534
|
module.exports = after
|
|
12014
12535
|
|
|
12015
12536
|
function after(count, callback, err_cb) {
|
|
@@ -12039,14 +12560,14 @@ function after(count, callback, err_cb) {
|
|
|
12039
12560
|
|
|
12040
12561
|
function noop() {}
|
|
12041
12562
|
|
|
12042
|
-
},{}],
|
|
12563
|
+
},{}],36:[function(require,module,exports){
|
|
12043
12564
|
module.exports = noop;
|
|
12044
12565
|
module.exports.HttpsAgent = noop;
|
|
12045
12566
|
|
|
12046
12567
|
// Noop function for browser since native api's don't use agents.
|
|
12047
12568
|
function noop () {}
|
|
12048
12569
|
|
|
12049
|
-
},{}],
|
|
12570
|
+
},{}],37:[function(require,module,exports){
|
|
12050
12571
|
/**
|
|
12051
12572
|
* An abstraction for slicing an arraybuffer even when
|
|
12052
12573
|
* ArrayBuffer.prototype.slice is not supported
|
|
@@ -12077,7 +12598,7 @@ module.exports = function(arraybuffer, start, end) {
|
|
|
12077
12598
|
return result.buffer;
|
|
12078
12599
|
};
|
|
12079
12600
|
|
|
12080
|
-
},{}],
|
|
12601
|
+
},{}],38:[function(require,module,exports){
|
|
12081
12602
|
|
|
12082
12603
|
/**
|
|
12083
12604
|
* Expose `Backoff`.
|
|
@@ -12164,7 +12685,7 @@ Backoff.prototype.setJitter = function(jitter){
|
|
|
12164
12685
|
};
|
|
12165
12686
|
|
|
12166
12687
|
|
|
12167
|
-
},{}],
|
|
12688
|
+
},{}],39:[function(require,module,exports){
|
|
12168
12689
|
/*
|
|
12169
12690
|
* base64-arraybuffer
|
|
12170
12691
|
* https://github.com/niklasvh/base64-arraybuffer
|
|
@@ -12225,7 +12746,7 @@ Backoff.prototype.setJitter = function(jitter){
|
|
|
12225
12746
|
};
|
|
12226
12747
|
})("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
|
|
12227
12748
|
|
|
12228
|
-
},{}],
|
|
12749
|
+
},{}],40:[function(require,module,exports){
|
|
12229
12750
|
var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
|
|
12230
12751
|
|
|
12231
12752
|
;(function (exports) {
|
|
@@ -12351,7 +12872,7 @@ var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
|
|
|
12351
12872
|
exports.fromByteArray = uint8ToBase64
|
|
12352
12873
|
}(typeof exports === 'undefined' ? (this.base64js = {}) : exports))
|
|
12353
12874
|
|
|
12354
|
-
},{}],
|
|
12875
|
+
},{}],41:[function(require,module,exports){
|
|
12355
12876
|
(function (global){
|
|
12356
12877
|
/**
|
|
12357
12878
|
* Create a blob builder even when vendor prefixes exist
|
|
@@ -12451,9 +12972,9 @@ module.exports = (function() {
|
|
|
12451
12972
|
})();
|
|
12452
12973
|
|
|
12453
12974
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
12454
|
-
},{}],41:[function(require,module,exports){
|
|
12455
|
-
|
|
12456
12975
|
},{}],42:[function(require,module,exports){
|
|
12976
|
+
|
|
12977
|
+
},{}],43:[function(require,module,exports){
|
|
12457
12978
|
(function (global){
|
|
12458
12979
|
/*!
|
|
12459
12980
|
* The buffer module from node.js, for the browser.
|
|
@@ -14005,7 +14526,7 @@ function blitBuffer (src, dst, offset, length) {
|
|
|
14005
14526
|
}
|
|
14006
14527
|
|
|
14007
14528
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
14008
|
-
},{"base64-js":
|
|
14529
|
+
},{"base64-js":40,"ieee754":73,"isarray":76}],44:[function(require,module,exports){
|
|
14009
14530
|
module.exports = {
|
|
14010
14531
|
"100": "Continue",
|
|
14011
14532
|
"101": "Switching Protocols",
|
|
@@ -14066,7 +14587,7 @@ module.exports = {
|
|
|
14066
14587
|
"511": "Network Authentication Required"
|
|
14067
14588
|
}
|
|
14068
14589
|
|
|
14069
|
-
},{}],
|
|
14590
|
+
},{}],45:[function(require,module,exports){
|
|
14070
14591
|
/**
|
|
14071
14592
|
* Slice reference.
|
|
14072
14593
|
*/
|
|
@@ -14091,7 +14612,7 @@ module.exports = function(obj, fn){
|
|
|
14091
14612
|
}
|
|
14092
14613
|
};
|
|
14093
14614
|
|
|
14094
|
-
},{}],
|
|
14615
|
+
},{}],46:[function(require,module,exports){
|
|
14095
14616
|
|
|
14096
14617
|
module.exports = function(a, b){
|
|
14097
14618
|
var fn = function(){};
|
|
@@ -14099,7 +14620,7 @@ module.exports = function(a, b){
|
|
|
14099
14620
|
a.prototype = new fn;
|
|
14100
14621
|
a.prototype.constructor = a;
|
|
14101
14622
|
};
|
|
14102
|
-
},{}],
|
|
14623
|
+
},{}],47:[function(require,module,exports){
|
|
14103
14624
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
14104
14625
|
//
|
|
14105
14626
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -14208,11 +14729,11 @@ function objectToString(o) {
|
|
|
14208
14729
|
return Object.prototype.toString.call(o);
|
|
14209
14730
|
}
|
|
14210
14731
|
|
|
14211
|
-
},{"buffer":
|
|
14732
|
+
},{"buffer":43}],48:[function(require,module,exports){
|
|
14212
14733
|
|
|
14213
14734
|
module.exports = require('./lib/');
|
|
14214
14735
|
|
|
14215
|
-
},{"./lib/":
|
|
14736
|
+
},{"./lib/":49}],49:[function(require,module,exports){
|
|
14216
14737
|
|
|
14217
14738
|
module.exports = require('./socket');
|
|
14218
14739
|
|
|
@@ -14224,7 +14745,7 @@ module.exports = require('./socket');
|
|
|
14224
14745
|
*/
|
|
14225
14746
|
module.exports.parser = require('engine.io-parser');
|
|
14226
14747
|
|
|
14227
|
-
},{"./socket":
|
|
14748
|
+
},{"./socket":50,"engine.io-parser":62}],50:[function(require,module,exports){
|
|
14228
14749
|
(function (global){
|
|
14229
14750
|
/**
|
|
14230
14751
|
* Module dependencies.
|
|
@@ -14956,7 +15477,7 @@ Socket.prototype.filterUpgrades = function (upgrades) {
|
|
|
14956
15477
|
};
|
|
14957
15478
|
|
|
14958
15479
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
14959
|
-
},{"./transport":
|
|
15480
|
+
},{"./transport":51,"./transports":52,"component-emitter":58,"debug":59,"engine.io-parser":62,"indexof":74,"parsejson":82,"parseqs":83,"parseuri":84}],51:[function(require,module,exports){
|
|
14960
15481
|
/**
|
|
14961
15482
|
* Module dependencies.
|
|
14962
15483
|
*/
|
|
@@ -15113,7 +15634,7 @@ Transport.prototype.onClose = function () {
|
|
|
15113
15634
|
this.emit('close');
|
|
15114
15635
|
};
|
|
15115
15636
|
|
|
15116
|
-
},{"component-emitter":
|
|
15637
|
+
},{"component-emitter":58,"engine.io-parser":62}],52:[function(require,module,exports){
|
|
15117
15638
|
(function (global){
|
|
15118
15639
|
/**
|
|
15119
15640
|
* Module dependencies
|
|
@@ -15170,7 +15691,7 @@ function polling(opts){
|
|
|
15170
15691
|
}
|
|
15171
15692
|
|
|
15172
15693
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
15173
|
-
},{"./polling-jsonp":
|
|
15694
|
+
},{"./polling-jsonp":53,"./polling-xhr":54,"./websocket":56,"xmlhttprequest-ssl":57}],53:[function(require,module,exports){
|
|
15174
15695
|
(function (global){
|
|
15175
15696
|
|
|
15176
15697
|
/**
|
|
@@ -15412,7 +15933,7 @@ JSONPPolling.prototype.doWrite = function (data, fn) {
|
|
|
15412
15933
|
};
|
|
15413
15934
|
|
|
15414
15935
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
15415
|
-
},{"./polling":
|
|
15936
|
+
},{"./polling":55,"component-inherit":46}],54:[function(require,module,exports){
|
|
15416
15937
|
(function (global){
|
|
15417
15938
|
/**
|
|
15418
15939
|
* Module requirements.
|
|
@@ -15828,7 +16349,7 @@ function unloadHandler() {
|
|
|
15828
16349
|
}
|
|
15829
16350
|
|
|
15830
16351
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
15831
|
-
},{"./polling":
|
|
16352
|
+
},{"./polling":55,"component-emitter":58,"component-inherit":46,"debug":59,"xmlhttprequest-ssl":57}],55:[function(require,module,exports){
|
|
15832
16353
|
/**
|
|
15833
16354
|
* Module dependencies.
|
|
15834
16355
|
*/
|
|
@@ -16077,7 +16598,7 @@ Polling.prototype.uri = function(){
|
|
|
16077
16598
|
return schema + '://' + (ipv6 ? '[' + this.hostname + ']' : this.hostname) + port + this.path + query;
|
|
16078
16599
|
};
|
|
16079
16600
|
|
|
16080
|
-
},{"../transport":
|
|
16601
|
+
},{"../transport":51,"component-inherit":46,"debug":59,"engine.io-parser":62,"parseqs":83,"xmlhttprequest-ssl":57,"yeast":143}],56:[function(require,module,exports){
|
|
16081
16602
|
(function (global){
|
|
16082
16603
|
/**
|
|
16083
16604
|
* Module dependencies.
|
|
@@ -16369,7 +16890,7 @@ WS.prototype.check = function(){
|
|
|
16369
16890
|
};
|
|
16370
16891
|
|
|
16371
16892
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
16372
|
-
},{"../transport":
|
|
16893
|
+
},{"../transport":51,"component-inherit":46,"debug":59,"engine.io-parser":62,"parseqs":83,"ws":42,"yeast":143}],57:[function(require,module,exports){
|
|
16373
16894
|
// browser shim for xmlhttprequest module
|
|
16374
16895
|
var hasCORS = require('has-cors');
|
|
16375
16896
|
|
|
@@ -16407,7 +16928,7 @@ module.exports = function(opts) {
|
|
|
16407
16928
|
}
|
|
16408
16929
|
}
|
|
16409
16930
|
|
|
16410
|
-
},{"has-cors":
|
|
16931
|
+
},{"has-cors":71}],58:[function(require,module,exports){
|
|
16411
16932
|
|
|
16412
16933
|
/**
|
|
16413
16934
|
* Expose `Emitter`.
|
|
@@ -16573,7 +17094,7 @@ Emitter.prototype.hasListeners = function(event){
|
|
|
16573
17094
|
return !! this.listeners(event).length;
|
|
16574
17095
|
};
|
|
16575
17096
|
|
|
16576
|
-
},{}],
|
|
17097
|
+
},{}],59:[function(require,module,exports){
|
|
16577
17098
|
|
|
16578
17099
|
/**
|
|
16579
17100
|
* This is the web browser implementation of `debug()`.
|
|
@@ -16743,7 +17264,7 @@ function localstorage(){
|
|
|
16743
17264
|
} catch (e) {}
|
|
16744
17265
|
}
|
|
16745
17266
|
|
|
16746
|
-
},{"./debug":
|
|
17267
|
+
},{"./debug":60}],60:[function(require,module,exports){
|
|
16747
17268
|
|
|
16748
17269
|
/**
|
|
16749
17270
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -16942,7 +17463,7 @@ function coerce(val) {
|
|
|
16942
17463
|
return val;
|
|
16943
17464
|
}
|
|
16944
17465
|
|
|
16945
|
-
},{"ms":
|
|
17466
|
+
},{"ms":61}],61:[function(require,module,exports){
|
|
16946
17467
|
/**
|
|
16947
17468
|
* Helpers.
|
|
16948
17469
|
*/
|
|
@@ -17069,7 +17590,7 @@ function plural(ms, n, name) {
|
|
|
17069
17590
|
return Math.ceil(ms / n) + ' ' + name + 's';
|
|
17070
17591
|
}
|
|
17071
17592
|
|
|
17072
|
-
},{}],
|
|
17593
|
+
},{}],62:[function(require,module,exports){
|
|
17073
17594
|
(function (global){
|
|
17074
17595
|
/**
|
|
17075
17596
|
* Module dependencies.
|
|
@@ -17667,7 +18188,7 @@ exports.decodePayloadAsBinary = function (data, binaryType, callback) {
|
|
|
17667
18188
|
};
|
|
17668
18189
|
|
|
17669
18190
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
17670
|
-
},{"./keys":
|
|
18191
|
+
},{"./keys":63,"after":35,"arraybuffer.slice":37,"base64-arraybuffer":39,"blob":41,"has-binary":64,"utf8":138}],63:[function(require,module,exports){
|
|
17671
18192
|
|
|
17672
18193
|
/**
|
|
17673
18194
|
* Gets the keys for an object.
|
|
@@ -17688,7 +18209,7 @@ module.exports = Object.keys || function keys (obj){
|
|
|
17688
18209
|
return arr;
|
|
17689
18210
|
};
|
|
17690
18211
|
|
|
17691
|
-
},{}],
|
|
18212
|
+
},{}],64:[function(require,module,exports){
|
|
17692
18213
|
(function (global){
|
|
17693
18214
|
|
|
17694
18215
|
/*
|
|
@@ -17750,12 +18271,12 @@ function hasBinary(data) {
|
|
|
17750
18271
|
}
|
|
17751
18272
|
|
|
17752
18273
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
17753
|
-
},{"isarray":
|
|
18274
|
+
},{"isarray":65}],65:[function(require,module,exports){
|
|
17754
18275
|
module.exports = Array.isArray || function (arr) {
|
|
17755
18276
|
return Object.prototype.toString.call(arr) == '[object Array]';
|
|
17756
18277
|
};
|
|
17757
18278
|
|
|
17758
|
-
},{}],
|
|
18279
|
+
},{}],66:[function(require,module,exports){
|
|
17759
18280
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
17760
18281
|
//
|
|
17761
18282
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -18058,7 +18579,7 @@ function isUndefined(arg) {
|
|
|
18058
18579
|
return arg === void 0;
|
|
18059
18580
|
}
|
|
18060
18581
|
|
|
18061
|
-
},{}],
|
|
18582
|
+
},{}],67:[function(require,module,exports){
|
|
18062
18583
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
18063
18584
|
var toStr = Object.prototype.toString;
|
|
18064
18585
|
var defineProperty = Object.defineProperty;
|
|
@@ -18179,7 +18700,7 @@ module.exports = function extend() {
|
|
|
18179
18700
|
return target;
|
|
18180
18701
|
};
|
|
18181
18702
|
|
|
18182
|
-
},{}],
|
|
18703
|
+
},{}],68:[function(require,module,exports){
|
|
18183
18704
|
|
|
18184
18705
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
18185
18706
|
var toString = Object.prototype.toString;
|
|
@@ -18203,7 +18724,7 @@ module.exports = function forEach (obj, fn, ctx) {
|
|
|
18203
18724
|
};
|
|
18204
18725
|
|
|
18205
18726
|
|
|
18206
|
-
},{}],
|
|
18727
|
+
},{}],69:[function(require,module,exports){
|
|
18207
18728
|
(function (global){
|
|
18208
18729
|
|
|
18209
18730
|
/*
|
|
@@ -18266,9 +18787,9 @@ function hasBinary(data) {
|
|
|
18266
18787
|
}
|
|
18267
18788
|
|
|
18268
18789
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
18269
|
-
},{"isarray":
|
|
18270
|
-
arguments[4][
|
|
18271
|
-
},{"dup":
|
|
18790
|
+
},{"isarray":70}],70:[function(require,module,exports){
|
|
18791
|
+
arguments[4][65][0].apply(exports,arguments)
|
|
18792
|
+
},{"dup":65}],71:[function(require,module,exports){
|
|
18272
18793
|
|
|
18273
18794
|
/**
|
|
18274
18795
|
* Module exports.
|
|
@@ -18287,7 +18808,7 @@ try {
|
|
|
18287
18808
|
module.exports = false;
|
|
18288
18809
|
}
|
|
18289
18810
|
|
|
18290
|
-
},{}],
|
|
18811
|
+
},{}],72:[function(require,module,exports){
|
|
18291
18812
|
var http = require('http');
|
|
18292
18813
|
|
|
18293
18814
|
var https = module.exports;
|
|
@@ -18303,7 +18824,7 @@ https.request = function (params, cb) {
|
|
|
18303
18824
|
return http.request.call(this, params, cb);
|
|
18304
18825
|
}
|
|
18305
18826
|
|
|
18306
|
-
},{"http":
|
|
18827
|
+
},{"http":126}],73:[function(require,module,exports){
|
|
18307
18828
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
18308
18829
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
18309
18830
|
var e, m
|
|
@@ -18390,7 +18911,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
18390
18911
|
buffer[offset + i - d] |= s * 128
|
|
18391
18912
|
}
|
|
18392
18913
|
|
|
18393
|
-
},{}],
|
|
18914
|
+
},{}],74:[function(require,module,exports){
|
|
18394
18915
|
|
|
18395
18916
|
var indexOf = [].indexOf;
|
|
18396
18917
|
|
|
@@ -18401,7 +18922,7 @@ module.exports = function(arr, obj){
|
|
|
18401
18922
|
}
|
|
18402
18923
|
return -1;
|
|
18403
18924
|
};
|
|
18404
|
-
},{}],
|
|
18925
|
+
},{}],75:[function(require,module,exports){
|
|
18405
18926
|
if (typeof Object.create === 'function') {
|
|
18406
18927
|
// implementation from standard node.js 'util' module
|
|
18407
18928
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -18430,14 +18951,14 @@ if (typeof Object.create === 'function') {
|
|
|
18430
18951
|
}
|
|
18431
18952
|
}
|
|
18432
18953
|
|
|
18433
|
-
},{}],
|
|
18954
|
+
},{}],76:[function(require,module,exports){
|
|
18434
18955
|
var toString = {}.toString;
|
|
18435
18956
|
|
|
18436
18957
|
module.exports = Array.isArray || function (arr) {
|
|
18437
18958
|
return toString.call(arr) == '[object Array]';
|
|
18438
18959
|
};
|
|
18439
18960
|
|
|
18440
|
-
},{}],
|
|
18961
|
+
},{}],77:[function(require,module,exports){
|
|
18441
18962
|
(function (global){
|
|
18442
18963
|
/*! JSON v3.3.2 | http://bestiejs.github.io/json3 | Copyright 2012-2014, Kit Cambridge | http://kit.mit-license.org */
|
|
18443
18964
|
;(function () {
|
|
@@ -19343,7 +19864,7 @@ module.exports = Array.isArray || function (arr) {
|
|
|
19343
19864
|
}).call(this);
|
|
19344
19865
|
|
|
19345
19866
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
19346
|
-
},{}],
|
|
19867
|
+
},{}],78:[function(require,module,exports){
|
|
19347
19868
|
'use strict';
|
|
19348
19869
|
|
|
19349
19870
|
var keysShim;
|
|
@@ -19467,7 +19988,7 @@ if (!Object.keys) {
|
|
|
19467
19988
|
}
|
|
19468
19989
|
module.exports = keysShim;
|
|
19469
19990
|
|
|
19470
|
-
},{"./isArguments":
|
|
19991
|
+
},{"./isArguments":80}],79:[function(require,module,exports){
|
|
19471
19992
|
'use strict';
|
|
19472
19993
|
|
|
19473
19994
|
var slice = Array.prototype.slice;
|
|
@@ -19501,7 +20022,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
19501
20022
|
|
|
19502
20023
|
module.exports = keysShim;
|
|
19503
20024
|
|
|
19504
|
-
},{"./implementation":
|
|
20025
|
+
},{"./implementation":78,"./isArguments":80}],80:[function(require,module,exports){
|
|
19505
20026
|
'use strict';
|
|
19506
20027
|
|
|
19507
20028
|
var toStr = Object.prototype.toString;
|
|
@@ -19520,7 +20041,7 @@ module.exports = function isArguments(value) {
|
|
|
19520
20041
|
return isArgs;
|
|
19521
20042
|
};
|
|
19522
20043
|
|
|
19523
|
-
},{}],
|
|
20044
|
+
},{}],81:[function(require,module,exports){
|
|
19524
20045
|
exports.endianness = function () { return 'LE' };
|
|
19525
20046
|
|
|
19526
20047
|
exports.hostname = function () {
|
|
@@ -19567,7 +20088,7 @@ exports.tmpdir = exports.tmpDir = function () {
|
|
|
19567
20088
|
|
|
19568
20089
|
exports.EOL = '\n';
|
|
19569
20090
|
|
|
19570
|
-
},{}],
|
|
20091
|
+
},{}],82:[function(require,module,exports){
|
|
19571
20092
|
(function (global){
|
|
19572
20093
|
/**
|
|
19573
20094
|
* JSON parse.
|
|
@@ -19602,7 +20123,7 @@ module.exports = function parsejson(data) {
|
|
|
19602
20123
|
}
|
|
19603
20124
|
};
|
|
19604
20125
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
19605
|
-
},{}],
|
|
20126
|
+
},{}],83:[function(require,module,exports){
|
|
19606
20127
|
/**
|
|
19607
20128
|
* Compiles a querystring
|
|
19608
20129
|
* Returns string representation of the object
|
|
@@ -19641,7 +20162,7 @@ exports.decode = function(qs){
|
|
|
19641
20162
|
return qry;
|
|
19642
20163
|
};
|
|
19643
20164
|
|
|
19644
|
-
},{}],
|
|
20165
|
+
},{}],84:[function(require,module,exports){
|
|
19645
20166
|
/**
|
|
19646
20167
|
* Parses an URI
|
|
19647
20168
|
*
|
|
@@ -19682,7 +20203,7 @@ module.exports = function parseuri(str) {
|
|
|
19682
20203
|
return uri;
|
|
19683
20204
|
};
|
|
19684
20205
|
|
|
19685
|
-
},{}],
|
|
20206
|
+
},{}],85:[function(require,module,exports){
|
|
19686
20207
|
(function (process){
|
|
19687
20208
|
'use strict';
|
|
19688
20209
|
|
|
@@ -19731,7 +20252,7 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
|
19731
20252
|
|
|
19732
20253
|
|
|
19733
20254
|
}).call(this,require('_process'))
|
|
19734
|
-
},{"_process":
|
|
20255
|
+
},{"_process":86}],86:[function(require,module,exports){
|
|
19735
20256
|
// shim for using process in browser
|
|
19736
20257
|
var process = module.exports = {};
|
|
19737
20258
|
|
|
@@ -19917,11 +20438,11 @@ process.chdir = function (dir) {
|
|
|
19917
20438
|
};
|
|
19918
20439
|
process.umask = function() { return 0; };
|
|
19919
20440
|
|
|
19920
|
-
},{}],
|
|
20441
|
+
},{}],87:[function(require,module,exports){
|
|
19921
20442
|
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.PubNub=t():e.PubNub=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(e){if(!navigator||!navigator.sendBeacon)return!1;navigator.sendBeacon(e)}Object.defineProperty(t,"__esModule",{value:!0});var u=n(1),c=r(u),l=n(40),h=r(l),f=n(41),p=r(f),d=n(42),y=(n(5),function(e){function t(e){i(this,t);var n=e.listenToBrowserNetworkEvents,r=void 0===n||n;e.db=p.default,e.sdkFamily="Web",e.networking=new h.default({del:d.del,get:d.get,post:d.post,sendBeacon:a});var o=s(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r&&(window.addEventListener("offline",function(){o.networkDownDetected()}),window.addEventListener("online",function(){o.networkUpDetected()})),o}return o(t,e),t}(c.default));t.default=y,e.exports=t.default},function(e,t,n){"use strict";function r(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function i(e){return e&&e.__esModule?e:{default:e}}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(2),u=i(a),c=n(6),l=i(c),h=n(8),f=i(h),p=n(9),d=i(p),y=n(16),g=i(y),b=n(17),v=r(b),_=n(18),m=r(_),k=n(19),P=r(k),O=n(20),T=r(O),S=n(21),w=r(S),C=n(22),M=r(C),E=n(23),x=r(E),N=n(24),R=r(N),A=n(25),D=r(A),K=n(26),j=r(K),G=n(27),U=r(G),I=n(28),H=r(I),B=n(29),L=r(B),q=n(30),F=r(q),z=n(31),X=r(z),W=n(32),J=r(W),V=n(33),$=r(V),Q=n(34),Y=r(Q),Z=n(35),ee=r(Z),te=n(36),ne=r(te),re=n(37),ie=r(re),se=n(38),oe=r(se),ae=n(12),ue=r(ae),ce=n(39),le=r(ce),he=n(13),fe=i(he),pe=n(10),de=i(pe),ye=(n(5),n(3)),ge=i(ye),be=function(){function e(t){var n=this;s(this,e);var r=t.db,i=t.networking,o=this._config=new u.default({setup:t,db:r}),a=new l.default({config:o});i.init(o);var c={config:o,networking:i,crypto:a},h=g.default.bind(this,c,ue),p=g.default.bind(this,c,j),y=g.default.bind(this,c,H),b=g.default.bind(this,c,F),_=g.default.bind(this,c,le),k=this._listenerManager=new d.default,O=new f.default({timeEndpoint:h,leaveEndpoint:p,heartbeatEndpoint:y,setStateEndpoint:b,subscribeEndpoint:_,crypto:c.crypto,config:c.config,listenerManager:k});this.addListener=k.addListener.bind(k),this.removeListener=k.removeListener.bind(k),this.removeAllListeners=k.removeAllListeners.bind(k),this.channelGroups={listGroups:g.default.bind(this,c,T),listChannels:g.default.bind(this,c,w),addChannels:g.default.bind(this,c,v),removeChannels:g.default.bind(this,c,m),deleteGroup:g.default.bind(this,c,P)},this.push={addChannels:g.default.bind(this,c,M),removeChannels:g.default.bind(this,c,x),deleteDevice:g.default.bind(this,c,D),listChannels:g.default.bind(this,c,R)},this.hereNow=g.default.bind(this,c,X),this.whereNow=g.default.bind(this,c,U),this.getState=g.default.bind(this,c,L),this.setState=O.adaptStateChange.bind(O),this.grant=g.default.bind(this,c,$),this.audit=g.default.bind(this,c,J),this.publish=g.default.bind(this,c,Y),this.fire=function(e,t){return e.replicate=!1,e.storeInHistory=!1,n.publish(e,t)},this.history=g.default.bind(this,c,ee),this.deleteMessages=g.default.bind(this,c,ne),this.messageCounts=g.default.bind(this,c,ie),this.fetchMessages=g.default.bind(this,c,oe),this.time=h,this.subscribe=O.adaptSubscribeChange.bind(O),this.presence=O.adaptPresenceChange.bind(O),this.unsubscribe=O.adaptUnsubscribeChange.bind(O),this.disconnect=O.disconnect.bind(O),this.reconnect=O.reconnect.bind(O),this.destroy=function(e){O.unsubscribeAll(e),O.disconnect()},this.stop=this.destroy,this.unsubscribeAll=O.unsubscribeAll.bind(O),this.getSubscribedChannels=O.getSubscribedChannels.bind(O),this.getSubscribedChannelGroups=O.getSubscribedChannelGroups.bind(O),this.encrypt=a.encrypt.bind(a),this.decrypt=a.decrypt.bind(a),this.getAuthKey=c.config.getAuthKey.bind(c.config),this.setAuthKey=c.config.setAuthKey.bind(c.config),this.setCipherKey=c.config.setCipherKey.bind(c.config),this.getUUID=c.config.getUUID.bind(c.config),this.setUUID=c.config.setUUID.bind(c.config),this.getFilterExpression=c.config.getFilterExpression.bind(c.config),this.setFilterExpression=c.config.setFilterExpression.bind(c.config),this.setHeartbeatInterval=c.config.setHeartbeatInterval.bind(c.config),i.hasModule("proxy")&&(this.setProxy=function(e){c.config.setProxy(e),n.reconnect()})}return o(e,[{key:"getVersion",value:function(){return this._config.getVersion()}},{key:"networkDownDetected",value:function(){this._listenerManager.announceNetworkDown(),this._config.restore?this.disconnect():this.destroy(!0)}},{key:"networkUpDetected",value:function(){this._listenerManager.announceNetworkUp(),this.reconnect()}}],[{key:"generateUUID",value:function(){return ge.default.createUUID()}}]),e}();be.OPERATIONS=fe.default,be.CATEGORIES=de.default,t.default=be,e.exports=t.default},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=n(3),o=function(e){return e&&e.__esModule?e:{default:e}}(s),a=(n(5),function(){function e(t){var n=t.setup,i=t.db;r(this,e),this._db=i,this.instanceId="pn-"+o.default.createUUID(),this.secretKey=n.secretKey||n.secret_key,this.subscribeKey=n.subscribeKey||n.subscribe_key,this.publishKey=n.publishKey||n.publish_key,this.sdkName=n.sdkName,this.sdkFamily=n.sdkFamily,this.partnerId=n.partnerId,this.setAuthKey(n.authKey),this.setCipherKey(n.cipherKey),this.setFilterExpression(n.filterExpression),this.origin=n.origin||"ps.pndsn.com",this.secure=n.ssl||!1,this.restore=n.restore||!1,this.proxy=n.proxy,this.keepAlive=n.keepAlive,this.keepAliveSettings=n.keepAliveSettings,this.autoNetworkDetection=n.autoNetworkDetection||!1,this.dedupeOnSubscribe=n.dedupeOnSubscribe||!1,this.maximumCacheSize=n.maximumCacheSize||100,this.customEncrypt=n.customEncrypt,this.customDecrypt=n.customDecrypt,"undefined"!=typeof location&&"https:"===location.protocol&&(this.secure=!0),this.logVerbosity=n.logVerbosity||!1,this.suppressLeaveEvents=n.suppressLeaveEvents||!1,this.announceFailedHeartbeats=n.announceFailedHeartbeats||!0,this.announceSuccessfulHeartbeats=n.announceSuccessfulHeartbeats||!1,this.useInstanceId=n.useInstanceId||!1,this.useRequestId=n.useRequestId||!1,this.requestMessageCountThreshold=n.requestMessageCountThreshold,this.setTransactionTimeout(n.transactionalRequestTimeout||15e3),this.setSubscribeTimeout(n.subscribeRequestTimeout||31e4),this.setSendBeaconConfig(n.useSendBeacon||!0),this.setPresenceTimeout(n.presenceTimeout||300),null!=n.heartbeatInterval&&this.setHeartbeatInterval(n.heartbeatInterval),this.setUUID(this._decideUUID(n.uuid))}return i(e,[{key:"getAuthKey",value:function(){return this.authKey}},{key:"setAuthKey",value:function(e){return this.authKey=e,this}},{key:"setCipherKey",value:function(e){return this.cipherKey=e,this}},{key:"getUUID",value:function(){return this.UUID}},{key:"setUUID",value:function(e){return this._db&&this._db.set&&this._db.set(this.subscribeKey+"uuid",e),this.UUID=e,this}},{key:"getFilterExpression",value:function(){return this.filterExpression}},{key:"setFilterExpression",value:function(e){return this.filterExpression=e,this}},{key:"getPresenceTimeout",value:function(){return this._presenceTimeout}},{key:"setPresenceTimeout",value:function(e){return this._presenceTimeout=e,this.setHeartbeatInterval(this._presenceTimeout/2-1),this}},{key:"setProxy",value:function(e){this.proxy=e}},{key:"getHeartbeatInterval",value:function(){return this._heartbeatInterval}},{key:"setHeartbeatInterval",value:function(e){return this._heartbeatInterval=e,this}},{key:"getSubscribeTimeout",value:function(){return this._subscribeRequestTimeout}},{key:"setSubscribeTimeout",value:function(e){return this._subscribeRequestTimeout=e,this}},{key:"getTransactionTimeout",value:function(){return this._transactionalRequestTimeout}},{key:"setTransactionTimeout",value:function(e){return this._transactionalRequestTimeout=e,this}},{key:"isSendBeaconEnabled",value:function(){return this._useSendBeacon}},{key:"setSendBeaconConfig",value:function(e){return this._useSendBeacon=e,this}},{key:"getVersion",value:function(){return"4.24.2"}},{key:"_decideUUID",value:function(e){return e||(this._db&&this._db.get&&this._db.get(this.subscribeKey+"uuid")?this._db.get(this.subscribeKey+"uuid"):"pn-"+o.default.createUUID())}}]),e}());t.default=a,e.exports=t.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(4),i=function(e){return e&&e.__esModule?e:{default:e}}(r);t.default={createUUID:function(){return i.default.uuid?i.default.uuid():(0,i.default)()}},e.exports=t.default},function(e,t,n){var r,i,s;!function(n,o){i=[t],r=o,void 0!==(s="function"==typeof r?r.apply(t,i):r)&&(e.exports=s)}(0,function(e){function t(){var e,t,n="";for(e=0;e<32;e++)t=16*Math.random()|0,8!==e&&12!==e&&16!==e&&20!==e||(n+="-"),n+=(12===e?4:16===e?3&t|8:t).toString(16);return n}function n(e,t){var n=r[t||"all"];return n&&n.test(e)||!1}var r={3:/^[0-9A-F]{8}-[0-9A-F]{4}-3[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i,4:/^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,5:/^[0-9A-F]{8}-[0-9A-F]{4}-5[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,all:/^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i};t.isUUID=n,t.VERSION="0.1.0",e.uuid=t,e.isUUID=n})},function(e,t){"use strict";e.exports={}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(2),a=(r(o),n(7)),u=r(a),c=function(){function e(t){var n=t.config;i(this,e),this._config=n,this._iv="0123456789012345",this._allowedKeyEncodings=["hex","utf8","base64","binary"],this._allowedKeyLengths=[128,256],this._allowedModes=["ecb","cbc"],this._defaultOptions={encryptKey:!0,keyEncoding:"utf8",keyLength:256,mode:"cbc"}}return s(e,[{key:"HMACSHA256",value:function(e){return u.default.HmacSHA256(e,this._config.secretKey).toString(u.default.enc.Base64)}},{key:"SHA256",value:function(e){return u.default.SHA256(e).toString(u.default.enc.Hex)}},{key:"_parseOptions",value:function(e){var t=e||{};return t.hasOwnProperty("encryptKey")||(t.encryptKey=this._defaultOptions.encryptKey),t.hasOwnProperty("keyEncoding")||(t.keyEncoding=this._defaultOptions.keyEncoding),t.hasOwnProperty("keyLength")||(t.keyLength=this._defaultOptions.keyLength),t.hasOwnProperty("mode")||(t.mode=this._defaultOptions.mode),-1===this._allowedKeyEncodings.indexOf(t.keyEncoding.toLowerCase())&&(t.keyEncoding=this._defaultOptions.keyEncoding),-1===this._allowedKeyLengths.indexOf(parseInt(t.keyLength,10))&&(t.keyLength=this._defaultOptions.keyLength),-1===this._allowedModes.indexOf(t.mode.toLowerCase())&&(t.mode=this._defaultOptions.mode),t}},{key:"_decodeKey",value:function(e,t){return"base64"===t.keyEncoding?u.default.enc.Base64.parse(e):"hex"===t.keyEncoding?u.default.enc.Hex.parse(e):e}},{key:"_getPaddedKey",value:function(e,t){return e=this._decodeKey(e,t),t.encryptKey?u.default.enc.Utf8.parse(this.SHA256(e).slice(0,32)):e}},{key:"_getMode",value:function(e){return"ecb"===e.mode?u.default.mode.ECB:u.default.mode.CBC}},{key:"_getIV",value:function(e){return"cbc"===e.mode?u.default.enc.Utf8.parse(this._iv):null}},{key:"encrypt",value:function(e,t,n){return this._config.customEncrypt?this._config.customEncrypt(e):this.pnEncrypt(e,t,n)}},{key:"decrypt",value:function(e,t,n){return this._config.customDecrypt?this._config.customDecrypt(e):this.pnDecrypt(e,t,n)}},{key:"pnEncrypt",value:function(e,t,n){if(!t&&!this._config.cipherKey)return e;n=this._parseOptions(n);var r=this._getIV(n),i=this._getMode(n),s=this._getPaddedKey(t||this._config.cipherKey,n);return u.default.AES.encrypt(e,s,{iv:r,mode:i}).ciphertext.toString(u.default.enc.Base64)||e}},{key:"pnDecrypt",value:function(e,t,n){if(!t&&!this._config.cipherKey)return e;n=this._parseOptions(n);var r=this._getIV(n),i=this._getMode(n),s=this._getPaddedKey(t||this._config.cipherKey,n);try{var o=u.default.enc.Base64.parse(e),a=u.default.AES.decrypt({ciphertext:o},s,{iv:r,mode:i}).toString(u.default.enc.Utf8);return JSON.parse(a)}catch(e){return null}}}]),e}();t.default=c,e.exports=t.default},function(e,t){"use strict";var n=n||function(e,t){var n={},r=n.lib={},i=function(){},s=r.Base={extend:function(e){i.prototype=this;var t=new i;return e&&t.mixIn(e),t.hasOwnProperty("init")||(t.init=function(){t.$super.init.apply(this,arguments)}),t.init.prototype=t,t.$super=this,t},create:function(){var e=this.extend();return e.init.apply(e,arguments),e},init:function(){},mixIn:function(e){for(var t in e)e.hasOwnProperty(t)&&(this[t]=e[t]);e.hasOwnProperty("toString")&&(this.toString=e.toString)},clone:function(){return this.init.prototype.extend(this)}},o=r.WordArray=s.extend({init:function(e,t){e=this.words=e||[],this.sigBytes=void 0!=t?t:4*e.length},toString:function(e){return(e||u).stringify(this)},concat:function(e){var t=this.words,n=e.words,r=this.sigBytes;if(e=e.sigBytes,this.clamp(),r%4)for(var i=0;i<e;i++)t[r+i>>>2]|=(n[i>>>2]>>>24-i%4*8&255)<<24-(r+i)%4*8;else if(65535<n.length)for(i=0;i<e;i+=4)t[r+i>>>2]=n[i>>>2];else t.push.apply(t,n);return this.sigBytes+=e,this},clamp:function(){var t=this.words,n=this.sigBytes;t[n>>>2]&=4294967295<<32-n%4*8,t.length=e.ceil(n/4)},clone:function(){var e=s.clone.call(this);return e.words=this.words.slice(0),e},random:function(t){for(var n=[],r=0;r<t;r+=4)n.push(4294967296*e.random()|0);return new o.init(n,t)}}),a=n.enc={},u=a.Hex={stringify:function(e){var t=e.words;e=e.sigBytes;for(var n=[],r=0;r<e;r++){var i=t[r>>>2]>>>24-r%4*8&255;n.push((i>>>4).toString(16)),n.push((15&i).toString(16))}return n.join("")},parse:function(e){for(var t=e.length,n=[],r=0;r<t;r+=2)n[r>>>3]|=parseInt(e.substr(r,2),16)<<24-r%8*4;return new o.init(n,t/2)}},c=a.Latin1={stringify:function(e){var t=e.words;e=e.sigBytes;for(var n=[],r=0;r<e;r++)n.push(String.fromCharCode(t[r>>>2]>>>24-r%4*8&255));return n.join("")},parse:function(e){for(var t=e.length,n=[],r=0;r<t;r++)n[r>>>2]|=(255&e.charCodeAt(r))<<24-r%4*8;return new o.init(n,t)}},l=a.Utf8={stringify:function(e){try{return decodeURIComponent(escape(c.stringify(e)))}catch(e){throw Error("Malformed UTF-8 data")}},parse:function(e){return c.parse(unescape(encodeURIComponent(e)))}},h=r.BufferedBlockAlgorithm=s.extend({reset:function(){this._data=new o.init,this._nDataBytes=0},_append:function(e){"string"==typeof e&&(e=l.parse(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes},_process:function(t){var n=this._data,r=n.words,i=n.sigBytes,s=this.blockSize,a=i/(4*s),a=t?e.ceil(a):e.max((0|a)-this._minBufferSize,0);if(t=a*s,i=e.min(4*t,i),t){for(var u=0;u<t;u+=s)this._doProcessBlock(r,u);u=r.splice(0,t),n.sigBytes-=i}return new o.init(u,i)},clone:function(){var e=s.clone.call(this);return e._data=this._data.clone(),e},_minBufferSize:0});r.Hasher=h.extend({cfg:s.extend(),init:function(e){this.cfg=this.cfg.extend(e),this.reset()},reset:function(){h.reset.call(this),this._doReset()},update:function(e){return this._append(e),this._process(),this},finalize:function(e){return e&&this._append(e),this._doFinalize()},blockSize:16,_createHelper:function(e){return function(t,n){return new e.init(n).finalize(t)}},_createHmacHelper:function(e){return function(t,n){return new f.HMAC.init(e,n).finalize(t)}}});var f=n.algo={};return n}(Math);!function(e){for(var t=n,r=t.lib,i=r.WordArray,s=r.Hasher,r=t.algo,o=[],a=[],u=function(e){return 4294967296*(e-(0|e))|0},c=2,l=0;64>l;){var h;e:{h=c;for(var f=e.sqrt(h),p=2;p<=f;p++)if(!(h%p)){h=!1;break e}h=!0}h&&(8>l&&(o[l]=u(e.pow(c,.5))),a[l]=u(e.pow(c,1/3)),l++),c++}var d=[],r=r.SHA256=s.extend({_doReset:function(){this._hash=new i.init(o.slice(0))},_doProcessBlock:function(e,t){for(var n=this._hash.words,r=n[0],i=n[1],s=n[2],o=n[3],u=n[4],c=n[5],l=n[6],h=n[7],f=0;64>f;f++){if(16>f)d[f]=0|e[t+f];else{var p=d[f-15],y=d[f-2];d[f]=((p<<25|p>>>7)^(p<<14|p>>>18)^p>>>3)+d[f-7]+((y<<15|y>>>17)^(y<<13|y>>>19)^y>>>10)+d[f-16]}p=h+((u<<26|u>>>6)^(u<<21|u>>>11)^(u<<7|u>>>25))+(u&c^~u&l)+a[f]+d[f],y=((r<<30|r>>>2)^(r<<19|r>>>13)^(r<<10|r>>>22))+(r&i^r&s^i&s),h=l,l=c,c=u,u=o+p|0,o=s,s=i,i=r,r=p+y|0}n[0]=n[0]+r|0,n[1]=n[1]+i|0,n[2]=n[2]+s|0,n[3]=n[3]+o|0,n[4]=n[4]+u|0,n[5]=n[5]+c|0,n[6]=n[6]+l|0,n[7]=n[7]+h|0},_doFinalize:function(){var t=this._data,n=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;return n[i>>>5]|=128<<24-i%32,n[14+(i+64>>>9<<4)]=e.floor(r/4294967296),n[15+(i+64>>>9<<4)]=r,t.sigBytes=4*n.length,this._process(),this._hash},clone:function(){var e=s.clone.call(this);return e._hash=this._hash.clone(),e}});t.SHA256=s._createHelper(r),t.HmacSHA256=s._createHmacHelper(r)}(Math),function(){var e=n,t=e.enc.Utf8;e.algo.HMAC=e.lib.Base.extend({init:function(e,n){e=this._hasher=new e.init,"string"==typeof n&&(n=t.parse(n));var r=e.blockSize,i=4*r;n.sigBytes>i&&(n=e.finalize(n)),n.clamp();for(var s=this._oKey=n.clone(),o=this._iKey=n.clone(),a=s.words,u=o.words,c=0;c<r;c++)a[c]^=1549556828,u[c]^=909522486;s.sigBytes=o.sigBytes=i,this.reset()},reset:function(){var e=this._hasher;e.reset(),e.update(this._iKey)},update:function(e){return this._hasher.update(e),this},finalize:function(e){var t=this._hasher;return e=t.finalize(e),t.reset(),t.finalize(this._oKey.clone().concat(e))}})}(),function(){var e=n,t=e.lib.WordArray;e.enc.Base64={stringify:function(e){var t=e.words,n=e.sigBytes,r=this._map;e.clamp(),e=[];for(var i=0;i<n;i+=3)for(var s=(t[i>>>2]>>>24-i%4*8&255)<<16|(t[i+1>>>2]>>>24-(i+1)%4*8&255)<<8|t[i+2>>>2]>>>24-(i+2)%4*8&255,o=0;4>o&&i+.75*o<n;o++)e.push(r.charAt(s>>>6*(3-o)&63));if(t=r.charAt(64))for(;e.length%4;)e.push(t);return e.join("")},parse:function(e){var n=e.length,r=this._map,i=r.charAt(64);i&&-1!=(i=e.indexOf(i))&&(n=i);for(var i=[],s=0,o=0;o<n;o++)if(o%4){var a=r.indexOf(e.charAt(o-1))<<o%4*2,u=r.indexOf(e.charAt(o))>>>6-o%4*2;i[s>>>2]|=(a|u)<<24-s%4*8,s++}return t.create(i,s)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="}}(),function(e){function t(e,t,n,r,i,s,o){return((e=e+(t&n|~t&r)+i+o)<<s|e>>>32-s)+t}function r(e,t,n,r,i,s,o){return((e=e+(t&r|n&~r)+i+o)<<s|e>>>32-s)+t}function i(e,t,n,r,i,s,o){return((e=e+(t^n^r)+i+o)<<s|e>>>32-s)+t}function s(e,t,n,r,i,s,o){return((e=e+(n^(t|~r))+i+o)<<s|e>>>32-s)+t}for(var o=n,a=o.lib,u=a.WordArray,c=a.Hasher,a=o.algo,l=[],h=0;64>h;h++)l[h]=4294967296*e.abs(e.sin(h+1))|0;a=a.MD5=c.extend({_doReset:function(){this._hash=new u.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(e,n){for(var o=0;16>o;o++){var a=n+o,u=e[a];e[a]=16711935&(u<<8|u>>>24)|4278255360&(u<<24|u>>>8)}var o=this._hash.words,a=e[n+0],u=e[n+1],c=e[n+2],h=e[n+3],f=e[n+4],p=e[n+5],d=e[n+6],y=e[n+7],g=e[n+8],b=e[n+9],v=e[n+10],_=e[n+11],m=e[n+12],k=e[n+13],P=e[n+14],O=e[n+15],T=o[0],S=o[1],w=o[2],C=o[3],T=t(T,S,w,C,a,7,l[0]),C=t(C,T,S,w,u,12,l[1]),w=t(w,C,T,S,c,17,l[2]),S=t(S,w,C,T,h,22,l[3]),T=t(T,S,w,C,f,7,l[4]),C=t(C,T,S,w,p,12,l[5]),w=t(w,C,T,S,d,17,l[6]),S=t(S,w,C,T,y,22,l[7]),T=t(T,S,w,C,g,7,l[8]),C=t(C,T,S,w,b,12,l[9]),w=t(w,C,T,S,v,17,l[10]),S=t(S,w,C,T,_,22,l[11]),T=t(T,S,w,C,m,7,l[12]),C=t(C,T,S,w,k,12,l[13]),w=t(w,C,T,S,P,17,l[14]),S=t(S,w,C,T,O,22,l[15]),T=r(T,S,w,C,u,5,l[16]),C=r(C,T,S,w,d,9,l[17]),w=r(w,C,T,S,_,14,l[18]),S=r(S,w,C,T,a,20,l[19]),T=r(T,S,w,C,p,5,l[20]),C=r(C,T,S,w,v,9,l[21]),w=r(w,C,T,S,O,14,l[22]),S=r(S,w,C,T,f,20,l[23]),T=r(T,S,w,C,b,5,l[24]),C=r(C,T,S,w,P,9,l[25]),w=r(w,C,T,S,h,14,l[26]),S=r(S,w,C,T,g,20,l[27]),T=r(T,S,w,C,k,5,l[28]),C=r(C,T,S,w,c,9,l[29]),w=r(w,C,T,S,y,14,l[30]),S=r(S,w,C,T,m,20,l[31]),T=i(T,S,w,C,p,4,l[32]),C=i(C,T,S,w,g,11,l[33]),w=i(w,C,T,S,_,16,l[34]),S=i(S,w,C,T,P,23,l[35]),T=i(T,S,w,C,u,4,l[36]),C=i(C,T,S,w,f,11,l[37]),w=i(w,C,T,S,y,16,l[38]),S=i(S,w,C,T,v,23,l[39]),T=i(T,S,w,C,k,4,l[40]),C=i(C,T,S,w,a,11,l[41]),w=i(w,C,T,S,h,16,l[42]),S=i(S,w,C,T,d,23,l[43]),T=i(T,S,w,C,b,4,l[44]),C=i(C,T,S,w,m,11,l[45]),w=i(w,C,T,S,O,16,l[46]),S=i(S,w,C,T,c,23,l[47]),T=s(T,S,w,C,a,6,l[48]),C=s(C,T,S,w,y,10,l[49]),w=s(w,C,T,S,P,15,l[50]),S=s(S,w,C,T,p,21,l[51]),T=s(T,S,w,C,m,6,l[52]),C=s(C,T,S,w,h,10,l[53]),w=s(w,C,T,S,v,15,l[54]),S=s(S,w,C,T,u,21,l[55]),T=s(T,S,w,C,g,6,l[56]),C=s(C,T,S,w,O,10,l[57]),w=s(w,C,T,S,d,15,l[58]),S=s(S,w,C,T,k,21,l[59]),T=s(T,S,w,C,f,6,l[60]),C=s(C,T,S,w,_,10,l[61]),w=s(w,C,T,S,c,15,l[62]),S=s(S,w,C,T,b,21,l[63]);o[0]=o[0]+T|0,o[1]=o[1]+S|0,o[2]=o[2]+w|0,o[3]=o[3]+C|0},_doFinalize:function(){var t=this._data,n=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;n[i>>>5]|=128<<24-i%32;var s=e.floor(r/4294967296);for(n[15+(i+64>>>9<<4)]=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),n[14+(i+64>>>9<<4)]=16711935&(r<<8|r>>>24)|4278255360&(r<<24|r>>>8),t.sigBytes=4*(n.length+1),this._process(),t=this._hash,n=t.words,r=0;4>r;r++)i=n[r],n[r]=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8);return t},clone:function(){var e=c.clone.call(this);return e._hash=this._hash.clone(),e}}),o.MD5=c._createHelper(a),o.HmacMD5=c._createHmacHelper(a)}(Math),function(){var e=n,t=e.lib,r=t.Base,i=t.WordArray,t=e.algo,s=t.EvpKDF=r.extend({cfg:r.extend({keySize:4,hasher:t.MD5,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,t){for(var n=this.cfg,r=n.hasher.create(),s=i.create(),o=s.words,a=n.keySize,n=n.iterations;o.length<a;){u&&r.update(u);var u=r.update(e).finalize(t);r.reset();for(var c=1;c<n;c++)u=r.finalize(u),r.reset();s.concat(u)}return s.sigBytes=4*a,s}});e.EvpKDF=function(e,t,n){return s.create(n).compute(e,t)}}(),n.lib.Cipher||function(e){var t=n,r=t.lib,i=r.Base,s=r.WordArray,o=r.BufferedBlockAlgorithm,a=t.enc.Base64,u=t.algo.EvpKDF,c=r.Cipher=o.extend({cfg:i.extend(),createEncryptor:function(e,t){return this.create(this._ENC_XFORM_MODE,e,t)},createDecryptor:function(e,t){return this.create(this._DEC_XFORM_MODE,e,t)},init:function(e,t,n){this.cfg=this.cfg.extend(n),this._xformMode=e,this._key=t,this.reset()},reset:function(){o.reset.call(this),this._doReset()},process:function(e){return this._append(e),this._process()},finalize:function(e){return e&&this._append(e),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(e){return{encrypt:function(t,n,r){return("string"==typeof n?y:d).encrypt(e,t,n,r)},decrypt:function(t,n,r){return("string"==typeof n?y:d).decrypt(e,t,n,r)}}}});r.StreamCipher=c.extend({_doFinalize:function(){return this._process(!0)},blockSize:1});var l=t.mode={},h=function(e,t,n){var r=this._iv;r?this._iv=void 0:r=this._prevBlock;for(var i=0;i<n;i++)e[t+i]^=r[i]},f=(r.BlockCipherMode=i.extend({createEncryptor:function(e,t){return this.Encryptor.create(e,t)},createDecryptor:function(e,t){return this.Decryptor.create(e,t)},init:function(e,t){this._cipher=e,this._iv=t}})).extend();f.Encryptor=f.extend({processBlock:function(e,t){var n=this._cipher,r=n.blockSize;h.call(this,e,t,r),n.encryptBlock(e,t),this._prevBlock=e.slice(t,t+r)}}),f.Decryptor=f.extend({processBlock:function(e,t){var n=this._cipher,r=n.blockSize,i=e.slice(t,t+r);n.decryptBlock(e,t),h.call(this,e,t,r),this._prevBlock=i}}),l=l.CBC=f,f=(t.pad={}).Pkcs7={pad:function(e,t){for(var n=4*t,n=n-e.sigBytes%n,r=n<<24|n<<16|n<<8|n,i=[],o=0;o<n;o+=4)i.push(r);n=s.create(i,n),e.concat(n)},unpad:function(e){e.sigBytes-=255&e.words[e.sigBytes-1>>>2]}},r.BlockCipher=c.extend({cfg:c.cfg.extend({mode:l,padding:f}),reset:function(){c.reset.call(this);var e=this.cfg,t=e.iv,e=e.mode;if(this._xformMode==this._ENC_XFORM_MODE)var n=e.createEncryptor;else n=e.createDecryptor,this._minBufferSize=1;this._mode=n.call(e,this,t&&t.words)},_doProcessBlock:function(e,t){this._mode.processBlock(e,t)},_doFinalize:function(){var e=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){e.pad(this._data,this.blockSize);var t=this._process(!0)}else t=this._process(!0),e.unpad(t);return t},blockSize:4});var p=r.CipherParams=i.extend({init:function(e){this.mixIn(e)},toString:function(e){return(e||this.formatter).stringify(this)}}),l=(t.format={}).OpenSSL={stringify:function(e){var t=e.ciphertext;return e=e.salt,(e?s.create([1398893684,1701076831]).concat(e).concat(t):t).toString(a)},parse:function(e){e=a.parse(e);var t=e.words;if(1398893684==t[0]&&1701076831==t[1]){var n=s.create(t.slice(2,4));t.splice(0,4),e.sigBytes-=16}return p.create({ciphertext:e,salt:n})}},d=r.SerializableCipher=i.extend({cfg:i.extend({format:l}),encrypt:function(e,t,n,r){r=this.cfg.extend(r);var i=e.createEncryptor(n,r);return t=i.finalize(t),i=i.cfg,p.create({ciphertext:t,key:n,iv:i.iv,algorithm:e,mode:i.mode,padding:i.padding,blockSize:e.blockSize,formatter:r.format})},decrypt:function(e,t,n,r){return r=this.cfg.extend(r),t=this._parse(t,r.format),e.createDecryptor(n,r).finalize(t.ciphertext)},_parse:function(e,t){return"string"==typeof e?t.parse(e,this):e}}),t=(t.kdf={}).OpenSSL={execute:function(e,t,n,r){return r||(r=s.random(8)),e=u.create({keySize:t+n}).compute(e,r),n=s.create(e.words.slice(t),4*n),e.sigBytes=4*t,p.create({key:e,iv:n,salt:r})}},y=r.PasswordBasedCipher=d.extend({cfg:d.cfg.extend({kdf:t}),encrypt:function(e,t,n,r){return r=this.cfg.extend(r),n=r.kdf.execute(n,e.keySize,e.ivSize),r.iv=n.iv,e=d.encrypt.call(this,e,t,n.key,r),e.mixIn(n),e},decrypt:function(e,t,n,r){return r=this.cfg.extend(r),t=this._parse(t,r.format),n=r.kdf.execute(n,e.keySize,e.ivSize,t.salt),r.iv=n.iv,d.decrypt.call(this,e,t,n.key,r)}})}(),function(){for(var e=n,t=e.lib.BlockCipher,r=e.algo,i=[],s=[],o=[],a=[],u=[],c=[],l=[],h=[],f=[],p=[],d=[],y=0;256>y;y++)d[y]=128>y?y<<1:y<<1^283;for(var g=0,b=0,y=0;256>y;y++){var v=b^b<<1^b<<2^b<<3^b<<4,v=v>>>8^255&v^99;i[g]=v,s[v]=g;var _=d[g],m=d[_],k=d[m],P=257*d[v]^16843008*v;o[g]=P<<24|P>>>8,a[g]=P<<16|P>>>16,u[g]=P<<8|P>>>24,c[g]=P,P=16843009*k^65537*m^257*_^16843008*g,l[v]=P<<24|P>>>8,h[v]=P<<16|P>>>16,f[v]=P<<8|P>>>24,p[v]=P,g?(g=_^d[d[d[k^_]]],b^=d[d[b]]):g=b=1}var O=[0,1,2,4,8,16,32,64,128,27,54],r=r.AES=t.extend({_doReset:function(){for(var e=this._key,t=e.words,n=e.sigBytes/4,e=4*((this._nRounds=n+6)+1),r=this._keySchedule=[],s=0;s<e;s++)if(s<n)r[s]=t[s];else{var o=r[s-1];s%n?6<n&&4==s%n&&(o=i[o>>>24]<<24|i[o>>>16&255]<<16|i[o>>>8&255]<<8|i[255&o]):(o=o<<8|o>>>24,o=i[o>>>24]<<24|i[o>>>16&255]<<16|i[o>>>8&255]<<8|i[255&o],o^=O[s/n|0]<<24),r[s]=r[s-n]^o}for(t=this._invKeySchedule=[],n=0;n<e;n++)s=e-n,o=n%4?r[s]:r[s-4],t[n]=4>n||4>=s?o:l[i[o>>>24]]^h[i[o>>>16&255]]^f[i[o>>>8&255]]^p[i[255&o]]},encryptBlock:function(e,t){this._doCryptBlock(e,t,this._keySchedule,o,a,u,c,i)},decryptBlock:function(e,t){var n=e[t+1];e[t+1]=e[t+3],e[t+3]=n,this._doCryptBlock(e,t,this._invKeySchedule,l,h,f,p,s),n=e[t+1],e[t+1]=e[t+3],e[t+3]=n},_doCryptBlock:function(e,t,n,r,i,s,o,a){for(var u=this._nRounds,c=e[t]^n[0],l=e[t+1]^n[1],h=e[t+2]^n[2],f=e[t+3]^n[3],p=4,d=1;d<u;d++)var y=r[c>>>24]^i[l>>>16&255]^s[h>>>8&255]^o[255&f]^n[p++],g=r[l>>>24]^i[h>>>16&255]^s[f>>>8&255]^o[255&c]^n[p++],b=r[h>>>24]^i[f>>>16&255]^s[c>>>8&255]^o[255&l]^n[p++],f=r[f>>>24]^i[c>>>16&255]^s[l>>>8&255]^o[255&h]^n[p++],c=y,l=g,h=b;y=(a[c>>>24]<<24|a[l>>>16&255]<<16|a[h>>>8&255]<<8|a[255&f])^n[p++],g=(a[l>>>24]<<24|a[h>>>16&255]<<16|a[f>>>8&255]<<8|a[255&c])^n[p++],b=(a[h>>>24]<<24|a[f>>>16&255]<<16|a[c>>>8&255]<<8|a[255&l])^n[p++],f=(a[f>>>24]<<24|a[c>>>16&255]<<16|a[l>>>8&255]<<8|a[255&h])^n[p++],e[t]=y,e[t+1]=g,e[t+2]=b,e[t+3]=f},keySize:8});e.AES=t._createHelper(r)}(),n.mode.ECB=function(){var e=n.lib.BlockCipherMode.extend();return e.Encryptor=e.extend({processBlock:function(e,t){this._cipher.encryptBlock(e,t)}}),e.Decryptor=e.extend({processBlock:function(e,t){this._cipher.decryptBlock(e,t)}}),e}(),e.exports=n},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(6),a=(r(o),n(2)),u=(r(a),n(9)),c=(r(u),n(11)),l=r(c),h=n(14),f=r(h),p=n(15),d=r(p),y=(n(5),n(10)),g=r(y),b=function(){function e(t){var n=t.subscribeEndpoint,r=t.leaveEndpoint,s=t.heartbeatEndpoint,o=t.setStateEndpoint,a=t.timeEndpoint,u=t.config,c=t.crypto,h=t.listenerManager;i(this,e),this._listenerManager=h,this._config=u,this._leaveEndpoint=r,this._heartbeatEndpoint=s,this._setStateEndpoint=o,this._subscribeEndpoint=n,this._crypto=c,this._channels={},this._presenceChannels={},this._heartbeatChannels={},this._heartbeatChannelGroups={},this._channelGroups={},this._presenceChannelGroups={},this._pendingChannelSubscriptions=[],this._pendingChannelGroupSubscriptions=[],this._currentTimetoken=0,this._lastTimetoken=0,this._storedTimetoken=null,this._subscriptionStatusAnnounced=!1,this._isOnline=!0,this._reconnectionManager=new l.default({timeEndpoint:a}),this._dedupingManager=new f.default({config:u})}return s(e,[{key:"adaptStateChange",value:function(e,t){var n=this,r=e.state,i=e.channels,s=void 0===i?[]:i,o=e.channelGroups,a=void 0===o?[]:o;return s.forEach(function(e){e in n._channels&&(n._channels[e].state=r)}),a.forEach(function(e){e in n._channelGroups&&(n._channelGroups[e].state=r)}),this._setStateEndpoint({state:r,channels:s,channelGroups:a},t)}},{key:"adaptPresenceChange",value:function(e){var t=this,n=e.connected,r=e.channels,i=void 0===r?[]:r,s=e.channelGroups,o=void 0===s?[]:s;n?(i.forEach(function(e){t._heartbeatChannels[e]={state:{}}}),o.forEach(function(e){t._heartbeatChannelGroups[e]={state:{}}})):(i.forEach(function(e){e in t._heartbeatChannels&&delete t._heartbeatChannels[e]}),o.forEach(function(e){e in t._heartbeatChannelGroups&&delete t._heartbeatChannelGroups[e]}),!1===this._config.suppressLeaveEvents&&this._leaveEndpoint({channels:i,channelGroups:o},function(e){t._listenerManager.announceStatus(e)})),this.reconnect()}},{key:"adaptSubscribeChange",value:function(e){var t=this,n=e.timetoken,r=e.channels,i=void 0===r?[]:r,s=e.channelGroups,o=void 0===s?[]:s,a=e.withPresence,u=void 0!==a&&a,c=e.withHeartbeats,l=void 0!==c&&c;if(!this._config.subscribeKey||""===this._config.subscribeKey)return void(console&&console.log&&console.log("subscribe key missing; aborting subscribe"));n&&(this._lastTimetoken=this._currentTimetoken,
|
|
19922
20443
|
this._currentTimetoken=n),"0"!==this._currentTimetoken&&0!==this._currentTimetoken&&(this._storedTimetoken=this._currentTimetoken,this._currentTimetoken=0),i.forEach(function(e){t._channels[e]={state:{}},u&&(t._presenceChannels[e]={}),l&&(t._heartbeatChannels[e]={}),t._pendingChannelSubscriptions.push(e)}),o.forEach(function(e){t._channelGroups[e]={state:{}},u&&(t._presenceChannelGroups[e]={}),l&&(t._heartbeatChannelGroups[e]={}),t._pendingChannelGroupSubscriptions.push(e)}),this._subscriptionStatusAnnounced=!1,this.reconnect()}},{key:"adaptUnsubscribeChange",value:function(e,t){var n=this,r=e.channels,i=void 0===r?[]:r,s=e.channelGroups,o=void 0===s?[]:s,a=[],u=[];i.forEach(function(e){e in n._channels&&(delete n._channels[e],a.push(e),e in n._heartbeatChannels&&delete n._heartbeatChannels[e]),e in n._presenceChannels&&(delete n._presenceChannels[e],a.push(e))}),o.forEach(function(e){e in n._channelGroups&&(delete n._channelGroups[e],u.push(e),e in n._heartbeatChannelGroups&&delete n._heartbeatChannelGroups[e]),e in n._presenceChannelGroups&&(delete n._channelGroups[e],u.push(e))}),0===a.length&&0===u.length||(!1!==this._config.suppressLeaveEvents||t||this._leaveEndpoint({channels:a,channelGroups:u},function(e){e.affectedChannels=a,e.affectedChannelGroups=u,e.currentTimetoken=n._currentTimetoken,e.lastTimetoken=n._lastTimetoken,n._listenerManager.announceStatus(e)}),0===Object.keys(this._channels).length&&0===Object.keys(this._presenceChannels).length&&0===Object.keys(this._channelGroups).length&&0===Object.keys(this._presenceChannelGroups).length&&(this._lastTimetoken=0,this._currentTimetoken=0,this._storedTimetoken=null,this._region=null,this._reconnectionManager.stopPolling()),this.reconnect())}},{key:"unsubscribeAll",value:function(e){this.adaptUnsubscribeChange({channels:this.getSubscribedChannels(),channelGroups:this.getSubscribedChannelGroups()},e)}},{key:"getHeartbeatChannels",value:function(){return Object.keys(this._heartbeatChannels)}},{key:"getHeartbeatChannelGroups",value:function(){return Object.keys(this._heartbeatChannelGroups)}},{key:"getSubscribedChannels",value:function(){return Object.keys(this._channels)}},{key:"getSubscribedChannelGroups",value:function(){return Object.keys(this._channelGroups)}},{key:"reconnect",value:function(){this._startSubscribeLoop(),this._registerHeartbeatTimer()}},{key:"disconnect",value:function(){this._stopSubscribeLoop(),this._stopHeartbeatTimer(),this._reconnectionManager.stopPolling()}},{key:"_registerHeartbeatTimer",value:function(){this._stopHeartbeatTimer(),0!==this._config.getHeartbeatInterval()&&(this._performHeartbeatLoop(),this._heartbeatTimer=setInterval(this._performHeartbeatLoop.bind(this),1e3*this._config.getHeartbeatInterval()))}},{key:"_stopHeartbeatTimer",value:function(){this._heartbeatTimer&&(clearInterval(this._heartbeatTimer),this._heartbeatTimer=null)}},{key:"_performHeartbeatLoop",value:function(){var e=this,t=this.getHeartbeatChannels(),n=this.getHeartbeatChannelGroups(),r={};if(0!==t.length||0!==n.length){this.getSubscribedChannels().forEach(function(t){var n=e._channels[t].state;Object.keys(n).length&&(r[t]=n)}),this.getSubscribedChannelGroups().forEach(function(t){var n=e._channelGroups[t].state;Object.keys(n).length&&(r[t]=n)});var i=function(t){t.error&&e._config.announceFailedHeartbeats&&e._listenerManager.announceStatus(t),t.error&&e._config.autoNetworkDetection&&e._isOnline&&(e._isOnline=!1,e.disconnect(),e._listenerManager.announceNetworkDown(),e.reconnect()),!t.error&&e._config.announceSuccessfulHeartbeats&&e._listenerManager.announceStatus(t)};this._heartbeatEndpoint({channels:t,channelGroups:n,state:r},i.bind(this))}}},{key:"_startSubscribeLoop",value:function(){var e=this;this._stopSubscribeLoop();var t={},n=[],r=[];if(Object.keys(this._channels).forEach(function(r){var i=e._channels[r].state;Object.keys(i).length&&(t[r]=i),n.push(r)}),Object.keys(this._presenceChannels).forEach(function(e){n.push(e+"-pnpres")}),Object.keys(this._channelGroups).forEach(function(n){var i=e._channelGroups[n].state;Object.keys(i).length&&(t[n]=i),r.push(n)}),Object.keys(this._presenceChannelGroups).forEach(function(e){r.push(e+"-pnpres")}),0!==n.length||0!==r.length){var i={channels:n,channelGroups:r,state:t,timetoken:this._currentTimetoken,filterExpression:this._config.filterExpression,region:this._region};this._subscribeCall=this._subscribeEndpoint(i,this._processSubscribeResponse.bind(this))}}},{key:"_processSubscribeResponse",value:function(e,t){var n=this;if(e.error)return void(e.category===g.default.PNTimeoutCategory?this._startSubscribeLoop():e.category===g.default.PNNetworkIssuesCategory?(this.disconnect(),e.error&&this._config.autoNetworkDetection&&this._isOnline&&(this._isOnline=!1,this._listenerManager.announceNetworkDown()),this._reconnectionManager.onReconnection(function(){n._config.autoNetworkDetection&&!n._isOnline&&(n._isOnline=!0,n._listenerManager.announceNetworkUp()),n.reconnect(),n._subscriptionStatusAnnounced=!0;var t={category:g.default.PNReconnectedCategory,operation:e.operation,lastTimetoken:n._lastTimetoken,currentTimetoken:n._currentTimetoken};n._listenerManager.announceStatus(t)}),this._reconnectionManager.startPolling(),this._listenerManager.announceStatus(e)):e.category===g.default.PNBadRequestCategory?(this._stopHeartbeatTimer(),this._listenerManager.announceStatus(e)):this._listenerManager.announceStatus(e));if(this._storedTimetoken?(this._currentTimetoken=this._storedTimetoken,this._storedTimetoken=null):(this._lastTimetoken=this._currentTimetoken,this._currentTimetoken=t.metadata.timetoken),!this._subscriptionStatusAnnounced){var r={};r.category=g.default.PNConnectedCategory,r.operation=e.operation,r.affectedChannels=this._pendingChannelSubscriptions,r.subscribedChannels=this.getSubscribedChannels(),r.affectedChannelGroups=this._pendingChannelGroupSubscriptions,r.lastTimetoken=this._lastTimetoken,r.currentTimetoken=this._currentTimetoken,this._subscriptionStatusAnnounced=!0,this._listenerManager.announceStatus(r),this._pendingChannelSubscriptions=[],this._pendingChannelGroupSubscriptions=[]}var i=t.messages||[],s=this._config,o=s.requestMessageCountThreshold,a=s.dedupeOnSubscribe;if(o&&i.length>=o){var u={};u.category=g.default.PNRequestMessageCountExceededCategory,u.operation=e.operation,this._listenerManager.announceStatus(u)}i.forEach(function(e){var t=e.channel,r=e.subscriptionMatch,i=e.publishMetaData;if(t===r&&(r=null),a){if(n._dedupingManager.isDuplicate(e))return;n._dedupingManager.addEntry(e)}if(d.default.endsWith(e.channel,"-pnpres")){var s={};s.channel=null,s.subscription=null,s.actualChannel=null!=r?t:null,s.subscribedChannel=null!=r?r:t,t&&(s.channel=t.substring(0,t.lastIndexOf("-pnpres"))),r&&(s.subscription=r.substring(0,r.lastIndexOf("-pnpres"))),s.action=e.payload.action,s.state=e.payload.data,s.timetoken=i.publishTimetoken,s.occupancy=e.payload.occupancy,s.uuid=e.payload.uuid,s.timestamp=e.payload.timestamp,e.payload.join&&(s.join=e.payload.join),e.payload.leave&&(s.leave=e.payload.leave),e.payload.timeout&&(s.timeout=e.payload.timeout),n._listenerManager.announcePresence(s)}else{var o={};o.channel=null,o.subscription=null,o.actualChannel=null!=r?t:null,o.subscribedChannel=null!=r?r:t,o.channel=t,o.subscription=r,o.timetoken=i.publishTimetoken,o.publisher=e.issuingClientId,e.userMetadata&&(o.userMetadata=e.userMetadata),n._config.cipherKey?o.message=n._crypto.decrypt(e.payload):o.message=e.payload,n._listenerManager.announceMessage(o)}}),this._region=t.metadata.region,this._startSubscribeLoop()}},{key:"_stopSubscribeLoop",value:function(){this._subscribeCall&&("function"==typeof this._subscribeCall.abort&&this._subscribeCall.abort(),this._subscribeCall=null)}}]),e}();t.default=b,e.exports=t.default},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=(n(5),n(10)),o=function(e){return e&&e.__esModule?e:{default:e}}(s),a=function(){function e(){r(this,e),this._listeners=[]}return i(e,[{key:"addListener",value:function(e){this._listeners.push(e)}},{key:"removeListener",value:function(e){var t=[];this._listeners.forEach(function(n){n!==e&&t.push(n)}),this._listeners=t}},{key:"removeAllListeners",value:function(){this._listeners=[]}},{key:"announcePresence",value:function(e){this._listeners.forEach(function(t){t.presence&&t.presence(e)})}},{key:"announceStatus",value:function(e){this._listeners.forEach(function(t){t.status&&t.status(e)})}},{key:"announceMessage",value:function(e){this._listeners.forEach(function(t){t.message&&t.message(e)})}},{key:"announceNetworkUp",value:function(){var e={};e.category=o.default.PNNetworkUpCategory,this.announceStatus(e)}},{key:"announceNetworkDown",value:function(){var e={};e.category=o.default.PNNetworkDownCategory,this.announceStatus(e)}}]),e}();t.default=a,e.exports=t.default},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={PNNetworkUpCategory:"PNNetworkUpCategory",PNNetworkDownCategory:"PNNetworkDownCategory",PNNetworkIssuesCategory:"PNNetworkIssuesCategory",PNTimeoutCategory:"PNTimeoutCategory",PNBadRequestCategory:"PNBadRequestCategory",PNAccessDeniedCategory:"PNAccessDeniedCategory",PNUnknownCategory:"PNUnknownCategory",PNReconnectedCategory:"PNReconnectedCategory",PNConnectedCategory:"PNConnectedCategory",PNRequestMessageCountExceededCategory:"PNRequestMessageCountExceededCategory"},e.exports=t.default},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=n(12),o=(function(e){e&&e.__esModule}(s),n(5),function(){function e(t){var n=t.timeEndpoint;r(this,e),this._timeEndpoint=n}return i(e,[{key:"onReconnection",value:function(e){this._reconnectionCallback=e}},{key:"startPolling",value:function(){this._timeTimer=setInterval(this._performTimeLoop.bind(this),3e3)}},{key:"stopPolling",value:function(){clearInterval(this._timeTimer)}},{key:"_performTimeLoop",value:function(){var e=this;this._timeEndpoint(function(t){t.error||(clearInterval(e._timeTimer),e._reconnectionCallback())})}}]),e}());t.default=o,e.exports=t.default},function(e,t,n){"use strict";function r(){return h.default.PNTimeOperation}function i(){return"/time/0"}function s(e){return e.config.getTransactionTimeout()}function o(){return{}}function a(){return!1}function u(e,t){return{timetoken:t[0]}}function c(){}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.getURL=i,t.getRequestTimeout=s,t.prepareParams=o,t.isAuthSupported=a,t.handleResponse=u,t.validateParams=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={PNTimeOperation:"PNTimeOperation",PNHistoryOperation:"PNHistoryOperation",PNDeleteMessagesOperation:"PNDeleteMessagesOperation",PNFetchMessagesOperation:"PNFetchMessagesOperation",PNMessageCounts:"PNMessageCountsOperation",PNSubscribeOperation:"PNSubscribeOperation",PNUnsubscribeOperation:"PNUnsubscribeOperation",PNPublishOperation:"PNPublishOperation",PNPushNotificationEnabledChannelsOperation:"PNPushNotificationEnabledChannelsOperation",PNRemoveAllPushNotificationsOperation:"PNRemoveAllPushNotificationsOperation",PNWhereNowOperation:"PNWhereNowOperation",PNSetStateOperation:"PNSetStateOperation",PNHereNowOperation:"PNHereNowOperation",PNGetStateOperation:"PNGetStateOperation",PNHeartbeatOperation:"PNHeartbeatOperation",PNChannelGroupsOperation:"PNChannelGroupsOperation",PNRemoveGroupOperation:"PNRemoveGroupOperation",PNChannelsForGroupOperation:"PNChannelsForGroupOperation",PNAddChannelsToGroupOperation:"PNAddChannelsToGroupOperation",PNRemoveChannelsFromGroupOperation:"PNRemoveChannelsFromGroupOperation",PNAccessManagerGrant:"PNAccessManagerGrant",PNAccessManagerAudit:"PNAccessManagerAudit"},e.exports=t.default},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=n(2),o=(function(e){e&&e.__esModule}(s),n(5),function(e){var t=0;if(0===e.length)return t;for(var n=0;n<e.length;n+=1){t=(t<<5)-t+e.charCodeAt(n),t&=t}return t}),a=function(){function e(t){var n=t.config;r(this,e),this.hashHistory=[],this._config=n}return i(e,[{key:"getKey",value:function(e){var t=o(JSON.stringify(e.payload)).toString();return e.publishMetaData.publishTimetoken+"-"+t}},{key:"isDuplicate",value:function(e){return this.hashHistory.includes(this.getKey(e))}},{key:"addEntry",value:function(e){this.hashHistory.length>=this._config.maximumCacheSize&&this.hashHistory.shift(),this.hashHistory.push(this.getKey(e))}},{key:"clearHistory",value:function(){this.hashHistory=[]}}]),e}();t.default=a,e.exports=t.default},function(e,t){"use strict";function n(e){var t=[];return Object.keys(e).forEach(function(e){return t.push(e)}),t}function r(e){return encodeURIComponent(e).replace(/[!~*'()]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})}function i(e){return n(e).sort()}function s(e){return i(e).map(function(t){return t+"="+r(e[t])}).join("&")}function o(e,t){return-1!==e.indexOf(t,this.length-t.length)}function a(){var e=void 0,t=void 0;return{promise:new Promise(function(n,r){e=n,t=r}),reject:t,fulfill:e}}e.exports={signPamFromParams:s,endsWith:o,createPromise:a,encodeString:r}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(e,t){return e.type=t,e.error=!0,e}function u(e){return a({message:e},"validationError")}function c(e,t,n){return e.usePost&&e.usePost(t,n)?e.postURL(t,n):e.getURL(t,n)}function l(e){if(e.sdkName)return e.sdkName;var t="PubNub-JS-"+e.sdkFamily;return e.partnerId&&(t+="-"+e.partnerId),t+="/"+e.getVersion()}function h(e,t,n){var r=e.config,i=e.crypto;n.timestamp=Math.floor((new Date).getTime()/1e3);var s=r.subscribeKey+"\n"+r.publishKey+"\n"+t+"\n";s+=y.default.signPamFromParams(n);var o=i.HMACSHA256(s);o=o.replace(/\+/g,"-"),o=o.replace(/\//g,"_"),n.signature=o}Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){var n=e.networking,r=e.config,i=null,s=null,o={};t.getOperation()===v.default.PNTimeOperation||t.getOperation()===v.default.PNChannelGroupsOperation?i=arguments.length<=2?void 0:arguments[2]:(o=arguments.length<=2?void 0:arguments[2],i=arguments.length<=3?void 0:arguments[3]),"undefined"==typeof Promise||i||(s=y.default.createPromise());var a=t.validateParams(e,o);if(!a){var f=t.prepareParams(e,o),d=c(t,e,o),g=void 0,b={url:d,operation:t.getOperation(),timeout:t.getRequestTimeout(e)};f.uuid=r.UUID,f.pnsdk=l(r),r.useInstanceId&&(f.instanceid=r.instanceId),r.useRequestId&&(f.requestid=p.default.createUUID()),t.isAuthSupported()&&r.getAuthKey()&&(f.auth=r.getAuthKey()),r.secretKey&&h(e,d,f);var m=function(n,r){if(n.error)return void(i?i(n):s&&s.reject(new _("PubNub call failed, check status for details",n)));var a=t.handleResponse(e,r,o);i?i(n,a):s&&s.fulfill(a)};if(t.usePost&&t.usePost(e,o)){var k=t.postPayload(e,o);g=n.POST(f,k,b,m)}else g=t.useDelete&&t.useDelete()?n.DELETE(f,b,m):n.GET(f,b,m);return t.getOperation()===v.default.PNSubscribeOperation?g:s?s.promise:void 0}return i?i(u(a)):s?(s.reject(new _("Validation failed, check status for details",u(a))),s.promise):void 0};var f=n(3),p=r(f),d=(n(5),n(15)),y=r(d),g=n(2),b=(r(g),n(13)),v=r(b),_=function(e){function t(e,n){i(this,t);var r=s(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.name=r.constructor.name,r.status=n,r.message=e,r}return o(t,e),t}(Error);e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNAddChannelsToGroupOperation}function s(e,t){var n=t.channels,r=t.channelGroup,i=e.config;return r?n&&0!==n.length?i.subscribeKey?void 0:"Missing Subscribe Key":"Missing Channels":"Missing Channel Group"}function o(e,t){var n=t.channelGroup;return"/v1/channel-registration/sub-key/"+e.config.subscribeKey+"/channel-group/"+d.default.encodeString(n)}function a(e){return e.config.getTransactionTimeout()}function u(){return!0}function c(e,t){var n=t.channels;return{add:(void 0===n?[]:n).join(",")}}function l(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNRemoveChannelsFromGroupOperation}function s(e,t){var n=t.channels,r=t.channelGroup,i=e.config;return r?n&&0!==n.length?i.subscribeKey?void 0:"Missing Subscribe Key":"Missing Channels":"Missing Channel Group"}function o(e,t){var n=t.channelGroup;return"/v1/channel-registration/sub-key/"+e.config.subscribeKey+"/channel-group/"+d.default.encodeString(n)}function a(e){return e.config.getTransactionTimeout()}function u(){return!0}function c(e,t){var n=t.channels;return{remove:(void 0===n?[]:n).join(",")}}function l(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNRemoveGroupOperation}function s(e,t){var n=t.channelGroup,r=e.config;return n?r.subscribeKey?void 0:"Missing Subscribe Key":"Missing Channel Group"}function o(e,t){var n=t.channelGroup;return"/v1/channel-registration/sub-key/"+e.config.subscribeKey+"/channel-group/"+d.default.encodeString(n)+"/remove"}function a(){return!0}function u(e){return e.config.getTransactionTimeout()}function c(){return{}}function l(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.isAuthSupported=a,t.getRequestTimeout=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(){return h.default.PNChannelGroupsOperation}function i(e){if(!e.config.subscribeKey)return"Missing Subscribe Key"}function s(e){return"/v1/channel-registration/sub-key/"+e.config.subscribeKey+"/channel-group"}function o(e){return e.config.getTransactionTimeout()}function a(){return!0}function u(){return{}}function c(e,t){return{groups:t.payload.groups}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.validateParams=i,t.getURL=s,t.getRequestTimeout=o,t.isAuthSupported=a,t.prepareParams=u,t.handleResponse=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNChannelsForGroupOperation}function s(e,t){var n=t.channelGroup,r=e.config;return n?r.subscribeKey?void 0:"Missing Subscribe Key":"Missing Channel Group"}function o(e,t){var n=t.channelGroup;return"/v1/channel-registration/sub-key/"+e.config.subscribeKey+"/channel-group/"+d.default.encodeString(n)}function a(e){return e.config.getTransactionTimeout()}function u(){return!0}function c(){return{}}function l(e,t){return{channels:t.payload.channels}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(){return h.default.PNPushNotificationEnabledChannelsOperation}function i(e,t){var n=t.device,r=t.pushGateway,i=t.channels,s=e.config;return n?r?i&&0!==i.length?s.subscribeKey?void 0:"Missing Subscribe Key":"Missing Channels":"Missing GW Type (pushGateway: gcm or apns)":"Missing Device ID (device)"}function s(e,t){var n=t.device;return"/v1/push/sub-key/"+e.config.subscribeKey+"/devices/"+n}function o(e){return e.config.getTransactionTimeout()}function a(){return!0}function u(e,t){var n=t.pushGateway,r=t.channels;return{type:n,add:(void 0===r?[]:r).join(",")}}function c(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.validateParams=i,t.getURL=s,t.getRequestTimeout=o,t.isAuthSupported=a,t.prepareParams=u,t.handleResponse=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t,n){"use strict";function r(){return h.default.PNPushNotificationEnabledChannelsOperation}function i(e,t){var n=t.device,r=t.pushGateway,i=t.channels,s=e.config;return n?r?i&&0!==i.length?s.subscribeKey?void 0:"Missing Subscribe Key":"Missing Channels":"Missing GW Type (pushGateway: gcm or apns)":"Missing Device ID (device)"}function s(e,t){var n=t.device;return"/v1/push/sub-key/"+e.config.subscribeKey+"/devices/"+n}function o(e){return e.config.getTransactionTimeout()}function a(){return!0}function u(e,t){var n=t.pushGateway,r=t.channels;return{type:n,remove:(void 0===r?[]:r).join(",")}}function c(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.validateParams=i,t.getURL=s,t.getRequestTimeout=o,t.isAuthSupported=a,t.prepareParams=u,t.handleResponse=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t,n){"use strict";function r(){return h.default.PNPushNotificationEnabledChannelsOperation}function i(e,t){var n=t.device,r=t.pushGateway,i=e.config;return n?r?i.subscribeKey?void 0:"Missing Subscribe Key":"Missing GW Type (pushGateway: gcm or apns)":"Missing Device ID (device)"}function s(e,t){var n=t.device;return"/v1/push/sub-key/"+e.config.subscribeKey+"/devices/"+n}function o(e){return e.config.getTransactionTimeout()}function a(){return!0}function u(e,t){return{type:t.pushGateway}}function c(e,t){return{channels:t}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.validateParams=i,t.getURL=s,t.getRequestTimeout=o,t.isAuthSupported=a,t.prepareParams=u,t.handleResponse=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t,n){"use strict";function r(){return h.default.PNRemoveAllPushNotificationsOperation}function i(e,t){var n=t.device,r=t.pushGateway,i=e.config;return n?r?i.subscribeKey?void 0:"Missing Subscribe Key":"Missing GW Type (pushGateway: gcm or apns)":"Missing Device ID (device)"}function s(e,t){var n=t.device;return"/v1/push/sub-key/"+e.config.subscribeKey+"/devices/"+n+"/remove"}function o(e){return e.config.getTransactionTimeout()}function a(){return!0}function u(e,t){return{type:t.pushGateway}}function c(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.validateParams=i,t.getURL=s,t.getRequestTimeout=o,t.isAuthSupported=a,t.prepareParams=u,t.handleResponse=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNUnsubscribeOperation}function s(e){if(!e.config.subscribeKey)return"Missing Subscribe Key"}function o(e,t){var n=e.config,r=t.channels,i=void 0===r?[]:r,s=i.length>0?i.join(","):",";return"/v2/presence/sub-key/"+n.subscribeKey+"/channel/"+d.default.encodeString(s)+"/leave"}function a(e){return e.config.getTransactionTimeout()}function u(){return!0}function c(e,t){var n=t.channelGroups,r=void 0===n?[]:n,i={};return r.length>0&&(i["channel-group"]=r.join(",")),i}function l(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(){return h.default.PNWhereNowOperation}function i(e){if(!e.config.subscribeKey)return"Missing Subscribe Key"}function s(e,t){var n=e.config,r=t.uuid,i=void 0===r?n.UUID:r;return"/v2/presence/sub-key/"+n.subscribeKey+"/uuid/"+i}function o(e){return e.config.getTransactionTimeout()}function a(){return!0}function u(){return{}}function c(e,t){return t.payload?{channels:t.payload.channels}:{channels:[]}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.validateParams=i,t.getURL=s,t.getRequestTimeout=o,t.isAuthSupported=a,t.prepareParams=u,t.handleResponse=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNHeartbeatOperation}function s(e){if(!e.config.subscribeKey)return"Missing Subscribe Key"}function o(e,t){var n=e.config,r=t.channels,i=void 0===r?[]:r,s=i.length>0?i.join(","):",";return"/v2/presence/sub-key/"+n.subscribeKey+"/channel/"+d.default.encodeString(s)+"/heartbeat"}function a(){return!0}function u(e){return e.config.getTransactionTimeout()}function c(e,t){var n=t.channelGroups,r=void 0===n?[]:n,i=t.state,s=void 0===i?{}:i,o=e.config,a={};return r.length>0&&(a["channel-group"]=r.join(",")),a.state=JSON.stringify(s),a.heartbeat=o.getPresenceTimeout(),a}function l(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.isAuthSupported=a,t.getRequestTimeout=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNGetStateOperation}function s(e){if(!e.config.subscribeKey)return"Missing Subscribe Key"}function o(e,t){var n=e.config,r=t.uuid,i=void 0===r?n.UUID:r,s=t.channels,o=void 0===s?[]:s,a=o.length>0?o.join(","):",";return"/v2/presence/sub-key/"+n.subscribeKey+"/channel/"+d.default.encodeString(a)+"/uuid/"+i}function a(e){return e.config.getTransactionTimeout()}function u(){return!0}function c(e,t){var n=t.channelGroups,r=void 0===n?[]:n,i={};return r.length>0&&(i["channel-group"]=r.join(",")),i}function l(e,t,n){var r=n.channels,i=void 0===r?[]:r,s=n.channelGroups,o=void 0===s?[]:s,a={};return 1===i.length&&0===o.length?a[i[0]]=t.payload:a=t.payload,{channels:a}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNSetStateOperation}function s(e,t){var n=e.config,r=t.state,i=t.channels,s=void 0===i?[]:i,o=t.channelGroups,a=void 0===o?[]:o;return r?n.subscribeKey?0===s.length&&0===a.length?"Please provide a list of channels and/or channel-groups":void 0:"Missing Subscribe Key":"Missing State"}function o(e,t){var n=e.config,r=t.channels,i=void 0===r?[]:r,s=i.length>0?i.join(","):",";return"/v2/presence/sub-key/"+n.subscribeKey+"/channel/"+d.default.encodeString(s)+"/uuid/"+n.UUID+"/data"}function a(e){return e.config.getTransactionTimeout()}function u(){return!0}function c(e,t){var n=t.state,r=t.channelGroups,i=void 0===r?[]:r,s={};return s.state=JSON.stringify(n),i.length>0&&(s["channel-group"]=i.join(",")),s}function l(e,t){return{state:t.payload}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNHereNowOperation}function s(e){if(!e.config.subscribeKey)return"Missing Subscribe Key"}function o(e,t){var n=e.config,r=t.channels,i=void 0===r?[]:r,s=t.channelGroups,o=void 0===s?[]:s,a="/v2/presence/sub-key/"+n.subscribeKey;if(i.length>0||o.length>0){var u=i.length>0?i.join(","):",";a+="/channel/"+d.default.encodeString(u)}return a}function a(e){return e.config.getTransactionTimeout()}function u(){return!0}function c(e,t){var n=t.channelGroups,r=void 0===n?[]:n,i=t.includeUUIDs,s=void 0===i||i,o=t.includeState,a=void 0!==o&&o,u={};return s||(u.disable_uuids=1),a&&(u.state=1),r.length>0&&(u["channel-group"]=r.join(",")),u}function l(e,t,n){var r=n.channels,i=void 0===r?[]:r,s=n.channelGroups,o=void 0===s?[]:s,a=n.includeUUIDs,u=void 0===a||a,c=n.includeState,l=void 0!==c&&c;return i.length>1||o.length>0||0===o.length&&0===i.length?function(){var e={};return e.totalChannels=t.payload.total_channels,e.totalOccupancy=t.payload.total_occupancy,e.channels={},Object.keys(t.payload.channels).forEach(function(n){var r=t.payload.channels[n],i=[];return e.channels[n]={occupants:i,name:n,occupancy:r.occupancy},u&&r.uuids.forEach(function(e){l?i.push({state:e.state,uuid:e.uuid}):i.push({state:null,uuid:e})}),e}),e}():function(){var e={},n=[];return e.totalChannels=1,e.totalOccupancy=t.occupancy,e.channels={},e.channels[i[0]]={occupants:n,name:i[0],occupancy:t.occupancy},u&&t.uuids&&t.uuids.forEach(function(e){l?n.push({state:e.state,uuid:e.uuid}):n.push({state:null,uuid:e})}),e}()}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(){return h.default.PNAccessManagerAudit}function i(e){if(!e.config.subscribeKey)return"Missing Subscribe Key"}function s(e){return"/v2/auth/audit/sub-key/"+e.config.subscribeKey}function o(e){return e.config.getTransactionTimeout()}function a(){return!1}function u(e,t){var n=t.channel,r=t.channelGroup,i=t.authKeys,s=void 0===i?[]:i,o={};return n&&(o.channel=n),r&&(o["channel-group"]=r),s.length>0&&(o.auth=s.join(",")),o}function c(e,t){return t.payload}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.validateParams=i,t.getURL=s,t.getRequestTimeout=o,t.isAuthSupported=a,t.prepareParams=u,t.handleResponse=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t,n){"use strict";function r(){return h.default.PNAccessManagerGrant}function i(e){var t=e.config;return t.subscribeKey?t.publishKey?t.secretKey?void 0:"Missing Secret Key":"Missing Publish Key":"Missing Subscribe Key"}function s(e){return"/v2/auth/grant/sub-key/"+e.config.subscribeKey}function o(e){return e.config.getTransactionTimeout()}function a(){return!1}function u(e,t){var n=t.channels,r=void 0===n?[]:n,i=t.channelGroups,s=void 0===i?[]:i,o=t.ttl,a=t.read,u=void 0!==a&&a,c=t.write,l=void 0!==c&&c,h=t.manage,f=void 0!==h&&h,p=t.authKeys,d=void 0===p?[]:p,y={};return y.r=u?"1":"0",y.w=l?"1":"0",y.m=f?"1":"0",r.length>0&&(y.channel=r.join(",")),s.length>0&&(y["channel-group"]=s.join(",")),
|
|
19923
20444
|
d.length>0&&(y.auth=d.join(",")),(o||0===o)&&(y.ttl=o),y}function c(){return{}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=r,t.validateParams=i,t.getURL=s,t.getRequestTimeout=o,t.isAuthSupported=a,t.prepareParams=u,t.handleResponse=c;var l=(n(5),n(13)),h=function(e){return e&&e.__esModule?e:{default:e}}(l)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){var n=e.crypto,r=e.config,i=JSON.stringify(t);return r.cipherKey&&(i=n.encrypt(i),i=JSON.stringify(i)),i}function s(){return b.default.PNPublishOperation}function o(e,t){var n=e.config,r=t.message;return t.channel?r?n.subscribeKey?void 0:"Missing Subscribe Key":"Missing Message":"Missing Channel"}function a(e,t){var n=t.sendByPost;return void 0!==n&&n}function u(e,t){var n=e.config,r=t.channel,s=t.message,o=i(e,s);return"/publish/"+n.publishKey+"/"+n.subscribeKey+"/0/"+_.default.encodeString(r)+"/0/"+_.default.encodeString(o)}function c(e,t){var n=e.config,r=t.channel;return"/publish/"+n.publishKey+"/"+n.subscribeKey+"/0/"+_.default.encodeString(r)+"/0"}function l(e){return e.config.getTransactionTimeout()}function h(){return!0}function f(e,t){return i(e,t.message)}function p(e,t){var n=t.meta,r=t.replicate,i=void 0===r||r,s=t.storeInHistory,o=t.ttl,a={};return null!=s&&(a.store=s?"1":"0"),o&&(a.ttl=o),!1===i&&(a.norep="true"),n&&"object"===(void 0===n?"undefined":y(n))&&(a.meta=JSON.stringify(n)),a}function d(e,t){return{timetoken:t[2]}}Object.defineProperty(t,"__esModule",{value:!0});var y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.getOperation=s,t.validateParams=o,t.usePost=a,t.getURL=u,t.postURL=c,t.getRequestTimeout=l,t.isAuthSupported=h,t.postPayload=f,t.prepareParams=p,t.handleResponse=d;var g=(n(5),n(13)),b=r(g),v=n(15),_=r(v)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){var n=e.config,r=e.crypto;if(!n.cipherKey)return t;try{return r.decrypt(t)}catch(e){return t}}function s(){return p.default.PNHistoryOperation}function o(e,t){var n=t.channel,r=e.config;return n?r.subscribeKey?void 0:"Missing Subscribe Key":"Missing channel"}function a(e,t){var n=t.channel;return"/v2/history/sub-key/"+e.config.subscribeKey+"/channel/"+y.default.encodeString(n)}function u(e){return e.config.getTransactionTimeout()}function c(){return!0}function l(e,t){var n=t.start,r=t.end,i=t.reverse,s=t.count,o=void 0===s?100:s,a=t.stringifiedTimeToken,u=void 0!==a&&a,c={include_token:"true"};return c.count=o,n&&(c.start=n),r&&(c.end=r),u&&(c.string_message_token="true"),null!=i&&(c.reverse=i.toString()),c}function h(e,t){var n={messages:[],startTimeToken:t[1],endTimeToken:t[2]};return t[0].forEach(function(t){var r={timetoken:t.timetoken,entry:i(e,t.message)};n.messages.push(r)}),n}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=s,t.validateParams=o,t.getURL=a,t.getRequestTimeout=u,t.isAuthSupported=c,t.prepareParams=l,t.handleResponse=h;var f=(n(5),n(13)),p=r(f),d=n(15),y=r(d)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return p.default.PNDeleteMessagesOperation}function s(e,t){var n=t.channel,r=e.config;return n?r.subscribeKey?void 0:"Missing Subscribe Key":"Missing channel"}function o(){return!0}function a(e,t){var n=t.channel;return"/v3/history/sub-key/"+e.config.subscribeKey+"/channel/"+y.default.encodeString(n)}function u(e){return e.config.getTransactionTimeout()}function c(){return!0}function l(e,t){var n=t.start,r=t.end,i={};return n&&(i.start=n),r&&(i.end=r),i}function h(e,t){return t.payload}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.useDelete=o,t.getURL=a,t.getRequestTimeout=u,t.isAuthSupported=c,t.prepareParams=l,t.handleResponse=h;var f=(n(5),n(13)),p=r(f),d=n(15),y=r(d)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return p.default.PNMessageCounts}function s(e,t){var n=t.channels,r=t.timetoken,i=t.channelTimetokens,s=e.config;return n?r&&i?"timetoken and channelTimetokens are incompatible together":r&&i&&i.length>1&&n.length!==i.length?"Length of channelTimetokens and channels do not match":s.subscribeKey?void 0:"Missing Subscribe Key":"Missing channel"}function o(e,t){var n=t.channels,r=e.config,i=n.join(",");return"/v3/history/sub-key/"+r.subscribeKey+"/message-counts/"+y.default.encodeString(i)}function a(e){return e.config.getTransactionTimeout()}function u(){return!0}function c(e,t){var n=t.timetoken,r=t.channelTimetokens,i={};if(r&&1===r.length){var s=h(r,1),o=s[0];i.timetoken=o}else r?i.channelsTimetoken=r.join(","):n&&(i.timetoken=n);return i}function l(e,t){return{channels:t.channels}}Object.defineProperty(t,"__esModule",{value:!0});var h=function(){function e(e,t){var n=[],r=!0,i=!1,s=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(e){i=!0,s=e}finally{try{!r&&a.return&&a.return()}finally{if(i)throw s}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var f=n(13),p=r(f),d=n(15),y=r(d)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){var n=e.config,r=e.crypto;if(!n.cipherKey)return t;try{return r.decrypt(t)}catch(e){return t}}function s(){return p.default.PNFetchMessagesOperation}function o(e,t){var n=t.channels,r=e.config;return n&&0!==n.length?r.subscribeKey?void 0:"Missing Subscribe Key":"Missing channels"}function a(e,t){var n=t.channels,r=void 0===n?[]:n,i=e.config,s=r.length>0?r.join(","):",";return"/v3/history/sub-key/"+i.subscribeKey+"/channel/"+y.default.encodeString(s)}function u(e){return e.config.getTransactionTimeout()}function c(){return!0}function l(e,t){var n=t.start,r=t.end,i=t.count,s=t.stringifiedTimeToken,o=void 0!==s&&s,a={};return i&&(a.max=i),n&&(a.start=n),r&&(a.end=r),o&&(a.string_message_token="true"),a}function h(e,t){var n={channels:{}};return Object.keys(t.channels||{}).forEach(function(r){n.channels[r]=[],(t.channels[r]||[]).forEach(function(t){var s={};s.channel=r,s.subscription=null,s.timetoken=t.timetoken,s.message=i(e,t.message),n.channels[r].push(s)})}),n}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=s,t.validateParams=o,t.getURL=a,t.getRequestTimeout=u,t.isAuthSupported=c,t.prepareParams=l,t.handleResponse=h;var f=(n(5),n(13)),p=r(f),d=n(15),y=r(d)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){return f.default.PNSubscribeOperation}function s(e){if(!e.config.subscribeKey)return"Missing Subscribe Key"}function o(e,t){var n=e.config,r=t.channels,i=void 0===r?[]:r,s=i.length>0?i.join(","):",";return"/v2/subscribe/"+n.subscribeKey+"/"+d.default.encodeString(s)+"/0"}function a(e){return e.config.getSubscribeTimeout()}function u(){return!0}function c(e,t){var n=e.config,r=t.state,i=t.channelGroups,s=void 0===i?[]:i,o=t.timetoken,a=t.filterExpression,u=t.region,c={heartbeat:n.getPresenceTimeout()};return s.length>0&&(c["channel-group"]=s.join(",")),a&&a.length>0&&(c["filter-expr"]=a),Object.keys(r).length&&(c.state=JSON.stringify(r)),o&&(c.tt=o),u&&(c.tr=u),c}function l(e,t){var n=[];t.m.forEach(function(e){var t={publishTimetoken:e.p.t,region:e.p.r},r={shard:parseInt(e.a,10),subscriptionMatch:e.b,channel:e.c,payload:e.d,flags:e.f,issuingClientId:e.i,subscribeKey:e.k,originationTimetoken:e.o,userMetadata:e.u,publishMetaData:t};n.push(r)});var r={timetoken:t.t.t,region:t.t.r};return{messages:n,metadata:r}}Object.defineProperty(t,"__esModule",{value:!0}),t.getOperation=i,t.validateParams=s,t.getURL=o,t.getRequestTimeout=a,t.isAuthSupported=u,t.prepareParams=c,t.handleResponse=l;var h=(n(5),n(13)),f=r(h),p=n(15),d=r(p)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(2),a=(r(o),n(10)),u=r(a),c=(n(5),function(){function e(t){var n=this;i(this,e),this._modules={},Object.keys(t).forEach(function(e){n._modules[e]=t[e].bind(n)})}return s(e,[{key:"init",value:function(e){this._config=e,this._maxSubDomain=20,this._currentSubDomain=Math.floor(Math.random()*this._maxSubDomain),this._providedFQDN=(this._config.secure?"https://":"http://")+this._config.origin,this._coreParams={},this.shiftStandardOrigin()}},{key:"nextOrigin",value:function(){if(-1===this._providedFQDN.indexOf("ps."))return this._providedFQDN;var e=void 0;return this._currentSubDomain=this._currentSubDomain+1,this._currentSubDomain>=this._maxSubDomain&&(this._currentSubDomain=1),e=this._currentSubDomain.toString(),this._providedFQDN.replace("ps.","ps"+e+".")}},{key:"hasModule",value:function(e){return e in this._modules}},{key:"shiftStandardOrigin",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this._standardOrigin=this.nextOrigin(e),this._standardOrigin}},{key:"getStandardOrigin",value:function(){return this._standardOrigin}},{key:"POST",value:function(e,t,n,r){return this._modules.post(e,t,n,r)}},{key:"GET",value:function(e,t,n){return this._modules.get(e,t,n)}},{key:"DELETE",value:function(e,t,n){return this._modules.del(e,t,n)}},{key:"_detectErrorCategory",value:function(e){if("ENOTFOUND"===e.code)return u.default.PNNetworkIssuesCategory;if("ECONNREFUSED"===e.code)return u.default.PNNetworkIssuesCategory;if("ECONNRESET"===e.code)return u.default.PNNetworkIssuesCategory;if("EAI_AGAIN"===e.code)return u.default.PNNetworkIssuesCategory;if(0===e.status||e.hasOwnProperty("status")&&void 0===e.status)return u.default.PNNetworkIssuesCategory;if(e.timeout)return u.default.PNTimeoutCategory;if("ETIMEDOUT"===e.code)return u.default.PNNetworkIssuesCategory;if(e.response){if(e.response.badRequest)return u.default.PNBadRequestCategory;if(e.response.forbidden)return u.default.PNAccessDeniedCategory}return u.default.PNUnknownCategory}}]),e}());t.default=c,e.exports=t.default},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={get:function(e){try{return localStorage.getItem(e)}catch(e){return null}},set:function(e,t){try{return localStorage.setItem(e,t)}catch(e){return null}}},e.exports=t.default},function(e,t,n){"use strict";function r(e){var t=(new Date).getTime(),n=(new Date).toISOString(),r=function(){return console&&console.log?console:window&&window.console&&window.console.log?window.console:console}();r.log("<<<<<"),r.log("["+n+"]","\n",e.url,"\n",e.qs),r.log("-----"),e.on("response",function(n){var i=(new Date).getTime(),s=i-t,o=(new Date).toISOString();r.log(">>>>>>"),r.log("["+o+" / "+s+"]","\n",e.url,"\n",e.qs,"\n",n.text),r.log("-----")})}function i(e,t,n){var i=this;return this._config.logVerbosity&&(e=e.use(r)),this._config.proxy&&this._modules.proxy&&(e=this._modules.proxy.call(this,e)),this._config.keepAlive&&this._modules.keepAlive&&(e=this._modules.keepAlive(e)),e.timeout(t.timeout).end(function(e,r){var s=void 0,o={};if(o.error=null!==e,o.operation=t.operation,r&&r.status&&(o.statusCode=r.status),e){if(e.response&&e.response.text&&!i._config.logVerbosity)try{o.errorData=JSON.parse(e.response.text)}catch(t){o.errorData=e}else o.errorData=e;return o.category=i._detectErrorCategory(e),n(o,null)}try{s=JSON.parse(r.text)}catch(e){return o.errorData=r,o.error=!0,n(o,null)}return s.error&&1===s.error&&s.status&&s.message&&s.service?(o.errorData=s,o.statusCode=s.status,o.error=!0,o.category=i._detectErrorCategory(o),n(o,null)):n(o,s)})}function s(e,t,n){var r=c.default.get(this.getStandardOrigin()+t.url).query(e);return i.call(this,r,t,n)}function o(e,t,n,r){var s=c.default.post(this.getStandardOrigin()+n.url).query(e).send(t);return i.call(this,s,n,r)}function a(e,t,n){var r=c.default.delete(this.getStandardOrigin()+t.url).query(e);return i.call(this,r,t,n)}Object.defineProperty(t,"__esModule",{value:!0}),t.get=s,t.post=o,t.del=a;var u=n(43),c=function(e){return e&&e.__esModule?e:{default:e}}(u);n(5)},function(e,t,n){function r(){}function i(e){if(!y(e))return e;var t=[];for(var n in e)s(t,n,e[n]);return t.join("&")}function s(e,t,n){if(null!=n)if(Array.isArray(n))n.forEach(function(n){s(e,t,n)});else if(y(n))for(var r in n)s(e,t+"["+r+"]",n[r]);else e.push(encodeURIComponent(t)+"="+encodeURIComponent(n));else null===n&&e.push(encodeURIComponent(t))}function o(e){for(var t,n,r={},i=e.split("&"),s=0,o=i.length;s<o;++s)t=i[s],n=t.indexOf("="),-1==n?r[decodeURIComponent(t)]="":r[decodeURIComponent(t.slice(0,n))]=decodeURIComponent(t.slice(n+1));return r}function a(e){for(var t,n,r,i,s=e.split(/\r?\n/),o={},a=0,u=s.length;a<u;++a)n=s[a],-1!==(t=n.indexOf(":"))&&(r=n.slice(0,t).toLowerCase(),i=_(n.slice(t+1)),o[r]=i);return o}function u(e){return/[\/+]json($|[^-\w])/.test(e)}function c(e){this.req=e,this.xhr=this.req.xhr,this.text="HEAD"!=this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var t=this.xhr.status;1223===t&&(t=204),this._setStatusProperties(t),this.header=this.headers=a(this.xhr.getAllResponseHeaders()),this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&e._responseType?this.body=this.xhr.response:this.body="HEAD"!=this.req.method?this._parseBody(this.text?this.text:this.xhr.response):null}function l(e,t){var n=this;this._query=this._query||[],this.method=e,this.url=t,this.header={},this._header={},this.on("end",function(){var e=null,t=null;try{t=new c(n)}catch(t){return e=new Error("Parser is unable to parse the response"),e.parse=!0,e.original=t,n.xhr?(e.rawResponse=void 0===n.xhr.responseType?n.xhr.responseText:n.xhr.response,e.status=n.xhr.status?n.xhr.status:null,e.statusCode=e.status):(e.rawResponse=null,e.status=null),n.callback(e)}n.emit("response",t);var r;try{n._isResponseOK(t)||(r=new Error(t.statusText||"Unsuccessful HTTP response"))}catch(e){r=e}r?(r.original=e,r.response=t,r.status=t.status,n.callback(r,t)):n.callback(null,t)})}function h(e,t,n){var r=v("DELETE",e);return"function"==typeof t&&(n=t,t=null),t&&r.send(t),n&&r.end(n),r}var f;"undefined"!=typeof window?f=window:"undefined"!=typeof self?f=self:(console.warn("Using browser-only version of superagent in non-browser environment"),f=this);var p=n(44),d=n(45),y=n(46),g=n(47),b=n(49),v=t=e.exports=function(e,n){return"function"==typeof n?new t.Request("GET",e).end(n):1==arguments.length?new t.Request("GET",e):new t.Request(e,n)};t.Request=l,v.getXHR=function(){if(!(!f.XMLHttpRequest||f.location&&"file:"==f.location.protocol&&f.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(e){}throw Error("Browser-only version of superagent could not find XHR")};var _="".trim?function(e){return e.trim()}:function(e){return e.replace(/(^\s*|\s*$)/g,"")};v.serializeObject=i,v.parseString=o,v.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},v.serialize={"application/x-www-form-urlencoded":i,"application/json":JSON.stringify},v.parse={"application/x-www-form-urlencoded":o,"application/json":JSON.parse},g(c.prototype),c.prototype._parseBody=function(e){var t=v.parse[this.type];return this.req._parser?this.req._parser(this,e):(!t&&u(this.type)&&(t=v.parse["application/json"]),t&&e&&(e.length||e instanceof Object)?t(e):null)},c.prototype.toError=function(){var e=this.req,t=e.method,n=e.url,r="cannot "+t+" "+n+" ("+this.status+")",i=new Error(r);return i.status=this.status,i.method=t,i.url=n,i},v.Response=c,p(l.prototype),d(l.prototype),l.prototype.type=function(e){return this.set("Content-Type",v.types[e]||e),this},l.prototype.accept=function(e){return this.set("Accept",v.types[e]||e),this},l.prototype.auth=function(e,t,n){1===arguments.length&&(t=""),"object"==typeof t&&null!==t&&(n=t,t=""),n||(n={type:"function"==typeof btoa?"basic":"auto"});var r=function(e){if("function"==typeof btoa)return btoa(e);throw new Error("Cannot use basic auth, btoa is not a function")};return this._auth(e,t,n,r)},l.prototype.query=function(e){return"string"!=typeof e&&(e=i(e)),e&&this._query.push(e),this},l.prototype.attach=function(e,t,n){if(t){if(this._data)throw Error("superagent can't mix .send() and .attach()");this._getFormData().append(e,t,n||t.name)}return this},l.prototype._getFormData=function(){return this._formData||(this._formData=new f.FormData),this._formData},l.prototype.callback=function(e,t){if(this._shouldRetry(e,t))return this._retry();var n=this._callback;this.clearTimeout(),e&&(this._maxRetries&&(e.retries=this._retries-1),this.emit("error",e)),n(e,t)},l.prototype.crossDomainError=function(){var e=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");e.crossDomain=!0,e.status=this.status,e.method=this.method,e.url=this.url,this.callback(e)},l.prototype.buffer=l.prototype.ca=l.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},l.prototype.pipe=l.prototype.write=function(){throw Error("Streaming is not supported in browser version of superagent")},l.prototype._isHost=function(e){return e&&"object"==typeof e&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},l.prototype.end=function(e){return this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||r,this._finalizeQueryString(),this._end()},l.prototype._end=function(){var e=this,t=this.xhr=v.getXHR(),n=this._formData||this._data;this._setTimeouts(),t.onreadystatechange=function(){var n=t.readyState;if(n>=2&&e._responseTimeoutTimer&&clearTimeout(e._responseTimeoutTimer),4==n){var r;try{r=t.status}catch(e){r=0}if(!r){if(e.timedout||e._aborted)return;return e.crossDomainError()}e.emit("end")}};var r=function(t,n){n.total>0&&(n.percent=n.loaded/n.total*100),n.direction=t,e.emit("progress",n)};if(this.hasListeners("progress"))try{t.onprogress=r.bind(null,"download"),t.upload&&(t.upload.onprogress=r.bind(null,"upload"))}catch(e){}try{this.username&&this.password?t.open(this.method,this.url,!0,this.username,this.password):t.open(this.method,this.url,!0)}catch(e){return this.callback(e)}if(this._withCredentials&&(t.withCredentials=!0),!this._formData&&"GET"!=this.method&&"HEAD"!=this.method&&"string"!=typeof n&&!this._isHost(n)){var i=this._header["content-type"],s=this._serializer||v.serialize[i?i.split(";")[0]:""];!s&&u(i)&&(s=v.serialize["application/json"]),s&&(n=s(n))}for(var o in this.header)null!=this.header[o]&&this.header.hasOwnProperty(o)&&t.setRequestHeader(o,this.header[o]);return this._responseType&&(t.responseType=this._responseType),this.emit("request",this),t.send(void 0!==n?n:null),this},v.agent=function(){return new b},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach(function(e){b.prototype[e.toLowerCase()]=function(t,n){var r=new v.Request(e,t);return this._setDefaults(r),n&&r.end(n),r}}),b.prototype.del=b.prototype.delete,v.get=function(e,t,n){var r=v("GET",e);return"function"==typeof t&&(n=t,t=null),t&&r.query(t),n&&r.end(n),r},v.head=function(e,t,n){var r=v("HEAD",e);return"function"==typeof t&&(n=t,t=null),t&&r.query(t),n&&r.end(n),r},v.options=function(e,t,n){var r=v("OPTIONS",e);return"function"==typeof t&&(n=t,t=null),t&&r.send(t),n&&r.end(n),r},v.del=h,v.delete=h,v.patch=function(e,t,n){var r=v("PATCH",e);return"function"==typeof t&&(n=t,t=null),t&&r.send(t),n&&r.end(n),r},v.post=function(e,t,n){var r=v("POST",e);return"function"==typeof t&&(n=t,t=null),t&&r.send(t),n&&r.end(n),r},v.put=function(e,t,n){var r=v("PUT",e);return"function"==typeof t&&(n=t,t=null),t&&r.send(t),n&&r.end(n),r}},function(e,t,n){function r(e){if(e)return i(e)}function i(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}e.exports=r,r.prototype.on=r.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},r.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=r.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n=this._callbacks["$"+e];if(!n)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var r,i=0;i<n.length;i++)if((r=n[i])===t||r.fn===t){n.splice(i,1);break}return this},r.prototype.emit=function(e){this._callbacks=this._callbacks||{};var t=[].slice.call(arguments,1),n=this._callbacks["$"+e];if(n){n=n.slice(0);for(var r=0,i=n.length;r<i;++r)n[r].apply(this,t)}return this},r.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},r.prototype.hasListeners=function(e){return!!this.listeners(e).length}},function(e,t,n){"use strict";function r(e){if(e)return i(e)}function i(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}var s=n(46);e.exports=r,r.prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,this},r.prototype.parse=function(e){return this._parser=e,this},r.prototype.responseType=function(e){return this._responseType=e,this},r.prototype.serialize=function(e){return this._serializer=e,this},r.prototype.timeout=function(e){if(!e||"object"!=typeof e)return this._timeout=e,this._responseTimeout=0,this;for(var t in e)switch(t){case"deadline":this._timeout=e.deadline;break;case"response":this._responseTimeout=e.response;break;default:console.warn("Unknown timeout option",t)}return this},r.prototype.retry=function(e,t){return 0!==arguments.length&&!0!==e||(e=1),e<=0&&(e=0),this._maxRetries=e,this._retries=0,this._retryCallback=t,this};var o=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];r.prototype._shouldRetry=function(e,t){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var n=this._retryCallback(e,t);if(!0===n)return!0;if(!1===n)return!1}catch(e){console.error(e)}if(t&&t.status&&t.status>=500&&501!=t.status)return!0;if(e){if(e.code&&~o.indexOf(e.code))return!0;if(e.timeout&&"ECONNABORTED"==e.code)return!0;if(e.crossDomain)return!0}return!1},r.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this._end()},r.prototype.then=function(e,t){if(!this._fullfilledPromise){var n=this;this._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise(function(e,t){n.end(function(n,r){n?t(n):e(r)})})}return this._fullfilledPromise.then(e,t)},r.prototype.catch=function(e){return this.then(void 0,e)},r.prototype.use=function(e){return e(this),this},r.prototype.ok=function(e){if("function"!=typeof e)throw Error("Callback required");return this._okCallback=e,this},r.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):e.status>=200&&e.status<300)},r.prototype.get=function(e){return this._header[e.toLowerCase()]},r.prototype.getHeader=r.prototype.get,r.prototype.set=function(e,t){if(s(e)){for(var n in e)this.set(n,e[n]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},r.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},r.prototype.field=function(e,t){if(null===e||void 0===e)throw new Error(".field(name, val) name can not be empty");if(this._data&&console.error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()"),s(e)){for(var n in e)this.field(n,e[n]);return this}if(Array.isArray(t)){for(var r in t)this.field(e,t[r]);return this}if(null===t||void 0===t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=""+t),this._getFormData().append(e,t),this},r.prototype.abort=function(){return this._aborted?this:(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort"),this)},r.prototype._auth=function(e,t,n,r){switch(n.type){case"basic":this.set("Authorization","Basic "+r(e+":"+t));break;case"auto":this.username=e,this.password=t;break;case"bearer":this.set("Authorization","Bearer "+e)}return this},r.prototype.withCredentials=function(e){return void 0==e&&(e=!0),this._withCredentials=e,this},r.prototype.redirects=function(e){return this._maxRedirects=e,this},r.prototype.maxResponseSize=function(e){if("number"!=typeof e)throw TypeError("Invalid argument");return this._maxResponseSize=e,this},r.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},r.prototype.send=function(e){var t=s(e),n=this._header["content-type"];if(this._formData&&console.error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()"),t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw Error("Can't merge these send calls");if(t&&s(this._data))for(var r in e)this._data[r]=e[r];else"string"==typeof e?(n||this.type("form"),n=this._header["content-type"],this._data="application/x-www-form-urlencoded"==n?this._data?this._data+"&"+e:e:(this._data||"")+e):this._data=e;return!t||this._isHost(e)?this:(n||this.type("json"),this)},r.prototype.sortQuery=function(e){return this._sort=void 0===e||e,this},r.prototype._finalizeQueryString=function(){var e=this._query.join("&");if(e&&(this.url+=(this.url.indexOf("?")>=0?"&":"?")+e),this._query.length=0,this._sort){var t=this.url.indexOf("?");if(t>=0){var n=this.url.substring(t+1).split("&");"function"==typeof this._sort?n.sort(this._sort):n.sort(),this.url=this.url.substring(0,t)+"?"+n.join("&")}}},r.prototype._appendQueryString=function(){console.trace("Unsupported")},r.prototype._timeoutError=function(e,t,n){if(!this._aborted){var r=new Error(e+t+"ms exceeded");r.timeout=t,r.code="ECONNABORTED",r.errno=n,this.timedout=!0,this.abort(),this.callback(r)}},r.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout(function(){e._timeoutError("Timeout of ",e._timeout,"ETIME")},this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout(function(){e._timeoutError("Response timeout of ",e._responseTimeout,"ETIMEDOUT")},this._responseTimeout))}},function(e,t){"use strict";function n(e){return null!==e&&"object"==typeof e}e.exports=n},function(e,t,n){"use strict";function r(e){if(e)return i(e)}function i(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}var s=n(48);e.exports=r,r.prototype.get=function(e){return this.header[e.toLowerCase()]},r.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=s.type(t);var n=s.params(t);for(var r in n)this[r]=n[r];this.links={};try{e.link&&(this.links=s.parseLinks(e.link))}catch(e){}},r.prototype._setStatusProperties=function(e){var t=e/100|0;this.status=this.statusCode=e,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.created=201==e,this.accepted=202==e,this.noContent=204==e,this.badRequest=400==e,this.unauthorized=401==e,this.notAcceptable=406==e,this.forbidden=403==e,this.notFound=404==e,this.unprocessableEntity=422==e}},function(e,t){"use strict";t.type=function(e){return e.split(/ *; */).shift()},t.params=function(e){return e.split(/ *; */).reduce(function(e,t){var n=t.split(/ *= */),r=n.shift(),i=n.shift();return r&&i&&(e[r]=i),e},{})},t.parseLinks=function(e){return e.split(/ *, */).reduce(function(e,t){var n=t.split(/ *; */),r=n[0].slice(1,-1);return e[n[1].split(/ *= */)[1].slice(1,-1)]=r,e},{})},t.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&(delete e.authorization,delete e.cookie),e}},function(e,t){function n(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert"].forEach(function(e){n.prototype[e]=function(){return this._defaults.push({fn:e,arguments:arguments}),this}}),n.prototype._setDefaults=function(e){this._defaults.forEach(function(t){e[t.fn].apply(e,t.arguments)})},e.exports=n}])});
|
|
19924
|
-
},{}],
|
|
20445
|
+
},{}],88:[function(require,module,exports){
|
|
19925
20446
|
(function (global){
|
|
19926
20447
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
19927
20448
|
;(function(root) {
|
|
@@ -20458,7 +20979,7 @@ d.length>0&&(y.auth=d.join(",")),(o||0===o)&&(y.ttl=o),y}function c(){return{}}O
|
|
|
20458
20979
|
}(this));
|
|
20459
20980
|
|
|
20460
20981
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
20461
|
-
},{}],
|
|
20982
|
+
},{}],89:[function(require,module,exports){
|
|
20462
20983
|
(function (process){
|
|
20463
20984
|
// vim:ts=4:sts=4:sw=4:
|
|
20464
20985
|
/*!
|
|
@@ -22510,7 +23031,7 @@ return Q;
|
|
|
22510
23031
|
});
|
|
22511
23032
|
|
|
22512
23033
|
}).call(this,require('_process'))
|
|
22513
|
-
},{"_process":
|
|
23034
|
+
},{"_process":86}],90:[function(require,module,exports){
|
|
22514
23035
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
22515
23036
|
//
|
|
22516
23037
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -22596,7 +23117,7 @@ var isArray = Array.isArray || function (xs) {
|
|
|
22596
23117
|
return Object.prototype.toString.call(xs) === '[object Array]';
|
|
22597
23118
|
};
|
|
22598
23119
|
|
|
22599
|
-
},{}],
|
|
23120
|
+
},{}],91:[function(require,module,exports){
|
|
22600
23121
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
22601
23122
|
//
|
|
22602
23123
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -22683,16 +23204,16 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
22683
23204
|
return res;
|
|
22684
23205
|
};
|
|
22685
23206
|
|
|
22686
|
-
},{}],
|
|
23207
|
+
},{}],92:[function(require,module,exports){
|
|
22687
23208
|
'use strict';
|
|
22688
23209
|
|
|
22689
23210
|
exports.decode = exports.parse = require('./decode');
|
|
22690
23211
|
exports.encode = exports.stringify = require('./encode');
|
|
22691
23212
|
|
|
22692
|
-
},{"./decode":
|
|
23213
|
+
},{"./decode":90,"./encode":91}],93:[function(require,module,exports){
|
|
22693
23214
|
module.exports = require('./lib/_stream_duplex.js');
|
|
22694
23215
|
|
|
22695
|
-
},{"./lib/_stream_duplex.js":
|
|
23216
|
+
},{"./lib/_stream_duplex.js":94}],94:[function(require,module,exports){
|
|
22696
23217
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
22697
23218
|
//
|
|
22698
23219
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -22824,7 +23345,7 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
|
22824
23345
|
|
|
22825
23346
|
pna.nextTick(cb, err);
|
|
22826
23347
|
};
|
|
22827
|
-
},{"./_stream_readable":
|
|
23348
|
+
},{"./_stream_readable":96,"./_stream_writable":98,"core-util-is":47,"inherits":75,"process-nextick-args":85}],95:[function(require,module,exports){
|
|
22828
23349
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
22829
23350
|
//
|
|
22830
23351
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -22872,7 +23393,7 @@ function PassThrough(options) {
|
|
|
22872
23393
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
22873
23394
|
cb(null, chunk);
|
|
22874
23395
|
};
|
|
22875
|
-
},{"./_stream_transform":
|
|
23396
|
+
},{"./_stream_transform":97,"core-util-is":47,"inherits":75}],96:[function(require,module,exports){
|
|
22876
23397
|
(function (process,global){
|
|
22877
23398
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
22878
23399
|
//
|
|
@@ -23894,7 +24415,7 @@ function indexOf(xs, x) {
|
|
|
23894
24415
|
return -1;
|
|
23895
24416
|
}
|
|
23896
24417
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
23897
|
-
},{"./_stream_duplex":
|
|
24418
|
+
},{"./_stream_duplex":94,"./internal/streams/BufferList":99,"./internal/streams/destroy":100,"./internal/streams/stream":101,"_process":86,"core-util-is":47,"events":66,"inherits":75,"isarray":76,"process-nextick-args":85,"safe-buffer":107,"string_decoder/":131,"util":42}],97:[function(require,module,exports){
|
|
23898
24419
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
23899
24420
|
//
|
|
23900
24421
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -24109,7 +24630,7 @@ function done(stream, er, data) {
|
|
|
24109
24630
|
|
|
24110
24631
|
return stream.push(null);
|
|
24111
24632
|
}
|
|
24112
|
-
},{"./_stream_duplex":
|
|
24633
|
+
},{"./_stream_duplex":94,"core-util-is":47,"inherits":75}],98:[function(require,module,exports){
|
|
24113
24634
|
(function (process,global){
|
|
24114
24635
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
24115
24636
|
//
|
|
@@ -24799,7 +25320,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
24799
25320
|
cb(err);
|
|
24800
25321
|
};
|
|
24801
25322
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
24802
|
-
},{"./_stream_duplex":
|
|
25323
|
+
},{"./_stream_duplex":94,"./internal/streams/destroy":100,"./internal/streams/stream":101,"_process":86,"core-util-is":47,"inherits":75,"process-nextick-args":85,"safe-buffer":107,"util-deprecate":139}],99:[function(require,module,exports){
|
|
24803
25324
|
'use strict';
|
|
24804
25325
|
|
|
24805
25326
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -24879,7 +25400,7 @@ if (util && util.inspect && util.inspect.custom) {
|
|
|
24879
25400
|
return this.constructor.name + ' ' + obj;
|
|
24880
25401
|
};
|
|
24881
25402
|
}
|
|
24882
|
-
},{"safe-buffer":
|
|
25403
|
+
},{"safe-buffer":107,"util":42}],100:[function(require,module,exports){
|
|
24883
25404
|
'use strict';
|
|
24884
25405
|
|
|
24885
25406
|
/*<replacement>*/
|
|
@@ -24954,13 +25475,13 @@ module.exports = {
|
|
|
24954
25475
|
destroy: destroy,
|
|
24955
25476
|
undestroy: undestroy
|
|
24956
25477
|
};
|
|
24957
|
-
},{"process-nextick-args":
|
|
25478
|
+
},{"process-nextick-args":85}],101:[function(require,module,exports){
|
|
24958
25479
|
module.exports = require('events').EventEmitter;
|
|
24959
25480
|
|
|
24960
|
-
},{"events":
|
|
25481
|
+
},{"events":66}],102:[function(require,module,exports){
|
|
24961
25482
|
module.exports = require('./readable').PassThrough
|
|
24962
25483
|
|
|
24963
|
-
},{"./readable":
|
|
25484
|
+
},{"./readable":103}],103:[function(require,module,exports){
|
|
24964
25485
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
24965
25486
|
exports.Stream = exports;
|
|
24966
25487
|
exports.Readable = exports;
|
|
@@ -24969,13 +25490,13 @@ exports.Duplex = require('./lib/_stream_duplex.js');
|
|
|
24969
25490
|
exports.Transform = require('./lib/_stream_transform.js');
|
|
24970
25491
|
exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
24971
25492
|
|
|
24972
|
-
},{"./lib/_stream_duplex.js":
|
|
25493
|
+
},{"./lib/_stream_duplex.js":94,"./lib/_stream_passthrough.js":95,"./lib/_stream_readable.js":96,"./lib/_stream_transform.js":97,"./lib/_stream_writable.js":98}],104:[function(require,module,exports){
|
|
24973
25494
|
module.exports = require('./readable').Transform
|
|
24974
25495
|
|
|
24975
|
-
},{"./readable":
|
|
25496
|
+
},{"./readable":103}],105:[function(require,module,exports){
|
|
24976
25497
|
module.exports = require('./lib/_stream_writable.js');
|
|
24977
25498
|
|
|
24978
|
-
},{"./lib/_stream_writable.js":
|
|
25499
|
+
},{"./lib/_stream_writable.js":98}],106:[function(require,module,exports){
|
|
24979
25500
|
|
|
24980
25501
|
/**
|
|
24981
25502
|
* Reduce `arr` with `fn`.
|
|
@@ -25000,7 +25521,7 @@ module.exports = function(arr, fn, initial){
|
|
|
25000
25521
|
|
|
25001
25522
|
return curr;
|
|
25002
25523
|
};
|
|
25003
|
-
},{}],
|
|
25524
|
+
},{}],107:[function(require,module,exports){
|
|
25004
25525
|
/* eslint-disable node/no-deprecated-api */
|
|
25005
25526
|
var buffer = require('buffer')
|
|
25006
25527
|
var Buffer = buffer.Buffer
|
|
@@ -25064,7 +25585,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
25064
25585
|
return buffer.SlowBuffer(size)
|
|
25065
25586
|
}
|
|
25066
25587
|
|
|
25067
|
-
},{"buffer":
|
|
25588
|
+
},{"buffer":43}],108:[function(require,module,exports){
|
|
25068
25589
|
|
|
25069
25590
|
/**
|
|
25070
25591
|
* Module dependencies.
|
|
@@ -25158,7 +25679,7 @@ exports.connect = lookup;
|
|
|
25158
25679
|
exports.Manager = require('./manager');
|
|
25159
25680
|
exports.Socket = require('./socket');
|
|
25160
25681
|
|
|
25161
|
-
},{"./manager":
|
|
25682
|
+
},{"./manager":109,"./socket":111,"./url":112,"debug":114,"socket.io-parser":118}],109:[function(require,module,exports){
|
|
25162
25683
|
|
|
25163
25684
|
/**
|
|
25164
25685
|
* Module dependencies.
|
|
@@ -25717,7 +26238,7 @@ Manager.prototype.onreconnect = function(){
|
|
|
25717
26238
|
this.emitAll('reconnect', attempt);
|
|
25718
26239
|
};
|
|
25719
26240
|
|
|
25720
|
-
},{"./on":
|
|
26241
|
+
},{"./on":110,"./socket":111,"backo2":38,"component-bind":45,"component-emitter":113,"debug":114,"engine.io-client":48,"indexof":74,"socket.io-parser":118}],110:[function(require,module,exports){
|
|
25721
26242
|
|
|
25722
26243
|
/**
|
|
25723
26244
|
* Module exports.
|
|
@@ -25743,7 +26264,7 @@ function on(obj, ev, fn) {
|
|
|
25743
26264
|
};
|
|
25744
26265
|
}
|
|
25745
26266
|
|
|
25746
|
-
},{}],
|
|
26267
|
+
},{}],111:[function(require,module,exports){
|
|
25747
26268
|
|
|
25748
26269
|
/**
|
|
25749
26270
|
* Module dependencies.
|
|
@@ -26157,7 +26678,7 @@ Socket.prototype.compress = function(compress){
|
|
|
26157
26678
|
return this;
|
|
26158
26679
|
};
|
|
26159
26680
|
|
|
26160
|
-
},{"./on":
|
|
26681
|
+
},{"./on":110,"component-bind":45,"component-emitter":113,"debug":114,"has-binary":69,"socket.io-parser":118,"to-array":135}],112:[function(require,module,exports){
|
|
26161
26682
|
(function (global){
|
|
26162
26683
|
|
|
26163
26684
|
/**
|
|
@@ -26237,7 +26758,7 @@ function url(uri, loc){
|
|
|
26237
26758
|
}
|
|
26238
26759
|
|
|
26239
26760
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
26240
|
-
},{"debug":
|
|
26761
|
+
},{"debug":114,"parseuri":84}],113:[function(require,module,exports){
|
|
26241
26762
|
|
|
26242
26763
|
/**
|
|
26243
26764
|
* Expose `Emitter`.
|
|
@@ -26400,13 +26921,13 @@ Emitter.prototype.hasListeners = function(event){
|
|
|
26400
26921
|
return !! this.listeners(event).length;
|
|
26401
26922
|
};
|
|
26402
26923
|
|
|
26403
|
-
},{}],
|
|
26404
|
-
arguments[4][58][0].apply(exports,arguments)
|
|
26405
|
-
},{"./debug":114,"dup":58}],114:[function(require,module,exports){
|
|
26924
|
+
},{}],114:[function(require,module,exports){
|
|
26406
26925
|
arguments[4][59][0].apply(exports,arguments)
|
|
26407
|
-
},{"
|
|
26926
|
+
},{"./debug":115,"dup":59}],115:[function(require,module,exports){
|
|
26408
26927
|
arguments[4][60][0].apply(exports,arguments)
|
|
26409
|
-
},{"dup":60}],116:[function(require,module,exports){
|
|
26928
|
+
},{"dup":60,"ms":116}],116:[function(require,module,exports){
|
|
26929
|
+
arguments[4][61][0].apply(exports,arguments)
|
|
26930
|
+
},{"dup":61}],117:[function(require,module,exports){
|
|
26410
26931
|
(function (global){
|
|
26411
26932
|
/*global Blob,File*/
|
|
26412
26933
|
|
|
@@ -26551,7 +27072,7 @@ exports.removeBlobs = function(data, callback) {
|
|
|
26551
27072
|
};
|
|
26552
27073
|
|
|
26553
27074
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
26554
|
-
},{"./is-buffer":
|
|
27075
|
+
},{"./is-buffer":119,"isarray":123}],118:[function(require,module,exports){
|
|
26555
27076
|
|
|
26556
27077
|
/**
|
|
26557
27078
|
* Module dependencies.
|
|
@@ -26953,7 +27474,7 @@ function error(data){
|
|
|
26953
27474
|
};
|
|
26954
27475
|
}
|
|
26955
27476
|
|
|
26956
|
-
},{"./binary":
|
|
27477
|
+
},{"./binary":117,"./is-buffer":119,"component-emitter":120,"debug":121,"isarray":123,"json3":77}],119:[function(require,module,exports){
|
|
26957
27478
|
(function (global){
|
|
26958
27479
|
|
|
26959
27480
|
module.exports = isBuf;
|
|
@@ -26970,17 +27491,17 @@ function isBuf(obj) {
|
|
|
26970
27491
|
}
|
|
26971
27492
|
|
|
26972
27493
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
26973
|
-
},{}],
|
|
26974
|
-
arguments[4][57][0].apply(exports,arguments)
|
|
26975
|
-
},{"dup":57}],120:[function(require,module,exports){
|
|
27494
|
+
},{}],120:[function(require,module,exports){
|
|
26976
27495
|
arguments[4][58][0].apply(exports,arguments)
|
|
26977
|
-
},{"
|
|
27496
|
+
},{"dup":58}],121:[function(require,module,exports){
|
|
26978
27497
|
arguments[4][59][0].apply(exports,arguments)
|
|
26979
|
-
},{"
|
|
26980
|
-
arguments[4][64][0].apply(exports,arguments)
|
|
26981
|
-
},{"dup":64}],123:[function(require,module,exports){
|
|
27498
|
+
},{"./debug":122,"dup":59}],122:[function(require,module,exports){
|
|
26982
27499
|
arguments[4][60][0].apply(exports,arguments)
|
|
26983
|
-
},{"dup":60}],
|
|
27500
|
+
},{"dup":60,"ms":124}],123:[function(require,module,exports){
|
|
27501
|
+
arguments[4][65][0].apply(exports,arguments)
|
|
27502
|
+
},{"dup":65}],124:[function(require,module,exports){
|
|
27503
|
+
arguments[4][61][0].apply(exports,arguments)
|
|
27504
|
+
},{"dup":61}],125:[function(require,module,exports){
|
|
26984
27505
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
26985
27506
|
//
|
|
26986
27507
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -27109,7 +27630,7 @@ Stream.prototype.pipe = function(dest, options) {
|
|
|
27109
27630
|
return dest;
|
|
27110
27631
|
};
|
|
27111
27632
|
|
|
27112
|
-
},{"events":
|
|
27633
|
+
},{"events":66,"inherits":75,"readable-stream/duplex.js":93,"readable-stream/passthrough.js":102,"readable-stream/readable.js":103,"readable-stream/transform.js":104,"readable-stream/writable.js":105}],126:[function(require,module,exports){
|
|
27113
27634
|
var ClientRequest = require('./lib/request')
|
|
27114
27635
|
var extend = require('xtend')
|
|
27115
27636
|
var statusCodes = require('builtin-status-codes')
|
|
@@ -27184,7 +27705,7 @@ http.METHODS = [
|
|
|
27184
27705
|
'UNLOCK',
|
|
27185
27706
|
'UNSUBSCRIBE'
|
|
27186
27707
|
]
|
|
27187
|
-
},{"./lib/request":
|
|
27708
|
+
},{"./lib/request":128,"builtin-status-codes":44,"url":137,"xtend":142}],127:[function(require,module,exports){
|
|
27188
27709
|
(function (global){
|
|
27189
27710
|
exports.fetch = isFunction(global.fetch) && isFunction(global.ReadableByteStream)
|
|
27190
27711
|
|
|
@@ -27228,7 +27749,7 @@ function isFunction (value) {
|
|
|
27228
27749
|
xhr = null // Help gc
|
|
27229
27750
|
|
|
27230
27751
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
27231
|
-
},{}],
|
|
27752
|
+
},{}],128:[function(require,module,exports){
|
|
27232
27753
|
(function (process,global,Buffer){
|
|
27233
27754
|
// var Base64 = require('Base64')
|
|
27234
27755
|
var capability = require('./capability')
|
|
@@ -27510,7 +28031,7 @@ var unsafeHeaders = [
|
|
|
27510
28031
|
]
|
|
27511
28032
|
|
|
27512
28033
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
|
27513
|
-
},{"./capability":
|
|
28034
|
+
},{"./capability":127,"./response":129,"_process":86,"buffer":43,"foreach":68,"indexof":74,"inherits":75,"object-keys":79,"stream":125}],129:[function(require,module,exports){
|
|
27514
28035
|
(function (process,global,Buffer){
|
|
27515
28036
|
var capability = require('./capability')
|
|
27516
28037
|
var foreach = require('foreach')
|
|
@@ -27687,7 +28208,7 @@ IncomingMessage.prototype._onXHRProgress = function () {
|
|
|
27687
28208
|
}
|
|
27688
28209
|
|
|
27689
28210
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
|
27690
|
-
},{"./capability":
|
|
28211
|
+
},{"./capability":127,"_process":86,"buffer":43,"foreach":68,"inherits":75,"stream":125}],130:[function(require,module,exports){
|
|
27691
28212
|
var nargs = /\{([0-9a-zA-Z_]+)\}/g
|
|
27692
28213
|
|
|
27693
28214
|
module.exports = template
|
|
@@ -27725,7 +28246,7 @@ function template(string) {
|
|
|
27725
28246
|
})
|
|
27726
28247
|
}
|
|
27727
28248
|
|
|
27728
|
-
},{}],
|
|
28249
|
+
},{}],131:[function(require,module,exports){
|
|
27729
28250
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
27730
28251
|
//
|
|
27731
28252
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -28022,7 +28543,7 @@ function simpleWrite(buf) {
|
|
|
28022
28543
|
function simpleEnd(buf) {
|
|
28023
28544
|
return buf && buf.length ? this.write(buf) : '';
|
|
28024
28545
|
}
|
|
28025
|
-
},{"safe-buffer":
|
|
28546
|
+
},{"safe-buffer":107}],132:[function(require,module,exports){
|
|
28026
28547
|
/**
|
|
28027
28548
|
* Module dependencies.
|
|
28028
28549
|
*/
|
|
@@ -29215,7 +29736,7 @@ request.put = function(url, data, fn){
|
|
|
29215
29736
|
|
|
29216
29737
|
module.exports = request;
|
|
29217
29738
|
|
|
29218
|
-
},{"emitter":
|
|
29739
|
+
},{"emitter":133,"reduce":106}],133:[function(require,module,exports){
|
|
29219
29740
|
|
|
29220
29741
|
/**
|
|
29221
29742
|
* Expose `Emitter`.
|
|
@@ -29380,7 +29901,7 @@ Emitter.prototype.hasListeners = function(event){
|
|
|
29380
29901
|
return !! this.listeners(event).length;
|
|
29381
29902
|
};
|
|
29382
29903
|
|
|
29383
|
-
},{}],
|
|
29904
|
+
},{}],134:[function(require,module,exports){
|
|
29384
29905
|
(function (Buffer){
|
|
29385
29906
|
"0.50.0";
|
|
29386
29907
|
/*
|
|
@@ -37577,7 +38098,7 @@ TinCan client library
|
|
|
37577
38098
|
}());
|
|
37578
38099
|
|
|
37579
38100
|
}).call(this,require("buffer").Buffer)
|
|
37580
|
-
},{"buffer":
|
|
38101
|
+
},{"buffer":43,"querystring":92,"xhr2":141}],135:[function(require,module,exports){
|
|
37581
38102
|
module.exports = toArray
|
|
37582
38103
|
|
|
37583
38104
|
function toArray(list, index) {
|
|
@@ -37592,7 +38113,7 @@ function toArray(list, index) {
|
|
|
37592
38113
|
return array
|
|
37593
38114
|
}
|
|
37594
38115
|
|
|
37595
|
-
},{}],
|
|
38116
|
+
},{}],136:[function(require,module,exports){
|
|
37596
38117
|
// Underscore.js 1.8.3
|
|
37597
38118
|
// http://underscorejs.org
|
|
37598
38119
|
// (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
@@ -39142,7 +39663,7 @@ function toArray(list, index) {
|
|
|
39142
39663
|
}
|
|
39143
39664
|
}.call(this));
|
|
39144
39665
|
|
|
39145
|
-
},{}],
|
|
39666
|
+
},{}],137:[function(require,module,exports){
|
|
39146
39667
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
39147
39668
|
//
|
|
39148
39669
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -39851,7 +40372,7 @@ function isNullOrUndefined(arg) {
|
|
|
39851
40372
|
return arg == null;
|
|
39852
40373
|
}
|
|
39853
40374
|
|
|
39854
|
-
},{"punycode":
|
|
40375
|
+
},{"punycode":88,"querystring":92}],138:[function(require,module,exports){
|
|
39855
40376
|
(function (global){
|
|
39856
40377
|
/*! https://mths.be/utf8js v2.0.0 by @mathias */
|
|
39857
40378
|
;(function(root) {
|
|
@@ -40099,7 +40620,7 @@ function isNullOrUndefined(arg) {
|
|
|
40099
40620
|
}(this));
|
|
40100
40621
|
|
|
40101
40622
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
40102
|
-
},{}],
|
|
40623
|
+
},{}],139:[function(require,module,exports){
|
|
40103
40624
|
(function (global){
|
|
40104
40625
|
|
|
40105
40626
|
/**
|
|
@@ -40170,7 +40691,7 @@ function config (name) {
|
|
|
40170
40691
|
}
|
|
40171
40692
|
|
|
40172
40693
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
40173
|
-
},{}],
|
|
40694
|
+
},{}],140:[function(require,module,exports){
|
|
40174
40695
|
/*!
|
|
40175
40696
|
* validate.js 0.9.0
|
|
40176
40697
|
*
|
|
@@ -41258,7 +41779,7 @@ function config (name) {
|
|
|
41258
41779
|
typeof module !== 'undefined' ? /* istanbul ignore next */ module : null,
|
|
41259
41780
|
typeof define !== 'undefined' ? /* istanbul ignore next */ define : null);
|
|
41260
41781
|
|
|
41261
|
-
},{}],
|
|
41782
|
+
},{}],141:[function(require,module,exports){
|
|
41262
41783
|
(function (process,Buffer){
|
|
41263
41784
|
// Generated by CoffeeScript 1.6.3
|
|
41264
41785
|
(function() {
|
|
@@ -42096,7 +42617,7 @@ function config (name) {
|
|
|
42096
42617
|
}).call(this);
|
|
42097
42618
|
|
|
42098
42619
|
}).call(this,require('_process'),require("buffer").Buffer)
|
|
42099
|
-
},{"_process":
|
|
42620
|
+
},{"_process":86,"buffer":43,"http":126,"https":72,"os":81,"url":137}],142:[function(require,module,exports){
|
|
42100
42621
|
module.exports = extend
|
|
42101
42622
|
|
|
42102
42623
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -42117,7 +42638,7 @@ function extend() {
|
|
|
42117
42638
|
return target
|
|
42118
42639
|
}
|
|
42119
42640
|
|
|
42120
|
-
},{}],
|
|
42641
|
+
},{}],143:[function(require,module,exports){
|
|
42121
42642
|
'use strict';
|
|
42122
42643
|
|
|
42123
42644
|
var alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split('')
|