@prosopo/types-database 4.11.16 → 4.11.18
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/.turbo/turbo-build$colon$cjs.log +18 -15
- package/.turbo/turbo-build$colon$tsc.log +15 -15
- package/.turbo/turbo-build.log +19 -16
- package/CHANGELOG.md +38 -0
- package/dist/_virtual/_rolldown/runtime.js +3 -0
- package/dist/cjs/_virtual/_rolldown/runtime.cjs +23 -0
- package/dist/cjs/index.cjs +31 -33
- package/dist/cjs/types/bannedDomain.cjs +7 -6
- package/dist/cjs/types/captcha.cjs +8 -14
- package/dist/cjs/types/client.cjs +296 -223
- package/dist/cjs/types/index.cjs +31 -35
- package/dist/cjs/types/mongo.cjs +0 -1
- package/dist/cjs/types/provider.cjs +1180 -579
- package/dist/cjs/types/spamEmailDomain.cjs +7 -6
- package/dist/cjs/types/userAgent.cjs +0 -1
- package/dist/index.js +3 -30
- package/dist/types/bannedDomain.d.ts +4 -4
- package/dist/types/bannedDomain.js +8 -6
- package/dist/types/captcha.js +8 -17
- package/dist/types/client.d.ts +13 -22
- package/dist/types/client.d.ts.map +1 -1
- package/dist/types/client.js +294 -227
- package/dist/types/client.js.map +1 -1
- package/dist/types/index.js +2 -31
- package/dist/types/mongo.js +1 -1
- package/dist/types/provider.d.ts +56 -56
- package/dist/types/provider.d.ts.map +1 -1
- package/dist/types/provider.js +1178 -591
- package/dist/types/provider.js.map +1 -1
- package/dist/types/spamEmailDomain.d.ts +4 -4
- package/dist/types/spamEmailDomain.js +8 -6
- package/dist/types/userAgent.js +1 -1
- package/package.json +11 -11
|
@@ -1,230 +1,303 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
1
|
+
const require_runtime = require("../_virtual/_rolldown/runtime.cjs");
|
|
2
|
+
let _prosopo_types = require("@prosopo/types");
|
|
3
|
+
let mongoose = require("mongoose");
|
|
4
|
+
mongoose = require_runtime.__toESM(mongoose, 1);
|
|
5
|
+
//#region src/types/client.ts
|
|
6
|
+
var IPValidationRulesSchema = new mongoose.Schema({
|
|
7
|
+
enabled: {
|
|
8
|
+
type: Boolean,
|
|
9
|
+
default: false,
|
|
10
|
+
required: true
|
|
11
|
+
},
|
|
12
|
+
actions: {
|
|
13
|
+
countryChangeAction: {
|
|
14
|
+
type: mongoose.Schema.Types.Mixed,
|
|
15
|
+
default: () => _prosopo_types.countryChangeActionDefault
|
|
16
|
+
},
|
|
17
|
+
cityChangeAction: {
|
|
18
|
+
type: mongoose.Schema.Types.Mixed,
|
|
19
|
+
default: () => _prosopo_types.cityChangeActionDefault
|
|
20
|
+
},
|
|
21
|
+
ispChangeAction: {
|
|
22
|
+
type: mongoose.Schema.Types.Mixed,
|
|
23
|
+
default: () => _prosopo_types.ispChangeActionDefault
|
|
24
|
+
},
|
|
25
|
+
distanceExceedAction: {
|
|
26
|
+
type: mongoose.Schema.Types.Mixed,
|
|
27
|
+
default: () => _prosopo_types.distanceExceedActionDefault
|
|
28
|
+
},
|
|
29
|
+
abuseScoreExceedAction: {
|
|
30
|
+
type: mongoose.Schema.Types.Mixed,
|
|
31
|
+
default: () => _prosopo_types.abuseScoreThresholdExceedActionDefault
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
distanceThresholdKm: {
|
|
35
|
+
type: Number,
|
|
36
|
+
min: 0,
|
|
37
|
+
default: _prosopo_types.distanceThresholdKmDefault
|
|
38
|
+
},
|
|
39
|
+
abuseScoreThreshold: {
|
|
40
|
+
type: Number,
|
|
41
|
+
min: 0,
|
|
42
|
+
default: _prosopo_types.abuseScoreThresholdDefault
|
|
43
|
+
},
|
|
44
|
+
requireAllConditions: {
|
|
45
|
+
type: Boolean,
|
|
46
|
+
default: _prosopo_types.requireAllConditionsDefault
|
|
47
|
+
},
|
|
48
|
+
forceConsistentIp: {
|
|
49
|
+
type: Boolean,
|
|
50
|
+
default: false
|
|
51
|
+
},
|
|
52
|
+
countryOverrides: {
|
|
53
|
+
type: Map,
|
|
54
|
+
of: new mongoose.Schema({
|
|
55
|
+
actions: {
|
|
56
|
+
countryChangeAction: { type: mongoose.Schema.Types.Mixed },
|
|
57
|
+
cityChangeAction: { type: mongoose.Schema.Types.Mixed },
|
|
58
|
+
ispChangeAction: { type: mongoose.Schema.Types.Mixed },
|
|
59
|
+
distanceExceedAction: { type: mongoose.Schema.Types.Mixed },
|
|
60
|
+
abuseScoreExceedAction: { type: mongoose.Schema.Types.Mixed }
|
|
61
|
+
},
|
|
62
|
+
distanceThresholdKm: {
|
|
63
|
+
type: Number,
|
|
64
|
+
min: 0
|
|
65
|
+
},
|
|
66
|
+
abuseScoreThreshold: {
|
|
67
|
+
type: Number,
|
|
68
|
+
min: 0
|
|
69
|
+
},
|
|
70
|
+
requireAllConditions: { type: Boolean }
|
|
71
|
+
}),
|
|
72
|
+
default: void 0
|
|
73
|
+
}
|
|
67
74
|
});
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
75
|
+
var UserSettingsSchema = new mongoose.Schema({
|
|
76
|
+
captchaType: {
|
|
77
|
+
type: String,
|
|
78
|
+
enum: _prosopo_types.CaptchaType,
|
|
79
|
+
default: _prosopo_types.captchaTypeDefault
|
|
80
|
+
},
|
|
81
|
+
verifiedTimeout: {
|
|
82
|
+
type: Number,
|
|
83
|
+
default: _prosopo_types.DEFAULT_POW_CAPTCHA_VERIFIED_TIMEOUT
|
|
84
|
+
},
|
|
85
|
+
solutionTimeout: {
|
|
86
|
+
type: Number,
|
|
87
|
+
default: _prosopo_types.DEFAULT_POW_CAPTCHA_SOLUTION_TIMEOUT
|
|
88
|
+
},
|
|
89
|
+
frictionlessThreshold: {
|
|
90
|
+
type: Number,
|
|
91
|
+
default: _prosopo_types.frictionlessThresholdDefault
|
|
92
|
+
},
|
|
93
|
+
powDifficulty: {
|
|
94
|
+
type: Number,
|
|
95
|
+
default: _prosopo_types.powDifficultyDefault
|
|
96
|
+
},
|
|
97
|
+
imageThreshold: {
|
|
98
|
+
type: Number,
|
|
99
|
+
default: _prosopo_types.imageThresholdDefault
|
|
100
|
+
},
|
|
101
|
+
imageMaxRounds: {
|
|
102
|
+
type: Number,
|
|
103
|
+
default: _prosopo_types.imageMaxRoundsDefault,
|
|
104
|
+
required: false
|
|
105
|
+
},
|
|
106
|
+
puzzleTolerance: {
|
|
107
|
+
type: Number,
|
|
108
|
+
required: false
|
|
109
|
+
},
|
|
110
|
+
ipValidationRules: IPValidationRulesSchema,
|
|
111
|
+
domains: {
|
|
112
|
+
type: [String],
|
|
113
|
+
default: _prosopo_types.domainsDefault
|
|
114
|
+
},
|
|
115
|
+
disallowWebView: {
|
|
116
|
+
type: Boolean,
|
|
117
|
+
default: false
|
|
118
|
+
},
|
|
119
|
+
contextAware: {
|
|
120
|
+
enabled: {
|
|
121
|
+
type: Boolean,
|
|
122
|
+
default: false
|
|
123
|
+
},
|
|
124
|
+
contexts: {
|
|
125
|
+
type: mongoose.default.Schema.Types.Mixed,
|
|
126
|
+
default: {
|
|
127
|
+
[_prosopo_types.ContextType.Default]: {
|
|
128
|
+
type: _prosopo_types.ContextType.Default,
|
|
129
|
+
threshold: _prosopo_types.contextAwareThresholdDefault
|
|
130
|
+
},
|
|
131
|
+
[_prosopo_types.ContextType.Webview]: {
|
|
132
|
+
type: _prosopo_types.ContextType.Webview,
|
|
133
|
+
threshold: _prosopo_types.contextAwareThresholdDefault
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
spamEmailDomainCheckEnabled: {
|
|
139
|
+
type: Boolean,
|
|
140
|
+
default: false,
|
|
141
|
+
required: false
|
|
142
|
+
},
|
|
143
|
+
autoBanScoreThreshold: {
|
|
144
|
+
type: Number,
|
|
145
|
+
min: 0,
|
|
146
|
+
required: false
|
|
147
|
+
},
|
|
148
|
+
spamFilter: {
|
|
149
|
+
enabled: {
|
|
150
|
+
type: Boolean,
|
|
151
|
+
default: false
|
|
152
|
+
},
|
|
153
|
+
emailRules: {
|
|
154
|
+
enabled: {
|
|
155
|
+
type: Boolean,
|
|
156
|
+
default: false
|
|
157
|
+
},
|
|
158
|
+
maxLocalPartDots: {
|
|
159
|
+
type: Number,
|
|
160
|
+
required: false
|
|
161
|
+
},
|
|
162
|
+
normaliseGmail: {
|
|
163
|
+
type: Boolean,
|
|
164
|
+
default: false
|
|
165
|
+
},
|
|
166
|
+
useDefaultPatterns: {
|
|
167
|
+
type: Boolean,
|
|
168
|
+
default: false
|
|
169
|
+
},
|
|
170
|
+
customRegexBlocklist: {
|
|
171
|
+
type: [String],
|
|
172
|
+
default: []
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
trafficFilter: {
|
|
177
|
+
blockVpn: {
|
|
178
|
+
type: Boolean,
|
|
179
|
+
default: false
|
|
180
|
+
},
|
|
181
|
+
blockProxy: {
|
|
182
|
+
type: Boolean,
|
|
183
|
+
default: false
|
|
184
|
+
},
|
|
185
|
+
blockTor: {
|
|
186
|
+
type: Boolean,
|
|
187
|
+
default: false
|
|
188
|
+
},
|
|
189
|
+
blockAbuser: {
|
|
190
|
+
type: Boolean,
|
|
191
|
+
default: true
|
|
192
|
+
},
|
|
193
|
+
abuserScoreThreshold: {
|
|
194
|
+
type: Number,
|
|
195
|
+
min: 0,
|
|
196
|
+
max: 1,
|
|
197
|
+
default: 0
|
|
198
|
+
},
|
|
199
|
+
blockDatacenter: {
|
|
200
|
+
type: Boolean,
|
|
201
|
+
default: false
|
|
202
|
+
},
|
|
203
|
+
datacenterNameAllowlist: {
|
|
204
|
+
type: [String],
|
|
205
|
+
required: false
|
|
206
|
+
},
|
|
207
|
+
datacenterNameDenylist: {
|
|
208
|
+
type: [String],
|
|
209
|
+
required: false
|
|
210
|
+
},
|
|
211
|
+
skipExtrasOnValidDnsPath: {
|
|
212
|
+
type: Boolean,
|
|
213
|
+
default: true
|
|
214
|
+
},
|
|
215
|
+
blockMobile: {
|
|
216
|
+
type: Boolean,
|
|
217
|
+
default: false
|
|
218
|
+
},
|
|
219
|
+
blockSatellite: {
|
|
220
|
+
type: Boolean,
|
|
221
|
+
default: false
|
|
222
|
+
},
|
|
223
|
+
blockCrawler: {
|
|
224
|
+
type: Boolean,
|
|
225
|
+
default: false
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
storeMetadata: {
|
|
229
|
+
type: Boolean,
|
|
230
|
+
default: false,
|
|
231
|
+
required: false
|
|
232
|
+
},
|
|
233
|
+
honeypot: {
|
|
234
|
+
enabled: {
|
|
235
|
+
type: Boolean,
|
|
236
|
+
default: false
|
|
237
|
+
},
|
|
238
|
+
question: {
|
|
239
|
+
type: String,
|
|
240
|
+
required: false
|
|
241
|
+
},
|
|
242
|
+
encodingType: {
|
|
243
|
+
type: String,
|
|
244
|
+
enum: ["morse", "semaphore"],
|
|
245
|
+
default: "morse"
|
|
246
|
+
}
|
|
247
|
+
}
|
|
172
248
|
});
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
249
|
+
var UserDataSchema = new mongoose.Schema({
|
|
250
|
+
email: String,
|
|
251
|
+
name: String,
|
|
252
|
+
account: String,
|
|
253
|
+
url: String,
|
|
254
|
+
mnemonic: String,
|
|
255
|
+
createdAt: Date,
|
|
256
|
+
activated: Boolean,
|
|
257
|
+
tier: String,
|
|
258
|
+
settings: {
|
|
259
|
+
type: UserSettingsSchema,
|
|
260
|
+
required: false
|
|
261
|
+
},
|
|
262
|
+
updatedAtTimestamp: Date
|
|
187
263
|
});
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
active: Boolean
|
|
220
|
-
}
|
|
221
|
-
],
|
|
222
|
-
deletedUsers: []
|
|
264
|
+
var AccountSchema = new mongoose.Schema({
|
|
265
|
+
createdAt: Number,
|
|
266
|
+
updatedAt: Number,
|
|
267
|
+
signupEmail: String,
|
|
268
|
+
tier: String,
|
|
269
|
+
tierRequestQuota: Number,
|
|
270
|
+
marketingPreferences: Boolean,
|
|
271
|
+
users: [{
|
|
272
|
+
email: String,
|
|
273
|
+
name: String,
|
|
274
|
+
role: String,
|
|
275
|
+
createdAt: Number,
|
|
276
|
+
updatedAt: Number,
|
|
277
|
+
status: String
|
|
278
|
+
}],
|
|
279
|
+
sites: [{
|
|
280
|
+
name: String,
|
|
281
|
+
siteKey: String,
|
|
282
|
+
secretKey: String,
|
|
283
|
+
settings: {
|
|
284
|
+
domains: [String],
|
|
285
|
+
powDifficulty: Number,
|
|
286
|
+
captchaType: String,
|
|
287
|
+
frictionlessThreshold: Number,
|
|
288
|
+
ipValidationRules: IPValidationRulesSchema
|
|
289
|
+
},
|
|
290
|
+
createdAt: Number,
|
|
291
|
+
updatedAt: Number,
|
|
292
|
+
active: Boolean
|
|
293
|
+
}],
|
|
294
|
+
deletedUsers: []
|
|
223
295
|
});
|
|
224
|
-
var TableNames = /* @__PURE__ */ (
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
}
|
|
296
|
+
var TableNames = /* @__PURE__ */ function(TableNames) {
|
|
297
|
+
TableNames["accounts"] = "accounts";
|
|
298
|
+
return TableNames;
|
|
299
|
+
}({});
|
|
300
|
+
//#endregion
|
|
228
301
|
exports.AccountSchema = AccountSchema;
|
|
229
302
|
exports.IPValidationRulesSchema = IPValidationRulesSchema;
|
|
230
303
|
exports.TableNames = TableNames;
|
package/dist/cjs/types/index.cjs
CHANGED
|
@@ -1,35 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
require("./
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
23
|
-
exports.
|
|
24
|
-
exports.
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.TableNames =
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.StoredSessionRecordSchema = captcha.StoredSessionRecordSchema;
|
|
33
|
-
exports.StoredUserCommitmentRecordSchema = captcha.StoredUserCommitmentRecordSchema;
|
|
34
|
-
exports.SpamEmailDomainRecordSchema = spamEmailDomain.SpamEmailDomainRecordSchema;
|
|
35
|
-
exports.BannedDomainRecordSchema = bannedDomain.BannedDomainRecordSchema;
|
|
1
|
+
const require_client = require("./client.cjs");
|
|
2
|
+
const require_provider = require("./provider.cjs");
|
|
3
|
+
const require_captcha = require("./captcha.cjs");
|
|
4
|
+
const require_spamEmailDomain = require("./spamEmailDomain.cjs");
|
|
5
|
+
const require_bannedDomain = require("./bannedDomain.cjs");
|
|
6
|
+
exports.AccountSchema = require_client.AccountSchema;
|
|
7
|
+
exports.BannedDomainRecordSchema = require_bannedDomain.BannedDomainRecordSchema;
|
|
8
|
+
exports.CaptchaRecordSchema = require_provider.CaptchaRecordSchema;
|
|
9
|
+
exports.ClientContextEntropyRecordSchema = require_provider.ClientContextEntropyRecordSchema;
|
|
10
|
+
exports.ClientRecordSchema = require_provider.ClientRecordSchema;
|
|
11
|
+
exports.CompositeIpAddressRecordSchemaObj = require_provider.CompositeIpAddressRecordSchemaObj;
|
|
12
|
+
exports.DatasetRecordSchema = require_provider.DatasetRecordSchema;
|
|
13
|
+
exports.DecisionMachineArtifactRecordSchema = require_provider.DecisionMachineArtifactRecordSchema;
|
|
14
|
+
exports.DetectorRecordSchema = require_provider.DetectorRecordSchema;
|
|
15
|
+
exports.IPValidationRulesSchema = require_client.IPValidationRulesSchema;
|
|
16
|
+
exports.PoWCaptchaRecordSchema = require_provider.PoWCaptchaRecordSchema;
|
|
17
|
+
exports.PuzzleCaptchaRecordSchema = require_provider.PuzzleCaptchaRecordSchema;
|
|
18
|
+
exports.ScheduledTaskRecordSchema = require_provider.ScheduledTaskRecordSchema;
|
|
19
|
+
exports.ScheduledTaskSchema = require_provider.ScheduledTaskSchema;
|
|
20
|
+
exports.SessionRecordSchema = require_provider.SessionRecordSchema;
|
|
21
|
+
exports.SolutionRecordSchema = require_provider.SolutionRecordSchema;
|
|
22
|
+
exports.SpamEmailDomainRecordSchema = require_spamEmailDomain.SpamEmailDomainRecordSchema;
|
|
23
|
+
exports.StoredPoWCaptchaRecordSchema = require_captcha.StoredPoWCaptchaRecordSchema;
|
|
24
|
+
exports.StoredPuzzleCaptchaRecordSchema = require_captcha.StoredPuzzleCaptchaRecordSchema;
|
|
25
|
+
exports.StoredSessionRecordSchema = require_captcha.StoredSessionRecordSchema;
|
|
26
|
+
exports.StoredUserCommitmentRecordSchema = require_captcha.StoredUserCommitmentRecordSchema;
|
|
27
|
+
exports.TableNames = require_client.TableNames;
|
|
28
|
+
exports.UserCommitmentRecordSchema = require_provider.UserCommitmentRecordSchema;
|
|
29
|
+
exports.UserDataSchema = require_client.UserDataSchema;
|
|
30
|
+
exports.UserSettingsSchema = require_client.UserSettingsSchema;
|
|
31
|
+
exports.UserSolutionRecordSchema = require_provider.UserSolutionRecordSchema;
|
package/dist/cjs/types/mongo.cjs
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|