Skip to content

Commit 5e0a02c

Browse files
committed
Fix add multiple contacts
1 parent b971add commit 5e0a02c

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

Sources/IndiePitcherSwift/IndiePitcherSwift.swift

+6-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,12 @@ public struct IndiePitcher: Sendable {
129129
/// - Parameter contacts: Contact properties
130130
/// - Returns: A generic empty response.
131131
@discardableResult public func addContacts(contacts: [CreateContact]) async throws -> EmptyResposne {
132-
try await post(path: "/contacts/create_many", body: contacts)
132+
133+
struct Payload: Codable {
134+
let contacts: [CreateContact]
135+
}
136+
137+
return try await post(path: "/contacts/create_many", body: Payload(contacts: contacts))
133138
}
134139

135140
/// Updates a contact with given email address. This call will fail if a contact with provided email does not exist, use `addContact` instead in such case.

Tests/IndiePitcherSwiftTests/IndiePitcherSwiftTests.swift

+13-6
Original file line numberDiff line numberDiff line change
@@ -24,31 +24,31 @@ final class IndiePitcherSwiftTests: XCTestCase {
2424

2525
func testSendTransactionalEmailMarkdown() async throws {
2626

27-
try await indiePitcher.sendEmail(data: .init(to: "petr@indiepitcher.com",
27+
try await indiePitcher.sendEmail(data: .init(to: "petr@example.com",
2828
subject: "Test email from IP Swift SDK unit tests",
2929
body: "This is a test body that supports **markdown**.",
3030
bodyFormat: .markdown))
3131
}
3232

3333
func testGetMailingLists() async throws {
3434
let listsResponse = try await indiePitcher.listMailingLists()
35-
expect(listsResponse.metadata.total) == 2
36-
expect(listsResponse.data.count) == 2
35+
expect(listsResponse.metadata.total) == 3
36+
expect(listsResponse.data.count) == 3
3737
}
3838

3939
func testSendMarketingEmailToList() async throws {
4040
try await indiePitcher.sendEmailToMailingList(data: .init(subject: "Test marketing email from IP Swift SDK unit tests",
4141
body: "This is a test body of a marketing email that supports **markdown**.",
4242
bodyFormat: .markdown,
43-
list: "test_list_1"))
43+
list: "integration-tests"))
4444
}
4545

4646
func testSendEmailToContact() async throws {
47-
try await indiePitcher.sendEmailToContact(data: .init(contactEmail: "petr@indiepitcher.com",
47+
try await indiePitcher.sendEmailToContact(data: .init(contactEmail: "petr@example.com",
4848
subject: "Test personalized contact email from IP Swift SDK unit tests",
4949
body: "This is a test body of a personalized transactional email that supports **markdown**.",
5050
bodyFormat: .markdown,
51-
list: "test_list_1",
51+
list: "integration-tests",
5252
delaySeconds: 60))
5353
}
5454

@@ -60,6 +60,13 @@ final class IndiePitcherSwiftTests: XCTestCase {
6060
try await indiePitcher.deleteContact(email: email)
6161
}
6262

63+
func testAddMultipleContacts() async throws {
64+
65+
try await indiePitcher.addContacts(contacts: [.init(email: "[email protected]"), .init(email: "[email protected]")])
66+
try await indiePitcher.deleteContact(email: "[email protected]")
67+
try await indiePitcher.deleteContact(email: "[email protected]")
68+
}
69+
6370
func testCreatePortalSession() async throws {
6471
_ = try await indiePitcher.createMailingListsPortalSession(contactEmail: "[email protected]", returnURL: .init(string: "https://indiepitcher.com")!)
6572
}

0 commit comments

Comments
 (0)