tpmkms_4wp 9.3.0-beta.1 → 9.3.0-beta.10
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/common/animals.instance.json +0 -65
- package/common/colors.instance.json +0 -70
- package/common/comparable.instance.json +0 -15
- package/common/concept.test.json +279 -193
- package/common/crew.instance.json +0 -166
- package/common/dateTimeSelectors.instance.json +42 -0
- package/common/dateTimeSelectors.js +94 -0
- package/common/dateTimeSelectors.test.json +4529 -0
- package/common/dates.instance.json +52 -27
- package/common/dates.js +13 -0
- package/common/dates.test.json +1787 -0
- package/common/dialogues.js +5 -2
- package/common/dimension.instance.json +0 -5
- package/common/edible.instance.json +0 -160
- package/common/emotions.instance.json +0 -5
- package/common/evaluate.js +1 -1
- package/common/events.js +1 -1
- package/common/fastfood.instance.json +326 -873
- package/common/fastfood.test.json +16291 -6597
- package/common/formulas.instance.json +0 -5
- package/common/helpers/dateTimeSelectors.js +48 -0
- package/common/helpers.js +24 -7
- package/common/kirk.instance.json +0 -5
- package/common/length.instance.json +0 -75
- package/common/math.instance.json +0 -5
- package/common/menus.instance.json +0 -35
- package/common/numbers.js +1 -1
- package/common/numbers.test.json +89 -23
- package/common/ordering.instance.json +0 -10
- package/common/people.instance.json +0 -40
- package/common/percentages.js +1 -1
- package/common/pipboy.instance.json +0 -85
- package/common/pipboy.test.json +4377 -3386
- package/common/pokemon.instance.json +0 -65
- package/common/pressure.instance.json +0 -20
- package/common/properties.instance.json +0 -5
- package/common/reminders.instance.json +101 -0
- package/common/reminders.js +220 -0
- package/common/reminders.test.json +13560 -0
- package/common/reports.instance.json +2 -12
- package/common/scorekeeper.test.json +3565 -7550
- package/common/spock.instance.json +0 -5
- package/common/temperature.instance.json +0 -20
- package/common/time.js +55 -30
- package/common/time.test.json +4124 -124
- package/common/ui.instance.json +0 -5
- package/common/ui.js +3 -1
- package/common/weight.instance.json +0 -60
- package/common/wp.instance.json +0 -70
- package/common/wp.test.json +8057 -3867
- package/main.js +4 -0
- package/package.json +12 -4
package/main.js
CHANGED
@@ -23,6 +23,7 @@ const ordering = require('./common/ordering')
|
|
23
23
|
const ordinals = require('./common/ordinals')
|
24
24
|
const properties = require('./common/properties')
|
25
25
|
const sizeable = require('./common/sizeable')
|
26
|
+
const dateTimeSelectors = require('./common/dateTimeSelectors')
|
26
27
|
const listener = require('./common/listener')
|
27
28
|
const tokenize = require('./common/tokenize')
|
28
29
|
const articles = require('./common/articles')
|
@@ -53,6 +54,7 @@ const reports = require('./common/reports')
|
|
53
54
|
const tell = require('./common/tell')
|
54
55
|
const pipboy = require('./common/pipboy')
|
55
56
|
const wp = require('./common/wp')
|
57
|
+
const reminders = require('./common/reminders')
|
56
58
|
const fastfood = require('./common/fastfood')
|
57
59
|
const characters = require('./common/characters')
|
58
60
|
const crew = require('./common/crew')
|
@@ -86,6 +88,7 @@ module.exports = {
|
|
86
88
|
ordinals,
|
87
89
|
properties,
|
88
90
|
sizeable,
|
91
|
+
dateTimeSelectors,
|
89
92
|
listener,
|
90
93
|
tokenize,
|
91
94
|
articles,
|
@@ -116,6 +119,7 @@ module.exports = {
|
|
116
119
|
tell,
|
117
120
|
pipboy,
|
118
121
|
wp,
|
122
|
+
reminders,
|
119
123
|
fastfood,
|
120
124
|
characters,
|
121
125
|
crew,
|
package/package.json
CHANGED
@@ -48,7 +48,8 @@
|
|
48
48
|
"ordering",
|
49
49
|
"ordinals",
|
50
50
|
"properties",
|
51
|
-
"sizeable"
|
51
|
+
"sizeable",
|
52
|
+
"dateTimeSelectors"
|
52
53
|
]
|
53
54
|
},
|
54
55
|
{
|
@@ -115,6 +116,7 @@
|
|
115
116
|
"tell",
|
116
117
|
"pipboy",
|
117
118
|
"wp",
|
119
|
+
"reminders",
|
118
120
|
"fastfood"
|
119
121
|
]
|
120
122
|
},
|
@@ -174,6 +176,9 @@
|
|
174
176
|
"common/crew.test.json",
|
175
177
|
"common/currency.js",
|
176
178
|
"common/currency.test.json",
|
179
|
+
"common/dateTimeSelectors.instance.json",
|
180
|
+
"common/dateTimeSelectors.js",
|
181
|
+
"common/dateTimeSelectors.test.json",
|
177
182
|
"common/dates.instance.json",
|
178
183
|
"common/dates.js",
|
179
184
|
"common/dates.test.json",
|
@@ -208,6 +213,7 @@
|
|
208
213
|
"common/helpers.js",
|
209
214
|
"common/helpers/concept.js",
|
210
215
|
"common/helpers/conjunction.js",
|
216
|
+
"common/helpers/dateTimeSelectors.js",
|
211
217
|
"common/helpers/dialogues.js",
|
212
218
|
"common/helpers/formulas.js",
|
213
219
|
"common/helpers/frankenhash.js",
|
@@ -215,7 +221,6 @@
|
|
215
221
|
"common/helpers/meta.js",
|
216
222
|
"common/helpers/ordering.js",
|
217
223
|
"common/helpers/properties.js",
|
218
|
-
"common/helpers/properties.js",
|
219
224
|
"common/hierarchy.js",
|
220
225
|
"common/hierarchy.test.json",
|
221
226
|
"common/javascript.js",
|
@@ -273,6 +278,9 @@
|
|
273
278
|
"common/properties.test.json",
|
274
279
|
"common/punctuation.js",
|
275
280
|
"common/punctuation.test.json",
|
281
|
+
"common/reminders.instance.json",
|
282
|
+
"common/reminders.js",
|
283
|
+
"common/reminders.test.json",
|
276
284
|
"common/reports.instance.json",
|
277
285
|
"common/reports.js",
|
278
286
|
"common/reports.test.json",
|
@@ -333,8 +341,8 @@
|
|
333
341
|
"scriptjs": "^2.5.9",
|
334
342
|
"table": "^6.7.1",
|
335
343
|
"uuid": "^9.0.0",
|
336
|
-
"theprogrammablemind_4wp": "9.3.0-beta.
|
344
|
+
"theprogrammablemind_4wp": "9.3.0-beta.10"
|
337
345
|
},
|
338
|
-
"version": "9.3.0-beta.
|
346
|
+
"version": "9.3.0-beta.10",
|
339
347
|
"license": "UNLICENSED"
|
340
348
|
}
|