@depup/pg-mem 3.0.14-depup.0
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/README.md +35 -0
- package/changes.json +26 -0
- package/index.d.ts +1 -0
- package/index.js +16547 -0
- package/index.js.map +1 -0
- package/package.json +196 -0
- package/readme.md +297 -0
- package/types/adapters/adapters.d.ts +37 -0
- package/types/adapters/index.d.ts +2 -0
- package/types/adapters/pg-socket-adapter.d.ts +30 -0
- package/types/column.d.ts +27 -0
- package/types/constraints/foreign-key.d.ts +14 -0
- package/types/constraints/generated-from-expr.d.ts +14 -0
- package/types/constraints/generated-identity.d.ts +13 -0
- package/types/constraints/index-cst.d.ts +9 -0
- package/types/constraints/subscription.d.ts +7 -0
- package/types/constraints/wrapped.d.ts +9 -0
- package/types/datatypes/datatype-base.d.ts +66 -0
- package/types/datatypes/datatypes-geometric.d.ts +59 -0
- package/types/datatypes/datatypes-geometric.spec.d.ts +2 -0
- package/types/datatypes/datatypes.d.ts +101 -0
- package/types/datatypes/index.d.ts +2 -0
- package/types/datatypes/t-custom-enum.d.ts +21 -0
- package/types/datatypes/t-equivalent.d.ts +18 -0
- package/types/datatypes/t-inet.d.ts +13 -0
- package/types/datatypes/t-interval.d.ts +13 -0
- package/types/datatypes/t-jsonb.d.ts +16 -0
- package/types/datatypes/t-record.d.ts +17 -0
- package/types/datatypes/t-regclass.d.ts +11 -0
- package/types/datatypes/t-regtype.d.ts +11 -0
- package/types/datatypes/t-time.d.ts +14 -0
- package/types/datatypes/t-timestamp.d.ts +18 -0
- package/types/db.d.ts +3 -0
- package/types/evaluator.d.ts +61 -0
- package/types/execution/clean-results.d.ts +5 -0
- package/types/execution/exec-utils.d.ts +19 -0
- package/types/execution/records-mutations/deletion.d.ts +8 -0
- package/types/execution/records-mutations/insert.d.ts +13 -0
- package/types/execution/records-mutations/mutation-base.d.ts +31 -0
- package/types/execution/records-mutations/truncate-table.d.ts +10 -0
- package/types/execution/records-mutations/update.d.ts +10 -0
- package/types/execution/schema-amends/alter-enum.d.ts +20 -0
- package/types/execution/schema-amends/alter-sequence.d.ts +19 -0
- package/types/execution/schema-amends/alter.d.ts +19 -0
- package/types/execution/schema-amends/comment.d.ts +19 -0
- package/types/execution/schema-amends/create-enum.d.ts +20 -0
- package/types/execution/schema-amends/create-function.d.ts +20 -0
- package/types/execution/schema-amends/create-index.d.ts +19 -0
- package/types/execution/schema-amends/create-materialized-view.d.ts +19 -0
- package/types/execution/schema-amends/create-schema.d.ts +19 -0
- package/types/execution/schema-amends/create-sequence.d.ts +21 -0
- package/types/execution/schema-amends/create-table.d.ts +21 -0
- package/types/execution/schema-amends/create-view.d.ts +22 -0
- package/types/execution/schema-amends/do.d.ts +9 -0
- package/types/execution/schema-amends/drop-index.d.ts +18 -0
- package/types/execution/schema-amends/drop-sequence.d.ts +18 -0
- package/types/execution/schema-amends/drop-table.d.ts +19 -0
- package/types/execution/schema-amends/drop-type.d.ts +18 -0
- package/types/execution/select.d.ts +15 -0
- package/types/execution/set.d.ts +9 -0
- package/types/execution/show.d.ts +8 -0
- package/types/execution/statement-exec.d.ts +26 -0
- package/types/execution/transaction-statements.d.ts +16 -0
- package/types/functions/date.d.ts +3 -0
- package/types/functions/index.d.ts +2 -0
- package/types/functions/numbers.d.ts +3 -0
- package/types/functions/sequence-fns.d.ts +3 -0
- package/types/functions/string.d.ts +3 -0
- package/types/functions/subquery.d.ts +3 -0
- package/types/functions/system.d.ts +3 -0
- package/types/index.d.ts +5 -0
- package/types/interfaces-private.d.ts +605 -0
- package/types/interfaces.d.ts +449 -0
- package/types/migrate/migrate-interfaces.d.ts +32 -0
- package/types/migrate/migrate.d.ts +8 -0
- package/types/misc/buffer-deno.d.ts +7 -0
- package/types/misc/buffer-node.d.ts +7 -0
- package/types/misc/pg-escape.d.ts +2 -0
- package/types/misc/pg-utils.d.ts +3 -0
- package/types/parser/context.d.ts +26 -0
- package/types/parser/expression-builder.d.ts +8 -0
- package/types/parser/function-call.d.ts +4 -0
- package/types/parser/parse-cache.d.ts +6 -0
- package/types/schema/btree-index.d.ts +48 -0
- package/types/schema/consts.d.ts +10 -0
- package/types/schema/custom-index.d.ts +31 -0
- package/types/schema/function-call-table.d.ts +20 -0
- package/types/schema/information-schema/columns-list.d.ts +13 -0
- package/types/schema/information-schema/constraint-column-usage.d.ts +10 -0
- package/types/schema/information-schema/index.d.ts +3 -0
- package/types/schema/information-schema/key-column-usage.d.ts +10 -0
- package/types/schema/information-schema/table-constraints.d.ts +10 -0
- package/types/schema/information-schema/table-list.d.ts +14 -0
- package/types/schema/overload-resolver.d.ts +17 -0
- package/types/schema/pg-catalog/binary-operators.d.ts +3 -0
- package/types/schema/pg-catalog/index.d.ts +3 -0
- package/types/schema/pg-catalog/pg-attribute-list.d.ts +11 -0
- package/types/schema/pg-catalog/pg-class.d.ts +13 -0
- package/types/schema/pg-catalog/pg-constraints-list.d.ts +13 -0
- package/types/schema/pg-catalog/pg-database.d.ts +17 -0
- package/types/schema/pg-catalog/pg-enum-list.d.ts +10 -0
- package/types/schema/pg-catalog/pg-index-list.d.ts +10 -0
- package/types/schema/pg-catalog/pg-namespace-list.d.ts +10 -0
- package/types/schema/pg-catalog/pg-proc.d.ts +10 -0
- package/types/schema/pg-catalog/pg-range.d.ts +10 -0
- package/types/schema/pg-catalog/pg-sequences-list.d.ts +10 -0
- package/types/schema/pg-catalog/pg-type-list.d.ts +10 -0
- package/types/schema/pg-catalog/pg-user-list.d.ts +10 -0
- package/types/schema/pg-catalog/pg_statio_user_tables.d.ts +25 -0
- package/types/schema/pg-catalog/sql-function-language.d.ts +3 -0
- package/types/schema/prepared-intercepted.d.ts +11 -0
- package/types/schema/prepared.d.ts +5 -0
- package/types/schema/readonly-table.d.ts +62 -0
- package/types/schema/schema.d.ts +73 -0
- package/types/schema/sequence.d.ts +27 -0
- package/types/schema/table-index.d.ts +32 -0
- package/types/schema/values-table.d.ts +16 -0
- package/types/schema/view.d.ts +18 -0
- package/types/table.d.ts +97 -0
- package/types/transaction.d.ts +26 -0
- package/types/transforms/aggregation.d.ts +41 -0
- package/types/transforms/aggregations/array_agg.d.ts +11 -0
- package/types/transforms/aggregations/avg.d.ts +11 -0
- package/types/transforms/aggregations/bool-aggregs.d.ts +12 -0
- package/types/transforms/aggregations/count.d.ts +19 -0
- package/types/transforms/aggregations/json_aggs.d.ts +11 -0
- package/types/transforms/aggregations/max-min.d.ts +12 -0
- package/types/transforms/aggregations/sum.d.ts +11 -0
- package/types/transforms/alias.d.ts +29 -0
- package/types/transforms/and-filter.d.ts +15 -0
- package/types/transforms/array-filter.d.ts +14 -0
- package/types/transforms/between-filter.d.ts +16 -0
- package/types/transforms/build-filter.d.ts +4 -0
- package/types/transforms/distinct.d.ts +16 -0
- package/types/transforms/eq-filter.d.ts +17 -0
- package/types/transforms/false-filter.d.ts +11 -0
- package/types/transforms/in-filter.d.ts +14 -0
- package/types/transforms/ineq-filter.d.ts +16 -0
- package/types/transforms/join.d.ts +74 -0
- package/types/transforms/limit.d.ts +18 -0
- package/types/transforms/not-in-filter.d.ts +15 -0
- package/types/transforms/or-filter.d.ts +13 -0
- package/types/transforms/order-by.d.ts +26 -0
- package/types/transforms/restrictive-index.d.ts +15 -0
- package/types/transforms/selection.d.ts +45 -0
- package/types/transforms/seq-scan.d.ts +14 -0
- package/types/transforms/startswith-filter.d.ts +14 -0
- package/types/transforms/transform-base.d.ts +100 -0
- package/types/transforms/union.d.ts +32 -0
- package/types/utils.d.ts +86 -0
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @depup/pg-mem
|
|
2
|
+
|
|
3
|
+
> Dependency-bumped version of [pg-mem](https://www.npmjs.com/package/pg-mem)
|
|
4
|
+
|
|
5
|
+
Generated by [DepUp](https://github.com/depup/npm) -- all production
|
|
6
|
+
dependencies bumped to latest versions.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @depup/pg-mem
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
| Field | Value |
|
|
15
|
+
|-------|-------|
|
|
16
|
+
| Original | [pg-mem](https://www.npmjs.com/package/pg-mem) @ 3.0.14 |
|
|
17
|
+
| Processed | 2026-03-19 |
|
|
18
|
+
| Smoke test | failed |
|
|
19
|
+
| Deps updated | 5 |
|
|
20
|
+
|
|
21
|
+
## Dependency Changes
|
|
22
|
+
|
|
23
|
+
| Dependency | From | To |
|
|
24
|
+
|------------|------|-----|
|
|
25
|
+
| immutable | ^4.3.4 | ^5.1.5 |
|
|
26
|
+
| json-stable-stringify | ^1.0.1 | ^1.3.0 |
|
|
27
|
+
| lru-cache | ^6.0.0 | ^11.2.7 |
|
|
28
|
+
| moment | ^2.27.0 | ^2.30.1 |
|
|
29
|
+
| object-hash | ^2.0.3 | ^3.0.0 |
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
Source: https://github.com/depup/npm | Original: https://www.npmjs.com/package/pg-mem
|
|
34
|
+
|
|
35
|
+
License inherited from the original package.
|
package/changes.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bumped": {
|
|
3
|
+
"immutable": {
|
|
4
|
+
"from": "^4.3.4",
|
|
5
|
+
"to": "^5.1.5"
|
|
6
|
+
},
|
|
7
|
+
"json-stable-stringify": {
|
|
8
|
+
"from": "^1.0.1",
|
|
9
|
+
"to": "^1.3.0"
|
|
10
|
+
},
|
|
11
|
+
"lru-cache": {
|
|
12
|
+
"from": "^6.0.0",
|
|
13
|
+
"to": "^11.2.7"
|
|
14
|
+
},
|
|
15
|
+
"moment": {
|
|
16
|
+
"from": "^2.27.0",
|
|
17
|
+
"to": "^2.30.1"
|
|
18
|
+
},
|
|
19
|
+
"object-hash": {
|
|
20
|
+
"from": "^2.0.3",
|
|
21
|
+
"to": "^3.0.0"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"timestamp": "2026-03-19T03:03:56.037Z",
|
|
25
|
+
"totalUpdated": 5
|
|
26
|
+
}
|
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './types';
|