@managespace/sdk 0.0.204 → 0.0.205
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 +18 -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 +74 -10
- package/dist/generated/apis/default-api.d.ts.map +1 -1
- package/dist/generated/apis/default-api.js +232 -26
- package/dist/generated/models/asset-details.d.ts +14 -2
- package/dist/generated/models/asset-details.d.ts.map +1 -1
- package/dist/generated/models/asset-details.js +6 -2
- package/dist/generated/models/asset.d.ts +37 -0
- package/dist/generated/models/asset.d.ts.map +1 -1
- package/dist/generated/models/asset.js +21 -0
- package/dist/generated/models/create-payment.d.ts +2 -2
- package/dist/generated/models/create-payment.d.ts.map +1 -1
- package/dist/generated/models/create-payment.js +2 -6
- package/dist/generated/models/create-product-tax-group.d.ts +57 -0
- package/dist/generated/models/create-product-tax-group.d.ts.map +1 -0
- package/dist/generated/models/create-product-tax-group.js +59 -0
- package/dist/generated/models/create-task-definition.d.ts +0 -6
- package/dist/generated/models/create-task-definition.d.ts.map +1 -1
- package/dist/generated/models/create-task-definition.js +0 -2
- package/dist/generated/models/get-checklists200-response.d.ts +41 -0
- package/dist/generated/models/get-checklists200-response.d.ts.map +1 -0
- package/dist/generated/models/get-checklists200-response.js +55 -0
- package/dist/generated/models/get-product-tax-groups200-response.d.ts +41 -0
- package/dist/generated/models/get-product-tax-groups200-response.d.ts.map +1 -0
- package/dist/generated/models/get-product-tax-groups200-response.js +55 -0
- package/dist/generated/models/get-task-instances200-response.d.ts +41 -0
- package/dist/generated/models/get-task-instances200-response.d.ts.map +1 -0
- package/dist/generated/models/get-task-instances200-response.js +55 -0
- package/dist/generated/models/index.d.ts +5 -0
- package/dist/generated/models/index.d.ts.map +1 -1
- package/dist/generated/models/index.js +5 -0
- package/dist/generated/models/payment.d.ts +2 -2
- package/dist/generated/models/payment.d.ts.map +1 -1
- package/dist/generated/models/payment.js +2 -6
- package/dist/generated/models/product-tax-group.d.ts +75 -0
- package/dist/generated/models/product-tax-group.d.ts.map +1 -0
- package/dist/generated/models/product-tax-group.js +71 -0
- package/dist/generated/models/task-definition.d.ts +0 -13
- package/dist/generated/models/task-definition.d.ts.map +1 -1
- package/dist/generated/models/task-definition.js +0 -7
- package/dist/generated/models/user.d.ts +18 -5
- package/dist/generated/models/user.d.ts.map +1 -1
- package/dist/generated/models/user.js +10 -5
- package/dist/generated/models/workflow-instance.d.ts +13 -0
- package/dist/generated/models/workflow-instance.d.ts.map +1 -1
- package/dist/generated/models/workflow-instance.js +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,59 @@
|
|
|
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.CreateProductTaxGroupToJSONTyped = exports.CreateProductTaxGroupToJSON = exports.CreateProductTaxGroupFromJSONTyped = exports.CreateProductTaxGroupFromJSON = exports.instanceOfCreateProductTaxGroup = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the CreateProductTaxGroup interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfCreateProductTaxGroup(value) {
|
|
21
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfCreateProductTaxGroup = instanceOfCreateProductTaxGroup;
|
|
26
|
+
function CreateProductTaxGroupFromJSON(json) {
|
|
27
|
+
return CreateProductTaxGroupFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.CreateProductTaxGroupFromJSON = CreateProductTaxGroupFromJSON;
|
|
30
|
+
function CreateProductTaxGroupFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'name': json['name'],
|
|
36
|
+
'notes': json['notes'] == null ? undefined : json['notes'],
|
|
37
|
+
'status': json['status'] == null ? undefined : json['status'],
|
|
38
|
+
'createdBy': json['createdBy'] == null ? undefined : json['createdBy'],
|
|
39
|
+
'updatedBy': json['updatedBy'] == null ? undefined : json['updatedBy'],
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
exports.CreateProductTaxGroupFromJSONTyped = CreateProductTaxGroupFromJSONTyped;
|
|
43
|
+
function CreateProductTaxGroupToJSON(json) {
|
|
44
|
+
return CreateProductTaxGroupToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
exports.CreateProductTaxGroupToJSON = CreateProductTaxGroupToJSON;
|
|
47
|
+
function CreateProductTaxGroupToJSONTyped(value, ignoreDiscriminator = false) {
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'name': value['name'],
|
|
53
|
+
'notes': value['notes'],
|
|
54
|
+
'status': value['status'],
|
|
55
|
+
'createdBy': value['createdBy'],
|
|
56
|
+
'updatedBy': value['updatedBy'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
exports.CreateProductTaxGroupToJSONTyped = CreateProductTaxGroupToJSONTyped;
|
|
@@ -27,12 +27,6 @@ export interface CreateTaskDefinition {
|
|
|
27
27
|
* @memberof CreateTaskDefinition
|
|
28
28
|
*/
|
|
29
29
|
description?: string | null;
|
|
30
|
-
/**
|
|
31
|
-
* Who task definition is assigned to
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof CreateTaskDefinition
|
|
34
|
-
*/
|
|
35
|
-
assignedToUserId?: string | null;
|
|
36
30
|
/**
|
|
37
31
|
* When the task definition is due by
|
|
38
32
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-task-definition.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-task-definition.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"create-task-definition.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-task-definition.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;CACjB;AAED;;GAEG;AACH,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,oBAAoB,CAI3F;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE5E;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,CAU/G;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE1E;AAED,wBAAgB,+BAA+B,CAAC,KAAK,CAAC,EAAE,oBAAoB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAW9H"}
|
|
@@ -36,7 +36,6 @@ function CreateTaskDefinitionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
return {
|
|
37
37
|
'name': json['name'],
|
|
38
38
|
'description': json['description'] == null ? undefined : json['description'],
|
|
39
|
-
'assignedToUserId': json['assignedToUserId'] == null ? undefined : json['assignedToUserId'],
|
|
40
39
|
'dueBy': json['dueBy'],
|
|
41
40
|
};
|
|
42
41
|
}
|
|
@@ -52,7 +51,6 @@ function CreateTaskDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
52
51
|
return {
|
|
53
52
|
'name': value['name'],
|
|
54
53
|
'description': value['description'],
|
|
55
|
-
'assignedToUserId': value['assignedToUserId'],
|
|
56
54
|
'dueBy': value['dueBy'],
|
|
57
55
|
};
|
|
58
56
|
}
|
|
@@ -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 { Checklist } from './checklist';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GetChecklists200Response
|
|
18
|
+
*/
|
|
19
|
+
export interface GetChecklists200Response {
|
|
20
|
+
/**
|
|
21
|
+
* The pagination metadata
|
|
22
|
+
* @type {PageMeta}
|
|
23
|
+
* @memberof GetChecklists200Response
|
|
24
|
+
*/
|
|
25
|
+
pageMeta: PageMeta;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<Checklist>}
|
|
29
|
+
* @memberof GetChecklists200Response
|
|
30
|
+
*/
|
|
31
|
+
results?: Array<Checklist>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the GetChecklists200Response interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfGetChecklists200Response(value: object): value is GetChecklists200Response;
|
|
37
|
+
export declare function GetChecklists200ResponseFromJSON(json: any): GetChecklists200Response;
|
|
38
|
+
export declare function GetChecklists200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetChecklists200Response;
|
|
39
|
+
export declare function GetChecklists200ResponseToJSON(json: any): GetChecklists200Response;
|
|
40
|
+
export declare function GetChecklists200ResponseToJSONTyped(value?: GetChecklists200Response | null, ignoreDiscriminator?: boolean): any;
|
|
41
|
+
//# sourceMappingURL=get-checklists200-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-checklists200-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/get-checklists200-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAO5C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQ7C;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,CAAC;CAC9B;AAED;;GAEG;AACH,wBAAgB,kCAAkC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,wBAAwB,CAGnG;AAED,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,GAAG,GAAG,wBAAwB,CAEpF;AAED,wBAAgB,qCAAqC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,wBAAwB,CASvH;AAED,wBAAgB,8BAA8B,CAAC,IAAI,EAAE,GAAG,GAAG,wBAAwB,CAElF;AAED,wBAAgB,mCAAmC,CAAC,KAAK,CAAC,EAAE,wBAAwB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUtI"}
|
|
@@ -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.GetChecklists200ResponseToJSONTyped = exports.GetChecklists200ResponseToJSON = exports.GetChecklists200ResponseFromJSONTyped = exports.GetChecklists200ResponseFromJSON = exports.instanceOfGetChecklists200Response = void 0;
|
|
17
|
+
const page_meta_1 = require("./page-meta");
|
|
18
|
+
const checklist_1 = require("./checklist");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the GetChecklists200Response interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfGetChecklists200Response(value) {
|
|
23
|
+
if (!('pageMeta' in value) || value['pageMeta'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfGetChecklists200Response = instanceOfGetChecklists200Response;
|
|
28
|
+
function GetChecklists200ResponseFromJSON(json) {
|
|
29
|
+
return GetChecklists200ResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.GetChecklists200ResponseFromJSON = GetChecklists200ResponseFromJSON;
|
|
32
|
+
function GetChecklists200ResponseFromJSONTyped(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(checklist_1.ChecklistFromJSON)),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.GetChecklists200ResponseFromJSONTyped = GetChecklists200ResponseFromJSONTyped;
|
|
42
|
+
function GetChecklists200ResponseToJSON(json) {
|
|
43
|
+
return GetChecklists200ResponseToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
exports.GetChecklists200ResponseToJSON = GetChecklists200ResponseToJSON;
|
|
46
|
+
function GetChecklists200ResponseToJSONTyped(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(checklist_1.ChecklistToJSON)),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.GetChecklists200ResponseToJSONTyped = GetChecklists200ResponseToJSONTyped;
|
|
@@ -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 { ProductTaxGroup } from './product-tax-group';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GetProductTaxGroups200Response
|
|
18
|
+
*/
|
|
19
|
+
export interface GetProductTaxGroups200Response {
|
|
20
|
+
/**
|
|
21
|
+
* The pagination metadata
|
|
22
|
+
* @type {PageMeta}
|
|
23
|
+
* @memberof GetProductTaxGroups200Response
|
|
24
|
+
*/
|
|
25
|
+
pageMeta: PageMeta;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ProductTaxGroup>}
|
|
29
|
+
* @memberof GetProductTaxGroups200Response
|
|
30
|
+
*/
|
|
31
|
+
results?: Array<ProductTaxGroup>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the GetProductTaxGroups200Response interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfGetProductTaxGroups200Response(value: object): value is GetProductTaxGroups200Response;
|
|
37
|
+
export declare function GetProductTaxGroups200ResponseFromJSON(json: any): GetProductTaxGroups200Response;
|
|
38
|
+
export declare function GetProductTaxGroups200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetProductTaxGroups200Response;
|
|
39
|
+
export declare function GetProductTaxGroups200ResponseToJSON(json: any): GetProductTaxGroups200Response;
|
|
40
|
+
export declare function GetProductTaxGroups200ResponseToJSONTyped(value?: GetProductTaxGroups200Response | null, ignoreDiscriminator?: boolean): any;
|
|
41
|
+
//# sourceMappingURL=get-product-tax-groups200-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-product-tax-groups200-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/get-product-tax-groups200-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAO5C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAQ3D;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;OAIG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,CAAC;CACpC;AAED;;GAEG;AACH,wBAAgB,wCAAwC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,8BAA8B,CAG/G;AAED,wBAAgB,sCAAsC,CAAC,IAAI,EAAE,GAAG,GAAG,8BAA8B,CAEhG;AAED,wBAAgB,2CAA2C,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,8BAA8B,CASnI;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,GAAG,8BAA8B,CAE9F;AAED,wBAAgB,yCAAyC,CAAC,KAAK,CAAC,EAAE,8BAA8B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUlJ"}
|
|
@@ -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.GetProductTaxGroups200ResponseToJSONTyped = exports.GetProductTaxGroups200ResponseToJSON = exports.GetProductTaxGroups200ResponseFromJSONTyped = exports.GetProductTaxGroups200ResponseFromJSON = exports.instanceOfGetProductTaxGroups200Response = void 0;
|
|
17
|
+
const page_meta_1 = require("./page-meta");
|
|
18
|
+
const product_tax_group_1 = require("./product-tax-group");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the GetProductTaxGroups200Response interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfGetProductTaxGroups200Response(value) {
|
|
23
|
+
if (!('pageMeta' in value) || value['pageMeta'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfGetProductTaxGroups200Response = instanceOfGetProductTaxGroups200Response;
|
|
28
|
+
function GetProductTaxGroups200ResponseFromJSON(json) {
|
|
29
|
+
return GetProductTaxGroups200ResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.GetProductTaxGroups200ResponseFromJSON = GetProductTaxGroups200ResponseFromJSON;
|
|
32
|
+
function GetProductTaxGroups200ResponseFromJSONTyped(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(product_tax_group_1.ProductTaxGroupFromJSON)),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.GetProductTaxGroups200ResponseFromJSONTyped = GetProductTaxGroups200ResponseFromJSONTyped;
|
|
42
|
+
function GetProductTaxGroups200ResponseToJSON(json) {
|
|
43
|
+
return GetProductTaxGroups200ResponseToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
exports.GetProductTaxGroups200ResponseToJSON = GetProductTaxGroups200ResponseToJSON;
|
|
46
|
+
function GetProductTaxGroups200ResponseToJSONTyped(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(product_tax_group_1.ProductTaxGroupToJSON)),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.GetProductTaxGroups200ResponseToJSONTyped = GetProductTaxGroups200ResponseToJSONTyped;
|
|
@@ -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 { TaskInstance } from './task-instance';
|
|
13
|
+
import type { PageMeta } from './page-meta';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GetTaskInstances200Response
|
|
18
|
+
*/
|
|
19
|
+
export interface GetTaskInstances200Response {
|
|
20
|
+
/**
|
|
21
|
+
* The pagination metadata
|
|
22
|
+
* @type {PageMeta}
|
|
23
|
+
* @memberof GetTaskInstances200Response
|
|
24
|
+
*/
|
|
25
|
+
pageMeta: PageMeta;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<TaskInstance>}
|
|
29
|
+
* @memberof GetTaskInstances200Response
|
|
30
|
+
*/
|
|
31
|
+
results?: Array<TaskInstance>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the GetTaskInstances200Response interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfGetTaskInstances200Response(value: object): value is GetTaskInstances200Response;
|
|
37
|
+
export declare function GetTaskInstances200ResponseFromJSON(json: any): GetTaskInstances200Response;
|
|
38
|
+
export declare function GetTaskInstances200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTaskInstances200Response;
|
|
39
|
+
export declare function GetTaskInstances200ResponseToJSON(json: any): GetTaskInstances200Response;
|
|
40
|
+
export declare function GetTaskInstances200ResponseToJSONTyped(value?: GetTaskInstances200Response | null, ignoreDiscriminator?: boolean): any;
|
|
41
|
+
//# sourceMappingURL=get-task-instances200-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-task-instances200-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/get-task-instances200-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAOpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAQ5C;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;CACjC;AAED;;GAEG;AACH,wBAAgB,qCAAqC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,2BAA2B,CAGzG;AAED,wBAAgB,mCAAmC,CAAC,IAAI,EAAE,GAAG,GAAG,2BAA2B,CAE1F;AAED,wBAAgB,wCAAwC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,2BAA2B,CAS7H;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,GAAG,2BAA2B,CAExF;AAED,wBAAgB,sCAAsC,CAAC,KAAK,CAAC,EAAE,2BAA2B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAU5I"}
|
|
@@ -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.GetTaskInstances200ResponseToJSONTyped = exports.GetTaskInstances200ResponseToJSON = exports.GetTaskInstances200ResponseFromJSONTyped = exports.GetTaskInstances200ResponseFromJSON = exports.instanceOfGetTaskInstances200Response = void 0;
|
|
17
|
+
const task_instance_1 = require("./task-instance");
|
|
18
|
+
const page_meta_1 = require("./page-meta");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the GetTaskInstances200Response interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfGetTaskInstances200Response(value) {
|
|
23
|
+
if (!('pageMeta' in value) || value['pageMeta'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfGetTaskInstances200Response = instanceOfGetTaskInstances200Response;
|
|
28
|
+
function GetTaskInstances200ResponseFromJSON(json) {
|
|
29
|
+
return GetTaskInstances200ResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.GetTaskInstances200ResponseFromJSON = GetTaskInstances200ResponseFromJSON;
|
|
32
|
+
function GetTaskInstances200ResponseFromJSONTyped(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(task_instance_1.TaskInstanceFromJSON)),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.GetTaskInstances200ResponseFromJSONTyped = GetTaskInstances200ResponseFromJSONTyped;
|
|
42
|
+
function GetTaskInstances200ResponseToJSON(json) {
|
|
43
|
+
return GetTaskInstances200ResponseToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
exports.GetTaskInstances200ResponseToJSON = GetTaskInstances200ResponseToJSON;
|
|
46
|
+
function GetTaskInstances200ResponseToJSONTyped(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(task_instance_1.TaskInstanceToJSON)),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.GetTaskInstances200ResponseToJSONTyped = GetTaskInstances200ResponseToJSONTyped;
|
|
@@ -46,6 +46,7 @@ export * from './create-payment-refund';
|
|
|
46
46
|
export * from './create-payment-run';
|
|
47
47
|
export * from './create-plan-charge';
|
|
48
48
|
export * from './create-product-custom';
|
|
49
|
+
export * from './create-product-tax-group';
|
|
49
50
|
export * from './create-revenue-rule';
|
|
50
51
|
export * from './create-site-custom';
|
|
51
52
|
export * from './create-smart-bar-prompt';
|
|
@@ -86,6 +87,7 @@ export * from './get-calendar-events-query';
|
|
|
86
87
|
export * from './get-calendars200-response';
|
|
87
88
|
export * from './get-charges200-response';
|
|
88
89
|
export * from './get-chart-of-accounts200-response';
|
|
90
|
+
export * from './get-checklists200-response';
|
|
89
91
|
export * from './get-communications200-response';
|
|
90
92
|
export * from './get-configuration-settings200-response';
|
|
91
93
|
export * from './get-contacts200-response';
|
|
@@ -101,12 +103,14 @@ export * from './get-payment-runs200-response';
|
|
|
101
103
|
export * from './get-payments200-response';
|
|
102
104
|
export * from './get-plans200-response';
|
|
103
105
|
export * from './get-plugins200-response';
|
|
106
|
+
export * from './get-product-tax-groups200-response';
|
|
104
107
|
export * from './get-products200-response';
|
|
105
108
|
export * from './get-revenue-rules200-response';
|
|
106
109
|
export * from './get-sites200-response';
|
|
107
110
|
export * from './get-statements200-response';
|
|
108
111
|
export * from './get-subscriptions200-response';
|
|
109
112
|
export * from './get-task-definitions200-response';
|
|
113
|
+
export * from './get-task-instances200-response';
|
|
110
114
|
export * from './get-templates200-response';
|
|
111
115
|
export * from './get-users200-response';
|
|
112
116
|
export * from './get-workflow-definitions200-response';
|
|
@@ -142,6 +146,7 @@ export * from './plugin-extensibility-function-metadata';
|
|
|
142
146
|
export * from './plugin-extensibility-status';
|
|
143
147
|
export * from './plugin-version';
|
|
144
148
|
export * from './product-custom';
|
|
149
|
+
export * from './product-tax-group';
|
|
145
150
|
export * from './project';
|
|
146
151
|
export * from './project1';
|
|
147
152
|
export * from './project2';
|
|
@@ -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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"}
|
|
@@ -64,6 +64,7 @@ __exportStar(require("./create-payment-refund"), exports);
|
|
|
64
64
|
__exportStar(require("./create-payment-run"), exports);
|
|
65
65
|
__exportStar(require("./create-plan-charge"), exports);
|
|
66
66
|
__exportStar(require("./create-product-custom"), exports);
|
|
67
|
+
__exportStar(require("./create-product-tax-group"), exports);
|
|
67
68
|
__exportStar(require("./create-revenue-rule"), exports);
|
|
68
69
|
__exportStar(require("./create-site-custom"), exports);
|
|
69
70
|
__exportStar(require("./create-smart-bar-prompt"), exports);
|
|
@@ -104,6 +105,7 @@ __exportStar(require("./get-calendar-events-query"), exports);
|
|
|
104
105
|
__exportStar(require("./get-calendars200-response"), exports);
|
|
105
106
|
__exportStar(require("./get-charges200-response"), exports);
|
|
106
107
|
__exportStar(require("./get-chart-of-accounts200-response"), exports);
|
|
108
|
+
__exportStar(require("./get-checklists200-response"), exports);
|
|
107
109
|
__exportStar(require("./get-communications200-response"), exports);
|
|
108
110
|
__exportStar(require("./get-configuration-settings200-response"), exports);
|
|
109
111
|
__exportStar(require("./get-contacts200-response"), exports);
|
|
@@ -119,12 +121,14 @@ __exportStar(require("./get-payment-runs200-response"), exports);
|
|
|
119
121
|
__exportStar(require("./get-payments200-response"), exports);
|
|
120
122
|
__exportStar(require("./get-plans200-response"), exports);
|
|
121
123
|
__exportStar(require("./get-plugins200-response"), exports);
|
|
124
|
+
__exportStar(require("./get-product-tax-groups200-response"), exports);
|
|
122
125
|
__exportStar(require("./get-products200-response"), exports);
|
|
123
126
|
__exportStar(require("./get-revenue-rules200-response"), exports);
|
|
124
127
|
__exportStar(require("./get-sites200-response"), exports);
|
|
125
128
|
__exportStar(require("./get-statements200-response"), exports);
|
|
126
129
|
__exportStar(require("./get-subscriptions200-response"), exports);
|
|
127
130
|
__exportStar(require("./get-task-definitions200-response"), exports);
|
|
131
|
+
__exportStar(require("./get-task-instances200-response"), exports);
|
|
128
132
|
__exportStar(require("./get-templates200-response"), exports);
|
|
129
133
|
__exportStar(require("./get-users200-response"), exports);
|
|
130
134
|
__exportStar(require("./get-workflow-definitions200-response"), exports);
|
|
@@ -160,6 +164,7 @@ __exportStar(require("./plugin-extensibility-function-metadata"), exports);
|
|
|
160
164
|
__exportStar(require("./plugin-extensibility-status"), exports);
|
|
161
165
|
__exportStar(require("./plugin-version"), exports);
|
|
162
166
|
__exportStar(require("./product-custom"), exports);
|
|
167
|
+
__exportStar(require("./product-tax-group"), exports);
|
|
163
168
|
__exportStar(require("./project"), exports);
|
|
164
169
|
__exportStar(require("./project1"), exports);
|
|
165
170
|
__exportStar(require("./project2"), exports);
|
|
@@ -40,7 +40,7 @@ export interface Payment {
|
|
|
40
40
|
* @type {string}
|
|
41
41
|
* @memberof Payment
|
|
42
42
|
*/
|
|
43
|
-
status
|
|
43
|
+
status?: string;
|
|
44
44
|
/**
|
|
45
45
|
* Total amount of payment
|
|
46
46
|
* @type {string}
|
|
@@ -154,7 +154,7 @@ export interface Payment {
|
|
|
154
154
|
* @type {string}
|
|
155
155
|
* @memberof Payment
|
|
156
156
|
*/
|
|
157
|
-
glAccount
|
|
157
|
+
glAccount?: string;
|
|
158
158
|
/**
|
|
159
159
|
* Number of retry attempts made
|
|
160
160
|
* @type {number}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment.d.ts","sourceRoot":"","sources":["../../../src/generated/models/payment.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAOrE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAQnE;;;;GAIG;AACH,MAAM,WAAW,OAAO;IACpB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"payment.d.ts","sourceRoot":"","sources":["../../../src/generated/models/payment.ts"],"names":[],"mappings":"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"}
|
|
@@ -24,8 +24,6 @@ function instanceOfPayment(value) {
|
|
|
24
24
|
return false;
|
|
25
25
|
if (!('paymentDate' in value) || value['paymentDate'] === undefined)
|
|
26
26
|
return false;
|
|
27
|
-
if (!('status' in value) || value['status'] === undefined)
|
|
28
|
-
return false;
|
|
29
27
|
if (!('paymentAmount' in value) || value['paymentAmount'] === undefined)
|
|
30
28
|
return false;
|
|
31
29
|
if (!('paymentType' in value) || value['paymentType'] === undefined)
|
|
@@ -34,8 +32,6 @@ function instanceOfPayment(value) {
|
|
|
34
32
|
return false;
|
|
35
33
|
if (!('autoApply' in value) || value['autoApply'] === undefined)
|
|
36
34
|
return false;
|
|
37
|
-
if (!('glAccount' in value) || value['glAccount'] === undefined)
|
|
38
|
-
return false;
|
|
39
35
|
if (!('id' in value) || value['id'] === undefined)
|
|
40
36
|
return false;
|
|
41
37
|
if (!('customerName' in value) || value['customerName'] === undefined)
|
|
@@ -67,7 +63,7 @@ function PaymentFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
67
63
|
'customerId': json['customerId'],
|
|
68
64
|
'paymentDate': json['paymentDate'],
|
|
69
65
|
'notes': json['notes'] == null ? undefined : json['notes'],
|
|
70
|
-
'status': json['status'],
|
|
66
|
+
'status': json['status'] == null ? undefined : json['status'],
|
|
71
67
|
'paymentAmount': json['paymentAmount'],
|
|
72
68
|
'feeAmount': json['feeAmount'] == null ? undefined : json['feeAmount'],
|
|
73
69
|
'appliedAmount': json['appliedAmount'] == null ? undefined : json['appliedAmount'],
|
|
@@ -86,7 +82,7 @@ function PaymentFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
86
82
|
'updatedBy': json['updatedBy'] == null ? undefined : json['updatedBy'],
|
|
87
83
|
'invoices': json['invoices'] == null ? undefined : (json['invoices'].map(create_payment_invoice_1.CreatePaymentInvoiceFromJSON)),
|
|
88
84
|
'refunds': json['refunds'] == null ? undefined : (json['refunds'].map(create_payment_refund_1.CreatePaymentRefundFromJSON)),
|
|
89
|
-
'glAccount': json['glAccount'],
|
|
85
|
+
'glAccount': json['glAccount'] == null ? undefined : json['glAccount'],
|
|
90
86
|
'retriedAttempts': json['retriedAttempts'] == null ? undefined : json['retriedAttempts'],
|
|
91
87
|
'gatewayName': json['gatewayName'] == null ? undefined : json['gatewayName'],
|
|
92
88
|
'emailStatus': json['emailStatus'] == null ? undefined : json['emailStatus'],
|
|
@@ -0,0 +1,75 @@
|
|
|
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 ProductTaxGroup
|
|
16
|
+
*/
|
|
17
|
+
export interface ProductTaxGroup {
|
|
18
|
+
/**
|
|
19
|
+
* name of tax group
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProductTaxGroup
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
/**
|
|
25
|
+
* Note for tax group
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ProductTaxGroup
|
|
28
|
+
*/
|
|
29
|
+
notes?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Status of tax group
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ProductTaxGroup
|
|
34
|
+
*/
|
|
35
|
+
status?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Who created the product tax group
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ProductTaxGroup
|
|
40
|
+
*/
|
|
41
|
+
createdBy?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Who updated the product tax group
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ProductTaxGroup
|
|
46
|
+
*/
|
|
47
|
+
updatedBy?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Product Tax Group ID
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ProductTaxGroup
|
|
52
|
+
*/
|
|
53
|
+
id: string;
|
|
54
|
+
/**
|
|
55
|
+
* The date the product tax group was created
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ProductTaxGroup
|
|
58
|
+
*/
|
|
59
|
+
createdAt: string;
|
|
60
|
+
/**
|
|
61
|
+
* The date the product tax group was updated
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ProductTaxGroup
|
|
64
|
+
*/
|
|
65
|
+
updatedAt: string;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Check if a given object implements the ProductTaxGroup interface.
|
|
69
|
+
*/
|
|
70
|
+
export declare function instanceOfProductTaxGroup(value: object): value is ProductTaxGroup;
|
|
71
|
+
export declare function ProductTaxGroupFromJSON(json: any): ProductTaxGroup;
|
|
72
|
+
export declare function ProductTaxGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductTaxGroup;
|
|
73
|
+
export declare function ProductTaxGroupToJSON(json: any): ProductTaxGroup;
|
|
74
|
+
export declare function ProductTaxGroupToJSONTyped(value?: ProductTaxGroup | null, ignoreDiscriminator?: boolean): any;
|
|
75
|
+
//# sourceMappingURL=product-tax-group.d.ts.map
|