@cumulus/message 18.3.4 → 19.0.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/Collections.d.ts CHANGED
@@ -27,8 +27,8 @@ export declare const constructCollectionId: (name: string, version: string) => s
27
27
  * Returns the name and version of a collection based on
28
28
  * the collectionId used in elasticsearch indexing
29
29
  *
30
- * @param {string} collectionId - collectionId used in elasticsearch index
31
- * @returns {Object} name and version as object
30
+ * @param collectionId - collectionId used in elasticsearch index
31
+ * @returns - name and version as object
32
32
  *
33
33
  * @alias module:Collections
34
34
  */
package/Collections.js CHANGED
@@ -17,8 +17,8 @@ exports.constructCollectionId = constructCollectionId;
17
17
  * Returns the name and version of a collection based on
18
18
  * the collectionId used in elasticsearch indexing
19
19
  *
20
- * @param {string} collectionId - collectionId used in elasticsearch index
21
- * @returns {Object} name and version as object
20
+ * @param collectionId - collectionId used in elasticsearch index
21
+ * @returns - name and version as object
22
22
  *
23
23
  * @alias module:Collections
24
24
  */
package/README.md CHANGED
@@ -37,7 +37,7 @@ from a Cumulus message</p>
37
37
  <dt><a href="#exp_module_Collections--constructCollectionId">constructCollectionId(name, version)</a> ⇒ <code>string</code> ⏏</dt>
38
38
  <dd><p>Returns the collection ID.</p>
39
39
  </dd>
40
- <dt><a href="#exp_module_Collections--deconstructCollectionId">deconstructCollectionId(collectionId)</a> ⇒ <code>Object</code> ⏏</dt>
40
+ <dt><a href="#exp_module_Collections--deconstructCollectionId">deconstructCollectionId(collectionId)</a> ⇒ ⏏</dt>
41
41
  <dd><p>Returns the name and version of a collection based on
42
42
  the collectionId used in elasticsearch indexing</p>
43
43
  </dd>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/message",
3
- "version": "18.3.4",
3
+ "version": "19.0.0",
4
4
  "description": "Utilities for building and parsing Cumulus messages",
5
5
  "keywords": [
6
6
  "GIBS",
@@ -41,11 +41,11 @@
41
41
  "author": "Cumulus Authors",
42
42
  "license": "Apache-2.0",
43
43
  "dependencies": {
44
- "@cumulus/aws-client": "18.3.4",
45
- "@cumulus/common": "18.3.4",
46
- "@cumulus/errors": "18.3.4",
47
- "@cumulus/logger": "18.3.4",
48
- "@cumulus/types": "18.3.4",
44
+ "@cumulus/aws-client": "19.0.0",
45
+ "@cumulus/common": "19.0.0",
46
+ "@cumulus/errors": "19.0.0",
47
+ "@cumulus/logger": "19.0.0",
48
+ "@cumulus/types": "19.0.0",
49
49
  "jsonpath-plus": "^3.0.0",
50
50
  "lodash": "^4.17.21",
51
51
  "uuidv4": "^6.2.13"
@@ -53,5 +53,5 @@
53
53
  "devDependencies": {
54
54
  "@types/uuid": "^8.0.0"
55
55
  },
56
- "gitHead": "d2ddab76522b140fd7b92d865a8e0ec5d80485c7"
56
+ "gitHead": "3a619db6e6fa20846eb75802e89d5a065fd62fcc"
57
57
  }
@@ -35,8 +35,8 @@ export const constructCollectionId = (name: string, version: string) =>
35
35
  * Returns the name and version of a collection based on
36
36
  * the collectionId used in elasticsearch indexing
37
37
  *
38
- * @param {string} collectionId - collectionId used in elasticsearch index
39
- * @returns {Object} name and version as object
38
+ * @param collectionId - collectionId used in elasticsearch index
39
+ * @returns - name and version as object
40
40
  *
41
41
  * @alias module:Collections
42
42
  */