@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.
Files changed (3) hide show
  1. package/API.md +1 -1
  2. package/index.js +3 -3
  3. package/package.json +3 -3
package/API.md CHANGED
@@ -115,7 +115,7 @@ and total count.
115
115
  type: "parameters",
116
116
  limit: 10, // default 10
117
117
  property: 'date'
118
- after: 'Tue Nov 26 2013 02:11:59 GMT+0100 (CET)',
118
+ after: '2013-11-25T18:50:25Z',
119
119
 
120
120
  // ... OR ...
121
121
 
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": "string"
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: 'Tue Nov 26 2013 02:11:59 GMT+0100 (CET)',
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.3",
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.10",
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": "f02238a478b7ffd3f31d8deea292eb67e630a86b"
51
+ "gitHead": "c6d34ff44d2be479e4ea42c46da649612342a680"
52
52
  }