Skip to content

Commit df63075

Browse files
committed
chore: regen sdks
1 parent 34e698b commit df63075

Some content is hidden

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

60 files changed

+1790
-179
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: 13 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) | |
@@ -168,6 +172,13 @@ The SDK includes several models that represent the data structures used in API r
168172
| [UserCollection](docs/project-client/models/UserCollection.md) | |
169173
| [User](docs/project-client/models/User.md) | |
170174
| [Links](docs/project-client/models/Links.md) | |
175+
| [WorkflowDefinition](docs/project-client/models/WorkflowDefinition.md) | |
176+
| [ExecuteWorkflowRequest](docs/project-client/models/ExecuteWorkflowRequest.md) | |
177+
| [CreateRunResponse](docs/project-client/models/CreateRunResponse.md) | |
178+
| [GetRunResponse](docs/project-client/models/GetRunResponse.md) | |
179+
| [WorkflowRunCollection](docs/project-client/models/WorkflowRunCollection.md) | |
180+
| [WorkflowRun](docs/project-client/models/WorkflowRun.md) | |
181+
| [Links](docs/project-client/models/Links.md) | |
171182

172183
</details>
173184

@@ -221,7 +232,7 @@ import { Client } from 'magicbell-js/user-client';
221232
});
222233

223234
const { data } = await client.channels.listInboxTokens({
224-
limit: 3,
235+
limit: 6,
225236
startingAfter: 'starting_after',
226237
endingBefore: 'ending_before',
227238
});

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

Lines changed: 19 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) | |
@@ -164,5 +174,12 @@ The SDK includes several models that represent the data structures used in API r
164174
| [UserCollection](models/UserCollection.md) | |
165175
| [User](models/User.md) | |
166176
| [Links](models/Links.md) | |
177+
| [WorkflowDefinition](models/WorkflowDefinition.md) | |
178+
| [ExecuteWorkflowRequest](models/ExecuteWorkflowRequest.md) | |
179+
| [CreateRunResponse](models/CreateRunResponse.md) | |
180+
| [GetRunResponse](models/GetRunResponse.md) | |
181+
| [WorkflowRunCollection](models/WorkflowRunCollection.md) | |
182+
| [WorkflowRun](models/WorkflowRun.md) | |
183+
| [Links](models/Links.md) | |
167184

168185
</details>
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 || |
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# EventSourceConfig
2+
3+
**Properties**
4+
5+
| Name | Type | Required | Description |
6+
| :----- | :----------------------- | :------- | :---------- |
7+
| config | EventSourceConfigPayload || |
8+
| id | string || |
9+
| name | string || |
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# EventSourceConfigCollection
2+
3+
**Properties**
4+
5+
| Name | Type | Required | Description |
6+
| :---- | :------------------ | :------- | :---------- |
7+
| data | EventSourceConfig[] || |
8+
| links | Links || |
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# EventSourceConfigPayload
2+
3+
**Properties**
4+
5+
| Name | Type | Required | Description |
6+
| :----- | :----- | :------- | :---------- |
7+
| source | string || |
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# ExecuteWorkflowRequest
2+
3+
**Properties**
4+
5+
| Name | Type | Required | Description |
6+
| :---- | :----- | :------- | :---------- |
7+
| key | string || |
8+
| input | any || |
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# GetRunResponse
2+
3+
**Properties**
4+
5+
| Name | Type | Required | Description |
6+
| :---------- | :------------------- | :------- | :---------- |
7+
| createdAt | string || |
8+
| id | string || |
9+
| status | GetRunResponseStatus || |
10+
| workflowKey | string || |
11+
12+
# GetRunResponseStatus
13+
14+
**Properties**
15+
16+
| Name | Type | Required | Description |
17+
| :---------- | :----- | :------- | :---------- |
18+
| completedAt | string || |
19+
| error | string || |
20+
| nextStep | number || |
21+
| startedAt | string || |
22+
| state | number || |

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
| Name | Type | Required | Description |
66
| :------------------- | :----- | :------- | :--------------------------------------------------------- |
77
| webhookSigningSecret | string || The signing secret to verify incoming requests from Stripe |
8+
| id | string || The unique identifier for this configuration |

0 commit comments

Comments
 (0)