@managespace/sdk 0.1.19 → 0.1.21
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.
- package/dist/extensibility/functions/project/billing.d.ts +19 -1
- package/dist/extensibility/functions/project/billing.d.ts.map +1 -1
- package/dist/extensibility/functions/project/billing.js +15 -0
- package/dist/generated/apis/default-api.d.ts +44 -8
- package/dist/generated/apis/default-api.d.ts.map +1 -1
- package/dist/generated/apis/default-api.js +150 -14
- package/dist/generated/models/create-template.d.ts +2 -2
- package/dist/generated/models/create-template.d.ts.map +1 -1
- package/dist/generated/models/create-template.js +3 -3
- package/dist/generated/models/document-complete.d.ts +2 -2
- package/dist/generated/models/document-complete.d.ts.map +1 -1
- package/dist/generated/models/document-complete.js +3 -3
- package/dist/generated/models/filter-item.d.ts +9 -9
- package/dist/generated/models/filter-item.d.ts.map +1 -1
- package/dist/generated/models/filter-item.js +7 -7
- package/dist/generated/models/filter-operator.d.ts +36 -0
- package/dist/generated/models/filter-operator.d.ts.map +1 -0
- package/dist/generated/models/filter-operator.js +61 -0
- package/dist/generated/models/index.d.ts +6 -3
- package/dist/generated/models/index.d.ts.map +1 -1
- package/dist/generated/models/index.js +6 -3
- package/dist/generated/models/plugin-filter-item.d.ts +3 -3
- package/dist/generated/models/plugin-filter-item.d.ts.map +1 -1
- package/dist/generated/models/plugin-filter-item.js +3 -3
- package/dist/generated/models/plugin-filter-operator.d.ts +27 -0
- package/dist/generated/models/plugin-filter-operator.d.ts.map +1 -0
- package/dist/generated/models/plugin-filter-operator.js +52 -0
- package/package.json +1 -1
- package/src/extensibility/functions/project/billing.ts +21 -0
- package/src/generated/.openapi-generator/FILES +6 -3
- package/src/generated/apis/default-api.ts +233 -31
- package/src/generated/models/create-product-tax-group.ts +82 -0
- package/src/generated/models/create-template.ts +5 -5
- package/src/generated/models/document-complete.ts +5 -5
- package/src/generated/models/filter-item.ts +19 -19
- package/src/generated/models/filter-operator.ts +63 -0
- package/src/generated/models/get-product-tax-groups200-response.ts +89 -0
- package/src/generated/models/index.ts +6 -3
- package/src/generated/models/notstarted.ts +55 -0
- package/src/generated/models/plugin-filter-item.ts +10 -10
- package/src/generated/models/plugin-filter-operator.ts +54 -0
- package/src/generated/models/product-tax-group.ts +109 -0
- package/src/generated/models/comparison-operator.ts +0 -63
- package/src/generated/models/get-subscriptions-post200-response.ts +0 -89
|
@@ -67,7 +67,7 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
67
67
|
headers: headerParameters,
|
|
68
68
|
query: queryParameters,
|
|
69
69
|
}, initOverrides);
|
|
70
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.
|
|
70
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.GetSubscriptions200ResponseFromJSON)(jsonValue));
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
73
|
*/
|
|
@@ -952,6 +952,37 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
952
952
|
const response = await this.createProductRaw(requestParameters, initOverrides);
|
|
953
953
|
return await response.value();
|
|
954
954
|
}
|
|
955
|
+
/**
|
|
956
|
+
*/
|
|
957
|
+
async createProductTaxGroupRaw(requestParameters, initOverrides) {
|
|
958
|
+
if (requestParameters['createProductTaxGroup'] == null) {
|
|
959
|
+
throw new runtime.RequiredError('createProductTaxGroup', 'Required parameter "createProductTaxGroup" was null or undefined when calling createProductTaxGroup().');
|
|
960
|
+
}
|
|
961
|
+
const queryParameters = {};
|
|
962
|
+
const headerParameters = {};
|
|
963
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
964
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
965
|
+
const token = this.configuration.accessToken;
|
|
966
|
+
const tokenString = await token("bearer", []);
|
|
967
|
+
if (tokenString) {
|
|
968
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
969
|
+
}
|
|
970
|
+
}
|
|
971
|
+
const response = await this.request({
|
|
972
|
+
path: `/api/billing/product-tax-groups`,
|
|
973
|
+
method: 'POST',
|
|
974
|
+
headers: headerParameters,
|
|
975
|
+
query: queryParameters,
|
|
976
|
+
body: (0, index_1.CreateProductTaxGroupToJSON)(requestParameters['createProductTaxGroup']),
|
|
977
|
+
}, initOverrides);
|
|
978
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ProductTaxGroupFromJSON)(jsonValue));
|
|
979
|
+
}
|
|
980
|
+
/**
|
|
981
|
+
*/
|
|
982
|
+
async createProductTaxGroup(requestParameters, initOverrides) {
|
|
983
|
+
const response = await this.createProductTaxGroupRaw(requestParameters, initOverrides);
|
|
984
|
+
return await response.value();
|
|
985
|
+
}
|
|
955
986
|
/**
|
|
956
987
|
*/
|
|
957
988
|
async createRevenueRuleRaw(requestParameters, initOverrides) {
|
|
@@ -2556,6 +2587,9 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
2556
2587
|
if (requestParameters['externalCustomerId'] != null) {
|
|
2557
2588
|
queryParameters['externalCustomerId'] = requestParameters['externalCustomerId'];
|
|
2558
2589
|
}
|
|
2590
|
+
if (requestParameters['billingRunId'] != null) {
|
|
2591
|
+
queryParameters['billingRunId'] = requestParameters['billingRunId'];
|
|
2592
|
+
}
|
|
2559
2593
|
const headerParameters = {};
|
|
2560
2594
|
if (this.configuration && this.configuration.accessToken) {
|
|
2561
2595
|
const token = this.configuration.accessToken;
|
|
@@ -2999,6 +3033,9 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
2999
3033
|
if (requestParameters['sort'] != null) {
|
|
3000
3034
|
queryParameters['sort'] = requestParameters['sort'];
|
|
3001
3035
|
}
|
|
3036
|
+
if (requestParameters['paymentRunId'] != null) {
|
|
3037
|
+
queryParameters['paymentRunId'] = requestParameters['paymentRunId'];
|
|
3038
|
+
}
|
|
3002
3039
|
const headerParameters = {};
|
|
3003
3040
|
if (this.configuration && this.configuration.accessToken) {
|
|
3004
3041
|
const token = this.configuration.accessToken;
|
|
@@ -3170,6 +3207,70 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
3170
3207
|
const response = await this.getProductRaw(requestParameters, initOverrides);
|
|
3171
3208
|
return await response.value();
|
|
3172
3209
|
}
|
|
3210
|
+
/**
|
|
3211
|
+
*/
|
|
3212
|
+
async getProductTaxGroupRaw(requestParameters, initOverrides) {
|
|
3213
|
+
if (requestParameters['productTaxGroupId'] == null) {
|
|
3214
|
+
throw new runtime.RequiredError('productTaxGroupId', 'Required parameter "productTaxGroupId" was null or undefined when calling getProductTaxGroup().');
|
|
3215
|
+
}
|
|
3216
|
+
const queryParameters = {};
|
|
3217
|
+
const headerParameters = {};
|
|
3218
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
3219
|
+
const token = this.configuration.accessToken;
|
|
3220
|
+
const tokenString = await token("bearer", []);
|
|
3221
|
+
if (tokenString) {
|
|
3222
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
3225
|
+
const response = await this.request({
|
|
3226
|
+
path: `/api/billing/product-tax-groups/{productTaxGroupId}`.replace(`{${"productTaxGroupId"}}`, encodeURIComponent(String(requestParameters['productTaxGroupId']))),
|
|
3227
|
+
method: 'GET',
|
|
3228
|
+
headers: headerParameters,
|
|
3229
|
+
query: queryParameters,
|
|
3230
|
+
}, initOverrides);
|
|
3231
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ProductTaxGroupFromJSON)(jsonValue));
|
|
3232
|
+
}
|
|
3233
|
+
/**
|
|
3234
|
+
*/
|
|
3235
|
+
async getProductTaxGroup(requestParameters, initOverrides) {
|
|
3236
|
+
const response = await this.getProductTaxGroupRaw(requestParameters, initOverrides);
|
|
3237
|
+
return await response.value();
|
|
3238
|
+
}
|
|
3239
|
+
/**
|
|
3240
|
+
*/
|
|
3241
|
+
async getProductTaxGroupsRaw(requestParameters, initOverrides) {
|
|
3242
|
+
const queryParameters = {};
|
|
3243
|
+
if (requestParameters['offset'] != null) {
|
|
3244
|
+
queryParameters['offset'] = requestParameters['offset'];
|
|
3245
|
+
}
|
|
3246
|
+
if (requestParameters['limit'] != null) {
|
|
3247
|
+
queryParameters['limit'] = requestParameters['limit'];
|
|
3248
|
+
}
|
|
3249
|
+
if (requestParameters['status'] != null) {
|
|
3250
|
+
queryParameters['status'] = requestParameters['status'];
|
|
3251
|
+
}
|
|
3252
|
+
const headerParameters = {};
|
|
3253
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
3254
|
+
const token = this.configuration.accessToken;
|
|
3255
|
+
const tokenString = await token("bearer", []);
|
|
3256
|
+
if (tokenString) {
|
|
3257
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
3258
|
+
}
|
|
3259
|
+
}
|
|
3260
|
+
const response = await this.request({
|
|
3261
|
+
path: `/api/billing/product-tax-groups`,
|
|
3262
|
+
method: 'GET',
|
|
3263
|
+
headers: headerParameters,
|
|
3264
|
+
query: queryParameters,
|
|
3265
|
+
}, initOverrides);
|
|
3266
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.GetProductTaxGroups200ResponseFromJSON)(jsonValue));
|
|
3267
|
+
}
|
|
3268
|
+
/**
|
|
3269
|
+
*/
|
|
3270
|
+
async getProductTaxGroups(requestParameters = {}, initOverrides) {
|
|
3271
|
+
const response = await this.getProductTaxGroupsRaw(requestParameters, initOverrides);
|
|
3272
|
+
return await response.value();
|
|
3273
|
+
}
|
|
3173
3274
|
/**
|
|
3174
3275
|
*/
|
|
3175
3276
|
async getProductsRaw(requestParameters, initOverrides) {
|
|
@@ -3512,12 +3613,9 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
3512
3613
|
}
|
|
3513
3614
|
/**
|
|
3514
3615
|
*/
|
|
3515
|
-
async
|
|
3516
|
-
if (requestParameters['siteId'] == null) {
|
|
3517
|
-
throw new runtime.RequiredError('siteId', 'Required parameter "siteId" was null or undefined when calling getSubscriptionsPost().');
|
|
3518
|
-
}
|
|
3616
|
+
async getSubscriptionsRaw(requestParameters, initOverrides) {
|
|
3519
3617
|
if (requestParameters['getSubscriptionsQuery'] == null) {
|
|
3520
|
-
throw new runtime.RequiredError('getSubscriptionsQuery', 'Required parameter "getSubscriptionsQuery" was null or undefined when calling
|
|
3618
|
+
throw new runtime.RequiredError('getSubscriptionsQuery', 'Required parameter "getSubscriptionsQuery" was null or undefined when calling getSubscriptions().');
|
|
3521
3619
|
}
|
|
3522
3620
|
const queryParameters = {};
|
|
3523
3621
|
const headerParameters = {};
|
|
@@ -3530,18 +3628,18 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
3530
3628
|
}
|
|
3531
3629
|
}
|
|
3532
3630
|
const response = await this.request({
|
|
3533
|
-
path: `/api/
|
|
3631
|
+
path: `/api/billing/subscriptions/queries`,
|
|
3534
3632
|
method: 'POST',
|
|
3535
3633
|
headers: headerParameters,
|
|
3536
3634
|
query: queryParameters,
|
|
3537
3635
|
body: (0, index_1.GetSubscriptionsQueryToJSON)(requestParameters['getSubscriptionsQuery']),
|
|
3538
3636
|
}, initOverrides);
|
|
3539
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.
|
|
3637
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.GetSubscriptions200ResponseFromJSON)(jsonValue));
|
|
3540
3638
|
}
|
|
3541
3639
|
/**
|
|
3542
3640
|
*/
|
|
3543
|
-
async
|
|
3544
|
-
const response = await this.
|
|
3641
|
+
async getSubscriptions(requestParameters, initOverrides) {
|
|
3642
|
+
const response = await this.getSubscriptionsRaw(requestParameters, initOverrides);
|
|
3545
3643
|
return await response.value();
|
|
3546
3644
|
}
|
|
3547
3645
|
/**
|
|
@@ -5030,12 +5128,14 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
5030
5128
|
/**
|
|
5031
5129
|
*/
|
|
5032
5130
|
async uploadDocumentRaw(requestParameters, initOverrides) {
|
|
5033
|
-
if (requestParameters['
|
|
5034
|
-
throw new runtime.RequiredError('
|
|
5131
|
+
if (requestParameters['externalId'] == null) {
|
|
5132
|
+
throw new runtime.RequiredError('externalId', 'Required parameter "externalId" was null or undefined when calling uploadDocument().');
|
|
5133
|
+
}
|
|
5134
|
+
if (requestParameters['file'] == null) {
|
|
5135
|
+
throw new runtime.RequiredError('file', 'Required parameter "file" was null or undefined when calling uploadDocument().');
|
|
5035
5136
|
}
|
|
5036
5137
|
const queryParameters = {};
|
|
5037
5138
|
const headerParameters = {};
|
|
5038
|
-
headerParameters['Content-Type'] = 'application/json';
|
|
5039
5139
|
if (this.configuration && this.configuration.accessToken) {
|
|
5040
5140
|
const token = this.configuration.accessToken;
|
|
5041
5141
|
const tokenString = await token("bearer", []);
|
|
@@ -5043,12 +5143,48 @@ class DefaultApi extends runtime.BaseAPI {
|
|
|
5043
5143
|
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
5044
5144
|
}
|
|
5045
5145
|
}
|
|
5146
|
+
const consumes = [
|
|
5147
|
+
{ contentType: 'multipart/form-data' },
|
|
5148
|
+
];
|
|
5149
|
+
// @ts-ignore: canConsumeForm may be unused
|
|
5150
|
+
const canConsumeForm = runtime.canConsumeForm(consumes);
|
|
5151
|
+
let formParams;
|
|
5152
|
+
let useForm = false;
|
|
5153
|
+
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5154
|
+
useForm = canConsumeForm;
|
|
5155
|
+
if (useForm) {
|
|
5156
|
+
formParams = new FormData();
|
|
5157
|
+
}
|
|
5158
|
+
else {
|
|
5159
|
+
formParams = new URLSearchParams();
|
|
5160
|
+
}
|
|
5161
|
+
if (requestParameters['externalId'] != null) {
|
|
5162
|
+
formParams.append('externalId', requestParameters['externalId']);
|
|
5163
|
+
}
|
|
5164
|
+
if (requestParameters['siteId'] != null) {
|
|
5165
|
+
formParams.append('siteId', requestParameters['siteId']);
|
|
5166
|
+
}
|
|
5167
|
+
if (requestParameters['customerId'] != null) {
|
|
5168
|
+
formParams.append('customerId', requestParameters['customerId']);
|
|
5169
|
+
}
|
|
5170
|
+
if (requestParameters['contactId'] != null) {
|
|
5171
|
+
formParams.append('contactId', requestParameters['contactId']);
|
|
5172
|
+
}
|
|
5173
|
+
if (requestParameters['userId'] != null) {
|
|
5174
|
+
formParams.append('userId', requestParameters['userId']);
|
|
5175
|
+
}
|
|
5176
|
+
if (requestParameters['file'] != null) {
|
|
5177
|
+
formParams.append('file', requestParameters['file']);
|
|
5178
|
+
}
|
|
5179
|
+
if (requestParameters['metadata'] != null) {
|
|
5180
|
+
formParams.append('metadata', requestParameters['metadata']);
|
|
5181
|
+
}
|
|
5046
5182
|
const response = await this.request({
|
|
5047
5183
|
path: `/api/object-store/documents`,
|
|
5048
5184
|
method: 'POST',
|
|
5049
5185
|
headers: headerParameters,
|
|
5050
5186
|
query: queryParameters,
|
|
5051
|
-
body:
|
|
5187
|
+
body: formParams,
|
|
5052
5188
|
}, initOverrides);
|
|
5053
5189
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.UploadedDocumentFromJSON)(jsonValue));
|
|
5054
5190
|
}
|
|
@@ -18,11 +18,11 @@ import type { TemplateSigner } from './template-signer';
|
|
|
18
18
|
*/
|
|
19
19
|
export interface CreateTemplate {
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Downloadable URL of the template.
|
|
22
22
|
* @type {string}
|
|
23
23
|
* @memberof CreateTemplate
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
fileUrl: string;
|
|
26
26
|
/**
|
|
27
27
|
* Name of your template.
|
|
28
28
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-template.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-template.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAOtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAQxD;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"create-template.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-template.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAOtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAQxD;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;IAChC;;;;OAIG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;CACjC;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,7 +20,7 @@ const template_signer_1 = require("./template-signer");
|
|
|
20
20
|
* Check if a given object implements the CreateTemplate interface.
|
|
21
21
|
*/
|
|
22
22
|
function instanceOfCreateTemplate(value) {
|
|
23
|
-
if (!('
|
|
23
|
+
if (!('fileUrl' in value) || value['fileUrl'] === undefined)
|
|
24
24
|
return false;
|
|
25
25
|
if (!('name' in value) || value['name'] === undefined)
|
|
26
26
|
return false;
|
|
@@ -36,7 +36,7 @@ function CreateTemplateFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
return json;
|
|
37
37
|
}
|
|
38
38
|
return {
|
|
39
|
-
'
|
|
39
|
+
'fileUrl': json['fileUrl'],
|
|
40
40
|
'name': json['name'],
|
|
41
41
|
'signers': json['signers'] == null ? undefined : (json['signers'].map(template_signer_1.TemplateSignerFromJSON)),
|
|
42
42
|
'fields': json['fields'] == null ? undefined : (json['fields'].map(template_field_1.TemplateFieldFromJSON)),
|
|
@@ -52,7 +52,7 @@ function CreateTemplateToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
52
52
|
return value;
|
|
53
53
|
}
|
|
54
54
|
return {
|
|
55
|
-
'
|
|
55
|
+
'fileUrl': value['fileUrl'],
|
|
56
56
|
'name': value['name'],
|
|
57
57
|
'signers': value['signers'] == null ? undefined : (value['signers'].map(template_signer_1.TemplateSignerToJSON)),
|
|
58
58
|
'fields': value['fields'] == null ? undefined : (value['fields'].map(template_field_1.TemplateFieldToJSON)),
|
|
@@ -52,11 +52,11 @@ export interface DocumentComplete {
|
|
|
52
52
|
*/
|
|
53
53
|
allSignaturesGathered: boolean;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Downloadable URL of the document.
|
|
56
56
|
* @type {string}
|
|
57
57
|
* @memberof DocumentComplete
|
|
58
58
|
*/
|
|
59
|
-
|
|
59
|
+
fileUrl: string;
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
62
|
* Check if a given object implements the DocumentComplete interface.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document-complete.d.ts","sourceRoot":"","sources":["../../../src/generated/models/document-complete.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;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":"AAEA;;;;;;;;;;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,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,CAcvG;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,CAetH"}
|
|
@@ -20,7 +20,7 @@ exports.DocumentCompleteToJSONTyped = exports.DocumentCompleteToJSON = exports.D
|
|
|
20
20
|
function instanceOfDocumentComplete(value) {
|
|
21
21
|
if (!('allSignaturesGathered' in value) || value['allSignaturesGathered'] === undefined)
|
|
22
22
|
return false;
|
|
23
|
-
if (!('
|
|
23
|
+
if (!('fileUrl' in value) || value['fileUrl'] === undefined)
|
|
24
24
|
return false;
|
|
25
25
|
return true;
|
|
26
26
|
}
|
|
@@ -40,7 +40,7 @@ function DocumentCompleteFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
40
|
'contactId': json['contactId'] == null ? undefined : json['contactId'],
|
|
41
41
|
'userId': json['userId'] == null ? undefined : json['userId'],
|
|
42
42
|
'allSignaturesGathered': json['allSignaturesGathered'],
|
|
43
|
-
'
|
|
43
|
+
'fileUrl': json['fileUrl'],
|
|
44
44
|
};
|
|
45
45
|
}
|
|
46
46
|
exports.DocumentCompleteFromJSONTyped = DocumentCompleteFromJSONTyped;
|
|
@@ -59,7 +59,7 @@ function DocumentCompleteToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
59
59
|
'contactId': value['contactId'],
|
|
60
60
|
'userId': value['userId'],
|
|
61
61
|
'allSignaturesGathered': value['allSignaturesGathered'],
|
|
62
|
-
'
|
|
62
|
+
'fileUrl': value['fileUrl'],
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
65
|
exports.DocumentCompleteToJSONTyped = DocumentCompleteToJSONTyped;
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { FilterItemValue } from './filter-item-value';
|
|
13
|
-
import type {
|
|
13
|
+
import type { FilterOperator } from './filter-operator';
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
* @export
|
|
@@ -18,23 +18,23 @@ import type { ComparisonOperator } from './comparison-operator';
|
|
|
18
18
|
*/
|
|
19
19
|
export interface FilterItem {
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {
|
|
21
|
+
* Field to filter by
|
|
22
|
+
* @type {string}
|
|
23
23
|
* @memberof FilterItem
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
field: string;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {FilterOperator}
|
|
29
29
|
* @memberof FilterItem
|
|
30
30
|
*/
|
|
31
|
-
|
|
31
|
+
operator: FilterOperator;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {
|
|
33
|
+
*
|
|
34
|
+
* @type {FilterItemValue}
|
|
35
35
|
* @memberof FilterItem
|
|
36
36
|
*/
|
|
37
|
-
|
|
37
|
+
value: FilterItemValue;
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
40
40
|
* Check if a given object implements the FilterItem interface.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filter-item.d.ts","sourceRoot":"","sources":["../../../src/generated/models/filter-item.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAO3D,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"filter-item.d.ts","sourceRoot":"","sources":["../../../src/generated/models/filter-item.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAO3D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAQxD;;;;GAIG;AACH,MAAM,WAAW,UAAU;IACvB;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,QAAQ,EAAE,cAAc,CAAC;IACzB;;;;OAIG;IACH,KAAK,EAAE,eAAe,CAAC;CAC1B;AAID;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,UAAU,CAKvE;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,GAAG,GAAG,UAAU,CAExD;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,UAAU,CAU3F;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,GAAG,GAAG,UAAU,CAEtD;AAED,wBAAgB,qBAAqB,CAAC,KAAK,CAAC,EAAE,UAAU,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAW1G"}
|
|
@@ -15,17 +15,17 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.FilterItemToJSONTyped = exports.FilterItemToJSON = exports.FilterItemFromJSONTyped = exports.FilterItemFromJSON = exports.instanceOfFilterItem = void 0;
|
|
17
17
|
const filter_item_value_1 = require("./filter-item-value");
|
|
18
|
-
const
|
|
18
|
+
const filter_operator_1 = require("./filter-operator");
|
|
19
19
|
/**
|
|
20
20
|
* Check if a given object implements the FilterItem interface.
|
|
21
21
|
*/
|
|
22
22
|
function instanceOfFilterItem(value) {
|
|
23
|
+
if (!('field' in value) || value['field'] === undefined)
|
|
24
|
+
return false;
|
|
23
25
|
if (!('operator' in value) || value['operator'] === undefined)
|
|
24
26
|
return false;
|
|
25
27
|
if (!('value' in value) || value['value'] === undefined)
|
|
26
28
|
return false;
|
|
27
|
-
if (!('field' in value) || value['field'] === undefined)
|
|
28
|
-
return false;
|
|
29
29
|
return true;
|
|
30
30
|
}
|
|
31
31
|
exports.instanceOfFilterItem = instanceOfFilterItem;
|
|
@@ -38,9 +38,9 @@ function FilterItemFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
38
|
return json;
|
|
39
39
|
}
|
|
40
40
|
return {
|
|
41
|
-
'operator': (0, comparison_operator_1.ComparisonOperatorFromJSON)(json['operator']),
|
|
42
|
-
'value': (0, filter_item_value_1.FilterItemValueFromJSON)(json['value']),
|
|
43
41
|
'field': json['field'],
|
|
42
|
+
'operator': (0, filter_operator_1.FilterOperatorFromJSON)(json['operator']),
|
|
43
|
+
'value': (0, filter_item_value_1.FilterItemValueFromJSON)(json['value']),
|
|
44
44
|
};
|
|
45
45
|
}
|
|
46
46
|
exports.FilterItemFromJSONTyped = FilterItemFromJSONTyped;
|
|
@@ -53,9 +53,9 @@ function FilterItemToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
53
53
|
return value;
|
|
54
54
|
}
|
|
55
55
|
return {
|
|
56
|
-
'operator': (0, comparison_operator_1.ComparisonOperatorToJSON)(value['operator']),
|
|
57
|
-
'value': (0, filter_item_value_1.FilterItemValueToJSON)(value['value']),
|
|
58
56
|
'field': value['field'],
|
|
57
|
+
'operator': (0, filter_operator_1.FilterOperatorToJSON)(value['operator']),
|
|
58
|
+
'value': (0, filter_item_value_1.FilterItemValueToJSON)(value['value']),
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
61
|
exports.FilterItemToJSONTyped = FilterItemToJSONTyped;
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
* The operator to use when filtering
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export declare const FilterOperator: {
|
|
17
|
+
readonly Contains: "contains";
|
|
18
|
+
readonly EndsWith: "endsWith";
|
|
19
|
+
readonly Equals: "equals";
|
|
20
|
+
readonly Gt: "gt";
|
|
21
|
+
readonly Gte: "gte";
|
|
22
|
+
readonly In: "in";
|
|
23
|
+
readonly Lt: "lt";
|
|
24
|
+
readonly Lte: "lte";
|
|
25
|
+
readonly Not: "not";
|
|
26
|
+
readonly NotIn: "notIn";
|
|
27
|
+
readonly Search: "search";
|
|
28
|
+
readonly StartsWith: "startsWith";
|
|
29
|
+
};
|
|
30
|
+
export type FilterOperator = typeof FilterOperator[keyof typeof FilterOperator];
|
|
31
|
+
export declare function instanceOfFilterOperator(value: any): boolean;
|
|
32
|
+
export declare function FilterOperatorFromJSON(json: any): FilterOperator;
|
|
33
|
+
export declare function FilterOperatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilterOperator;
|
|
34
|
+
export declare function FilterOperatorToJSON(value?: FilterOperator | null): any;
|
|
35
|
+
export declare function FilterOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): FilterOperator;
|
|
36
|
+
//# sourceMappingURL=filter-operator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-operator.d.ts","sourceRoot":"","sources":["../../../src/generated/models/filter-operator.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;GAGG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;CAajB,CAAC;AACX,MAAM,MAAM,cAAc,GAAG,OAAO,cAAc,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAGhF,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO,CAS5D;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,GAAG,cAAc,CAEhE;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,cAAc,CAEnG;AAED,wBAAgB,oBAAoB,CAAC,KAAK,CAAC,EAAE,cAAc,GAAG,IAAI,GAAG,GAAG,CAEvE;AAED,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,cAAc,CAElG"}
|
|
@@ -0,0 +1,61 @@
|
|
|
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.FilterOperatorToJSONTyped = exports.FilterOperatorToJSON = exports.FilterOperatorFromJSONTyped = exports.FilterOperatorFromJSON = exports.instanceOfFilterOperator = exports.FilterOperator = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* The operator to use when filtering
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
exports.FilterOperator = {
|
|
22
|
+
Contains: 'contains',
|
|
23
|
+
EndsWith: 'endsWith',
|
|
24
|
+
Equals: 'equals',
|
|
25
|
+
Gt: 'gt',
|
|
26
|
+
Gte: 'gte',
|
|
27
|
+
In: 'in',
|
|
28
|
+
Lt: 'lt',
|
|
29
|
+
Lte: 'lte',
|
|
30
|
+
Not: 'not',
|
|
31
|
+
NotIn: 'notIn',
|
|
32
|
+
Search: 'search',
|
|
33
|
+
StartsWith: 'startsWith'
|
|
34
|
+
};
|
|
35
|
+
function instanceOfFilterOperator(value) {
|
|
36
|
+
for (const key in exports.FilterOperator) {
|
|
37
|
+
if (Object.prototype.hasOwnProperty.call(exports.FilterOperator, key)) {
|
|
38
|
+
if (exports.FilterOperator[key] === value) {
|
|
39
|
+
return true;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
return false;
|
|
44
|
+
}
|
|
45
|
+
exports.instanceOfFilterOperator = instanceOfFilterOperator;
|
|
46
|
+
function FilterOperatorFromJSON(json) {
|
|
47
|
+
return FilterOperatorFromJSONTyped(json, false);
|
|
48
|
+
}
|
|
49
|
+
exports.FilterOperatorFromJSON = FilterOperatorFromJSON;
|
|
50
|
+
function FilterOperatorFromJSONTyped(json, ignoreDiscriminator) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
exports.FilterOperatorFromJSONTyped = FilterOperatorFromJSONTyped;
|
|
54
|
+
function FilterOperatorToJSON(value) {
|
|
55
|
+
return value;
|
|
56
|
+
}
|
|
57
|
+
exports.FilterOperatorToJSON = FilterOperatorToJSON;
|
|
58
|
+
function FilterOperatorToJSONTyped(value, ignoreDiscriminator) {
|
|
59
|
+
return value;
|
|
60
|
+
}
|
|
61
|
+
exports.FilterOperatorToJSONTyped = FilterOperatorToJSONTyped;
|
|
@@ -18,7 +18,6 @@ export * from './checklist';
|
|
|
18
18
|
export * from './checklist-recurrence-frequency';
|
|
19
19
|
export * from './communication';
|
|
20
20
|
export * from './communication-type';
|
|
21
|
-
export * from './comparison-operator';
|
|
22
21
|
export * from './configuration-setting';
|
|
23
22
|
export * from './configuration-setting-type';
|
|
24
23
|
export * from './contact';
|
|
@@ -48,6 +47,7 @@ export * from './create-payment-refund';
|
|
|
48
47
|
export * from './create-payment-run';
|
|
49
48
|
export * from './create-plan-charge';
|
|
50
49
|
export * from './create-product-custom';
|
|
50
|
+
export * from './create-product-tax-group';
|
|
51
51
|
export * from './create-revenue-rule';
|
|
52
52
|
export * from './create-site-custom';
|
|
53
53
|
export * from './create-smart-bar-prompt';
|
|
@@ -81,6 +81,7 @@ export * from './field-type';
|
|
|
81
81
|
export * from './file-uploaded';
|
|
82
82
|
export * from './filter-item';
|
|
83
83
|
export * from './filter-item-value';
|
|
84
|
+
export * from './filter-operator';
|
|
84
85
|
export * from './get-asset-categories200-response';
|
|
85
86
|
export * from './get-asset-classes200-response';
|
|
86
87
|
export * from './get-asset-features200-response';
|
|
@@ -106,11 +107,12 @@ export * from './get-payment-runs200-response';
|
|
|
106
107
|
export * from './get-payments200-response';
|
|
107
108
|
export * from './get-plans200-response';
|
|
108
109
|
export * from './get-plugins200-response';
|
|
110
|
+
export * from './get-product-tax-groups200-response';
|
|
109
111
|
export * from './get-products200-response';
|
|
110
112
|
export * from './get-revenue-rules200-response';
|
|
111
113
|
export * from './get-sites200-response';
|
|
112
114
|
export * from './get-statements200-response';
|
|
113
|
-
export * from './get-
|
|
115
|
+
export * from './get-subscriptions200-response';
|
|
114
116
|
export * from './get-subscriptions-query';
|
|
115
117
|
export * from './get-task-definitions200-response';
|
|
116
118
|
export * from './get-task-instances200-response';
|
|
@@ -149,8 +151,10 @@ export * from './plugin-extensibility-function-instance';
|
|
|
149
151
|
export * from './plugin-extensibility-function-metadata';
|
|
150
152
|
export * from './plugin-extensibility-status';
|
|
151
153
|
export * from './plugin-filter-item';
|
|
154
|
+
export * from './plugin-filter-operator';
|
|
152
155
|
export * from './plugin-version';
|
|
153
156
|
export * from './product-custom';
|
|
157
|
+
export * from './product-tax-group';
|
|
154
158
|
export * from './project';
|
|
155
159
|
export * from './project1';
|
|
156
160
|
export * from './project2';
|
|
@@ -209,7 +213,6 @@ export * from './update-subscription-charge';
|
|
|
209
213
|
export * from './update-task-instance';
|
|
210
214
|
export * from './update-user-properties';
|
|
211
215
|
export * from './update-workflow-instance-description';
|
|
212
|
-
export * from './upload-document';
|
|
213
216
|
export * from './uploaded-document';
|
|
214
217
|
export * from './user';
|
|
215
218
|
export * from './user-id';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"AAEA,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,aAAa,CAAC;AAC5B,cAAc,kCAAkC,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"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"}
|