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
19 changes: 12 additions & 7 deletions output/csharp/src/Seam/Model/Device.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5254,7 +5254,8 @@ public DevicePropertiesActiveThermostatSchedule(
int? maxOverridePeriodMinutes = default,
string? name = default,
string? startsAt = default,
string? thermostatScheduleId = default
string? thermostatScheduleId = default,
string? workspaceId = default
)
{
ClimatePresetKey = climatePresetKey;
Expand All @@ -5267,6 +5268,7 @@ public DevicePropertiesActiveThermostatSchedule(
Name = name;
StartsAt = startsAt;
ThermostatScheduleId = thermostatScheduleId;
WorkspaceId = workspaceId;
}

[DataMember(Name = "climate_preset_key", IsRequired = false, EmitDefaultValue = false)]
Expand Down Expand Up @@ -5303,6 +5305,9 @@ public DevicePropertiesActiveThermostatSchedule(
[DataMember(Name = "thermostat_schedule_id", IsRequired = false, EmitDefaultValue = false)]
public string? ThermostatScheduleId { get; set; }

[DataMember(Name = "workspace_id", IsRequired = false, EmitDefaultValue = false)]
public string? WorkspaceId { get; set; }

public override string ToString()
{
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);
Expand Down Expand Up @@ -5867,14 +5872,16 @@ public DevicePropertiesThermostatDailyPrograms(
string? deviceId = default,
string? name = default,
List<DevicePropertiesThermostatDailyProgramsPeriods>? periods = default,
string? thermostatDailyProgramId = default
string? thermostatDailyProgramId = default,
string? workspaceId = default
)
{
CreatedAt = createdAt;
DeviceId = deviceId;
Name = name;
Periods = periods;
ThermostatDailyProgramId = thermostatDailyProgramId;
WorkspaceId = workspaceId;
}

[DataMember(Name = "created_at", IsRequired = false, EmitDefaultValue = false)]
Expand All @@ -5896,6 +5903,9 @@ public DevicePropertiesThermostatDailyPrograms(
)]
public string? ThermostatDailyProgramId { get; set; }

[DataMember(Name = "workspace_id", IsRequired = false, EmitDefaultValue = false)]
public string? WorkspaceId { get; set; }

public override string ToString()
{
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);
Expand Down Expand Up @@ -5965,7 +5975,6 @@ protected DevicePropertiesThermostatWeeklyProgram() { }

public DevicePropertiesThermostatWeeklyProgram(
string? createdAt = default,
string? deviceId = default,
string? fridayProgramId = default,
string? mondayProgramId = default,
string? saturdayProgramId = default,
Expand All @@ -5976,7 +5985,6 @@ public DevicePropertiesThermostatWeeklyProgram(
)
{
CreatedAt = createdAt;
DeviceId = deviceId;
FridayProgramId = fridayProgramId;
MondayProgramId = mondayProgramId;
SaturdayProgramId = saturdayProgramId;
Expand All @@ -5989,9 +5997,6 @@ public DevicePropertiesThermostatWeeklyProgram(
[DataMember(Name = "created_at", IsRequired = false, EmitDefaultValue = false)]
public string? CreatedAt { get; set; }

[DataMember(Name = "device_id", IsRequired = false, EmitDefaultValue = false)]
public string? DeviceId { get; set; }

[DataMember(Name = "friday_program_id", IsRequired = false, EmitDefaultValue = false)]
public string? FridayProgramId { get; set; }

Expand Down
7 changes: 6 additions & 1 deletion output/csharp/src/Seam/Model/ThermostatSchedule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public ThermostatSchedule(
int? maxOverridePeriodMinutes = default,
string? name = default,
string startsAt = default,
string thermostatScheduleId = default
string thermostatScheduleId = default,
string workspaceId = default
)
{
ClimatePresetKey = climatePresetKey;
Expand All @@ -37,6 +38,7 @@ public ThermostatSchedule(
Name = name;
StartsAt = startsAt;
ThermostatScheduleId = thermostatScheduleId;
WorkspaceId = workspaceId;
}

[DataMember(Name = "climate_preset_key", IsRequired = true, EmitDefaultValue = false)]
Expand Down Expand Up @@ -73,6 +75,9 @@ public ThermostatSchedule(
[DataMember(Name = "thermostat_schedule_id", IsRequired = true, EmitDefaultValue = false)]
public string ThermostatScheduleId { get; set; }

[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
public string WorkspaceId { get; set; }

public override string ToString()
{
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);
Expand Down
2 changes: 1 addition & 1 deletion output/csharp/src/Seam/Seam.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PackageId>Seam</PackageId>

<PackageVersion>0.59.0</PackageVersion>
<PackageVersion>0.60.0</PackageVersion>

<Authors>Seam</Authors>

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"devDependencies": {
"@seamapi/nextlove-sdk-generator": "^1.17.4",
"@seamapi/types": "^1.395.1",
"@seamapi/types": "^1.395.3",
"@types/node": "^18.19.11",
"ava": "^5.0.1",
"axios": "^1.5.0",
Expand Down
Loading