Skip to content

Commit fc42b09

Browse files
authored
chore: regen sdks (#575)
Automated PR to update the generated SDKs
1 parent 34e698b commit fc42b09

File tree

151 files changed

+4464
-768
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+4464
-768
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'magicbell-js': minor
3+
---
4+
5+
Automatic minor version bump for changes in `magicbell-js`.

packages/magicbell-js/README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import { Client } from 'magicbell-js/project-client';
6464
});
6565

6666
const { data } = await client.broadcasts.listBroadcasts({
67-
limit: 5,
67+
limit: 10,
6868
startingAfter: 'starting_after',
6969
endingBefore: 'ending_before',
7070
});
@@ -87,6 +87,7 @@ The SDK provides various services to interact with the API.
8787
| [EventsService](docs/project-client/services/EventsService.md) |
8888
| [IntegrationsService](docs/project-client/services/IntegrationsService.md) |
8989
| [UsersService](docs/project-client/services/UsersService.md) |
90+
| [WorkflowsService](docs/project-client/services/WorkflowsService.md) |
9091

9192
</details>
9293

@@ -129,6 +130,9 @@ The SDK includes several models that represent the data structures used in API r
129130
| [ApnsConfigCollection](docs/project-client/models/ApnsConfigCollection.md) | |
130131
| [ApnsConfig](docs/project-client/models/ApnsConfig.md) | |
131132
| [ApnsConfigPayload](docs/project-client/models/ApnsConfigPayload.md) | |
133+
| [EventSourceConfigCollection](docs/project-client/models/EventSourceConfigCollection.md) | |
134+
| [EventSourceConfig](docs/project-client/models/EventSourceConfig.md) | |
135+
| [EventSourceConfigPayload](docs/project-client/models/EventSourceConfigPayload.md) | |
132136
| [ExpoConfigCollection](docs/project-client/models/ExpoConfigCollection.md) | |
133137
| [ExpoConfig](docs/project-client/models/ExpoConfig.md) | |
134138
| [ExpoConfigPayload](docs/project-client/models/ExpoConfigPayload.md) | |
@@ -141,6 +145,9 @@ The SDK includes several models that represent the data structures used in API r
141145
| [InboxConfigCollection](docs/project-client/models/InboxConfigCollection.md) | |
142146
| [InboxConfig](docs/project-client/models/InboxConfig.md) | |
143147
| [InboxConfigPayload](docs/project-client/models/InboxConfigPayload.md) | |
148+
| [SlackBotConfigCollection](docs/project-client/models/SlackBotConfigCollection.md) | |
149+
| [SlackBotConfig](docs/project-client/models/SlackBotConfig.md) | |
150+
| [SlackBotConfigPayload](docs/project-client/models/SlackBotConfigPayload.md) | |
144151
| [MailgunConfigCollection](docs/project-client/models/MailgunConfigCollection.md) | |
145152
| [MailgunConfig](docs/project-client/models/MailgunConfig.md) | |
146153
| [MailgunConfigPayload](docs/project-client/models/MailgunConfigPayload.md) | |
@@ -156,6 +163,9 @@ The SDK includes several models that represent the data structures used in API r
156163
| [SlackConfigCollection](docs/project-client/models/SlackConfigCollection.md) | |
157164
| [SlackConfig](docs/project-client/models/SlackConfig.md) | |
158165
| [SlackConfigPayload](docs/project-client/models/SlackConfigPayload.md) | |
166+
| [SmtpConfigObjectCollection](docs/project-client/models/SmtpConfigObjectCollection.md) | |
167+
| [SmtpConfigObject](docs/project-client/models/SmtpConfigObject.md) | |
168+
| [SmtpConfig](docs/project-client/models/SmtpConfig.md) | |
159169
| [StripeConfigCollection](docs/project-client/models/StripeConfigCollection.md) | |
160170
| [StripeConfig](docs/project-client/models/StripeConfig.md) | |
161171
| [StripeConfigPayload](docs/project-client/models/StripeConfigPayload.md) | |
@@ -168,6 +178,13 @@ The SDK includes several models that represent the data structures used in API r
168178
| [UserCollection](docs/project-client/models/UserCollection.md) | |
169179
| [User](docs/project-client/models/User.md) | |
170180
| [Links](docs/project-client/models/Links.md) | |
181+
| [WorkflowDefinition](docs/project-client/models/WorkflowDefinition.md) | |
182+
| [ExecuteWorkflowRequest](docs/project-client/models/ExecuteWorkflowRequest.md) | |
183+
| [CreateRunResponse](docs/project-client/models/CreateRunResponse.md) | |
184+
| [GetRunResponse](docs/project-client/models/GetRunResponse.md) | |
185+
| [WorkflowRunCollection](docs/project-client/models/WorkflowRunCollection.md) | |
186+
| [WorkflowRun](docs/project-client/models/WorkflowRun.md) | |
187+
| [Links](docs/project-client/models/Links.md) | |
171188

172189
</details>
173190

@@ -221,7 +238,7 @@ import { Client } from 'magicbell-js/user-client';
221238
});
222239

223240
const { data } = await client.channels.listInboxTokens({
224-
limit: 3,
241+
limit: 4,
225242
startingAfter: 'starting_after',
226243
endingBefore: 'ending_before',
227244
});

packages/magicbell-js/docs/project-client/README.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,18 @@ This SDK is compatible with the following versions: `TypeScript >= 4.8.4`
1010

1111
## Installation
1212

13-
To get started with the SDK, we recommend installing using `npm`:
13+
To get started with the SDK, we recommend installing using `npm` or `yarn`:
1414

1515
```bash
1616
npm install magicbell-js
1717
```
1818

19+
or
20+
21+
```bash
22+
yarn add magicbell-js/project-client
23+
```
24+
1925
## Authentication
2026

2127
### Access Token Authentication
@@ -60,7 +66,7 @@ import { Client } from 'magicbell-js/project-client';
6066
});
6167

6268
const { data } = await client.broadcasts.listBroadcasts({
63-
limit: 5,
69+
limit: 10,
6470
startingAfter: 'starting_after',
6571
endingBefore: 'ending_before',
6672
});
@@ -83,6 +89,7 @@ The SDK provides various services to interact with the API.
8389
| [EventsService](services/EventsService.md) |
8490
| [IntegrationsService](services/IntegrationsService.md) |
8591
| [UsersService](services/UsersService.md) |
92+
| [WorkflowsService](services/WorkflowsService.md) |
8693

8794
</details>
8895

@@ -125,6 +132,9 @@ The SDK includes several models that represent the data structures used in API r
125132
| [ApnsConfigCollection](models/ApnsConfigCollection.md) | |
126133
| [ApnsConfig](models/ApnsConfig.md) | |
127134
| [ApnsConfigPayload](models/ApnsConfigPayload.md) | |
135+
| [EventSourceConfigCollection](models/EventSourceConfigCollection.md) | |
136+
| [EventSourceConfig](models/EventSourceConfig.md) | |
137+
| [EventSourceConfigPayload](models/EventSourceConfigPayload.md) | |
128138
| [ExpoConfigCollection](models/ExpoConfigCollection.md) | |
129139
| [ExpoConfig](models/ExpoConfig.md) | |
130140
| [ExpoConfigPayload](models/ExpoConfigPayload.md) | |
@@ -137,6 +147,9 @@ The SDK includes several models that represent the data structures used in API r
137147
| [InboxConfigCollection](models/InboxConfigCollection.md) | |
138148
| [InboxConfig](models/InboxConfig.md) | |
139149
| [InboxConfigPayload](models/InboxConfigPayload.md) | |
150+
| [SlackBotConfigCollection](models/SlackBotConfigCollection.md) | |
151+
| [SlackBotConfig](models/SlackBotConfig.md) | |
152+
| [SlackBotConfigPayload](models/SlackBotConfigPayload.md) | |
140153
| [MailgunConfigCollection](models/MailgunConfigCollection.md) | |
141154
| [MailgunConfig](models/MailgunConfig.md) | |
142155
| [MailgunConfigPayload](models/MailgunConfigPayload.md) | |
@@ -152,6 +165,9 @@ The SDK includes several models that represent the data structures used in API r
152165
| [SlackConfigCollection](models/SlackConfigCollection.md) | |
153166
| [SlackConfig](models/SlackConfig.md) | |
154167
| [SlackConfigPayload](models/SlackConfigPayload.md) | |
168+
| [SmtpConfigObjectCollection](models/SmtpConfigObjectCollection.md) | |
169+
| [SmtpConfigObject](models/SmtpConfigObject.md) | |
170+
| [SmtpConfig](models/SmtpConfig.md) | |
155171
| [StripeConfigCollection](models/StripeConfigCollection.md) | |
156172
| [StripeConfig](models/StripeConfig.md) | |
157173
| [StripeConfigPayload](models/StripeConfigPayload.md) | |
@@ -164,5 +180,12 @@ The SDK includes several models that represent the data structures used in API r
164180
| [UserCollection](models/UserCollection.md) | |
165181
| [User](models/User.md) | |
166182
| [Links](models/Links.md) | |
183+
| [WorkflowDefinition](models/WorkflowDefinition.md) | |
184+
| [ExecuteWorkflowRequest](models/ExecuteWorkflowRequest.md) | |
185+
| [CreateRunResponse](models/CreateRunResponse.md) | |
186+
| [GetRunResponse](models/GetRunResponse.md) | |
187+
| [WorkflowRunCollection](models/WorkflowRunCollection.md) | |
188+
| [WorkflowRun](models/WorkflowRun.md) | |
189+
| [Links](models/Links.md) | |
167190

168191
</details>

packages/magicbell-js/docs/project-client/models/ApnsConfig.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
**Properties**
44

5-
| Name | Type | Required | Description |
6-
| :----- | :---------------- | :------- | :---------- |
7-
| config | ApnsConfigPayload || |
8-
| id | string || |
9-
| name | string || |
5+
| Name | Type | Required | Description |
6+
| :----- | :---------------------------------------- | :------- | :---------- |
7+
| config | [ApnsConfigPayload](ApnsConfigPayload.md) || |
8+
| id | string || |
9+
| name | string || |

packages/magicbell-js/docs/project-client/models/ApnsConfigCollection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Properties**
44

5-
| Name | Type | Required | Description |
6-
| :---- | :----------- | :------- | :---------- |
7-
| data | ApnsConfig[] || |
8-
| links | Links || |
5+
| Name | Type | Required | Description |
6+
| :---- | :---------------------------- | :------- | :---------- |
7+
| data | [ApnsConfig](ApnsConfig.md)[] || |
8+
| links | [Links](Links.md) || |

packages/magicbell-js/docs/project-client/models/ApnsTokenCollection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Properties**
44

5-
| Name | Type | Required | Description |
6-
| :---- | :---------- | :------- | :---------- |
7-
| data | ApnsToken[] || |
8-
| links | Links || |
5+
| Name | Type | Required | Description |
6+
| :---- | :-------------------------- | :------- | :---------- |
7+
| data | [ApnsToken](ApnsToken.md)[] || |
8+
| links | [Links](Links.md) || |

packages/magicbell-js/docs/project-client/models/Broadcast.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
**Properties**
44

5-
| Name | Type | Required | Description |
6-
| :--------------- | :-------------- | :------- | :-------------------------------------------- |
7-
| recipients | User[] || |
8-
| title | string || |
9-
| actionUrl | string || |
10-
| category | string || |
11-
| content | string || |
12-
| createdAt | string || The timestamp when the broadcast was created. |
13-
| customAttributes | any || |
14-
| id | string || The unique id for this broadcast. |
15-
| overrides | Overrides || |
16-
| status | BroadcastStatus || |
17-
| topic | string || |
5+
| Name | Type | Required | Description |
6+
| :--------------- | :---------------- | :------- | :-------------------------------------------- |
7+
| recipients | [User](User.md)[] || |
8+
| title | string || |
9+
| actionUrl | string || |
10+
| category | string || |
11+
| content | string || |
12+
| createdAt | string || The timestamp when the broadcast was created. |
13+
| customAttributes | any || |
14+
| id | string || The unique id for this broadcast. |
15+
| overrides | Overrides || |
16+
| status | BroadcastStatus || |
17+
| topic | string || |
1818

1919
# Overrides
2020

@@ -97,11 +97,11 @@
9797

9898
**Properties**
9999

100-
| Name | Type | Required | Description |
101-
| :------ | :----------- | :------- | :---------- |
102-
| errors | Errors[] || |
103-
| status | StatusStatus || |
104-
| summary | Summary || |
100+
| Name | Type | Required | Description |
101+
| :------ | :-------------------- | :------- | :---------- |
102+
| errors | [Errors](Errors.md)[] || |
103+
| status | StatusStatus || |
104+
| summary | Summary || |
105105

106106
# StatusStatus
107107

packages/magicbell-js/docs/project-client/models/BroadcastCollection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Properties**
44

5-
| Name | Type | Required | Description |
6-
| :---- | :---------- | :------- | :---------- |
7-
| data | Broadcast[] || |
8-
| links | Links || |
5+
| Name | Type | Required | Description |
6+
| :---- | :-------------------------- | :------- | :---------- |
7+
| data | [Broadcast](Broadcast.md)[] || |
8+
| links | [Links](Links.md) || |

packages/magicbell-js/docs/project-client/models/CategoryDeliveryConfig.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
**Properties**
44

5-
| Name | Type | Required | Description |
6-
| :------- | :------------------------------- | :------- | :---------- |
7-
| channels | CategoryDeliveryConfigChannels[] || |
8-
| key | string || |
9-
| disabled | boolean || |
5+
| Name | Type | Required | Description |
6+
| :------- | :-------------------------------------------------------------------- | :------- | :---------- |
7+
| channels | [CategoryDeliveryConfigChannels](CategoryDeliveryConfigChannels.md)[] || |
8+
| key | string || |
9+
| disabled | boolean || |
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# CreateRunResponse
2+
3+
**Properties**
4+
5+
| Name | Type | Required | Description |
6+
| :--- | :----- | :------- | :---------- |
7+
| id | string || |

0 commit comments

Comments
 (0)