@hedhog/admin 0.0.112 → 0.0.113

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.
Files changed (2) hide show
  1. package/hedhog.yaml +37 -0
  2. package/package.json +1 -1
package/hedhog.yaml CHANGED
@@ -132,6 +132,19 @@ data:
132
132
  method: PATCH
133
133
  - url: /locale
134
134
  method: DELETE
135
+ - url: /file
136
+ method: GET
137
+ - url: /file/:id
138
+ method: GET
139
+ - url: /file/download/:token
140
+ method: GET
141
+ - url: /file/download/:id
142
+ method: PUT
143
+ - url: /file
144
+ method: POST
145
+ - url: /file
146
+ method: DELETE
147
+
135
148
  menu:
136
149
  - url: /
137
150
  icon: dashboard
@@ -1550,3 +1563,27 @@ tables:
1550
1563
  - type: created_at
1551
1564
  - type: updated_at
1552
1565
  ifNotExists: true
1566
+
1567
+ setting_user:
1568
+ columns:
1569
+ - name: user_id
1570
+ type: fk
1571
+ isPrimary: true
1572
+ references:
1573
+ table: user
1574
+ column: id
1575
+ onDelete: CASCADE
1576
+ - name: setting_id
1577
+ type: fk
1578
+ isPrimary: true
1579
+ references:
1580
+ table: setting
1581
+ column: id
1582
+ onDelete: CASCADE
1583
+ - name: value
1584
+ length: 1023
1585
+ isNullable: true
1586
+ - type: created_at
1587
+ - type: updated_at
1588
+ ifNotExists: true
1589
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedhog/admin",
3
- "version": "0.0.112",
3
+ "version": "0.0.113",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "scripts": {