Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
feat: Support "anonymous" sequence template creation in outreach
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyxiao committed Oct 16, 2023
1 parent e3ed258 commit c736d30
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ properties:
description: The subject of the email.
name:
type: string
description: The name of the template.
description: The name of the template. In Outreach, if missing this will create an `invisible` template that doesn't show up in the templates list UI.
to:
type: array
description: A list of default person and email address pairs to receive this template in the "to" field
Expand All @@ -51,7 +51,6 @@ properties:
required:
- body
- subject
- name
is_reply:
type: boolean
description: If true, this step will be sent as a reply to the previous step.
Expand Down
5 changes: 2 additions & 3 deletions openapi/v2/engagement/openapi.bundle.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/schemas/gen/v2/engagement.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/types/engagement/sequence_step.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export type SequenceTemplateId = {
export type SequenceTemplateCreateParams = {
body: string;
subject: string;
name: string;
name?: string;
to?: string[];
cc?: string[];
bcc?: string[];
Expand Down

0 comments on commit c736d30

Please sign in to comment.