@ttahub/common 2.1.5 → 2.1.7
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/README.md +6 -2
- package/package.json +1 -1
- package/src/constants.js +6 -0
package/README.md
CHANGED
|
@@ -21,7 +21,11 @@ Note: On Windows you will need to use `yarn add @ttahub/common@1.x.0` to update
|
|
|
21
21
|
|
|
22
22
|
## Versions
|
|
23
23
|
|
|
24
|
-
## 1.
|
|
24
|
+
## 2.1.6
|
|
25
|
+
|
|
26
|
+
Remove constants related to ElasticSearch.
|
|
27
|
+
|
|
28
|
+
## 1.4.0
|
|
25
29
|
Add SUPPORT_TYPE
|
|
26
30
|
|
|
27
31
|
### 1.1.9/1.2.0
|
|
@@ -40,7 +44,7 @@ Distinguish between training report url params and training report statuses
|
|
|
40
44
|
Add "event target populations"
|
|
41
45
|
|
|
42
46
|
### 1.1.2
|
|
43
|
-
#### 1.1.1
|
|
47
|
+
#### 1.1.1
|
|
44
48
|
- Add COLLABORATOR_TRAINING_REPORTS permissions
|
|
45
49
|
|
|
46
50
|
|
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -381,3 +381,9 @@ exports.DISALLOWED_URLS = DISALLOWED_URLS;
|
|
|
381
381
|
const VALID_URL_REGEX = /(?<url>(?<scheme>http(?:s)?):\/\/(?:(?<user>[a-zA-Z0-9._]+)(?:[:](?<password>[a-zA-Z0-9%._\+~#=]+))?[@])?(?:(?:www\.)?(?<host>[-a-zA-Z0-9%._\+~#=]{1,}\.[a-z]{2,6})|(?<ip>(?:[0-9]{1,3}\.){3}[0-9]{1,3}))(?:[:](?<port>[0-9]+))?(?:[\/](?<path>[-a-zA-Z0-9'@:%_\+.,~#&\/=()]*[-a-zA-Z0-9@:%_\+.~#&\/=()])?)?(?:[?](?<query>[-a-zA-Z0-9@:%_\+.~#&\/=()]*))*)/ig;
|
|
382
382
|
exports.VALID_URL_REGEX = VALID_URL_REGEX;
|
|
383
383
|
|
|
384
|
+
const TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS = {
|
|
385
|
+
TRAINING: 'training',
|
|
386
|
+
TECHNICAL_ASSISTANCE: 'technical-assistance',
|
|
387
|
+
BOTH: 'both',
|
|
388
|
+
};
|
|
389
|
+
exports.TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS = TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS;
|