Skip to content

Commit

Permalink
DEV: regen
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael O'Brien committed Aug 18, 2023
1 parent 0d68ee6 commit 275384a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/cjs/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Schema, Version } from './schema';
import { Entity, Table } from '../onetable/dist/cjs/index.js';
import { Entity, Table } from 'dynamodb-onetable';
type SpanDef = {
period: number;
samples: number;
Expand Down
4 changes: 2 additions & 2 deletions dist/cjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const process_1 = __importDefault(require("process"));
const schema_1 = require("./schema");
Object.defineProperty(exports, "Schema", { enumerable: true, get: function () { return schema_1.Schema; } });
Object.defineProperty(exports, "Version", { enumerable: true, get: function () { return schema_1.Version; } });
const index_js_1 = require("../onetable/dist/cjs/index.js");
const dynamodb_onetable_1 = require("dynamodb-onetable");
const Assert = true;
const Buffering = true;
const DefaultResolution = 0;
Expand Down Expand Up @@ -95,7 +95,7 @@ class CustomMetrics {
schema.indexes.primary.hash = options.primaryKey || 'pk';
schema.indexes.primary.sort = options.sortKey || 'sk';
schema.params.typeField = options.typeField || '_type';
this.db = new index_js_1.Table({
this.db = new dynamodb_onetable_1.Table({
client: options.client,
hidden: false,
name: options.tableName,
Expand Down
2 changes: 1 addition & 1 deletion dist/mjs/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Schema, Version } from './schema';
import { Entity, Table } from '../onetable/dist/cjs/index.js';
import { Entity, Table } from 'dynamodb-onetable';
type SpanDef = {
period: number;
samples: number;
Expand Down
2 changes: 1 addition & 1 deletion dist/mjs/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import process from 'process';
import { Schema, Version } from './schema';
import { Table } from '../onetable/dist/cjs/index.js';
import { Table } from 'dynamodb-onetable';
const Assert = true;
const Buffering = true;
const DefaultResolution = 0;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 275384a

Please sign in to comment.