@managespace/sdk 0.1.170 → 0.1.172
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,18 @@ 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;
|
|
60
|
+
/**
|
|
61
|
+
* Role of the signer (e.g. operator, tenant).
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof DocumentComplete
|
|
64
|
+
*/
|
|
65
|
+
signerRole?: string;
|
|
54
66
|
/**
|
|
55
67
|
* Whether all signatures have been gathered or not.
|
|
56
68
|
* @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,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,CAiBvG;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,CAkBtH"}
|
|
@@ -41,6 +41,8 @@ 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'],
|
|
45
|
+
'signerRole': json['signerRole'] == null ? undefined : json['signerRole'],
|
|
44
46
|
'allSignaturesGathered': json['allSignaturesGathered'],
|
|
45
47
|
'fileUrl': json['fileUrl'] == null ? undefined : json['fileUrl'],
|
|
46
48
|
};
|
|
@@ -59,6 +61,8 @@ function DocumentCompleteToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
59
61
|
'contactId': value['contactId'],
|
|
60
62
|
'userId': value['userId'],
|
|
61
63
|
'signerEmail': value['signerEmail'],
|
|
64
|
+
'signerName': value['signerName'],
|
|
65
|
+
'signerRole': value['signerRole'],
|
|
62
66
|
'allSignaturesGathered': value['allSignaturesGathered'],
|
|
63
67
|
'fileUrl': value['fileUrl'],
|
|
64
68
|
};
|
package/package.json
CHANGED
|
@@ -56,6 +56,18 @@ 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;
|
|
65
|
+
/**
|
|
66
|
+
* Role of the signer (e.g. operator, tenant).
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof DocumentComplete
|
|
69
|
+
*/
|
|
70
|
+
signerRole?: string;
|
|
59
71
|
/**
|
|
60
72
|
* Whether all signatures have been gathered or not.
|
|
61
73
|
* @type {boolean}
|
|
@@ -94,6 +106,8 @@ export function DocumentCompleteFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
94
106
|
'contactId': json['contactId'] == null ? undefined : json['contactId'],
|
|
95
107
|
'userId': json['userId'] == null ? undefined : json['userId'],
|
|
96
108
|
'signerEmail': json['signerEmail'] == null ? undefined : json['signerEmail'],
|
|
109
|
+
'signerName': json['signerName'] == null ? undefined : json['signerName'],
|
|
110
|
+
'signerRole': json['signerRole'] == null ? undefined : json['signerRole'],
|
|
97
111
|
'allSignaturesGathered': json['allSignaturesGathered'],
|
|
98
112
|
'fileUrl': json['fileUrl'] == null ? undefined : json['fileUrl'],
|
|
99
113
|
};
|
|
@@ -116,6 +130,8 @@ export function DocumentCompleteToJSONTyped(value?: DocumentComplete | null, ign
|
|
|
116
130
|
'contactId': value['contactId'],
|
|
117
131
|
'userId': value['userId'],
|
|
118
132
|
'signerEmail': value['signerEmail'],
|
|
133
|
+
'signerName': value['signerName'],
|
|
134
|
+
'signerRole': value['signerRole'],
|
|
119
135
|
'allSignaturesGathered': value['allSignaturesGathered'],
|
|
120
136
|
'fileUrl': value['fileUrl'],
|
|
121
137
|
};
|