New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

appknit-platform-sdk

Package Overview
Dependencies
Maintainers
2
Versions
224
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appknit-platform-sdk - npm Package Compare versions

Comparing version 1.0.50-47 to 1.0.50-49

6

dist/src/types/flow.d.ts

@@ -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>;
}

8

dist/src/types/flow.js
"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 @@ }

2

package.json
{
"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

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