Skip to content

Commit a570a46

Browse files
authored
Merge pull request #27 from PandaDoc/template_details_contact_placeholders
v5.5.0
2 parents eaeeaf4 + d55a95a commit a570a46

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pandadoc-node-client",
3-
"version": "5.4.1",
3+
"version": "5.5.0",
44
"description": "The Official PandaDoc Node client SDK",
55
"author": "PandaDoc",
66
"keywords": [

src/http/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export type RequestBody = undefined | string | FormData | URLSearchParams;
5050
*/
5151
export class RequestContext {
5252
private headers: { [key: string]: string } = {
53-
"User-Agent": "pandadoc_node_client/5.4.1",
53+
"User-Agent": "pandadoc_node_client/5.5.0",
5454
};
5555
private body: RequestBody = undefined;
5656
private url: URLParse;

src/models/TemplateDetailsResponsePreassignedPerson.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ import { HttpFile } from '../http/http';
1212
export class TemplateDetailsResponsePreassignedPerson {
1313
'email'?: string;
1414
'type'?: string;
15+
'placeholderName'?: string;
16+
'placeholderSource'?: string;
1517

1618
static readonly discriminator: string | undefined = undefined;
1719

@@ -27,6 +29,18 @@ export class TemplateDetailsResponsePreassignedPerson {
2729
"baseName": "type",
2830
"type": "string",
2931
"format": ""
32+
},
33+
{
34+
"name": "placeholderName",
35+
"baseName": "placeholder_name",
36+
"type": "string",
37+
"format": ""
38+
},
39+
{
40+
"name": "placeholderSource",
41+
"baseName": "placeholder_source",
42+
"type": "string",
43+
"format": ""
3044
} ];
3145

3246
static getAttributeTypeMap() {

0 commit comments

Comments
 (0)