@managespace/sdk 0.1.176-documents → 0.1.177-documents
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.
|
@@ -52,11 +52,11 @@ export interface DocumentComplete {
|
|
|
52
52
|
*/
|
|
53
53
|
allSignaturesGathered: boolean;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
56
|
-
* @type {
|
|
55
|
+
* Arbitrary metadata to store with the document.
|
|
56
|
+
* @type {object}
|
|
57
57
|
* @memberof DocumentComplete
|
|
58
58
|
*/
|
|
59
|
-
|
|
59
|
+
metadata?: object;
|
|
60
60
|
/**
|
|
61
61
|
* Downloadable URL of the document.
|
|
62
62
|
* @type {string}
|
|
@@ -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,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;;;OAIG;IACH,
|
|
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,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gBAAgB,CAInF;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAEpE;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gBAAgB,CAevG;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,CAgBtH"}
|
|
@@ -43,7 +43,7 @@ function DocumentCompleteFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
43
43
|
'contactId': json['contactId'] == null ? undefined : json['contactId'],
|
|
44
44
|
'userId': json['userId'] == null ? undefined : json['userId'],
|
|
45
45
|
'allSignaturesGathered': json['allSignaturesGathered'],
|
|
46
|
-
'
|
|
46
|
+
'metadata': json['metadata'] == null ? undefined : json['metadata'],
|
|
47
47
|
'fileUrl': json['fileUrl'],
|
|
48
48
|
};
|
|
49
49
|
}
|
|
@@ -61,7 +61,7 @@ function DocumentCompleteToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
61
61
|
'contactId': value['contactId'],
|
|
62
62
|
'userId': value['userId'],
|
|
63
63
|
'allSignaturesGathered': value['allSignaturesGathered'],
|
|
64
|
-
'
|
|
64
|
+
'metadata': value['metadata'],
|
|
65
65
|
'fileUrl': value['fileUrl'],
|
|
66
66
|
};
|
|
67
67
|
}
|
package/package.json
CHANGED
|
@@ -57,11 +57,11 @@ export interface DocumentComplete {
|
|
|
57
57
|
*/
|
|
58
58
|
allSignaturesGathered: boolean;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @type {
|
|
60
|
+
* Arbitrary metadata to store with the document.
|
|
61
|
+
* @type {object}
|
|
62
62
|
* @memberof DocumentComplete
|
|
63
63
|
*/
|
|
64
|
-
|
|
64
|
+
metadata?: object;
|
|
65
65
|
/**
|
|
66
66
|
* Downloadable URL of the document.
|
|
67
67
|
* @type {string}
|
|
@@ -95,7 +95,7 @@ export function DocumentCompleteFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
95
95
|
'contactId': json['contactId'] == null ? undefined : json['contactId'],
|
|
96
96
|
'userId': json['userId'] == null ? undefined : json['userId'],
|
|
97
97
|
'allSignaturesGathered': json['allSignaturesGathered'],
|
|
98
|
-
'
|
|
98
|
+
'metadata': json['metadata'] == null ? undefined : json['metadata'],
|
|
99
99
|
'fileUrl': json['fileUrl'],
|
|
100
100
|
};
|
|
101
101
|
}
|
|
@@ -117,7 +117,7 @@ export function DocumentCompleteToJSONTyped(value?: DocumentComplete | null, ign
|
|
|
117
117
|
'contactId': value['contactId'],
|
|
118
118
|
'userId': value['userId'],
|
|
119
119
|
'allSignaturesGathered': value['allSignaturesGathered'],
|
|
120
|
-
'
|
|
120
|
+
'metadata': value['metadata'],
|
|
121
121
|
'fileUrl': value['fileUrl'],
|
|
122
122
|
};
|
|
123
123
|
}
|