@amplication/code-gen-types
Advanced tools
Comparing version 2.0.21 to 2.0.22
{ | ||
"name": "@amplication/code-gen-types", | ||
"version": "2.0.21", | ||
"version": "2.0.22", | ||
"description": "This library supplies all the contracts for Amplication Code Generation. The purpose is to make the contracts available for inclusion in plugins.", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SortOrder = exports.Role = exports.QueryMode = exports.EnumWorkspaceMemberType = exports.EnumUserActionType = exports.EnumUserActionStatus = exports.EnumSubscriptionStatus = exports.EnumSubscriptionPlan = exports.EnumResourceType = exports.EnumPendingChangeOriginType = exports.EnumPendingChangeAction = exports.EnumModuleActionType = exports.EnumModuleActionRestVerb = exports.EnumModuleActionGqlOperation = exports.EnumMessagePatternConnectionOptions = exports.EnumGitProvider = exports.EnumGitOrganizationType = exports.EnumEntityPermissionType = exports.EnumEntityAction = exports.EnumDataType = exports.EnumBuildStatus = exports.EnumBlockType = exports.EnumAuthProviderType = exports.EnumActionStepStatus = exports.EnumActionLogLevel = exports.CodeGeneratorVersionStrategy = void 0; | ||
exports.SortOrder = exports.Role = exports.QueryMode = exports.PreviewAccountType = exports.EnumWorkspaceMemberType = exports.EnumUserActionType = exports.EnumUserActionStatus = exports.EnumSubscriptionStatus = exports.EnumSubscriptionPlan = exports.EnumResourceType = exports.EnumPendingChangeOriginType = exports.EnumPendingChangeAction = exports.EnumModuleActionType = exports.EnumModuleActionRestVerb = exports.EnumModuleActionGqlOperation = exports.EnumMessagePatternConnectionOptions = exports.EnumGitProvider = exports.EnumGitOrganizationType = exports.EnumEntityPermissionType = exports.EnumEntityAction = exports.EnumDataType = exports.EnumBuildStatus = exports.EnumBlockType = exports.EnumAuthProviderType = exports.EnumActionStepStatus = exports.EnumActionLogLevel = exports.CodeGeneratorVersionStrategy = void 0; | ||
var CodeGeneratorVersionStrategy; | ||
@@ -154,2 +154,3 @@ (function (CodeGeneratorVersionStrategy) { | ||
EnumSubscriptionPlan["Free"] = "Free"; | ||
EnumSubscriptionPlan["PreviewBreakTheMonolith"] = "PreviewBreakTheMonolith"; | ||
EnumSubscriptionPlan["Pro"] = "Pro"; | ||
@@ -181,2 +182,7 @@ })(EnumSubscriptionPlan || (exports.EnumSubscriptionPlan = EnumSubscriptionPlan = {})); | ||
})(EnumWorkspaceMemberType || (exports.EnumWorkspaceMemberType = EnumWorkspaceMemberType = {})); | ||
var PreviewAccountType; | ||
(function (PreviewAccountType) { | ||
PreviewAccountType["BreakingTheMonolith"] = "BreakingTheMonolith"; | ||
PreviewAccountType["None"] = "None"; | ||
})(PreviewAccountType || (exports.PreviewAccountType = PreviewAccountType = {})); | ||
var QueryMode; | ||
@@ -183,0 +189,0 @@ (function (QueryMode) { |
import type { Promisable } from "type-fest"; | ||
import { BuildLogger } from "./build-logger"; | ||
import { clientDirectories, DTOs, ModuleMap, serverDirectories } from "./code-gen-types"; | ||
import { clientDirectories, DTOs, EntityActionsMap, ModuleMap, serverDirectories } from "./code-gen-types"; | ||
import { DSGResourceData } from "./dsg-resource-data"; | ||
@@ -44,2 +44,3 @@ import { Events } from "./plugin-events.types"; | ||
userRolesFieldName: string; | ||
entityActionsMap: EntityActionsMap; | ||
} | ||
@@ -46,0 +47,0 @@ export type PluginWrapper = (args: EventParams, func: () => void) => any; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
175837
4107