@proteos/sdk 0.53.0 → 0.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-SWCPI6SL.cjs → chunk-KMNEQP3G.cjs} +13 -3
- package/dist/chunk-KMNEQP3G.cjs.map +1 -0
- package/dist/{chunk-HEUXXELG.js → chunk-OS4IQ5VH.js} +13 -3
- package/dist/chunk-OS4IQ5VH.js.map +1 -0
- package/dist/index.cjs +453 -118
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +859 -30
- package/dist/index.d.ts +859 -30
- package/dist/index.js +338 -4
- package/dist/index.js.map +1 -1
- package/dist/meta/index.cjs +75 -75
- package/dist/meta/index.d.cts +1 -1
- package/dist/meta/index.d.ts +1 -1
- package/dist/meta/index.js +1 -1
- package/dist/{types-D5P6yk1L.d.cts → types-amvSTwJy.d.cts} +20 -2
- package/dist/{types-D5P6yk1L.d.ts → types-amvSTwJy.d.ts} +20 -2
- package/package.json +3 -3
- package/src/auth/platform-entities.ts +8 -0
- package/src/connector/types.ts +8 -0
- package/src/index.ts +87 -0
- package/src/meta/layout/elements.ts +29 -0
- package/src/meta/layout/index.ts +1 -0
- package/src/scheduling/index.ts +576 -0
- package/src/scheduling/types.ts +790 -0
- package/dist/chunk-HEUXXELG.js.map +0 -1
- package/dist/chunk-SWCPI6SL.cjs.map +0 -1
|
@@ -1144,7 +1144,8 @@ var LayoutElementType = {
|
|
|
1144
1144
|
Text: "text",
|
|
1145
1145
|
RecordFilter: "record_filter",
|
|
1146
1146
|
List: "list",
|
|
1147
|
-
WorkflowTrigger: "workflow_trigger"
|
|
1147
|
+
WorkflowTrigger: "workflow_trigger",
|
|
1148
|
+
SchedulingPicker: "scheduling_picker"
|
|
1148
1149
|
};
|
|
1149
1150
|
var LayoutTabSchema = zod.z.lazy(
|
|
1150
1151
|
() => zod.z.object({
|
|
@@ -1271,6 +1272,15 @@ var LayoutElementSchema = zod.z.lazy(
|
|
|
1271
1272
|
...commonPropsShape,
|
|
1272
1273
|
variant: zod.z.enum(["heading", "subheading", "body", "caption", "callout"]),
|
|
1273
1274
|
content: zod.z.string().min(1)
|
|
1275
|
+
}),
|
|
1276
|
+
zod.z.object({
|
|
1277
|
+
type: zod.z.literal("scheduling_picker"),
|
|
1278
|
+
...commonPropsShape,
|
|
1279
|
+
link_key: zod.z.string().min(1),
|
|
1280
|
+
type_key: zod.z.string().min(1).optional(),
|
|
1281
|
+
host_user_id: zod.z.string().min(1).optional(),
|
|
1282
|
+
contact_id: zod.z.string().optional(),
|
|
1283
|
+
is_header_hidden: zod.z.boolean().optional()
|
|
1274
1284
|
})
|
|
1275
1285
|
])
|
|
1276
1286
|
);
|
|
@@ -1910,5 +1920,5 @@ exports.parsePrincipalMeta = parsePrincipalMeta;
|
|
|
1910
1920
|
exports.parseRelationMeta = parseRelationMeta;
|
|
1911
1921
|
exports.parseUserMeta = parseUserMeta;
|
|
1912
1922
|
exports.platformAttributes = platformAttributes;
|
|
1913
|
-
//# sourceMappingURL=chunk-
|
|
1914
|
-
//# sourceMappingURL=chunk-
|
|
1923
|
+
//# sourceMappingURL=chunk-KMNEQP3G.cjs.map
|
|
1924
|
+
//# sourceMappingURL=chunk-KMNEQP3G.cjs.map
|