Skip to content

Commit

Permalink
Chore: Updated email-template client to support bulk messages with un…
Browse files Browse the repository at this point in the history
…subscribe link
  • Loading branch information
Sumanth Kanakala committed Nov 8, 2024
1 parent 2ed6511 commit 6b46789
Show file tree
Hide file tree
Showing 4 changed files with 687 additions and 26 deletions.
2 changes: 1 addition & 1 deletion clients/email-template-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/email-template-client",
"version": "1.8.1",
"version": "1.9.0",
"description": "API Client for epilot Email Template API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
34 changes: 28 additions & 6 deletions clients/email-template-client/src/openapi-runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"content": {
"application/json": {}
}
}
},
"responses": {}
}
},
"/v1/email-template/templates/{id}": {
Expand All @@ -24,7 +25,24 @@
"in": "path",
"required": true
}
]
],
"responses": {}
},
"put": {
"operationId": "updateTemplateDetail",
"parameters": [
{
"name": "id",
"in": "path",
"required": true
}
],
"requestBody": {
"content": {
"application/json": {}
}
},
"responses": {}
}
},
"/v1/email-template/templates:replace": {
Expand All @@ -34,7 +52,8 @@
"content": {
"application/json": {}
}
}
},
"responses": {}
}
},
"/v1/email-template/templates:replaceAsync": {
Expand All @@ -50,7 +69,8 @@
"content": {
"application/json": {}
}
}
},
"responses": {}
}
},
"/v1/email-template/templates:bulkSendMessage": {
Expand All @@ -60,7 +80,8 @@
"content": {
"application/json": {}
}
}
},
"responses": {}
}
},
"/v1/email-template/templates:revert": {
Expand All @@ -70,7 +91,8 @@
"content": {
"application/json": {}
}
}
},
"responses": {}
}
}
},
Expand Down
Loading

0 comments on commit 6b46789

Please sign in to comment.