appknit-platform-sdk
Advanced tools
Comparing version 1.0.50-47 to 1.0.50-49
@@ -7,2 +7,7 @@ export declare enum CronJobStatus { | ||
} | ||
export declare enum CronJobType { | ||
ENVIRONMENT_FLOW_VERSION = "environmentFlowVersion", | ||
POLLING = "polling", | ||
OTHER = "other" | ||
} | ||
export declare abstract class SdkFlowProvider { | ||
@@ -16,2 +21,3 @@ abstract execute(environmentFlowVersionId: string, data: any): Promise<any>; | ||
abstract archiveScheduledJob(jobId: string): Promise<any>; | ||
abstract updateScheduledJob(jobId: string, name: string, type: CronJobType, cronExpression: string, data: Record<string, any>): Promise<any>; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SdkFlowProvider = exports.CronJobStatus = void 0; | ||
exports.SdkFlowProvider = exports.CronJobType = exports.CronJobStatus = void 0; | ||
var CronJobStatus; | ||
@@ -11,2 +11,8 @@ (function (CronJobStatus) { | ||
})(CronJobStatus = exports.CronJobStatus || (exports.CronJobStatus = {})); | ||
var CronJobType; | ||
(function (CronJobType) { | ||
CronJobType["ENVIRONMENT_FLOW_VERSION"] = "environmentFlowVersion"; | ||
CronJobType["POLLING"] = "polling"; | ||
CronJobType["OTHER"] = "other"; | ||
})(CronJobType = exports.CronJobType || (exports.CronJobType = {})); | ||
class SdkFlowProvider { | ||
@@ -13,0 +19,0 @@ } |
{ | ||
"name": "appknit-platform-sdk", | ||
"version": "1.0.50-47", | ||
"version": "1.0.50-49", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "homepage": "https://appknit.io", |
Sorry, the diff of this file is not supported yet
113530
2029