@pgpm/achievements 0.14.0 → 0.15.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/Makefile CHANGED
@@ -1,5 +1,5 @@
1
- EXTENSION = launchql-achievements
2
- DATA = sql/launchql-achievements--0.9.0.sql
1
+ EXTENSION = pgpm-achievements
2
+ DATA = sql/pgpm-achievements--0.14.0.sql
3
3
 
4
4
  PG_CONFIG = pg_config
5
5
  PGXS := $(shell $(PG_CONFIG) --pgxs)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/achievements",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Achievement system for tracking user progress and milestones",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "contributors": [
@@ -21,8 +21,8 @@
21
21
  "test:watch": "jest --watch"
22
22
  },
23
23
  "dependencies": {
24
- "@pgpm/jwt-claims": "0.14.0",
25
- "@pgpm/verify": "0.14.0"
24
+ "@pgpm/jwt-claims": "0.15.0",
25
+ "@pgpm/verify": "0.15.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "pgpm": "^1.0.0"
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/constructive-io/pgpm-modules/issues"
37
37
  },
38
- "gitHead": "7369638ab084da95b0cb00ec63ad236637f6ebe5"
38
+ "gitHead": "118ac6f810720378fa954e9620abf2516293c148"
39
39
  }
@@ -0,0 +1,8 @@
1
+ # pgpm-achievements extension
2
+ comment = 'pgpm-achievements extension'
3
+ default_version = '0.14.0'
4
+ module_pathname = '$libdir/pgpm-achievements'
5
+ requires = 'plpgsql,uuid-ossp,pgpm-jwt-claims,pgpm-verify'
6
+ relocatable = false
7
+ superuser = false
8
+
package/pgpm.plan CHANGED
@@ -1,8 +1,8 @@
1
1
  %syntax-version=1.0.0
2
- %project=launchql-achievements
3
- %uri=launchql-achievements
2
+ %project=pgpm-achievements
3
+ %uri=pgpm-achievements
4
4
 
5
- schemas/status_private/schema [launchql-jwt-claims:schemas/jwt_public/procedures/current_user_id] 2017-08-11T08:11:51Z skitch <skitch@5b0c196eeb62> # add schemas/status_private/schema
5
+ schemas/status_private/schema [pgpm-jwt-claims:schemas/jwt_public/procedures/current_user_id] 2017-08-11T08:11:51Z skitch <skitch@5b0c196eeb62> # add schemas/status_private/schema
6
6
  schemas/status_public/schema 2017-08-11T08:11:51Z skitch <skitch@5b0c196eeb62> # add schemas/status_public/schema
7
7
  schemas/status_public/tables/user_steps/table [schemas/status_public/schema] 2017-08-11T08:11:51Z skitch <skitch@5b0c196eeb62> # add schemas/status_public/tables/user_steps/table
8
8
  schemas/status_private/procedures/user_completed_step [schemas/status_private/schema schemas/status_public/tables/user_steps/table] 2017-08-11T08:11:51Z skitch <skitch@5b0c196eeb62> # add schemas/status_private/procedures/user_completed_step
@@ -1,4 +1,4 @@
1
- \echo Use "CREATE EXTENSION launchql-achievements" to load this file. \quit
1
+ \echo Use "CREATE EXTENSION pgpm-achievements" to load this file. \quit
2
2
  CREATE SCHEMA IF NOT EXISTS status_private;
3
3
 
4
4
  GRANT USAGE ON SCHEMA status_private TO authenticated, anonymous;
@@ -1,8 +0,0 @@
1
- # launchql-achievements extension
2
- comment = 'launchql-achievements extension'
3
- default_version = '0.9.0'
4
- module_pathname = '$libdir/launchql-achievements'
5
- requires = 'plpgsql,uuid-ossp,launchql-jwt-claims,launchql-verify'
6
- relocatable = false
7
- superuser = false
8
-