@managespace/sdk 0.0.150 → 0.0.151

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.
@@ -27,6 +27,12 @@ export interface DocumentSigned {
27
27
  * @memberof DocumentSigned
28
28
  */
29
29
  workflowStepId?: string;
30
+ /**
31
+ * The ID of the customer who signed the document.
32
+ * @type {string}
33
+ * @memberof DocumentSigned
34
+ */
35
+ customerId?: string;
30
36
  /**
31
37
  * Whether all signatures have been gathered or not.
32
38
  * @type {boolean}
@@ -1 +1 @@
1
- {"version":3,"file":"document-signed.d.ts","sourceRoot":"","sources":["../../../src/generated/models/document-signed.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,cAAc,CAI/E;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,GAAG,cAAc,CAEhE;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,cAAc,CAWnG;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,GAAG,GAAG,cAAc,CAE9D;AAED,wBAAgB,yBAAyB,CAAC,KAAK,CAAC,EAAE,cAAc,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAYlH"}
1
+ {"version":3,"file":"document-signed.d.ts","sourceRoot":"","sources":["../../../src/generated/models/document-signed.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;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,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,cAAc,CAI/E;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,GAAG,cAAc,CAEhE;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,cAAc,CAYnG;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,GAAG,GAAG,cAAc,CAE9D;AAED,wBAAgB,yBAAyB,CAAC,KAAK,CAAC,EAAE,cAAc,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAalH"}
@@ -36,6 +36,7 @@ function DocumentSignedFromJSONTyped(json, ignoreDiscriminator) {
36
36
  return {
37
37
  'workflowId': json['workflowId'] == null ? undefined : json['workflowId'],
38
38
  'workflowStepId': json['workflowStepId'] == null ? undefined : json['workflowStepId'],
39
+ 'customerId': json['customerId'] == null ? undefined : json['customerId'],
39
40
  'allSignaturesGathered': json['allSignaturesGathered'],
40
41
  'file': json['file'],
41
42
  };
@@ -52,6 +53,7 @@ function DocumentSignedToJSONTyped(value, ignoreDiscriminator = false) {
52
53
  return {
53
54
  'workflowId': value['workflowId'],
54
55
  'workflowStepId': value['workflowStepId'],
56
+ 'customerId': value['customerId'],
55
57
  'allSignaturesGathered': value['allSignaturesGathered'],
56
58
  'file': value['file'],
57
59
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@managespace/sdk",
3
- "version": "0.0.150",
3
+ "version": "0.0.151",
4
4
  "scripts": {
5
5
  "dev": "tsc -w --preserveWatchOutput",
6
6
  "build": "tsc",
@@ -31,6 +31,12 @@ export interface DocumentSigned {
31
31
  * @memberof DocumentSigned
32
32
  */
33
33
  workflowStepId?: string;
34
+ /**
35
+ * The ID of the customer who signed the document.
36
+ * @type {string}
37
+ * @memberof DocumentSigned
38
+ */
39
+ customerId?: string;
34
40
  /**
35
41
  * Whether all signatures have been gathered or not.
36
42
  * @type {boolean}
@@ -66,6 +72,7 @@ export function DocumentSignedFromJSONTyped(json: any, ignoreDiscriminator: bool
66
72
 
67
73
  'workflowId': json['workflowId'] == null ? undefined : json['workflowId'],
68
74
  'workflowStepId': json['workflowStepId'] == null ? undefined : json['workflowStepId'],
75
+ 'customerId': json['customerId'] == null ? undefined : json['customerId'],
69
76
  'allSignaturesGathered': json['allSignaturesGathered'],
70
77
  'file': json['file'],
71
78
  };
@@ -84,6 +91,7 @@ export function DocumentSignedToJSONTyped(value?: DocumentSigned | null, ignoreD
84
91
 
85
92
  'workflowId': value['workflowId'],
86
93
  'workflowStepId': value['workflowStepId'],
94
+ 'customerId': value['customerId'],
87
95
  'allSignaturesGathered': value['allSignaturesGathered'],
88
96
  'file': value['file'],
89
97
  };