@ibiliaze/global-vars 1.136.0 → 1.138.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/dist/ticketops/roles/admin.d.ts +122 -0
- package/dist/ticketops/roles/admin.js +113 -11
- package/dist/ticketops/roles/blog.d.ts +48 -0
- package/dist/ticketops/roles/blog.js +47 -5
- package/dist/ticketops/roles/campaign.d.ts +86 -0
- package/dist/ticketops/roles/campaign.js +79 -8
- package/dist/ticketops/roles.d.ts +514 -11
- package/dist/ticketops/roles.js +0 -3
- package/package.json +2 -2
package/dist/ticketops/roles.js
CHANGED
|
@@ -26,7 +26,6 @@ const seat_1 = require("./roles/seat");
|
|
|
26
26
|
const section_1 = require("./roles/section");
|
|
27
27
|
const staff_1 = require("./roles/staff");
|
|
28
28
|
const user_1 = require("./roles/user");
|
|
29
|
-
const ai_1 = require("./roles/ai");
|
|
30
29
|
const checkout_1 = require("./roles/checkout");
|
|
31
30
|
const file_1 = require("./roles/file");
|
|
32
31
|
const google_1 = require("./roles/google");
|
|
@@ -72,7 +71,6 @@ const apis = () => [
|
|
|
72
71
|
...staff_1.staffRoleDefs,
|
|
73
72
|
...user_1.userRoleDefs,
|
|
74
73
|
// Util routes
|
|
75
|
-
...ai_1.aiRoleDefs,
|
|
76
74
|
...checkout_1.checkoutRoleDefs,
|
|
77
75
|
...file_1.fileRoleDefs,
|
|
78
76
|
...google_1.googleRoleDefs,
|
|
@@ -113,7 +111,6 @@ const allApis = [
|
|
|
113
111
|
...section_1.sectionRoleDefs,
|
|
114
112
|
...staff_1.staffRoleDefs,
|
|
115
113
|
...user_1.userRoleDefs,
|
|
116
|
-
...ai_1.aiRoleDefs,
|
|
117
114
|
...checkout_1.checkoutRoleDefs,
|
|
118
115
|
...file_1.fileRoleDefs,
|
|
119
116
|
...google_1.googleRoleDefs,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiliaze/global-vars",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.138.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "tsc",
|
|
24
24
|
"pub": "npm publish --access public",
|
|
25
|
-
"git": "git add .; git commit -m 'changes'; git tag -a v1.
|
|
25
|
+
"git": "git add .; git commit -m 'changes'; git tag -a v1.138.0 -m 'v1.138.0'; git push origin v1.138.0; git push",
|
|
26
26
|
"push": "npm run build; npm run git; npm run pub"
|
|
27
27
|
},
|
|
28
28
|
"author": "Ibi Hasanli",
|