Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
with:
# SDK Server Project
project-url: https://github.com/orgs/OneSignal/projects/11
github-token: ${{ secrets.GH_PROJECTS_TOKEN }}
github-token: ${{ secrets.GH_PUSH_TOKEN }}
6 changes: 6 additions & 0 deletions DefaultApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -896,6 +896,9 @@ let body: Onesignal.DefaultApiCreateTemplateRequest = {
is_email: true,
email_subject: "email_subject_example",
email_body: "email_body_example",
email_bcc: [
"email_bcc_example",
],
is_sms: true,
dynamic_content: "dynamic_content_example",
},
Expand Down Expand Up @@ -3153,6 +3156,9 @@ let body: Onesignal.DefaultApiUpdateTemplateRequest = {
is_email: true,
email_subject: "email_subject_example",
email_body: "email_body_example",
email_bcc: [
"email_bcc_example",
],
is_sms: true,
dynamic_content: "dynamic_content_example",
},
Expand Down
88 changes: 44 additions & 44 deletions apis/DefaultApi.ts

Large diffs are not rendered by default.

88 changes: 44 additions & 44 deletions dist/apis/DefaultApi.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/models/BasicNotification.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export declare class BasicNotification {
'email_preheader'?: string;
'disable_email_click_tracking'?: boolean;
'include_unsubscribed'?: boolean;
'email_bcc'?: Array<string>;
'sms_from'?: string;
'sms_media_urls'?: Array<string>;
'filters'?: Array<FilterExpression>;
Expand Down
6 changes: 6 additions & 0 deletions dist/models/BasicNotification.js

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

2 changes: 1 addition & 1 deletion dist/models/BasicNotification.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/models/BasicNotificationAllOf.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ export declare class BasicNotificationAllOf {
'email_preheader'?: string;
'disable_email_click_tracking'?: boolean;
'include_unsubscribed'?: boolean;
'email_bcc'?: Array<string>;
'sms_from'?: string;
'sms_media_urls'?: Array<string>;
'filters'?: Array<FilterExpression>;
Expand Down
6 changes: 6 additions & 0 deletions dist/models/BasicNotificationAllOf.js

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

2 changes: 1 addition & 1 deletion dist/models/BasicNotificationAllOf.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/models/CreateTemplateRequest.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export declare class CreateTemplateRequest {
'is_email'?: boolean;
'email_subject'?: string;
'email_body'?: string;
'email_bcc'?: Array<string>;
'is_sms'?: boolean;
'dynamic_content'?: string;
static readonly discriminator: string | undefined;
Expand Down
6 changes: 6 additions & 0 deletions dist/models/CreateTemplateRequest.js

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

2 changes: 1 addition & 1 deletion dist/models/CreateTemplateRequest.js.map

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

1 change: 1 addition & 0 deletions dist/models/Notification.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export declare class Notification {
'email_preheader'?: string;
'disable_email_click_tracking'?: boolean;
'include_unsubscribed'?: boolean;
'email_bcc'?: Array<string>;
'sms_from'?: string;
'sms_media_urls'?: Array<string>;
'filters'?: Array<FilterExpression>;
Expand Down
6 changes: 6 additions & 0 deletions dist/models/Notification.js

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

2 changes: 1 addition & 1 deletion dist/models/Notification.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/models/NotificationWithMeta.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export declare class NotificationWithMeta {
'email_preheader'?: string;
'disable_email_click_tracking'?: boolean;
'include_unsubscribed'?: boolean;
'email_bcc'?: Array<string>;
'sms_from'?: string;
'sms_media_urls'?: Array<string>;
'filters'?: Array<FilterExpression>;
Expand All @@ -134,6 +135,7 @@ export declare class NotificationWithMeta {
'completed_at'?: number;
'platform_delivery_stats'?: PlatformDeliveryData;
'canceled'?: boolean;
'bcc_sent'?: number;
static readonly discriminator: string | undefined;
static readonly attributeTypeMap: Array<{
name: string;
Expand Down
12 changes: 12 additions & 0 deletions dist/models/NotificationWithMeta.js

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

2 changes: 1 addition & 1 deletion dist/models/NotificationWithMeta.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/models/NotificationWithMetaAllOf.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export declare class NotificationWithMetaAllOf {
'received'?: number;
'throttle_rate_per_minute'?: number;
'canceled'?: boolean;
'email_bcc'?: Array<string>;
'bcc_sent'?: number;
static readonly discriminator: string | undefined;
static readonly attributeTypeMap: Array<{
name: string;
Expand Down
12 changes: 12 additions & 0 deletions dist/models/NotificationWithMetaAllOf.js

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

2 changes: 1 addition & 1 deletion dist/models/NotificationWithMetaAllOf.js.map

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

Loading
Loading