Skip to content

Commit eeb991b

Browse files
committed
remove autogenerated files
1 parent 571fbc0 commit eeb991b

File tree

7 files changed

+2
-191
lines changed

7 files changed

+2
-191
lines changed

Diff for: gusto_embedded/companyAuth.d.ts

-47
This file was deleted.

Diff for: gusto_embedded/companyAuth.d.ts.map

-1
This file was deleted.

Diff for: gusto_embedded/companyAuth.js

-125
This file was deleted.

Diff for: gusto_embedded/docs/models/components/historicalemployeebody.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { HistoricalEmployeeBody } from "gusto-embedded/models/components";
88
let value: HistoricalEmployeeBody = {
99
firstName: "Eloy",
1010
lastName: "Towne",
11-
dateOfBirth: "1998-04-11",
11+
dateOfBirth: "1998-04-07",
1212
ssn: "<value>",
1313
workAddress: {},
1414
homeAddress: {
@@ -35,6 +35,5 @@ let value: HistoricalEmployeeBody = {
3535
| `workAddress` | [components.WorkAddress](../../models/components/workaddress.md) | :heavy_check_mark: | N/A |
3636
| `homeAddress` | [components.HistoricalEmployeeBodyHomeAddress](../../models/components/historicalemployeebodyhomeaddress.md) | :heavy_check_mark: | N/A |
3737
| `termination` | [components.HistoricalEmployeeBodyTermination](../../models/components/historicalemployeebodytermination.md) | :heavy_check_mark: | N/A |
38-
| `email` | *string* | :heavy_minus_sign: | Optional. If provided, the email address will be saved to the employee. |
3938
| `job` | [components.HistoricalEmployeeBodyJob](../../models/components/historicalemployeebodyjob.md) | :heavy_check_mark: | N/A |
4039
| `employeeStateTaxes` | [components.EmployeeStateTaxes](../../models/components/employeestatetaxes.md) | :heavy_minus_sign: | N/A |

Diff for: gusto_embedded/docs/models/operations/putv1historicalemployeesrequestbody.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let value: PutV1HistoricalEmployeesRequestBody = {
1111
version: "<value>",
1212
firstName: "Modesta",
1313
lastName: "Turner",
14-
dateOfBirth: "1987-07-20",
14+
dateOfBirth: "1987-07-16",
1515
ssn: "<value>",
1616
workAddress: {},
1717
homeAddress: {
@@ -39,6 +39,5 @@ let value: PutV1HistoricalEmployeesRequestBody = {
3939
| `workAddress` | [operations.WorkAddress](../../models/operations/workaddress.md) | :heavy_check_mark: | N/A |
4040
| `homeAddress` | [operations.PutV1HistoricalEmployeesHomeAddress](../../models/operations/putv1historicalemployeeshomeaddress.md) | :heavy_check_mark: | N/A |
4141
| `termination` | [operations.Termination](../../models/operations/termination.md) | :heavy_check_mark: | N/A |
42-
| `email` | *string* | :heavy_minus_sign: | Optional. If provided, the email address will be saved to the employee. |
4342
| `job` | [operations.Job](../../models/operations/job.md) | :heavy_check_mark: | N/A |
4443
| `employeeStateTaxes` | [operations.EmployeeStateTaxes](../../models/operations/employeestatetaxes.md) | :heavy_minus_sign: | N/A |

Diff for: gusto_embedded/src/models/components/historicalemployeebody.ts

-7
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ export type HistoricalEmployeeBody = {
5959
workAddress: WorkAddress;
6060
homeAddress: HistoricalEmployeeBodyHomeAddress;
6161
termination: HistoricalEmployeeBodyTermination;
62-
/**
63-
* Optional. If provided, the email address will be saved to the employee.
64-
*/
65-
email?: string | undefined;
6662
job: HistoricalEmployeeBodyJob;
6763
employeeStateTaxes?: EmployeeStateTaxes | undefined;
6864
};
@@ -413,7 +409,6 @@ export const HistoricalEmployeeBody$inboundSchema: z.ZodType<
413409
work_address: z.lazy(() => WorkAddress$inboundSchema),
414410
home_address: z.lazy(() => HistoricalEmployeeBodyHomeAddress$inboundSchema),
415411
termination: z.lazy(() => HistoricalEmployeeBodyTermination$inboundSchema),
416-
email: z.string().optional(),
417412
job: z.lazy(() => HistoricalEmployeeBodyJob$inboundSchema),
418413
employee_state_taxes: z.lazy(() => EmployeeStateTaxes$inboundSchema)
419414
.optional(),
@@ -441,7 +436,6 @@ export type HistoricalEmployeeBody$Outbound = {
441436
work_address: WorkAddress$Outbound;
442437
home_address: HistoricalEmployeeBodyHomeAddress$Outbound;
443438
termination: HistoricalEmployeeBodyTermination$Outbound;
444-
email?: string | undefined;
445439
job: HistoricalEmployeeBodyJob$Outbound;
446440
employee_state_taxes?: EmployeeStateTaxes$Outbound | undefined;
447441
};
@@ -461,7 +455,6 @@ export const HistoricalEmployeeBody$outboundSchema: z.ZodType<
461455
workAddress: z.lazy(() => WorkAddress$outboundSchema),
462456
homeAddress: z.lazy(() => HistoricalEmployeeBodyHomeAddress$outboundSchema),
463457
termination: z.lazy(() => HistoricalEmployeeBodyTermination$outboundSchema),
464-
email: z.string().optional(),
465458
job: z.lazy(() => HistoricalEmployeeBodyJob$outboundSchema),
466459
employeeStateTaxes: z.lazy(() => EmployeeStateTaxes$outboundSchema)
467460
.optional(),

Diff for: gusto_embedded/src/models/operations/putv1historicalemployees.ts

-7
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,6 @@ export type PutV1HistoricalEmployeesRequestBody = {
6767
workAddress: WorkAddress;
6868
homeAddress: PutV1HistoricalEmployeesHomeAddress;
6969
termination: Termination;
70-
/**
71-
* Optional. If provided, the email address will be saved to the employee.
72-
*/
73-
email?: string | undefined;
7470
job: Job;
7571
employeeStateTaxes?: EmployeeStateTaxes | undefined;
7672
};
@@ -426,7 +422,6 @@ export const PutV1HistoricalEmployeesRequestBody$inboundSchema: z.ZodType<
426422
work_address: z.lazy(() => WorkAddress$inboundSchema),
427423
home_address: z.lazy(() => PutV1HistoricalEmployeesHomeAddress$inboundSchema),
428424
termination: z.lazy(() => Termination$inboundSchema),
429-
email: z.string().optional(),
430425
job: z.lazy(() => Job$inboundSchema),
431426
employee_state_taxes: z.lazy(() => EmployeeStateTaxes$inboundSchema)
432427
.optional(),
@@ -455,7 +450,6 @@ export type PutV1HistoricalEmployeesRequestBody$Outbound = {
455450
work_address: WorkAddress$Outbound;
456451
home_address: PutV1HistoricalEmployeesHomeAddress$Outbound;
457452
termination: Termination$Outbound;
458-
email?: string | undefined;
459453
job: Job$Outbound;
460454
employee_state_taxes?: EmployeeStateTaxes$Outbound | undefined;
461455
};
@@ -476,7 +470,6 @@ export const PutV1HistoricalEmployeesRequestBody$outboundSchema: z.ZodType<
476470
workAddress: z.lazy(() => WorkAddress$outboundSchema),
477471
homeAddress: z.lazy(() => PutV1HistoricalEmployeesHomeAddress$outboundSchema),
478472
termination: z.lazy(() => Termination$outboundSchema),
479-
email: z.string().optional(),
480473
job: z.lazy(() => Job$outboundSchema),
481474
employeeStateTaxes: z.lazy(() => EmployeeStateTaxes$outboundSchema)
482475
.optional(),

0 commit comments

Comments
 (0)