Skip to content

Commit c1ab6c9

Browse files
authored
Merge pull request #33 from Gusto/speakeasy-sdk-regen-1741283721
chore: 🐝 Update SDK - Generate Clients GUSTO-EMBEDDED 0.5.0
2 parents 18560df + def8235 commit c1ab6c9

23 files changed

+591
-451
lines changed

β€Ž.speakeasy/workflow.lockβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.510.0
1+
speakeasyVersion: 1.511.0
22
sources:
33
GustoEmbedded-OAS:
44
sourceNamespace: gusto-embedded-oas
5-
sourceRevisionDigest: sha256:b600eeed31c16a72dde2cb3ed0e496432befd8cb24fe88695887e0f134aef98c
6-
sourceBlobDigest: sha256:763cc39ff356851cf8f1a7e38b865e5c8689a2aac9ea830dd0b03defd6fe832f
5+
sourceRevisionDigest: sha256:77b23a738b9daf43e708bccc141815892c2c854b33aafea24419c93e94504149
6+
sourceBlobDigest: sha256:c74fe36dfe2890a62b0e21dd7b86c20bcbcbc1828103960f71bc924f5f9fb514
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1741207136
9+
- speakeasy-sdk-regen-1741283721
1010
- "2024-04-01"
1111
targets:
1212
gusto-embedded:
1313
source: GustoEmbedded-OAS
1414
sourceNamespace: gusto-embedded-oas
15-
sourceRevisionDigest: sha256:b600eeed31c16a72dde2cb3ed0e496432befd8cb24fe88695887e0f134aef98c
16-
sourceBlobDigest: sha256:763cc39ff356851cf8f1a7e38b865e5c8689a2aac9ea830dd0b03defd6fe832f
15+
sourceRevisionDigest: sha256:77b23a738b9daf43e708bccc141815892c2c854b33aafea24419c93e94504149
16+
sourceBlobDigest: sha256:c74fe36dfe2890a62b0e21dd7b86c20bcbcbc1828103960f71bc924f5f9fb514
1717
codeSamplesNamespace: gusto-embedded-oas-typescript-code-samples
18-
codeSamplesRevisionDigest: sha256:4b16196a2b1271f44949968a5302a85f5e5514ba86b8d9fe624b7f1b3731250b
18+
codeSamplesRevisionDigest: sha256:b22e8db713138a4926760cc1496f441eef539f40ac54467d3779f3f7055ead8b
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

β€Žgusto_embedded/.speakeasy/gen.lockβ€Ž

Lines changed: 241 additions & 226 deletions
Large diffs are not rendered by default.

β€Žgusto_embedded/.speakeasy/gen.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ generation:
1818
oAuth2ClientCredentialsEnabled: true
1919
oAuth2PasswordEnabled: true
2020
typescript:
21-
version: 0.4.1
21+
version: 0.5.0
2222
additionalDependencies:
2323
dependencies: {}
2424
devDependencies: {}

β€Žgusto_embedded/RELEASES.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,14 @@ Based on:
8888
### Generated
8989
- [typescript v0.4.1] gusto_embedded
9090
### Releases
91-
- [NPM v0.4.1] https://www.npmjs.com/package/@gusto/embedded-api/v/0.4.1 - gusto_embedded
91+
- [NPM v0.4.1] https://www.npmjs.com/package/@gusto/embedded-api/v/0.4.1 - gusto_embedded
92+
93+
## 2025-03-06 17:55:04
94+
### Changes
95+
Based on:
96+
- OpenAPI Doc
97+
- Speakeasy CLI 1.511.0 (2.541.0) https://github.com/speakeasy-api/speakeasy
98+
### Generated
99+
- [typescript v0.5.0] gusto_embedded
100+
### Releases
101+
- [NPM v0.5.0] https://www.npmjs.com/package/@gusto/embedded-api/v/0.5.0 - gusto_embedded

β€Žgusto_embedded/docs/models/components/entityerrorobject.mdβ€Ž

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,18 @@
55
```typescript
66
import { EntityErrorObject } from "@gusto/embedded-api/models/components/entityerrorobject.js";
77

8-
let value: EntityErrorObject = {};
8+
let value: EntityErrorObject = {
9+
errorKey: "<value>",
10+
category: "<value>",
11+
};
912
```
1013

1114
## Fields
1215

1316
| Field | Type | Required | Description |
1417
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
15-
| `errorKey` | *string* | :heavy_minus_sign: | Specifies where the error occurs. Typically this key identifies the attribute/parameter related to the error. |
16-
| `category` | *string* | :heavy_minus_sign: | Specifies the type of error. The category provides error groupings and can be used to build custom error handling in your integration. If category is `nested_errors`, the object will contain a nested `errors` property with entity errors. |
18+
| `errorKey` | *string* | :heavy_check_mark: | Specifies where the error occurs. Typically this key identifies the attribute/parameter related to the error. |
19+
| `category` | *string* | :heavy_check_mark: | Specifies the type of error. The category provides error groupings and can be used to build custom error handling in your integration. If category is `nested_errors`, the object will contain a nested `errors` property with entity errors. |
1720
| `message` | *string* | :heavy_minus_sign: | Provides details about the error - generally this message can be surfaced to an end user. |
18-
| `metadata` | [components.Metadata](../../models/components/metadata.md) | :heavy_minus_sign: | Contains relevant data to identify the resource in question when applicable. For example, to identify an entity `entity_type` and `entity_uuid` will be provided. |
19-
| `errors` | [components.Errors](../../models/components/errors.md)[] | :heavy_minus_sign: | Will only exist if category is `nested_errors`. It is possible to have multiple levels of nested errors. |
21+
| `metadata` | *components.Metadata* | :heavy_minus_sign: | Contains relevant data to identify the resource in question when applicable. For example, to identify an entity `entity_type` and `entity_uuid` will be provided. |
22+
| `errors` | [components.EntityErrorObject](../../models/components/entityerrorobject.md)[] | :heavy_minus_sign: | Will only exist if category is `nested_errors`. It is possible to have multiple levels of nested errors. |

β€Žgusto_embedded/docs/models/components/entityerrorobjectmetadata.mdβ€Ž

Lines changed: 0 additions & 16 deletions
This file was deleted.

β€Žgusto_embedded/docs/models/components/errors.mdβ€Ž

Lines changed: 0 additions & 18 deletions
This file was deleted.

β€Žgusto_embedded/docs/models/components/historicalemployeebody.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { HistoricalEmployeeBody } from "@gusto/embedded-api/models/components/hi
88
let value: HistoricalEmployeeBody = {
99
firstName: "Stan",
1010
lastName: "Cole",
11-
dateOfBirth: "1959-10-30",
11+
dateOfBirth: "1959-10-31",
1212
ssn: "<value>",
1313
workAddress: {},
1414
homeAddress: {

0 commit comments

Comments
Β (0)