Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atlas-engine/admin_domain.contracts

Package Overview
Dependencies
Maintainers
8
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlas-engine/admin_domain.contracts - npm Package Compare versions

Comparing version 1.0.0-beta.2 to 1.0.0-beta.3

dist/amd/http_controller/inotification_long_polling_controller.js

140

dist/amd/rest_settings.js

@@ -215,2 +215,142 @@ define(["require", "exports"], function (require, exports) {

queryTokenHistory: '/tokens/history/query',
// Notifiaction
/*
* Wait for a CronjobCreated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobCreated: '/notifications/long_polling/cronjob_created',
/*
* Wait for a CronjobExecuted notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobExecuted: '/notifications/long_polling/cronjob_executed',
/*
* Wait for a CronjobStopped notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobStopped: '/notifications/long_polling/cronjob_stopped',
/*
* Wait for a CronjobUpdated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobUpdated: '/notifications/long_polling/cronjob_updated',
/*
* Wait for a CronjobRemoved notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobRemoved: '/notifications/long_polling/cronjob_removed',
/*
* Wait for a ProcessDeployed notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessDeployed: '/notifications/long_polling/process_deployed',
/*
* Wait for a ProcessUndeployed notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessUndeployed: '/notifications/long_polling/process_undeployed',
/*
* Wait for a ProcessStarted notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessStarted: '/notifications/long_polling/process_started',
/*
* Wait for a ProcessEnded notification and turns the result
*@tag Notification
*@method get
*/
onProcessEnded: '/notifications/long_polling/process_ended',
/*
* Wait for a ProcessTerminated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessTerminated: '/notifications/long_polling/process_terminated',
/*
* Wait for a ProcessError notification and turns the result
*@tag Notification
*@method get
*/
onProcessError: '/notifications/long_polling/process_error',
/*
* Wait for an ActivityReached notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onActivityReached: '/notifications/long_polling/activity_reached',
/*
* Wait for an ActivityFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onActivityFinished: '/notifications/long_polling/activity_finished',
/*
* Wait for an EmptyActivityWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onEmptyActivityWaiting: '/notifications/long_polling/empty_activity_waiting',
/*
* Wait for an EmptyActivityFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onEmptyActivityFinished: '/notifications/long_polling/empty_activity_finished',
/*
* Wait for a ManualTaskWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onManualTaskWaiting: '/notifications/long_polling/manual_task_waiting',
/*
* Wait for a ManualTaskFinied notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onManualTaskFinished: '/notifications/long_polling/manual_task_finished',
/*
* Wait for a UserTaskWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onUserTaskWaiting: '/notifications/long_polling/user_task_waiting',
/*
* Wait for a UserTaskFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onUserTaskFinished: '/notifications/long_polling/user_task_finished',
/*
* Wait for a BoundaryEventTriggered notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onBoundaryEventTriggered: '/notifications/long_polling/boundary_event_triggered',
/*
* Wait for an IntermediateThrowEventTriggered notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onIntermediateThrowEventTriggered: '/notifications/long_polling/intermediate_throw_event_triggered',
/*
* Wait for an IntermediateCatchEventReached notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onIntermediateCatchEventReached: '/notifications/long_polling/intermediate_catch_event_reached',
/*
*
* Wait for a IntermediateCatchEventFinished notification and resolves with the notification's content.
* @tag Notification
* @method get
* */
onIntermediateCatchEventFinished: '/notifications/long_polling/intermediate_catch_event_finished',
};

@@ -217,0 +357,0 @@ exports.restSettings = {

@@ -214,2 +214,142 @@ "use strict";

queryTokenHistory: '/tokens/history/query',
// Notifiaction
/*
* Wait for a CronjobCreated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobCreated: '/notifications/long_polling/cronjob_created',
/*
* Wait for a CronjobExecuted notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobExecuted: '/notifications/long_polling/cronjob_executed',
/*
* Wait for a CronjobStopped notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobStopped: '/notifications/long_polling/cronjob_stopped',
/*
* Wait for a CronjobUpdated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobUpdated: '/notifications/long_polling/cronjob_updated',
/*
* Wait for a CronjobRemoved notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobRemoved: '/notifications/long_polling/cronjob_removed',
/*
* Wait for a ProcessDeployed notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessDeployed: '/notifications/long_polling/process_deployed',
/*
* Wait for a ProcessUndeployed notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessUndeployed: '/notifications/long_polling/process_undeployed',
/*
* Wait for a ProcessStarted notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessStarted: '/notifications/long_polling/process_started',
/*
* Wait for a ProcessEnded notification and turns the result
*@tag Notification
*@method get
*/
onProcessEnded: '/notifications/long_polling/process_ended',
/*
* Wait for a ProcessTerminated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessTerminated: '/notifications/long_polling/process_terminated',
/*
* Wait for a ProcessError notification and turns the result
*@tag Notification
*@method get
*/
onProcessError: '/notifications/long_polling/process_error',
/*
* Wait for an ActivityReached notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onActivityReached: '/notifications/long_polling/activity_reached',
/*
* Wait for an ActivityFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onActivityFinished: '/notifications/long_polling/activity_finished',
/*
* Wait for an EmptyActivityWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onEmptyActivityWaiting: '/notifications/long_polling/empty_activity_waiting',
/*
* Wait for an EmptyActivityFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onEmptyActivityFinished: '/notifications/long_polling/empty_activity_finished',
/*
* Wait for a ManualTaskWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onManualTaskWaiting: '/notifications/long_polling/manual_task_waiting',
/*
* Wait for a ManualTaskFinied notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onManualTaskFinished: '/notifications/long_polling/manual_task_finished',
/*
* Wait for a UserTaskWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onUserTaskWaiting: '/notifications/long_polling/user_task_waiting',
/*
* Wait for a UserTaskFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onUserTaskFinished: '/notifications/long_polling/user_task_finished',
/*
* Wait for a BoundaryEventTriggered notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onBoundaryEventTriggered: '/notifications/long_polling/boundary_event_triggered',
/*
* Wait for an IntermediateThrowEventTriggered notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onIntermediateThrowEventTriggered: '/notifications/long_polling/intermediate_throw_event_triggered',
/*
* Wait for an IntermediateCatchEventReached notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onIntermediateCatchEventReached: '/notifications/long_polling/intermediate_catch_event_reached',
/*
*
* Wait for a IntermediateCatchEventFinished notification and resolves with the notification's content.
* @tag Notification
* @method get
* */
onIntermediateCatchEventFinished: '/notifications/long_polling/intermediate_catch_event_finished',
};

@@ -216,0 +356,0 @@ exports.restSettings = {

2

dist/http_controller/index.d.ts

@@ -6,2 +6,3 @@ import * as appInfoController from './iapplication_info_http_controller';

import * as loggingHttpController from './ilogging_http_controller';
import * as notificationLongPollingController from './inotification_long_polling_controller';
import * as processDefinitionHttpController from './iprocess_definition_http_controller';

@@ -17,2 +18,3 @@ import * as processInstanceHttpController from './iprocess_instance_http_controller';

export import ILoggingHttpController = loggingHttpController.ILoggingHttpController;
export import INotificationLongPollingController = notificationLongPollingController.INotificationLongPollingController;
export import IProcessDefinitionHttpController = processDefinitionHttpController.IProcessDefinitionHttpController;

@@ -19,0 +21,0 @@ export import IProcessInstanceHttpController = processInstanceHttpController.IProcessInstanceHttpController;

@@ -44,4 +44,27 @@ export declare const restSettings: {

queryTokenHistory: string;
onCronjobCreated: string;
onCronjobExecuted: string;
onCronjobStopped: string;
onCronjobUpdated: string;
onCronjobRemoved: string;
onProcessDeployed: string;
onProcessUndeployed: string;
onProcessStarted: string;
onProcessEnded: string;
onProcessTerminated: string;
onProcessError: string;
onActivityReached: string;
onActivityFinished: string;
onEmptyActivityWaiting: string;
onEmptyActivityFinished: string;
onManualTaskWaiting: string;
onManualTaskFinished: string;
onUserTaskWaiting: string;
onUserTaskFinished: string;
onBoundaryEventTriggered: string;
onIntermediateThrowEventTriggered: string;
onIntermediateCatchEventReached: string;
onIntermediateCatchEventFinished: string;
};
baseRoute: string;
};

16

package.json
{
"name": "@atlas-engine/admin_domain.contracts",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"description": "Contains the contracts for accessing the AtlasEngine's public admin domain.",

@@ -31,9 +31,9 @@ "main": "dist/commonjs/index.js",

"@process-engine/ci_tools": "^3.0.0",
"@types/express": "^4.16.0",
"@types/node": "^12.11.7",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"eslint": "^6.6.0",
"express": "^4.16.4",
"typescript": "^3.7.2"
"@types/express": "4.17.6",
"@types/node": "12.12.36",
"@types/socket.io": "2.1.4",
"@types/socket.io-client": "1.4.32",
"eslint": "6.8.0",
"express": "4.17.1",
"typescript": "3.8.3"
},

@@ -40,0 +40,0 @@ "scripts": {

@@ -228,2 +228,166 @@ const params = {

queryTokenHistory: '/tokens/history/query',
// Notifiaction
/*
* Wait for a CronjobCreated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobCreated: '/notifications/long_polling/cronjob_created',
/*
* Wait for a CronjobExecuted notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobExecuted: '/notifications/long_polling/cronjob_executed',
/*
* Wait for a CronjobStopped notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobStopped: '/notifications/long_polling/cronjob_stopped',
/*
* Wait for a CronjobUpdated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobUpdated: '/notifications/long_polling/cronjob_updated',
/*
* Wait for a CronjobRemoved notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onCronjobRemoved: '/notifications/long_polling/cronjob_removed',
/*
* Wait for a ProcessDeployed notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessDeployed: '/notifications/long_polling/process_deployed',
/*
* Wait for a ProcessUndeployed notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessUndeployed: '/notifications/long_polling/process_undeployed',
/*
* Wait for a ProcessStarted notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessStarted: '/notifications/long_polling/process_started',
/*
* Wait for a ProcessEnded notification and turns the result
*@tag Notification
*@method get
*/
onProcessEnded: '/notifications/long_polling/process_ended',
/*
* Wait for a ProcessTerminated notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onProcessTerminated: '/notifications/long_polling/process_terminated',
/*
* Wait for a ProcessError notification and turns the result
*@tag Notification
*@method get
*/
onProcessError: '/notifications/long_polling/process_error',
/*
* Wait for an ActivityReached notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onActivityReached: '/notifications/long_polling/activity_reached',
/*
* Wait for an ActivityFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onActivityFinished: '/notifications/long_polling/activity_finished',
/*
* Wait for an EmptyActivityWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onEmptyActivityWaiting: '/notifications/long_polling/empty_activity_waiting',
/*
* Wait for an EmptyActivityFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onEmptyActivityFinished: '/notifications/long_polling/empty_activity_finished',
/*
* Wait for a ManualTaskWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onManualTaskWaiting: '/notifications/long_polling/manual_task_waiting',
/*
* Wait for a ManualTaskFinied notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onManualTaskFinished: '/notifications/long_polling/manual_task_finished',
/*
* Wait for a UserTaskWaiting notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onUserTaskWaiting: '/notifications/long_polling/user_task_waiting',
/*
* Wait for a UserTaskFinished notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onUserTaskFinished: '/notifications/long_polling/user_task_finished',
/*
* Wait for a BoundaryEventTriggered notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onBoundaryEventTriggered: '/notifications/long_polling/boundary_event_triggered',
/*
* Wait for an IntermediateThrowEventTriggered notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onIntermediateThrowEventTriggered: '/notifications/long_polling/intermediate_throw_event_triggered',
/*
* Wait for an IntermediateCatchEventReached notification and resolves with the notification's content.
*@tag Notification
*@method get
*/
onIntermediateCatchEventReached: '/notifications/long_polling/intermediate_catch_event_reached',
/*
*
* Wait for a IntermediateCatchEventFinished notification and resolves with the notification's content.
* @tag Notification
* @method get
* */
onIntermediateCatchEventFinished: '/notifications/long_polling/intermediate_catch_event_finished',
};

@@ -230,0 +394,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc