@adminide-stack/integration-api
Advanced tools
Comparing version 3.1.2-alpha.9 to 3.1.2-alpha.13
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.useGetIntegrationConfigurationLazyQuery = exports.useGetIntegrationConfigurationQuery = exports.GetIntegrationConfigurationDocument = exports.useGetAllIntegrationConfigurationsLazyQuery = exports.useGetAllIntegrationConfigurationsQuery = exports.GetAllIntegrationConfigurationsDocument = exports.useFilterIntegrationConfigurationLazyQuery = exports.useFilterIntegrationConfigurationQuery = exports.FilterIntegrationConfigurationDocument = exports.useDeleteIntegrationConfigurationMutation = exports.DeleteIntegrationConfigurationDocument = exports.useCreateOrUpdateIntegrationConfigurationMutation = exports.CreateOrUpdateIntegrationConfigurationDocument = exports.useCreateIntegrationConfigurationMutation = exports.CreateIntegrationConfigurationDocument = exports.ConfigurationFragmentDoc = exports.ISortEnum = exports.ISettingValueType = exports.IRegistryExtensions = exports.IPreDefinedRole = exports.IPermissionType = exports.IPermissionResource = exports.IPermissionAction = exports.IOrganizationContextPubSubEvents = exports.IMoleculerServiceName = exports.IMailTemplateId = exports.IEditPresentationTypes = exports.IContextServiceAction = exports.IConfigurationTarget = exports.IConfigurationScope = exports.IConfigurationContributionNames = exports.IConfigFragmentName = exports.IConfigCollectionName = exports.ICacheControlScope = exports.IApplicationRoles = void 0; | ||
exports.useGetIntegrationConfigurationLazyQuery = exports.useGetIntegrationConfigurationQuery = exports.GetIntegrationConfigurationDocument = exports.useGetAllIntegrationConfigurationsLazyQuery = exports.useGetAllIntegrationConfigurationsQuery = exports.GetAllIntegrationConfigurationsDocument = exports.useFilterIntegrationConfigurationLazyQuery = exports.useFilterIntegrationConfigurationQuery = exports.FilterIntegrationConfigurationDocument = exports.useDeleteIntegrationConfigurationMutation = exports.DeleteIntegrationConfigurationDocument = exports.useCreateOrUpdateIntegrationConfigurationMutation = exports.CreateOrUpdateIntegrationConfigurationDocument = exports.useCreateIntegrationConfigurationMutation = exports.CreateIntegrationConfigurationDocument = exports.ConfigurationFragmentDoc = exports.ISortEnum = exports.ISettingValueType = exports.IRegistryExtensions = exports.IPreDefinedRole = exports.IPermissionType = exports.IPermissionResource = exports.IPermissionAction = exports.IOrganizationContextPubSubEvents = exports.IMoleculerServiceName = exports.IMailTemplateId = exports.IIntegrationWorkflowServiceAction = exports.IEditPresentationTypes = exports.IContextServiceAction = exports.IConfigurationTarget = exports.IConfigurationScope = exports.IConfigurationContributionNames = exports.IConfigFragmentName = exports.IConfigCollectionName = exports.ICacheControlScope = exports.IApplicationRoles = void 0; | ||
const client_1 = require("@apollo/client"); | ||
@@ -107,2 +107,8 @@ const Apollo = require("@apollo/client"); | ||
})(IEditPresentationTypes = exports.IEditPresentationTypes || (exports.IEditPresentationTypes = {})); | ||
var IIntegrationWorkflowServiceAction; | ||
(function (IIntegrationWorkflowServiceAction) { | ||
IIntegrationWorkflowServiceAction["OnIntegrationWorkflowCreated"] = "onIntegrationWorkflowCreated"; | ||
IIntegrationWorkflowServiceAction["OnIntegrationWorkflowUpdated"] = "onIntegrationWorkflowUpdated"; | ||
IIntegrationWorkflowServiceAction["OnIntegrationWorkflowDeleted"] = "onIntegrationWorkflowDeleted"; | ||
})(IIntegrationWorkflowServiceAction = exports.IIntegrationWorkflowServiceAction || (exports.IIntegrationWorkflowServiceAction = {})); | ||
var IMailTemplateId; | ||
@@ -115,2 +121,3 @@ (function (IMailTemplateId) { | ||
(function (IMoleculerServiceName) { | ||
IMoleculerServiceName["IntegrationWorkflowService"] = "IntegrationWorkflowService"; | ||
IMoleculerServiceName["OrganizationContextService"] = "OrganizationContextService"; | ||
@@ -117,0 +124,0 @@ IMoleculerServiceName["Dummy"] = "dummy"; |
@@ -1,13 +0,14 @@ | ||
import { IIntegrationConfiguration, IIntegrationConfigurationInput, IIntegrationConfigurationCreateOrUpdateInput, IIntegrationConfigurationFilterInput, IIntegrationConfigurationsOutput, ISort } from './generated-models'; | ||
export interface IIntegrationWorkflowService { | ||
import { IBaseService } from '@common-stack/store-mongo'; | ||
import { IIntegrationConfiguration, IIntegrationConfigurationCreateOrUpdateInput, IIntegrationConfigurationFilterInput, IIntegrationConfigurationInput, IIntegrationConfigurationsOutput, ISort } from './generated-models'; | ||
export interface IIntegrationWorkflowService extends IBaseService<IIntegrationConfiguration> { | ||
getAllIntegrationConfigurations(criteria?: any, limit?: number, skip?: number, sort?: ISort): Promise<IIntegrationConfigurationsOutput>; | ||
getIntegrationConfiguration(id: String): Promise<IIntegrationConfiguration>; | ||
createIntegrationConfiguration(data: IIntegrationConfigurationInput): Promise<{ | ||
getIntegrationConfiguration(id: string): Promise<IIntegrationConfiguration>; | ||
createIntegrationConfiguration(data: IIntegrationConfigurationInput, userId: string): Promise<{ | ||
id: string; | ||
}>; | ||
createOrUpdateIntegrationConfiguration(data: IIntegrationConfigurationCreateOrUpdateInput): Promise<{ | ||
createOrUpdateIntegrationConfiguration(data: IIntegrationConfigurationCreateOrUpdateInput, userId: string): Promise<{ | ||
id: string; | ||
}>; | ||
deleteIntegrationConfiguration(id: String): Promise<boolean>; | ||
deleteIntegrationConfiguration(id: string, userId: string): Promise<boolean>; | ||
filterIntegrationConfiguration(filter: IIntegrationConfigurationFilterInput): Promise<IIntegrationConfiguration[]>; | ||
} |
{ | ||
"name": "@adminide-stack/integration-api", | ||
"version": "3.1.2-alpha.9", | ||
"version": "3.1.2-alpha.13", | ||
"description": "Integration core for higher packages to depend on", | ||
@@ -22,3 +22,3 @@ "license": "ISC", | ||
"dependencies": { | ||
"@adminide-stack/core": "3.1.2-alpha.9", | ||
"@adminide-stack/core": "3.1.2-alpha.13", | ||
"xstate": "^4.35.2" | ||
@@ -32,3 +32,3 @@ }, | ||
}, | ||
"gitHead": "1f9b25dcea9d1a73ad4d82e735d55ef96602eb21" | ||
"gitHead": "98475ab30b16359873b3502c53ef298cbc360bf0" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
201324
3322
+ Added@adminide-stack/core@3.1.2-alpha.13(transitive)
- Removed@adminide-stack/core@3.1.2-alpha.9(transitive)