@sockethub/platform-feeds 3.0.0-alpha.3 → 3.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/API.md +1 -1
- package/index.js +3 -3
- package/package.json +3 -3
package/API.md
CHANGED
package/index.js
CHANGED
|
@@ -53,7 +53,7 @@ const PlatformSchema = {
|
|
|
53
53
|
"enum": [ "date" ]
|
|
54
54
|
},
|
|
55
55
|
"after": {
|
|
56
|
-
"type": "date"
|
|
56
|
+
"type": "date-time"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
},
|
|
@@ -71,7 +71,7 @@ const PlatformSchema = {
|
|
|
71
71
|
"enum": [ "url" ]
|
|
72
72
|
},
|
|
73
73
|
"after": {
|
|
74
|
-
"type": "
|
|
74
|
+
"type": "date-time"
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
}
|
|
@@ -144,7 +144,7 @@ class Feeds {
|
|
|
144
144
|
* type: "parameters",
|
|
145
145
|
* limit: 10, // default 10
|
|
146
146
|
* property: 'date'
|
|
147
|
-
* after: '
|
|
147
|
+
* after: '2013-11-25T18:50:25Z',
|
|
148
148
|
*
|
|
149
149
|
* // ... OR ...
|
|
150
150
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sockethub/platform-feeds",
|
|
3
3
|
"description": "A sockethub platform module implementing RSS/Atom functionality",
|
|
4
|
-
"version": "3.0.0-alpha.
|
|
4
|
+
"version": "3.0.0-alpha.4",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Nick Jennings <nick@silverbucket.net>",
|
|
7
7
|
"license": "LGPL-3.0+",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"fs-then-native": "2.0.0",
|
|
32
32
|
"jaribu": "2.2.3",
|
|
33
|
-
"jsdoc": "3.6.
|
|
33
|
+
"jsdoc": "3.6.11",
|
|
34
34
|
"jsdoc-to-markdown": "7.1.1"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"test": "jaribu",
|
|
49
49
|
"doc": "jsdoc2md --no-gfm --heading-depth 1 index.js > API.md"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "c6d34ff44d2be479e4ea42c46da649612342a680"
|
|
52
52
|
}
|