@managespace/sdk 0.0.131 → 0.0.133

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.
Files changed (69) hide show
  1. package/dist/extensibility/functions/project/billing.d.ts +0 -6
  2. package/dist/extensibility/functions/project/billing.d.ts.map +1 -1
  3. package/dist/extensibility/functions/project/billing.js +0 -5
  4. package/dist/extensibility/functions/project/document.d.ts +14 -1
  5. package/dist/extensibility/functions/project/document.d.ts.map +1 -1
  6. package/dist/extensibility/functions/project/document.js +10 -0
  7. package/dist/generated/apis/default-api.d.ts +51 -11
  8. package/dist/generated/apis/default-api.d.ts.map +1 -1
  9. package/dist/generated/apis/default-api.js +163 -33
  10. package/dist/generated/models/document-signed.d.ts +6 -0
  11. package/dist/generated/models/document-signed.d.ts.map +1 -1
  12. package/dist/generated/models/document-signed.js +4 -0
  13. package/dist/generated/models/document-url.d.ts +39 -0
  14. package/dist/generated/models/document-url.d.ts.map +1 -0
  15. package/dist/generated/models/document-url.js +55 -0
  16. package/dist/generated/models/document.d.ts +39 -0
  17. package/dist/generated/models/document.d.ts.map +1 -0
  18. package/dist/generated/models/document.js +55 -0
  19. package/dist/generated/models/get-documents200-response.d.ts +41 -0
  20. package/dist/generated/models/get-documents200-response.d.ts.map +1 -0
  21. package/dist/generated/models/get-documents200-response.js +55 -0
  22. package/dist/generated/models/index.d.ts +5 -0
  23. package/dist/generated/models/index.d.ts.map +1 -1
  24. package/dist/generated/models/index.js +5 -0
  25. package/dist/generated/models/upload-document.d.ts +45 -0
  26. package/dist/generated/models/upload-document.d.ts.map +1 -0
  27. package/dist/generated/models/upload-document.js +55 -0
  28. package/dist/generated/models/uploaded-document.d.ts +33 -0
  29. package/dist/generated/models/uploaded-document.d.ts.map +1 -0
  30. package/dist/generated/models/uploaded-document.js +51 -0
  31. package/dist/generated/models/uploaded-documents.d.ts +45 -0
  32. package/dist/generated/models/uploaded-documents.d.ts.map +1 -0
  33. package/dist/generated/models/uploaded-documents.js +59 -0
  34. package/package.deploy.json +33 -0
  35. package/package.json +2 -2
  36. package/src/extensibility/functions/project/billing.ts +0 -6
  37. package/src/extensibility/functions/project/document.ts +9 -0
  38. package/src/generated/.openapi-generator/FILES +5 -0
  39. package/src/generated/apis/default-api.ts +262 -52
  40. package/src/generated/models/document-signed.ts +9 -0
  41. package/src/generated/models/document-url.ts +75 -0
  42. package/src/generated/models/document.ts +75 -0
  43. package/src/generated/models/get-documents200-response.ts +89 -0
  44. package/src/generated/models/index.ts +5 -0
  45. package/src/generated/models/upload-document.ts +82 -0
  46. package/src/generated/models/uploaded-document.ts +66 -0
  47. package/src/generated/models/uploaded-documents.ts +84 -0
  48. package/.turbo/turbo-build.log +0 -2
  49. package/dist/generated/models/create-subscription-plan.d.ts +0 -69
  50. package/dist/generated/models/create-subscription-plan.d.ts.map +0 -1
  51. package/dist/generated/models/create-subscription-plan.js +0 -71
  52. package/dist/generated/models/subscription-invoice-line.d.ts +0 -117
  53. package/dist/generated/models/subscription-invoice-line.d.ts.map +0 -1
  54. package/dist/generated/models/subscription-invoice-line.js +0 -107
  55. package/dist/generated/models/subscription-invoice.d.ts +0 -58
  56. package/dist/generated/models/subscription-invoice.d.ts.map +0 -1
  57. package/dist/generated/models/subscription-invoice.js +0 -68
  58. package/dist/generated/models/subscription-plan.d.ts +0 -268
  59. package/dist/generated/models/subscription-plan.d.ts.map +0 -1
  60. package/dist/generated/models/subscription-plan.js +0 -208
  61. package/dist/generated/models/subscription-preview.d.ts +0 -275
  62. package/dist/generated/models/subscription-preview.d.ts.map +0 -1
  63. package/dist/generated/models/subscription-preview.js +0 -211
  64. package/dist/generated/models/update-subscription-charge.d.ts +0 -293
  65. package/dist/generated/models/update-subscription-charge.d.ts.map +0 -1
  66. package/dist/generated/models/update-subscription-charge.js +0 -149
  67. package/dist/generated/models/update-subscription.d.ts +0 -226
  68. package/dist/generated/models/update-subscription.d.ts.map +0 -1
  69. package/dist/generated/models/update-subscription.js +0 -118
@@ -43,38 +43,6 @@ const index_1 = require("../models/index");
43
43
  *
44
44
  */
45
45
  class DefaultApi extends runtime.BaseAPI {
46
- /**
47
- */
48
- async activateSubscriptionRaw(requestParameters, initOverrides) {
49
- if (requestParameters['siteId'] == null) {
50
- throw new runtime.RequiredError('siteId', 'Required parameter "siteId" was null or undefined when calling activateSubscription().');
51
- }
52
- if (requestParameters['subscriptionId'] == null) {
53
- throw new runtime.RequiredError('subscriptionId', 'Required parameter "subscriptionId" was null or undefined when calling activateSubscription().');
54
- }
55
- const queryParameters = {};
56
- const headerParameters = {};
57
- if (this.configuration && this.configuration.accessToken) {
58
- const token = this.configuration.accessToken;
59
- const tokenString = await token("bearer", []);
60
- if (tokenString) {
61
- headerParameters["Authorization"] = `Bearer ${tokenString}`;
62
- }
63
- }
64
- const response = await this.request({
65
- path: `/api/sites/{siteId}/subscriptions/{subscriptionId}/activate`.replace(`{${"siteId"}}`, encodeURIComponent(String(requestParameters['siteId']))).replace(`{${"subscriptionId"}}`, encodeURIComponent(String(requestParameters['subscriptionId']))),
66
- method: 'PUT',
67
- headers: headerParameters,
68
- query: queryParameters,
69
- }, initOverrides);
70
- return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.GetSubscriptions200ResponseFromJSON)(jsonValue));
71
- }
72
- /**
73
- */
74
- async activateSubscription(requestParameters, initOverrides) {
75
- const response = await this.activateSubscriptionRaw(requestParameters, initOverrides);
76
- return await response.value();
77
- }
78
46
  /**
79
47
  */
80
48
  async adminSignUpRaw(requestParameters, initOverrides) {
@@ -1335,6 +1303,9 @@ class DefaultApi extends runtime.BaseAPI {
1335
1303
  if (requestParameters['siteId'] == null) {
1336
1304
  throw new runtime.RequiredError('siteId', 'Required parameter "siteId" was null or undefined when calling documentSigned().');
1337
1305
  }
1306
+ if (requestParameters['documentId'] == null) {
1307
+ throw new runtime.RequiredError('documentId', 'Required parameter "documentId" was null or undefined when calling documentSigned().');
1308
+ }
1338
1309
  if (requestParameters['documentSigned'] == null) {
1339
1310
  throw new runtime.RequiredError('documentSigned', 'Required parameter "documentSigned" was null or undefined when calling documentSigned().');
1340
1311
  }
@@ -1349,7 +1320,7 @@ class DefaultApi extends runtime.BaseAPI {
1349
1320
  }
1350
1321
  }
1351
1322
  const response = await this.request({
1352
- path: `/api/sites/{siteId}/documents/signed`.replace(`{${"siteId"}}`, encodeURIComponent(String(requestParameters['siteId']))),
1323
+ path: `/api/sites/{siteId}/documents/{documentId}/signed`.replace(`{${"siteId"}}`, encodeURIComponent(String(requestParameters['siteId']))).replace(`{${"documentId"}}`, encodeURIComponent(String(requestParameters['documentId']))),
1353
1324
  method: 'POST',
1354
1325
  headers: headerParameters,
1355
1326
  query: queryParameters,
@@ -2235,6 +2206,73 @@ class DefaultApi extends runtime.BaseAPI {
2235
2206
  const response = await this.getCustomersRaw(requestParameters, initOverrides);
2236
2207
  return await response.value();
2237
2208
  }
2209
+ /**
2210
+ */
2211
+ async getDocumentRaw(requestParameters, initOverrides) {
2212
+ if (requestParameters['siteId'] == null) {
2213
+ throw new runtime.RequiredError('siteId', 'Required parameter "siteId" was null or undefined when calling getDocument().');
2214
+ }
2215
+ if (requestParameters['documentId'] == null) {
2216
+ throw new runtime.RequiredError('documentId', 'Required parameter "documentId" was null or undefined when calling getDocument().');
2217
+ }
2218
+ const queryParameters = {};
2219
+ const headerParameters = {};
2220
+ if (this.configuration && this.configuration.accessToken) {
2221
+ const token = this.configuration.accessToken;
2222
+ const tokenString = await token("bearer", []);
2223
+ if (tokenString) {
2224
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
2225
+ }
2226
+ }
2227
+ const response = await this.request({
2228
+ path: `/api/sites/{siteId}/documents/{documentId}`.replace(`{${"siteId"}}`, encodeURIComponent(String(requestParameters['siteId']))).replace(`{${"documentId"}}`, encodeURIComponent(String(requestParameters['documentId']))),
2229
+ method: 'GET',
2230
+ headers: headerParameters,
2231
+ query: queryParameters,
2232
+ }, initOverrides);
2233
+ return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.DocumentUrlFromJSON)(jsonValue));
2234
+ }
2235
+ /**
2236
+ */
2237
+ async getDocument(requestParameters, initOverrides) {
2238
+ const response = await this.getDocumentRaw(requestParameters, initOverrides);
2239
+ return await response.value();
2240
+ }
2241
+ /**
2242
+ */
2243
+ async getDocumentsRaw(requestParameters, initOverrides) {
2244
+ if (requestParameters['siteId'] == null) {
2245
+ throw new runtime.RequiredError('siteId', 'Required parameter "siteId" was null or undefined when calling getDocuments().');
2246
+ }
2247
+ const queryParameters = {};
2248
+ if (requestParameters['offset'] != null) {
2249
+ queryParameters['offset'] = requestParameters['offset'];
2250
+ }
2251
+ if (requestParameters['limit'] != null) {
2252
+ queryParameters['limit'] = requestParameters['limit'];
2253
+ }
2254
+ const headerParameters = {};
2255
+ if (this.configuration && this.configuration.accessToken) {
2256
+ const token = this.configuration.accessToken;
2257
+ const tokenString = await token("bearer", []);
2258
+ if (tokenString) {
2259
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
2260
+ }
2261
+ }
2262
+ const response = await this.request({
2263
+ path: `/api/sites/{siteId}/documents`.replace(`{${"siteId"}}`, encodeURIComponent(String(requestParameters['siteId']))),
2264
+ method: 'GET',
2265
+ headers: headerParameters,
2266
+ query: queryParameters,
2267
+ }, initOverrides);
2268
+ return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.GetDocuments200ResponseFromJSON)(jsonValue));
2269
+ }
2270
+ /**
2271
+ */
2272
+ async getDocuments(requestParameters, initOverrides) {
2273
+ const response = await this.getDocumentsRaw(requestParameters, initOverrides);
2274
+ return await response.value();
2275
+ }
2238
2276
  /**
2239
2277
  */
2240
2278
  async getExtensibilityRepoRaw(initOverrides) {
@@ -3457,6 +3495,67 @@ class DefaultApi extends runtime.BaseAPI {
3457
3495
  const response = await this.getTemplatesRaw(requestParameters, initOverrides);
3458
3496
  return await response.value();
3459
3497
  }
3498
+ /**
3499
+ */
3500
+ async getUploadedDocumentRaw(requestParameters, initOverrides) {
3501
+ if (requestParameters['documentId'] == null) {
3502
+ throw new runtime.RequiredError('documentId', 'Required parameter "documentId" was null or undefined when calling getUploadedDocument().');
3503
+ }
3504
+ const queryParameters = {};
3505
+ if (requestParameters['siteId'] != null) {
3506
+ queryParameters['siteId'] = requestParameters['siteId'];
3507
+ }
3508
+ const headerParameters = {};
3509
+ if (this.configuration && this.configuration.accessToken) {
3510
+ const token = this.configuration.accessToken;
3511
+ const tokenString = await token("bearer", []);
3512
+ if (tokenString) {
3513
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
3514
+ }
3515
+ }
3516
+ const response = await this.request({
3517
+ path: `/api/documents/{documentId}/upload`.replace(`{${"documentId"}}`, encodeURIComponent(String(requestParameters['documentId']))),
3518
+ method: 'GET',
3519
+ headers: headerParameters,
3520
+ query: queryParameters,
3521
+ }, initOverrides);
3522
+ return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.UploadedDocumentFromJSON)(jsonValue));
3523
+ }
3524
+ /**
3525
+ */
3526
+ async getUploadedDocument(requestParameters, initOverrides) {
3527
+ const response = await this.getUploadedDocumentRaw(requestParameters, initOverrides);
3528
+ return await response.value();
3529
+ }
3530
+ /**
3531
+ */
3532
+ async getUploadedDocumentsRaw(requestParameters, initOverrides) {
3533
+ const queryParameters = {};
3534
+ if (requestParameters['siteId'] != null) {
3535
+ queryParameters['siteId'] = requestParameters['siteId'];
3536
+ }
3537
+ const headerParameters = {};
3538
+ if (this.configuration && this.configuration.accessToken) {
3539
+ const token = this.configuration.accessToken;
3540
+ const tokenString = await token("bearer", []);
3541
+ if (tokenString) {
3542
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
3543
+ }
3544
+ }
3545
+ const response = await this.request({
3546
+ path: `/api/documents/upload`,
3547
+ method: 'GET',
3548
+ headers: headerParameters,
3549
+ query: queryParameters,
3550
+ }, initOverrides);
3551
+ return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.UploadedDocumentsFromJSON)(jsonValue));
3552
+ }
3553
+ /**
3554
+ */
3555
+ async getUploadedDocuments(requestParameters = {}, initOverrides) {
3556
+ const response = await this.getUploadedDocumentsRaw(requestParameters, initOverrides);
3557
+ return await response.value();
3558
+ }
3460
3559
  /**
3461
3560
  */
3462
3561
  async getUserRaw(requestParameters, initOverrides) {
@@ -4662,6 +4761,37 @@ class DefaultApi extends runtime.BaseAPI {
4662
4761
  const response = await this.updateUserPropertiesRaw(requestParameters, initOverrides);
4663
4762
  return await response.value();
4664
4763
  }
4764
+ /**
4765
+ */
4766
+ async uploadDocumentRaw(requestParameters, initOverrides) {
4767
+ if (requestParameters['uploadDocument'] == null) {
4768
+ throw new runtime.RequiredError('uploadDocument', 'Required parameter "uploadDocument" was null or undefined when calling uploadDocument().');
4769
+ }
4770
+ const queryParameters = {};
4771
+ const headerParameters = {};
4772
+ headerParameters['Content-Type'] = 'application/json';
4773
+ if (this.configuration && this.configuration.accessToken) {
4774
+ const token = this.configuration.accessToken;
4775
+ const tokenString = await token("bearer", []);
4776
+ if (tokenString) {
4777
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
4778
+ }
4779
+ }
4780
+ const response = await this.request({
4781
+ path: `/api/documents/upload`,
4782
+ method: 'POST',
4783
+ headers: headerParameters,
4784
+ query: queryParameters,
4785
+ body: (0, index_1.UploadDocumentToJSON)(requestParameters['uploadDocument']),
4786
+ }, initOverrides);
4787
+ return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.SuccessFromJSON)(jsonValue));
4788
+ }
4789
+ /**
4790
+ */
4791
+ async uploadDocument(requestParameters, initOverrides) {
4792
+ const response = await this.uploadDocumentRaw(requestParameters, initOverrides);
4793
+ return await response.value();
4794
+ }
4665
4795
  /**
4666
4796
  */
4667
4797
  async uploadPluginRaw(requestParameters, initOverrides) {
@@ -33,6 +33,12 @@ export interface DocumentSigned {
33
33
  * @memberof DocumentSigned
34
34
  */
35
35
  allSignaturesGathered: boolean;
36
+ /**
37
+ * Base64 encoded signed document
38
+ * @type {string}
39
+ * @memberof DocumentSigned
40
+ */
41
+ file: string;
36
42
  }
37
43
  /**
38
44
  * Check if a given object implements the DocumentSigned interface.
@@ -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;CAClC;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,cAAc,CAG/E;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,GAAG,cAAc,CAEhE;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,cAAc,CAUnG;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,CAWlH"}
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"}
@@ -20,6 +20,8 @@ exports.DocumentSignedToJSONTyped = exports.DocumentSignedToJSON = exports.Docum
20
20
  function instanceOfDocumentSigned(value) {
21
21
  if (!('allSignaturesGathered' in value) || value['allSignaturesGathered'] === undefined)
22
22
  return false;
23
+ if (!('file' in value) || value['file'] === undefined)
24
+ return false;
23
25
  return true;
24
26
  }
25
27
  exports.instanceOfDocumentSigned = instanceOfDocumentSigned;
@@ -35,6 +37,7 @@ function DocumentSignedFromJSONTyped(json, ignoreDiscriminator) {
35
37
  'workflowId': json['workflowId'] == null ? undefined : json['workflowId'],
36
38
  'workflowStepId': json['workflowStepId'] == null ? undefined : json['workflowStepId'],
37
39
  'allSignaturesGathered': json['allSignaturesGathered'],
40
+ 'file': json['file'],
38
41
  };
39
42
  }
40
43
  exports.DocumentSignedFromJSONTyped = DocumentSignedFromJSONTyped;
@@ -50,6 +53,7 @@ function DocumentSignedToJSONTyped(value, ignoreDiscriminator = false) {
50
53
  'workflowId': value['workflowId'],
51
54
  'workflowStepId': value['workflowStepId'],
52
55
  'allSignaturesGathered': value['allSignaturesGathered'],
56
+ 'file': value['file'],
53
57
  };
54
58
  }
55
59
  exports.DocumentSignedToJSONTyped = DocumentSignedToJSONTyped;
@@ -0,0 +1,39 @@
1
+ /**
2
+ * ManageSpace API
3
+ * ManageSpace API Documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface DocumentUrl
16
+ */
17
+ export interface DocumentUrl {
18
+ /**
19
+ * The ID of the document.
20
+ * @type {string}
21
+ * @memberof DocumentUrl
22
+ */
23
+ documentId: string;
24
+ /**
25
+ * The URL of the document.
26
+ * @type {string}
27
+ * @memberof DocumentUrl
28
+ */
29
+ documentUrl: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the DocumentUrl interface.
33
+ */
34
+ export declare function instanceOfDocumentUrl(value: object): value is DocumentUrl;
35
+ export declare function DocumentUrlFromJSON(json: any): DocumentUrl;
36
+ export declare function DocumentUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentUrl;
37
+ export declare function DocumentUrlToJSON(json: any): DocumentUrl;
38
+ export declare function DocumentUrlToJSONTyped(value?: DocumentUrl | null, ignoreDiscriminator?: boolean): any;
39
+ //# sourceMappingURL=document-url.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"document-url.d.ts","sourceRoot":"","sources":["../../../src/generated/models/document-url.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,WAAW,CAIzE;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,GAAG,GAAG,WAAW,CAE1D;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,WAAW,CAS7F;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,GAAG,GAAG,WAAW,CAExD;AAED,wBAAgB,sBAAsB,CAAC,KAAK,CAAC,EAAE,WAAW,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAU5G"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * ManageSpace API
6
+ * ManageSpace API Documentation
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.DocumentUrlToJSONTyped = exports.DocumentUrlToJSON = exports.DocumentUrlFromJSONTyped = exports.DocumentUrlFromJSON = exports.instanceOfDocumentUrl = void 0;
17
+ /**
18
+ * Check if a given object implements the DocumentUrl interface.
19
+ */
20
+ function instanceOfDocumentUrl(value) {
21
+ if (!('documentId' in value) || value['documentId'] === undefined)
22
+ return false;
23
+ if (!('documentUrl' in value) || value['documentUrl'] === undefined)
24
+ return false;
25
+ return true;
26
+ }
27
+ exports.instanceOfDocumentUrl = instanceOfDocumentUrl;
28
+ function DocumentUrlFromJSON(json) {
29
+ return DocumentUrlFromJSONTyped(json, false);
30
+ }
31
+ exports.DocumentUrlFromJSON = DocumentUrlFromJSON;
32
+ function DocumentUrlFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'documentId': json['documentId'],
38
+ 'documentUrl': json['documentUrl'],
39
+ };
40
+ }
41
+ exports.DocumentUrlFromJSONTyped = DocumentUrlFromJSONTyped;
42
+ function DocumentUrlToJSON(json) {
43
+ return DocumentUrlToJSONTyped(json, false);
44
+ }
45
+ exports.DocumentUrlToJSON = DocumentUrlToJSON;
46
+ function DocumentUrlToJSONTyped(value, ignoreDiscriminator = false) {
47
+ if (value == null) {
48
+ return value;
49
+ }
50
+ return {
51
+ 'documentId': value['documentId'],
52
+ 'documentUrl': value['documentUrl'],
53
+ };
54
+ }
55
+ exports.DocumentUrlToJSONTyped = DocumentUrlToJSONTyped;
@@ -0,0 +1,39 @@
1
+ /**
2
+ * ManageSpace API
3
+ * ManageSpace API Documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface Document
16
+ */
17
+ export interface Document {
18
+ /**
19
+ * The ID of the document.
20
+ * @type {string}
21
+ * @memberof Document
22
+ */
23
+ documentId: string;
24
+ /**
25
+ * The URL of the document.
26
+ * @type {string}
27
+ * @memberof Document
28
+ */
29
+ documentUrl: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the Document interface.
33
+ */
34
+ export declare function instanceOfDocument(value: object): value is Document;
35
+ export declare function DocumentFromJSON(json: any): Document;
36
+ export declare function DocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Document;
37
+ export declare function DocumentToJSON(json: any): Document;
38
+ export declare function DocumentToJSONTyped(value?: Document | null, ignoreDiscriminator?: boolean): any;
39
+ //# sourceMappingURL=document.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"document.d.ts","sourceRoot":"","sources":["../../../src/generated/models/document.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,QAAQ;IACrB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,QAAQ,CAInE;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,GAAG,GAAG,QAAQ,CAEpD;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,QAAQ,CASvF;AAED,wBAAgB,cAAc,CAAC,IAAI,EAAE,GAAG,GAAG,QAAQ,CAElD;AAED,wBAAgB,mBAAmB,CAAC,KAAK,CAAC,EAAE,QAAQ,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUtG"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * ManageSpace API
6
+ * ManageSpace API Documentation
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.DocumentToJSONTyped = exports.DocumentToJSON = exports.DocumentFromJSONTyped = exports.DocumentFromJSON = exports.instanceOfDocument = void 0;
17
+ /**
18
+ * Check if a given object implements the Document interface.
19
+ */
20
+ function instanceOfDocument(value) {
21
+ if (!('documentId' in value) || value['documentId'] === undefined)
22
+ return false;
23
+ if (!('documentUrl' in value) || value['documentUrl'] === undefined)
24
+ return false;
25
+ return true;
26
+ }
27
+ exports.instanceOfDocument = instanceOfDocument;
28
+ function DocumentFromJSON(json) {
29
+ return DocumentFromJSONTyped(json, false);
30
+ }
31
+ exports.DocumentFromJSON = DocumentFromJSON;
32
+ function DocumentFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'documentId': json['documentId'],
38
+ 'documentUrl': json['documentUrl'],
39
+ };
40
+ }
41
+ exports.DocumentFromJSONTyped = DocumentFromJSONTyped;
42
+ function DocumentToJSON(json) {
43
+ return DocumentToJSONTyped(json, false);
44
+ }
45
+ exports.DocumentToJSON = DocumentToJSON;
46
+ function DocumentToJSONTyped(value, ignoreDiscriminator = false) {
47
+ if (value == null) {
48
+ return value;
49
+ }
50
+ return {
51
+ 'documentId': value['documentId'],
52
+ 'documentUrl': value['documentUrl'],
53
+ };
54
+ }
55
+ exports.DocumentToJSONTyped = DocumentToJSONTyped;
@@ -0,0 +1,41 @@
1
+ /**
2
+ * ManageSpace API
3
+ * ManageSpace API Documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { PageMeta } from './page-meta';
13
+ import type { DocumentUrl } from './document-url';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface GetDocuments200Response
18
+ */
19
+ export interface GetDocuments200Response {
20
+ /**
21
+ * The pagination metadata
22
+ * @type {PageMeta}
23
+ * @memberof GetDocuments200Response
24
+ */
25
+ pageMeta: PageMeta;
26
+ /**
27
+ *
28
+ * @type {Array<DocumentUrl>}
29
+ * @memberof GetDocuments200Response
30
+ */
31
+ results?: Array<DocumentUrl>;
32
+ }
33
+ /**
34
+ * Check if a given object implements the GetDocuments200Response interface.
35
+ */
36
+ export declare function instanceOfGetDocuments200Response(value: object): value is GetDocuments200Response;
37
+ export declare function GetDocuments200ResponseFromJSON(json: any): GetDocuments200Response;
38
+ export declare function GetDocuments200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetDocuments200Response;
39
+ export declare function GetDocuments200ResponseToJSON(json: any): GetDocuments200Response;
40
+ export declare function GetDocuments200ResponseToJSONTyped(value?: GetDocuments200Response | null, ignoreDiscriminator?: boolean): any;
41
+ //# sourceMappingURL=get-documents200-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-documents200-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/get-documents200-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAO5C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAQlD;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;CAChC;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,uBAAuB,CAGjG;AAED,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAElF;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,uBAAuB,CASrH;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAEhF;AAED,wBAAgB,kCAAkC,CAAC,KAAK,CAAC,EAAE,uBAAuB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUpI"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * ManageSpace API
6
+ * ManageSpace API Documentation
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.GetDocuments200ResponseToJSONTyped = exports.GetDocuments200ResponseToJSON = exports.GetDocuments200ResponseFromJSONTyped = exports.GetDocuments200ResponseFromJSON = exports.instanceOfGetDocuments200Response = void 0;
17
+ const page_meta_1 = require("./page-meta");
18
+ const document_url_1 = require("./document-url");
19
+ /**
20
+ * Check if a given object implements the GetDocuments200Response interface.
21
+ */
22
+ function instanceOfGetDocuments200Response(value) {
23
+ if (!('pageMeta' in value) || value['pageMeta'] === undefined)
24
+ return false;
25
+ return true;
26
+ }
27
+ exports.instanceOfGetDocuments200Response = instanceOfGetDocuments200Response;
28
+ function GetDocuments200ResponseFromJSON(json) {
29
+ return GetDocuments200ResponseFromJSONTyped(json, false);
30
+ }
31
+ exports.GetDocuments200ResponseFromJSON = GetDocuments200ResponseFromJSON;
32
+ function GetDocuments200ResponseFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'pageMeta': (0, page_meta_1.PageMetaFromJSON)(json['pageMeta']),
38
+ 'results': json['results'] == null ? undefined : (json['results'].map(document_url_1.DocumentUrlFromJSON)),
39
+ };
40
+ }
41
+ exports.GetDocuments200ResponseFromJSONTyped = GetDocuments200ResponseFromJSONTyped;
42
+ function GetDocuments200ResponseToJSON(json) {
43
+ return GetDocuments200ResponseToJSONTyped(json, false);
44
+ }
45
+ exports.GetDocuments200ResponseToJSON = GetDocuments200ResponseToJSON;
46
+ function GetDocuments200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
47
+ if (value == null) {
48
+ return value;
49
+ }
50
+ return {
51
+ 'pageMeta': (0, page_meta_1.PageMetaToJSON)(value['pageMeta']),
52
+ 'results': value['results'] == null ? undefined : (value['results'].map(document_url_1.DocumentUrlToJSON)),
53
+ };
54
+ }
55
+ exports.GetDocuments200ResponseToJSONTyped = GetDocuments200ResponseToJSONTyped;
@@ -64,6 +64,7 @@ export * from './customer';
64
64
  export * from './document-field';
65
65
  export * from './document-signed';
66
66
  export * from './document-signer';
67
+ export * from './document-url';
67
68
  export * from './execute-by';
68
69
  export * from './extensibility-function-definition';
69
70
  export * from './extensibility-function-instance';
@@ -87,6 +88,7 @@ export * from './get-communications200-response';
87
88
  export * from './get-configuration-settings200-response';
88
89
  export * from './get-contacts200-response';
89
90
  export * from './get-customers200-response';
91
+ export * from './get-documents200-response';
90
92
  export * from './get-intent';
91
93
  export * from './get-invoices200-response';
92
94
  export * from './get-notes200-response';
@@ -181,6 +183,9 @@ export * from './update-note';
181
183
  export * from './update-org';
182
184
  export * from './update-smart-bar-prompt';
183
185
  export * from './update-user-properties';
186
+ export * from './upload-document';
187
+ export * from './uploaded-document';
188
+ export * from './uploaded-documents';
184
189
  export * from './user';
185
190
  export * from './user-id';
186
191
  export * from './workflow-definition';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"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"}
@@ -82,6 +82,7 @@ __exportStar(require("./customer"), exports);
82
82
  __exportStar(require("./document-field"), exports);
83
83
  __exportStar(require("./document-signed"), exports);
84
84
  __exportStar(require("./document-signer"), exports);
85
+ __exportStar(require("./document-url"), exports);
85
86
  __exportStar(require("./execute-by"), exports);
86
87
  __exportStar(require("./extensibility-function-definition"), exports);
87
88
  __exportStar(require("./extensibility-function-instance"), exports);
@@ -105,6 +106,7 @@ __exportStar(require("./get-communications200-response"), exports);
105
106
  __exportStar(require("./get-configuration-settings200-response"), exports);
106
107
  __exportStar(require("./get-contacts200-response"), exports);
107
108
  __exportStar(require("./get-customers200-response"), exports);
109
+ __exportStar(require("./get-documents200-response"), exports);
108
110
  __exportStar(require("./get-intent"), exports);
109
111
  __exportStar(require("./get-invoices200-response"), exports);
110
112
  __exportStar(require("./get-notes200-response"), exports);
@@ -199,6 +201,9 @@ __exportStar(require("./update-note"), exports);
199
201
  __exportStar(require("./update-org"), exports);
200
202
  __exportStar(require("./update-smart-bar-prompt"), exports);
201
203
  __exportStar(require("./update-user-properties"), exports);
204
+ __exportStar(require("./upload-document"), exports);
205
+ __exportStar(require("./uploaded-document"), exports);
206
+ __exportStar(require("./uploaded-documents"), exports);
202
207
  __exportStar(require("./user"), exports);
203
208
  __exportStar(require("./user-id"), exports);
204
209
  __exportStar(require("./workflow-definition"), exports);