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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.11.0"
".": "0.12.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 40
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sent%2Fsent-dm-294831f61f7890b2cdb89d181f26297732387d5e1288f446c0138e46fb1a4608.yml
openapi_spec_hash: a7f20451621ee678fbe09ff7a297b3ea
config_hash: 497506d9e2e66cd0573bd9c1f1242462
config_hash: 478a49d5520c8bb64b43272de11c2872
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.12.0 (2026-03-12)

Full Changelog: [v0.11.0...v0.12.0](https://github.com/sentdm/sent-dm-csharp/compare/v0.11.0...v0.12.0)

### Features

* **api:** manual updates ([fe2ce85](https://github.com/sentdm/sent-dm-csharp/commit/fe2ce85eb0a9122558fd69efcece99e488a94df8))

## 0.11.0 (2026-03-12)

Full Changelog: [v0.10.0...v0.11.0](https://github.com/sentdm/sent-dm-csharp/compare/v0.10.0...v0.11.0)
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Contacts/ApiResponseOfContactTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void FieldRoundtrip_Works()
RegionCode = "region_code",
UpdatedAt = DateTimeOffset.Parse("2019-12-27T18:11:19.117Z"),
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -194,7 +194,7 @@ public void FieldRoundtripThroughSerialization_Works()
RegionCode = "region_code",
UpdatedAt = DateTimeOffset.Parse("2019-12-27T18:11:19.117Z"),
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Contacts/ContactListResponseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void FieldRoundtrip_Works()
TotalPages = 0,
},
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -269,7 +269,7 @@ public void FieldRoundtripThroughSerialization_Works()
TotalPages = 0,
},
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Me/MeRetrieveResponseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public void FieldRoundtrip_Works()
Status = "status",
Type = "type",
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -399,7 +399,7 @@ public void FieldRoundtripThroughSerialization_Works()
Status = "status",
Type = "type",
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void FieldRoundtrip_Works()
],
MessageID = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -184,7 +184,7 @@ public void FieldRoundtripThroughSerialization_Works()
],
MessageID = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void FieldRoundtrip_Works()
TemplateID = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
TemplateName = "template_name",
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -274,7 +274,7 @@ public void FieldRoundtripThroughSerialization_Works()
TemplateID = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
TemplateName = "template_name",
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Messages/MessageSendResponseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void FieldRoundtrip_Works()
TemplateID = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
TemplateName = "template_name",
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -189,7 +189,7 @@ public void FieldRoundtripThroughSerialization_Works()
TemplateID = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
TemplateName = "template_name",
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Numbers/NumberLookupResponseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void FieldRoundtrip_Works()
MobileNetworkCode = "mobile_network_code",
PhoneNumber = "phone_number",
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -169,7 +169,7 @@ public void FieldRoundtripThroughSerialization_Works()
MobileNetworkCode = "mobile_network_code",
PhoneNumber = "phone_number",
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public void FieldRoundtrip_Works()
WabaID = "waba_id",
WhatsappPhoneNumber = "whatsapp_phone_number",
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -514,7 +514,7 @@ public void FieldRoundtripThroughSerialization_Works()
WabaID = "waba_id",
WhatsappPhoneNumber = "whatsapp_phone_number",
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void FieldRoundtrip_Works()
},
],
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -339,7 +339,7 @@ public void FieldRoundtripThroughSerialization_Works()
},
],
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public void FieldRoundtrip_Works()
],
},
];
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -359,7 +359,7 @@ public void FieldRoundtripThroughSerialization_Works()
],
},
];
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Profiles/ProfileListResponseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void FieldRoundtrip_Works()
},
],
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -544,7 +544,7 @@ public void FieldRoundtripThroughSerialization_Works()
},
],
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Templates/ApiResponseTemplateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void FieldRoundtrip_Works()
UpdatedAt = DateTimeOffset.Parse("2019-12-27T18:11:19.117Z"),
Variables = ["string"],
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -174,7 +174,7 @@ public void FieldRoundtripThroughSerialization_Works()
UpdatedAt = DateTimeOffset.Parse("2019-12-27T18:11:19.117Z"),
Variables = ["string"],
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Templates/TemplateListResponseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void FieldRoundtrip_Works()
},
],
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -249,7 +249,7 @@ public void FieldRoundtripThroughSerialization_Works()
},
],
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Users/ApiResponseOfUserTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void FieldRoundtrip_Works()
Status = "status",
UpdatedAt = DateTimeOffset.Parse("2019-12-27T18:11:19.117Z"),
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -169,7 +169,7 @@ public void FieldRoundtripThroughSerialization_Works()
Status = "status",
UpdatedAt = DateTimeOffset.Parse("2019-12-27T18:11:19.117Z"),
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Users/UserListResponseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void FieldRoundtrip_Works()
},
],
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -199,7 +199,7 @@ public void FieldRoundtripThroughSerialization_Works()
},
],
};
Webhooks::ApiError expectedError = new()
Webhooks::ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
4 changes: 2 additions & 2 deletions src/Sentdm.Tests/Models/Webhooks/ApiResponseWebhookTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void FieldRoundtrip_Works()
TimeoutSeconds = 0,
UpdatedAt = DateTimeOffset.Parse("2019-12-27T18:11:19.117Z"),
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down Expand Up @@ -188,7 +188,7 @@ public void FieldRoundtripThroughSerialization_Works()
TimeoutSeconds = 0,
UpdatedAt = DateTimeOffset.Parse("2019-12-27T18:11:19.117Z"),
};
ApiError expectedError = new()
ErrorDetail expectedError = new()
{
Code = "code",
Details = new Dictionary<string, IReadOnlyList<string>>() { { "foo", ["string"] } },
Expand Down
Loading
Loading