@keystrokehq/cli 0.0.118 → 0.0.120

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/index.mjs CHANGED
@@ -2425,6 +2425,7 @@ const GatewayAttachmentRecordSchema = object({
2425
2425
  key: string(),
2426
2426
  agentKey: string(),
2427
2427
  channelId: string(),
2428
+ teamId: string().nullable().optional(),
2428
2429
  platform: string(),
2429
2430
  source: GatewayAttachmentSourceSchema,
2430
2431
  registeredAt: string(),
@@ -2433,6 +2434,7 @@ const GatewayAttachmentRecordSchema = object({
2433
2434
  object({ attachments: array(GatewayAttachmentRecordSchema) });
2434
2435
  const UpsertGatewayAttachmentBodySchema = object({
2435
2436
  agentKey: string().min(1),
2437
+ teamId: string().min(1).optional(),
2436
2438
  mode: SlackGatewayModeSchema.optional(),
2437
2439
  subscribeOnMention: boolean().optional()
2438
2440
  });