s3db.js 12.2.1 → 12.2.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s3db.js",
3
- "version": "12.2.1",
3
+ "version": "12.2.2",
4
4
  "description": "Use AWS S3, the world's most reliable document storage, as a database with this ORM.",
5
5
  "main": "dist/s3db.cjs.js",
6
6
  "module": "dist/s3db.es.js",
@@ -73,7 +73,7 @@ import tryFn from "../concerns/try-fn.js";
73
73
  *
74
74
  * resource.getDistance(id1, id2) // Returns distance in km
75
75
  */
76
- class GeoPlugin extends Plugin {
76
+ export class GeoPlugin extends Plugin {
77
77
  constructor(config = {}) {
78
78
  super(config);
79
79
 
@@ -276,7 +276,7 @@ import {
276
276
  * });
277
277
  * ```
278
278
  */
279
- class RelationPlugin extends Plugin {
279
+ export class RelationPlugin extends Plugin {
280
280
  constructor(config = {}) {
281
281
  super(config);
282
282
 
@@ -1374,5 +1374,4 @@ class RelationPlugin extends Plugin {
1374
1374
  }
1375
1375
  }
1376
1376
 
1377
- export { RelationPlugin };
1378
1377
  export default RelationPlugin;
@@ -128,7 +128,7 @@ function getExpiredCohorts(granularity, count) {
128
128
  return cohorts;
129
129
  }
130
130
 
131
- class TTLPlugin extends Plugin {
131
+ export class TTLPlugin extends Plugin {
132
132
  constructor(config = {}) {
133
133
  super(config);
134
134