@trayio/cdk-dsl
Advanced tools
Comparing version 4.56.0 to 4.57.0
import { HttpContentType, HttpMethod, HttpRequest, HttpHeaderValue, HttpResponse, HttpHeaders } from '@trayio/commons/http/Http'; | ||
import { DynamicObject, DynamicType } from '@trayio/commons/dynamictype/DynamicType'; | ||
import * as O from 'fp-ts/Option'; | ||
import { OperationHandlerAuth, OperationHandlerContext, OperationHandlerResult, FileReference } from './OperationHandler'; | ||
import { OperationHandlerAuth, OperationHandlerContext, OperationHandlerResult, FileReference, PlainTextFile } from './OperationHandler'; | ||
export type HttpOperationMultipartBody = { | ||
fields: Record<string, string>; | ||
files: Record<string, FileReference>; | ||
files: Record<string, FileReference | PlainTextFile>; | ||
}; | ||
@@ -9,0 +9,0 @@ export type HttpOperationBody = FileReference | string | DynamicType | HttpOperationMultipartBody | undefined; |
@@ -107,2 +107,6 @@ import { Result, ResultInterface } from '@trayio/commons/result/Result'; | ||
}; | ||
export type PlainTextFile = { | ||
name: string; | ||
content: string; | ||
}; | ||
export type OperationHandlerError = ConnectorError | ApiError | UserInputError | OauthRefreshError | SkipTriggerError | TimeoutError; | ||
@@ -109,0 +113,0 @@ export type BaseOperationHandlerError = { |
{ | ||
"name": "@trayio/cdk-dsl", | ||
"version": "4.56.0", | ||
"version": "4.57.0", | ||
"description": "A DSL for connector development", | ||
@@ -17,3 +17,3 @@ "exports": { | ||
"dependencies": { | ||
"@trayio/commons": "4.56.0" | ||
"@trayio/commons": "4.57.0" | ||
}, | ||
@@ -20,0 +20,0 @@ "typesVersions": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
154168
1528
152
+ Added@trayio/commons@4.57.0(transitive)
- Removed@trayio/commons@4.56.0(transitive)
Updated@trayio/commons@4.57.0