chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:34:48 +08:00
commit 77bb5bf71f
3762 changed files with 353249 additions and 0 deletions
@@ -0,0 +1,19 @@
import { z } from '@botpress/sdk'
import { ActionDef } from './types'
export const createLabel = {
title: 'Create Label',
description: "Creates a new label in the user's mailbox.",
input: {
schema: z.object({
name: z.string().title('Name').describe('The display name of the label to create.'),
}),
},
output: {
schema: z.object({
id: z.string().optional().title('Label ID').describe('The immutable ID of the created label.'),
name: z.string().optional().title('Name').describe('The display name of the label.'),
type: z.string().optional().title('Type').describe('The owner type for the label (system or user).'),
}),
},
} as const satisfies ActionDef