@managespace/sdk 0.1.170 → 0.1.171
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -51,6 +51,12 @@ export interface DocumentComplete {
|
|
|
51
51
|
* @memberof DocumentComplete
|
|
52
52
|
*/
|
|
53
53
|
signerEmail?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Name of the signer.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof DocumentComplete
|
|
58
|
+
*/
|
|
59
|
+
signerName?: string;
|
|
54
60
|
/**
|
|
55
61
|
* Whether all signatures have been gathered or not.
|
|
56
62
|
* @type {boolean}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document-complete.d.ts","sourceRoot":"","sources":["../../../src/generated/models/document-complete.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gBAAgB,CAGnF;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAEpE;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gBAAgB,
|
|
1
|
+
{"version":3,"file":"document-complete.d.ts","sourceRoot":"","sources":["../../../src/generated/models/document-complete.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gBAAgB,CAGnF;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAEpE;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gBAAgB,CAgBvG;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAElE;AAED,wBAAgB,2BAA2B,CAAC,KAAK,CAAC,EAAE,gBAAgB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAiBtH"}
|
|
@@ -41,6 +41,7 @@ function DocumentCompleteFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
'contactId': json['contactId'] == null ? undefined : json['contactId'],
|
|
42
42
|
'userId': json['userId'] == null ? undefined : json['userId'],
|
|
43
43
|
'signerEmail': json['signerEmail'] == null ? undefined : json['signerEmail'],
|
|
44
|
+
'signerName': json['signerName'] == null ? undefined : json['signerName'],
|
|
44
45
|
'allSignaturesGathered': json['allSignaturesGathered'],
|
|
45
46
|
'fileUrl': json['fileUrl'] == null ? undefined : json['fileUrl'],
|
|
46
47
|
};
|
|
@@ -59,6 +60,7 @@ function DocumentCompleteToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
59
60
|
'contactId': value['contactId'],
|
|
60
61
|
'userId': value['userId'],
|
|
61
62
|
'signerEmail': value['signerEmail'],
|
|
63
|
+
'signerName': value['signerName'],
|
|
62
64
|
'allSignaturesGathered': value['allSignaturesGathered'],
|
|
63
65
|
'fileUrl': value['fileUrl'],
|
|
64
66
|
};
|
package/package.json
CHANGED
|
@@ -56,6 +56,12 @@ export interface DocumentComplete {
|
|
|
56
56
|
* @memberof DocumentComplete
|
|
57
57
|
*/
|
|
58
58
|
signerEmail?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Name of the signer.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof DocumentComplete
|
|
63
|
+
*/
|
|
64
|
+
signerName?: string;
|
|
59
65
|
/**
|
|
60
66
|
* Whether all signatures have been gathered or not.
|
|
61
67
|
* @type {boolean}
|
|
@@ -94,6 +100,7 @@ export function DocumentCompleteFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
94
100
|
'contactId': json['contactId'] == null ? undefined : json['contactId'],
|
|
95
101
|
'userId': json['userId'] == null ? undefined : json['userId'],
|
|
96
102
|
'signerEmail': json['signerEmail'] == null ? undefined : json['signerEmail'],
|
|
103
|
+
'signerName': json['signerName'] == null ? undefined : json['signerName'],
|
|
97
104
|
'allSignaturesGathered': json['allSignaturesGathered'],
|
|
98
105
|
'fileUrl': json['fileUrl'] == null ? undefined : json['fileUrl'],
|
|
99
106
|
};
|
|
@@ -116,6 +123,7 @@ export function DocumentCompleteToJSONTyped(value?: DocumentComplete | null, ign
|
|
|
116
123
|
'contactId': value['contactId'],
|
|
117
124
|
'userId': value['userId'],
|
|
118
125
|
'signerEmail': value['signerEmail'],
|
|
126
|
+
'signerName': value['signerName'],
|
|
119
127
|
'allSignaturesGathered': value['allSignaturesGathered'],
|
|
120
128
|
'fileUrl': value['fileUrl'],
|
|
121
129
|
};
|