@managespace/sdk 0.1.20 → 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/index.d.ts +4 -2
- package/dist/generated/models/index.d.ts.map +1 -1
- package/dist/generated/models/index.js +4 -2
- package/package.json +1 -1
- package/src/extensibility/functions/project/billing.ts +21 -0
- package/src/generated/.openapi-generator/FILES +4 -2
- 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/get-product-tax-groups200-response.ts +89 -0
- package/src/generated/models/index.ts +4 -2
- package/src/generated/models/notstarted.ts +55 -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;
|
|
@@ -47,6 +47,7 @@ export * from './create-payment-refund';
|
|
|
47
47
|
export * from './create-payment-run';
|
|
48
48
|
export * from './create-plan-charge';
|
|
49
49
|
export * from './create-product-custom';
|
|
50
|
+
export * from './create-product-tax-group';
|
|
50
51
|
export * from './create-revenue-rule';
|
|
51
52
|
export * from './create-site-custom';
|
|
52
53
|
export * from './create-smart-bar-prompt';
|
|
@@ -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';
|
|
@@ -152,6 +154,7 @@ export * from './plugin-filter-item';
|
|
|
152
154
|
export * from './plugin-filter-operator';
|
|
153
155
|
export * from './plugin-version';
|
|
154
156
|
export * from './product-custom';
|
|
157
|
+
export * from './product-tax-group';
|
|
155
158
|
export * from './project';
|
|
156
159
|
export * from './project1';
|
|
157
160
|
export * from './project2';
|
|
@@ -210,7 +213,6 @@ export * from './update-subscription-charge';
|
|
|
210
213
|
export * from './update-task-instance';
|
|
211
214
|
export * from './update-user-properties';
|
|
212
215
|
export * from './update-workflow-instance-description';
|
|
213
|
-
export * from './upload-document';
|
|
214
216
|
export * from './uploaded-document';
|
|
215
217
|
export * from './user';
|
|
216
218
|
export * from './user-id';
|
|
@@ -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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"}
|
|
@@ -65,6 +65,7 @@ __exportStar(require("./create-payment-refund"), exports);
|
|
|
65
65
|
__exportStar(require("./create-payment-run"), exports);
|
|
66
66
|
__exportStar(require("./create-plan-charge"), exports);
|
|
67
67
|
__exportStar(require("./create-product-custom"), exports);
|
|
68
|
+
__exportStar(require("./create-product-tax-group"), exports);
|
|
68
69
|
__exportStar(require("./create-revenue-rule"), exports);
|
|
69
70
|
__exportStar(require("./create-site-custom"), exports);
|
|
70
71
|
__exportStar(require("./create-smart-bar-prompt"), exports);
|
|
@@ -124,11 +125,12 @@ __exportStar(require("./get-payment-runs200-response"), exports);
|
|
|
124
125
|
__exportStar(require("./get-payments200-response"), exports);
|
|
125
126
|
__exportStar(require("./get-plans200-response"), exports);
|
|
126
127
|
__exportStar(require("./get-plugins200-response"), exports);
|
|
128
|
+
__exportStar(require("./get-product-tax-groups200-response"), exports);
|
|
127
129
|
__exportStar(require("./get-products200-response"), exports);
|
|
128
130
|
__exportStar(require("./get-revenue-rules200-response"), exports);
|
|
129
131
|
__exportStar(require("./get-sites200-response"), exports);
|
|
130
132
|
__exportStar(require("./get-statements200-response"), exports);
|
|
131
|
-
__exportStar(require("./get-
|
|
133
|
+
__exportStar(require("./get-subscriptions200-response"), exports);
|
|
132
134
|
__exportStar(require("./get-subscriptions-query"), exports);
|
|
133
135
|
__exportStar(require("./get-task-definitions200-response"), exports);
|
|
134
136
|
__exportStar(require("./get-task-instances200-response"), exports);
|
|
@@ -170,6 +172,7 @@ __exportStar(require("./plugin-filter-item"), exports);
|
|
|
170
172
|
__exportStar(require("./plugin-filter-operator"), exports);
|
|
171
173
|
__exportStar(require("./plugin-version"), exports);
|
|
172
174
|
__exportStar(require("./product-custom"), exports);
|
|
175
|
+
__exportStar(require("./product-tax-group"), exports);
|
|
173
176
|
__exportStar(require("./project"), exports);
|
|
174
177
|
__exportStar(require("./project1"), exports);
|
|
175
178
|
__exportStar(require("./project2"), exports);
|
|
@@ -228,7 +231,6 @@ __exportStar(require("./update-subscription-charge"), exports);
|
|
|
228
231
|
__exportStar(require("./update-task-instance"), exports);
|
|
229
232
|
__exportStar(require("./update-user-properties"), exports);
|
|
230
233
|
__exportStar(require("./update-workflow-instance-description"), exports);
|
|
231
|
-
__exportStar(require("./upload-document"), exports);
|
|
232
234
|
__exportStar(require("./uploaded-document"), exports);
|
|
233
235
|
__exportStar(require("./user"), exports);
|
|
234
236
|
__exportStar(require("./user-id"), exports);
|
package/package.json
CHANGED
|
@@ -32,6 +32,8 @@ import {
|
|
|
32
32
|
UpdatePlan as _UpdatePlan,
|
|
33
33
|
PaymentMethod,
|
|
34
34
|
CreatePaymentMethod as _CreatePaymentMethod,
|
|
35
|
+
ProductTaxGroup,
|
|
36
|
+
CreateProductTaxGroup as _CreateProductTaxGroup,
|
|
35
37
|
} from '../../../generated';
|
|
36
38
|
import { CustomCreateContact } from '../../../generated/models/custom-create-contact';
|
|
37
39
|
import { CustomUpdateCustomer } from '../../../generated/models/custom-update-customer';
|
|
@@ -138,6 +140,7 @@ export namespace Billing {
|
|
|
138
140
|
payload!: BasePaginationQuery & {
|
|
139
141
|
status?: string;
|
|
140
142
|
externalCustomerId?: string;
|
|
143
|
+
billingRunId?: string;
|
|
141
144
|
};
|
|
142
145
|
}
|
|
143
146
|
|
|
@@ -164,6 +167,7 @@ export namespace Billing {
|
|
|
164
167
|
status?: string;
|
|
165
168
|
customerId?: string;
|
|
166
169
|
sort?: string;
|
|
170
|
+
paymentRunId?: string;
|
|
167
171
|
};
|
|
168
172
|
}
|
|
169
173
|
|
|
@@ -350,4 +354,21 @@ export namespace Billing {
|
|
|
350
354
|
responseType!: PaymentMethod;
|
|
351
355
|
payload!: { customerId: string; paymentMethodId: string };
|
|
352
356
|
}
|
|
357
|
+
|
|
358
|
+
export class CreateProductTaxGroup implements ExtPlugin {
|
|
359
|
+
responseType!: ProductTaxGroup;
|
|
360
|
+
payload!: _CreateProductTaxGroup;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export class GetProductTaxGroup implements ExtPlugin {
|
|
364
|
+
responseType!: ProductTaxGroup;
|
|
365
|
+
payload!: {
|
|
366
|
+
productTaxGroupId: string;
|
|
367
|
+
};
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
export class GetProductTaxGroups implements ExtPlugin {
|
|
371
|
+
responseType!: ProductTaxGroup[];
|
|
372
|
+
payload!: BasePaginationQuery & { status?: string };
|
|
373
|
+
}
|
|
353
374
|
}
|
|
@@ -50,6 +50,7 @@ models/create-payment-run.ts
|
|
|
50
50
|
models/create-payment.ts
|
|
51
51
|
models/create-plan-charge.ts
|
|
52
52
|
models/create-product-custom.ts
|
|
53
|
+
models/create-product-tax-group.ts
|
|
53
54
|
models/create-revenue-rule.ts
|
|
54
55
|
models/create-site-custom.ts
|
|
55
56
|
models/create-smart-bar-prompt.ts
|
|
@@ -109,12 +110,13 @@ models/get-payment-runs200-response.ts
|
|
|
109
110
|
models/get-payments200-response.ts
|
|
110
111
|
models/get-plans200-response.ts
|
|
111
112
|
models/get-plugins200-response.ts
|
|
113
|
+
models/get-product-tax-groups200-response.ts
|
|
112
114
|
models/get-products200-response.ts
|
|
113
115
|
models/get-revenue-rules200-response.ts
|
|
114
116
|
models/get-sites200-response.ts
|
|
115
117
|
models/get-statements200-response.ts
|
|
116
|
-
models/get-subscriptions-post200-response.ts
|
|
117
118
|
models/get-subscriptions-query.ts
|
|
119
|
+
models/get-subscriptions200-response.ts
|
|
118
120
|
models/get-task-definitions200-response.ts
|
|
119
121
|
models/get-task-instances200-response.ts
|
|
120
122
|
models/get-templates200-response.ts
|
|
@@ -156,6 +158,7 @@ models/plugin-filter-operator.ts
|
|
|
156
158
|
models/plugin-version.ts
|
|
157
159
|
models/plugin.ts
|
|
158
160
|
models/product-custom.ts
|
|
161
|
+
models/product-tax-group.ts
|
|
159
162
|
models/project-version.ts
|
|
160
163
|
models/project-version1.ts
|
|
161
164
|
models/project.ts
|
|
@@ -214,7 +217,6 @@ models/update-subscription.ts
|
|
|
214
217
|
models/update-task-instance.ts
|
|
215
218
|
models/update-user-properties.ts
|
|
216
219
|
models/update-workflow-instance-description.ts
|
|
217
|
-
models/upload-document.ts
|
|
218
220
|
models/uploaded-document.ts
|
|
219
221
|
models/user-id.ts
|
|
220
222
|
models/user.ts
|