@pgpmjs/core 4.17.1 → 5.0.1

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.
@@ -91,14 +91,6 @@ const config = {
91
91
  hash: 'uuid'
92
92
  }
93
93
  },
94
- database_extension: {
95
- schema: 'metaschema_public',
96
- table: 'database_extension',
97
- fields: {
98
- name: 'text',
99
- database_id: 'uuid'
100
- }
101
- },
102
94
  schema: {
103
95
  schema: 'metaschema_public',
104
96
  table: 'schema',
@@ -429,16 +421,6 @@ const config = {
429
421
  data: 'jsonb'
430
422
  }
431
423
  },
432
- api_extensions: {
433
- schema: 'services_public',
434
- table: 'api_extensions',
435
- fields: {
436
- id: 'uuid',
437
- database_id: 'uuid',
438
- api_id: 'uuid',
439
- schema_name: 'text'
440
- }
441
- },
442
424
  api_schemas: {
443
425
  schema: 'services_public',
444
426
  table: 'api_schemas',
@@ -212,7 +212,6 @@ SET session_replication_role TO DEFAULT;`;
212
212
  // Tables that depend on 'database' being inserted first
213
213
  const tableOrder = [
214
214
  'database',
215
- 'database_extension',
216
215
  'schema',
217
216
  'table',
218
217
  'field',
@@ -238,7 +237,6 @@ SET session_replication_role TO DEFAULT;`;
238
237
  'site_themes',
239
238
  'site_metadata',
240
239
  'api_modules',
241
- 'api_extensions',
242
240
  'api_schemas',
243
241
  'rls_module',
244
242
  'user_auth_module',
@@ -94,14 +94,6 @@ const config = {
94
94
  hash: 'uuid'
95
95
  }
96
96
  },
97
- database_extension: {
98
- schema: 'metaschema_public',
99
- table: 'database_extension',
100
- fields: {
101
- name: 'text',
102
- database_id: 'uuid'
103
- }
104
- },
105
97
  schema: {
106
98
  schema: 'metaschema_public',
107
99
  table: 'schema',
@@ -432,16 +424,6 @@ const config = {
432
424
  data: 'jsonb'
433
425
  }
434
426
  },
435
- api_extensions: {
436
- schema: 'services_public',
437
- table: 'api_extensions',
438
- fields: {
439
- id: 'uuid',
440
- database_id: 'uuid',
441
- api_id: 'uuid',
442
- schema_name: 'text'
443
- }
444
- },
445
427
  api_schemas: {
446
428
  schema: 'services_public',
447
429
  table: 'api_schemas',
@@ -218,7 +218,6 @@ SET session_replication_role TO DEFAULT;`;
218
218
  // Tables that depend on 'database' being inserted first
219
219
  const tableOrder = [
220
220
  'database',
221
- 'database_extension',
222
221
  'schema',
223
222
  'table',
224
223
  'field',
@@ -244,7 +243,6 @@ SET session_replication_role TO DEFAULT;`;
244
243
  'site_themes',
245
244
  'site_metadata',
246
245
  'api_modules',
247
- 'api_extensions',
248
246
  'api_schemas',
249
247
  'rls_module',
250
248
  'user_auth_module',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpmjs/core",
3
- "version": "4.17.1",
3
+ "version": "5.0.1",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "PGPM Package and Migration Tools",
6
6
  "main": "index.js",
@@ -49,8 +49,8 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@pgpmjs/env": "^2.10.1",
52
- "@pgpmjs/logger": "^1.5.0",
53
- "@pgpmjs/server-utils": "^2.10.0",
52
+ "@pgpmjs/logger": "^2.0.0",
53
+ "@pgpmjs/server-utils": "^3.0.0",
54
54
  "@pgpmjs/types": "^2.15.0",
55
55
  "csv-to-pg": "^3.6.0",
56
56
  "genomic": "^5.3.0",
@@ -58,11 +58,11 @@
58
58
  "komoji": "^0.8.0",
59
59
  "parse-package-name": "^1.0.0",
60
60
  "pg": "^8.17.1",
61
- "pg-cache": "^1.8.0",
61
+ "pg-cache": "^2.0.0",
62
62
  "pg-env": "^1.3.0",
63
63
  "pgsql-deparser": "^17.17.2",
64
64
  "pgsql-parser": "^17.9.11",
65
65
  "yanse": "^0.2.0"
66
66
  },
67
- "gitHead": "39b5c59b01b8ce391dc14daf5a9430ca0ff67574"
67
+ "gitHead": "b7b9bf9712a5d48619d6b19be6361251468e1bda"
68
68
  }