prostgles-client 4.0.267 → 4.0.269
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/dist/prostgles-full.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type { UserLike } from "prostgles-types";
|
|
|
2
2
|
import { type InitOptions } from "./prostgles";
|
|
3
3
|
import { SyncedTable } from "./SyncedTable/SyncedTable";
|
|
4
4
|
declare function prostgles<DBSchema = void, U extends UserLike = UserLike>(params: InitOptions<DBSchema, U>): Promise<unknown>;
|
|
5
|
+
export { type DBHandlerClient, type OnReadyParams, type ProstglesClientState, type TableHandlerClient, type ViewHandlerClient, type InitOptions, asName, } from "./prostgles";
|
|
5
6
|
export { SyncedTable };
|
|
6
7
|
export * from "./hooks/useSync";
|
|
7
8
|
export * from "./hooks/useSubscribe";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prostgles-full.d.ts","sourceRoot":"","sources":["../lib/prostgles-full.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAqB,KAAK,WAAW,EAAE,MAAM,aAAa,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAExD,iBAAS,SAAS,CAAC,QAAQ,GAAG,IAAI,EAAE,CAAC,SAAS,QAAQ,GAAG,QAAQ,EAC/D,MAAM,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,oBAGjC;AAED,OAAO,EAAE,WAAW,EAAE,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"prostgles-full.d.ts","sourceRoot":"","sources":["../lib/prostgles-full.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAqB,KAAK,WAAW,EAAE,MAAM,aAAa,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAExD,iBAAS,SAAS,CAAC,QAAQ,GAAG,IAAI,EAAE,CAAC,SAAS,QAAQ,GAAG,QAAQ,EAC/D,MAAM,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,oBAGjC;AAED,OAAO,EACL,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,iBAAiB,EACtB,KAAK,WAAW,EAChB,MAAM,GACP,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,WAAW,EAAE,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAE5C,eAAe,SAAS,CAAC"}
|
package/dist/prostgles-full.js
CHANGED
|
@@ -14,13 +14,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.SyncedTable = void 0;
|
|
17
|
+
exports.SyncedTable = exports.asName = void 0;
|
|
18
18
|
const prostgles_1 = require("./prostgles");
|
|
19
19
|
const SyncedTable_1 = require("./SyncedTable/SyncedTable");
|
|
20
20
|
Object.defineProperty(exports, "SyncedTable", { enumerable: true, get: function () { return SyncedTable_1.SyncedTable; } });
|
|
21
21
|
function prostgles(params) {
|
|
22
22
|
return (0, prostgles_1.prostgles)(params, SyncedTable_1.SyncedTable);
|
|
23
23
|
}
|
|
24
|
+
var prostgles_2 = require("./prostgles");
|
|
25
|
+
Object.defineProperty(exports, "asName", { enumerable: true, get: function () { return prostgles_2.asName; } });
|
|
24
26
|
__exportStar(require("./hooks/useSync"), exports);
|
|
25
27
|
__exportStar(require("./hooks/useSubscribe"), exports);
|
|
26
28
|
__exportStar(require("./hooks/useProstglesClient"), exports);
|