@voidwalkers/void-functions
Advanced tools
Comparing version 0.1.5 to 0.1.6
{ | ||
"name": "@voidwalkers/void-functions", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Functions for Void Walkers Void", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -1,2 +0,2 @@ | ||
import {FunctionSystemRole, FunctionType} from '#src/lib/constants.js'; | ||
import {FunctionSystemRole, FunctionTriggerEvent, FunctionTriggerSubject, FunctionType} from '#src/lib/constants.js'; | ||
@@ -25,2 +25,2 @@ let registerHandler = null; | ||
export {FunctionSystemRole}; | ||
export {FunctionSystemRole, FunctionTriggerEvent, FunctionTriggerSubject}; |
@@ -0,1 +1,19 @@ | ||
export const FunctionSystemRole = { | ||
UserAuth: 'user_auth' | ||
}; | ||
export const FunctionTriggerEvent = { | ||
Create: 'create', | ||
Delete: 'delete', | ||
Schedule: 'schedule', | ||
Update: 'update', | ||
Write: 'write' | ||
}; | ||
export const FunctionTriggerSubject = { | ||
AuthUser: 'auth_user', | ||
MongoDocument: 'mongo_document', | ||
Schedule: 'schedule' | ||
}; | ||
export const FunctionType = { | ||
@@ -5,5 +23,1 @@ Call: 'call', | ||
}; | ||
export const FunctionSystemRole = { | ||
UserAuth: 'user_auth' | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2374
37