Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@buildable/types

Package Overview
Dependencies
Maintainers
5
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@buildable/types - npm Package Compare versions

Comparing version
0.0.9
to
0.0.10
+1
-1
apis/destination.api.types.ts

@@ -13,3 +13,3 @@ import { DestinationConfig, DestinationPlatforms } from '../platforms';

export interface DeleteDestinationPayload {
slug: string;
key: string;
}

@@ -16,0 +16,0 @@

@@ -41,3 +41,2 @@ export interface Settings {

action: string;
type?: string;
};

@@ -58,3 +57,3 @@ extractors?: [Extractor, ...Extractor[]];

interface UpdatePipeline {
id: string;
key: string;
source?: {

@@ -68,3 +67,3 @@ key: string;

};
extractors?: [Extractor, ...Extractor[]];
extractors?: Extractor[];
transformation?: Transformation;

@@ -86,3 +85,3 @@ settings?: Settings;

export interface DeletePipelinePayload {
id: string;
key: string;
}

@@ -89,0 +88,0 @@

@@ -30,3 +30,3 @@ import { SourceEvents } from '../events';

type: "nodejs"
id: string;
key: string;
events: [string, ...string[]];

@@ -38,3 +38,3 @@ }

export type SubscribeSourceEventPayload<T extends SourcePlatforms> = T extends 'nodejs' ? AddCustomEventsPayload : {
slug: string;
key: string;
type: T;

@@ -45,3 +45,3 @@ events: [SourceEvents<T>, ...SourceEvents<T>[]];

export interface DeleteSourcePayload {
slug: string;
key: string;
}

@@ -48,0 +48,0 @@

@@ -200,2 +200,3 @@ import { EventAccessKey } from "./pipeline";

_id?: string;
key?: string;
id?: string;

@@ -202,0 +203,0 @@ _v: string;

{
"name": "@buildable/types",
"version": "0.0.9",
"version": "0.0.10",
"description": "",

@@ -24,3 +24,3 @@ "main": "dist/index.js",

},
"gitHead": "b13ff9d70c60ddbc090a8cc5d9d1c6ab4d242fe8"
"gitHead": "f64d8b0776d52be24277873bf466330fba3842ba"
}

@@ -89,3 +89,3 @@ import { DestinationPipelineConfig } from './destinations/serverlessDestinations';

startToCloseTimeout: string;
_type: 'extractor::http';
_type: string;
}

@@ -100,7 +100,7 @@

objectIdPath: string;
_type: 'extractor::event';
_type: string;
}
export interface PipelineMiddlewareTransformer {
_type: 'transformer';
_type: string;
code: string;

@@ -152,3 +152,2 @@ language: string;

maximumAttempts: number; // 3
nonRetryableErrorTypes: string[]; // []
initialInterval: string; // 10 second in ms

@@ -155,0 +154,0 @@ }