@taskmagic/shared
Advanced tools
Comparing version 0.10.30 to 0.10.31
{ | ||
"name": "@taskmagic/shared", | ||
"version": "0.10.30", | ||
"version": "0.10.31", | ||
"type": "commonjs", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
@@ -5,4 +5,5 @@ import { Static } from '@sinclair/typebox'; | ||
appName: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString<string>>; | ||
projectId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString<string>, import("@sinclair/typebox").TNull]>; | ||
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>; | ||
}>; | ||
export type ListAppConnectionsRequestQuery = Static<typeof ListAppConnectionsRequestQuery>; |
@@ -8,4 +8,5 @@ "use strict"; | ||
appName: typebox_1.Type.Optional(typebox_1.Type.String({})), | ||
projectId: typebox_1.Type.Union([typebox_1.Type.String(), typebox_1.Type.Null()]), | ||
limit: typebox_1.Type.Optional(typebox_1.Type.Number({})), | ||
}); | ||
//# sourceMappingURL=read-app-connection-request.js.map |
import { Static } from '@sinclair/typebox'; | ||
import { Cursor } from '../../common/seek-page'; | ||
export declare const ListFlowsRequest: import("@sinclair/typebox").TObject<{ | ||
projectId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString<string>, import("@sinclair/typebox").TNull]>; | ||
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString<string>>; | ||
@@ -13,2 +14,3 @@ limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>; | ||
versionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString<string>>; | ||
projectId: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString<string>, import("@sinclair/typebox").TNull]>; | ||
}>; | ||
@@ -15,0 +17,0 @@ export type GetFlowRequest = Static<typeof GetFlowRequest>; |
@@ -6,2 +6,3 @@ "use strict"; | ||
exports.ListFlowsRequest = typebox_1.Type.Object({ | ||
projectId: typebox_1.Type.Union([typebox_1.Type.String(), typebox_1.Type.Null()]), | ||
folderId: typebox_1.Type.Optional(typebox_1.Type.String()), | ||
@@ -13,2 +14,3 @@ limit: typebox_1.Type.Optional(typebox_1.Type.Number({})), | ||
versionId: typebox_1.Type.Optional(typebox_1.Type.String({})), | ||
projectId: typebox_1.Type.Union([typebox_1.Type.String({}), typebox_1.Type.Null()]) | ||
}); | ||
@@ -15,0 +17,0 @@ exports.GetFlowByNameRequest = typebox_1.Type.Object({ |
@@ -15,2 +15,3 @@ import { Static } from '@sinclair/typebox'; | ||
cursor: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString<string>>; | ||
projectId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString<string>>; | ||
}>; | ||
@@ -17,0 +18,0 @@ export type ListFolderRequest = Omit<Static<typeof ListFolderRequest>, 'cursor'> & { |
@@ -15,3 +15,4 @@ "use strict"; | ||
cursor: typebox_1.Type.Optional(typebox_1.Type.String({})), | ||
projectId: typebox_1.Type.Optional(typebox_1.Type.String({})), | ||
}); | ||
//# sourceMappingURL=folder-requests.js.map |
@@ -7,2 +7,3 @@ import { Static } from '@sinclair/typebox'; | ||
displayName: import("@sinclair/typebox").TString<string>; | ||
members: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString<string>>; | ||
created: import("@sinclair/typebox").TString<string>; | ||
@@ -20,2 +21,3 @@ updated: import("@sinclair/typebox").TString<string>; | ||
id: string; | ||
members?: (String | null)[]; | ||
}; |
@@ -6,4 +6,4 @@ "use strict"; | ||
const common_1 = require("../../common"); | ||
exports.Folder = typebox_1.Type.Object(Object.assign(Object.assign({}, common_1.BaseModelSchema), { id: typebox_1.Type.String(), projectId: typebox_1.Type.String(), displayName: typebox_1.Type.String() })); | ||
exports.Folder = typebox_1.Type.Object(Object.assign(Object.assign({}, common_1.BaseModelSchema), { id: typebox_1.Type.String(), projectId: typebox_1.Type.String(), displayName: typebox_1.Type.String(), members: typebox_1.Type.Array(typebox_1.Type.String()) })); | ||
exports.UncategorizedFolderId = 'UNCATEGORIZED'; | ||
//# sourceMappingURL=folder.js.map |
@@ -5,2 +5,3 @@ import { Static } from '@sinclair/typebox'; | ||
stepName: import("@sinclair/typebox").TString<string>; | ||
projectId: import("@sinclair/typebox").TString<string>; | ||
}>; | ||
@@ -7,0 +8,0 @@ export declare const StepRunResponse: import("@sinclair/typebox").TObject<{ |
@@ -8,2 +8,4 @@ "use strict"; | ||
stepName: typebox_1.Type.String(), | ||
projectId: typebox_1.Type.String(), | ||
// userId:Type.String(), | ||
}); | ||
@@ -10,0 +12,0 @@ exports.StepRunResponse = typebox_1.Type.Object({ |
@@ -20,3 +20,7 @@ import { FileId } from '../file'; | ||
export declare enum PieceCategory { | ||
CORE = "CORE" | ||
CORE = "CORE", | ||
COMMERCE = "COMMERCE", | ||
ARTIFICIAL_INTELLIGENCE = "ARTIFICIAL_INTELLIGENCE", | ||
PRODUCTIVITY = "PRODUCTIVITY", | ||
SALES_AND_CRM = "SALES_AND_CRM" | ||
} |
@@ -17,3 +17,7 @@ "use strict"; | ||
PieceCategory["CORE"] = "CORE"; | ||
PieceCategory["COMMERCE"] = "COMMERCE"; | ||
PieceCategory["ARTIFICIAL_INTELLIGENCE"] = "ARTIFICIAL_INTELLIGENCE"; | ||
PieceCategory["PRODUCTIVITY"] = "PRODUCTIVITY"; | ||
PieceCategory["SALES_AND_CRM"] = "SALES_AND_CRM"; | ||
})(PieceCategory || (exports.PieceCategory = PieceCategory = {})); | ||
//# sourceMappingURL=piece.js.map |
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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
424452
5748