@managespace/sdk 0.0.40 → 0.0.42
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 +17 -17
- package/dist/extensibility/functions/project/billing.d.ts.map +1 -1
- package/dist/extensibility/functions/project/billing.js +16 -10
- package/dist/generated/apis/default-api.d.ts +49 -18
- package/dist/generated/apis/default-api.d.ts.map +1 -1
- package/dist/generated/apis/default-api.js +161 -56
- package/dist/generated/models/configuration-setting-response.d.ts +84 -0
- package/dist/generated/models/configuration-setting-response.d.ts.map +1 -0
- package/dist/generated/models/configuration-setting-response.js +82 -0
- package/dist/generated/models/configuration-setting-type.d.ts +28 -0
- package/dist/generated/models/configuration-setting-type.d.ts.map +1 -0
- package/dist/generated/models/configuration-setting-type.js +53 -0
- package/dist/generated/models/create-configuration-setting.d.ts +52 -0
- package/dist/generated/models/create-configuration-setting.d.ts.map +1 -0
- package/dist/generated/models/create-configuration-setting.js +64 -0
- package/dist/generated/models/create-payment-run.d.ts +1 -1
- package/dist/generated/models/create-payment-run.d.ts.map +1 -1
- package/dist/generated/models/create-payment-run.js +1 -3
- package/dist/generated/models/create-payment.d.ts +155 -0
- package/dist/generated/models/create-payment.d.ts.map +1 -0
- package/dist/generated/models/create-payment.js +123 -0
- package/dist/generated/models/create-revenue-rule.d.ts +69 -0
- package/dist/generated/models/create-revenue-rule.d.ts.map +1 -0
- package/dist/generated/models/create-revenue-rule.js +75 -0
- package/dist/generated/models/create-subscription.d.ts +2 -15
- package/dist/generated/models/create-subscription.d.ts.map +1 -1
- package/dist/generated/models/create-subscription.js +3 -12
- package/dist/generated/models/get-configuration-settings200-response.d.ts +41 -0
- package/dist/generated/models/get-configuration-settings200-response.d.ts.map +1 -0
- package/dist/generated/models/get-configuration-settings200-response.js +55 -0
- package/dist/generated/models/index.d.ts +8 -4
- package/dist/generated/models/index.d.ts.map +1 -1
- package/dist/generated/models/index.js +8 -4
- package/dist/generated/models/org-response.d.ts +4 -4
- package/dist/generated/models/org-response.d.ts.map +1 -1
- package/dist/generated/models/org-response.js +5 -5
- package/dist/generated/models/payment-response.d.ts +2 -2
- package/dist/generated/models/site-response.d.ts +4 -4
- package/dist/generated/models/site-response.d.ts.map +1 -1
- package/dist/generated/models/site-response.js +5 -5
- package/dist/generated/models/update-configuration-setting.d.ts +52 -0
- package/dist/generated/models/update-configuration-setting.d.ts.map +1 -0
- package/dist/generated/models/update-configuration-setting.js +56 -0
- package/package.json +1 -1
- package/src/extensibility/functions/project/billing.ts +21 -14
- package/src/generated/.openapi-generator/FILES +8 -4
- package/src/generated/apis/default-api.ts +269 -93
- package/src/generated/models/configuration-setting-response.ts +160 -0
- package/src/generated/models/configuration-setting-type.ts +55 -0
- package/src/generated/models/create-configuration-setting.ts +103 -0
- package/src/generated/models/create-payment-run.ts +2 -3
- package/src/generated/models/create-payment.ts +256 -0
- package/src/generated/models/create-revenue-rule.ts +120 -0
- package/src/generated/models/create-subscription.ts +5 -31
- package/src/generated/models/get-configuration-settings200-response.ts +89 -0
- package/src/generated/models/index.ts +8 -4
- package/src/generated/models/org-response.ts +13 -13
- package/src/generated/models/payment-response.ts +2 -2
- package/src/generated/models/site-response.ts +13 -13
- package/src/generated/models/update-configuration-setting.ts +99 -0
|
@@ -14,13 +14,10 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.CreateSubscriptionToJSONTyped = exports.CreateSubscriptionToJSON = exports.CreateSubscriptionFromJSONTyped = exports.CreateSubscriptionFromJSON = exports.instanceOfCreateSubscription = void 0;
|
|
17
|
-
const create_subscription_plan_1 = require("./create-subscription-plan");
|
|
18
17
|
/**
|
|
19
18
|
* Check if a given object implements the CreateSubscription interface.
|
|
20
19
|
*/
|
|
21
20
|
function instanceOfCreateSubscription(value) {
|
|
22
|
-
if (!('assetId' in value) || value['assetId'] === undefined)
|
|
23
|
-
return false;
|
|
24
21
|
if (!('status' in value) || value['status'] === undefined)
|
|
25
22
|
return false;
|
|
26
23
|
if (!('serviceStartDate' in value) || value['serviceStartDate'] === undefined)
|
|
@@ -29,9 +26,7 @@ function instanceOfCreateSubscription(value) {
|
|
|
29
26
|
return false;
|
|
30
27
|
if (!('billingStartDate' in value) || value['billingStartDate'] === undefined)
|
|
31
28
|
return false;
|
|
32
|
-
if (!('
|
|
33
|
-
return false;
|
|
34
|
-
if (!('plans' in value) || value['plans'] === undefined)
|
|
29
|
+
if (!('planIds' in value) || value['planIds'] === undefined)
|
|
35
30
|
return false;
|
|
36
31
|
return true;
|
|
37
32
|
}
|
|
@@ -45,13 +40,11 @@ function CreateSubscriptionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
45
40
|
return json;
|
|
46
41
|
}
|
|
47
42
|
return {
|
|
48
|
-
'assetId': json['assetId'],
|
|
49
43
|
'status': json['status'],
|
|
50
44
|
'serviceStartDate': json['serviceStartDate'],
|
|
51
45
|
'contractEffectiveDate': json['contractEffectiveDate'],
|
|
52
46
|
'billingStartDate': json['billingStartDate'],
|
|
53
|
-
'
|
|
54
|
-
'plans': (json['plans'].map(create_subscription_plan_1.CreateSubscriptionPlanFromJSON)),
|
|
47
|
+
'planIds': json['planIds'],
|
|
55
48
|
};
|
|
56
49
|
}
|
|
57
50
|
exports.CreateSubscriptionFromJSONTyped = CreateSubscriptionFromJSONTyped;
|
|
@@ -64,13 +57,11 @@ function CreateSubscriptionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
64
57
|
return value;
|
|
65
58
|
}
|
|
66
59
|
return {
|
|
67
|
-
'assetId': value['assetId'],
|
|
68
60
|
'status': value['status'],
|
|
69
61
|
'serviceStartDate': value['serviceStartDate'],
|
|
70
62
|
'contractEffectiveDate': value['contractEffectiveDate'],
|
|
71
63
|
'billingStartDate': value['billingStartDate'],
|
|
72
|
-
'
|
|
73
|
-
'plans': (value['plans'].map(create_subscription_plan_1.CreateSubscriptionPlanToJSON)),
|
|
64
|
+
'planIds': value['planIds'],
|
|
74
65
|
};
|
|
75
66
|
}
|
|
76
67
|
exports.CreateSubscriptionToJSONTyped = CreateSubscriptionToJSONTyped;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ManageSpace V2 Auth API
|
|
3
|
+
* ManageSpace Auth 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 { ConfigurationSettingResponse } from './configuration-setting-response';
|
|
13
|
+
import type { PageMeta } from './page-meta';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GetConfigurationSettings200Response
|
|
18
|
+
*/
|
|
19
|
+
export interface GetConfigurationSettings200Response {
|
|
20
|
+
/**
|
|
21
|
+
* The pagination metadata
|
|
22
|
+
* @type {PageMeta}
|
|
23
|
+
* @memberof GetConfigurationSettings200Response
|
|
24
|
+
*/
|
|
25
|
+
pageMeta: PageMeta;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ConfigurationSettingResponse>}
|
|
29
|
+
* @memberof GetConfigurationSettings200Response
|
|
30
|
+
*/
|
|
31
|
+
results?: Array<ConfigurationSettingResponse>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the GetConfigurationSettings200Response interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfGetConfigurationSettings200Response(value: object): value is GetConfigurationSettings200Response;
|
|
37
|
+
export declare function GetConfigurationSettings200ResponseFromJSON(json: any): GetConfigurationSettings200Response;
|
|
38
|
+
export declare function GetConfigurationSettings200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetConfigurationSettings200Response;
|
|
39
|
+
export declare function GetConfigurationSettings200ResponseToJSON(json: any): GetConfigurationSettings200Response;
|
|
40
|
+
export declare function GetConfigurationSettings200ResponseToJSONTyped(value?: GetConfigurationSettings200Response | null, ignoreDiscriminator?: boolean): any;
|
|
41
|
+
//# sourceMappingURL=get-configuration-settings200-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-configuration-settings200-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/get-configuration-settings200-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,kCAAkC,CAAC;AAOrF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAQ5C;;;;GAIG;AACH,MAAM,WAAW,mCAAmC;IAChD;;;;OAIG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,CAAC;CACjD;AAED;;GAEG;AACH,wBAAgB,6CAA6C,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,mCAAmC,CAGzH;AAED,wBAAgB,2CAA2C,CAAC,IAAI,EAAE,GAAG,GAAG,mCAAmC,CAE1G;AAED,wBAAgB,gDAAgD,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,mCAAmC,CAS7I;AAED,wBAAgB,yCAAyC,CAAC,IAAI,EAAE,GAAG,GAAG,mCAAmC,CAExG;AAED,wBAAgB,8CAA8C,CAAC,KAAK,CAAC,EAAE,mCAAmC,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAU5J"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* ManageSpace V2 Auth API
|
|
6
|
+
* ManageSpace Auth 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.GetConfigurationSettings200ResponseToJSONTyped = exports.GetConfigurationSettings200ResponseToJSON = exports.GetConfigurationSettings200ResponseFromJSONTyped = exports.GetConfigurationSettings200ResponseFromJSON = exports.instanceOfGetConfigurationSettings200Response = void 0;
|
|
17
|
+
const configuration_setting_response_1 = require("./configuration-setting-response");
|
|
18
|
+
const page_meta_1 = require("./page-meta");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the GetConfigurationSettings200Response interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfGetConfigurationSettings200Response(value) {
|
|
23
|
+
if (!('pageMeta' in value) || value['pageMeta'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfGetConfigurationSettings200Response = instanceOfGetConfigurationSettings200Response;
|
|
28
|
+
function GetConfigurationSettings200ResponseFromJSON(json) {
|
|
29
|
+
return GetConfigurationSettings200ResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.GetConfigurationSettings200ResponseFromJSON = GetConfigurationSettings200ResponseFromJSON;
|
|
32
|
+
function GetConfigurationSettings200ResponseFromJSONTyped(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(configuration_setting_response_1.ConfigurationSettingResponseFromJSON)),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.GetConfigurationSettings200ResponseFromJSONTyped = GetConfigurationSettings200ResponseFromJSONTyped;
|
|
42
|
+
function GetConfigurationSettings200ResponseToJSON(json) {
|
|
43
|
+
return GetConfigurationSettings200ResponseToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
exports.GetConfigurationSettings200ResponseToJSON = GetConfigurationSettings200ResponseToJSON;
|
|
46
|
+
function GetConfigurationSettings200ResponseToJSONTyped(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(configuration_setting_response_1.ConfigurationSettingResponseToJSON)),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.GetConfigurationSettings200ResponseToJSONTyped = GetConfigurationSettings200ResponseToJSONTyped;
|
|
@@ -15,7 +15,8 @@ export * from './checklist-recurrence-frequency';
|
|
|
15
15
|
export * from './checklist-response';
|
|
16
16
|
export * from './communication-response';
|
|
17
17
|
export * from './communication-type';
|
|
18
|
-
export * from './configuration-response';
|
|
18
|
+
export * from './configuration-setting-response';
|
|
19
|
+
export * from './configuration-setting-type';
|
|
19
20
|
export * from './contact-response';
|
|
20
21
|
export * from './create-address';
|
|
21
22
|
export * from './create-asset-asset-category-relation-input';
|
|
@@ -27,23 +28,24 @@ export * from './create-billing-run';
|
|
|
27
28
|
export * from './create-calendar';
|
|
28
29
|
export * from './create-checklist';
|
|
29
30
|
export * from './create-communication';
|
|
31
|
+
export * from './create-configuration-setting';
|
|
30
32
|
export * from './create-document';
|
|
31
33
|
export * from './create-instances';
|
|
32
34
|
export * from './create-map-feature';
|
|
33
35
|
export * from './create-note';
|
|
34
36
|
export * from './create-notification';
|
|
35
37
|
export * from './create-org';
|
|
36
|
-
export * from './create-payment
|
|
38
|
+
export * from './create-payment';
|
|
37
39
|
export * from './create-payment-invoice';
|
|
38
40
|
export * from './create-payment-refund';
|
|
39
41
|
export * from './create-payment-run';
|
|
40
42
|
export * from './create-plan-charge';
|
|
41
43
|
export * from './create-product';
|
|
42
44
|
export * from './create-product-custom';
|
|
45
|
+
export * from './create-revenue-rule';
|
|
43
46
|
export * from './create-site-custom';
|
|
44
47
|
export * from './create-smart-bar-prompt';
|
|
45
48
|
export * from './create-subscription';
|
|
46
|
-
export * from './create-subscription-plan';
|
|
47
49
|
export * from './create-task';
|
|
48
50
|
export * from './create-task-template';
|
|
49
51
|
export * from './create-template';
|
|
@@ -75,10 +77,11 @@ export * from './get-calendars200-response';
|
|
|
75
77
|
export * from './get-charges200-response';
|
|
76
78
|
export * from './get-chart-of-accounts200-response';
|
|
77
79
|
export * from './get-communications200-response';
|
|
80
|
+
export * from './get-configuration-settings200-response';
|
|
78
81
|
export * from './get-contacts200-response';
|
|
79
82
|
export * from './get-customers200-response';
|
|
80
83
|
export * from './get-intent';
|
|
81
|
-
export * from './get-
|
|
84
|
+
export * from './get-invoices200-response';
|
|
82
85
|
export * from './get-notes200-response';
|
|
83
86
|
export * from './get-notifications200-response';
|
|
84
87
|
export * from './get-payment-runs200-response';
|
|
@@ -155,6 +158,7 @@ export * from './update-asset';
|
|
|
155
158
|
export * from './update-asset-category';
|
|
156
159
|
export * from './update-asset-feature';
|
|
157
160
|
export * from './update-checklist-task-template';
|
|
161
|
+
export * from './update-configuration-setting';
|
|
158
162
|
export * from './update-extensibility-repo';
|
|
159
163
|
export * from './update-map-feature';
|
|
160
164
|
export * from './update-note';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"AAEA,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iCAAiC,CAAC;AAChD,cAAc,sCAAsC,CAAC;AACrD,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kCAAkC,CAAC;AACjD,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,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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"}
|
|
@@ -33,7 +33,8 @@ __exportStar(require("./checklist-recurrence-frequency"), exports);
|
|
|
33
33
|
__exportStar(require("./checklist-response"), exports);
|
|
34
34
|
__exportStar(require("./communication-response"), exports);
|
|
35
35
|
__exportStar(require("./communication-type"), exports);
|
|
36
|
-
__exportStar(require("./configuration-response"), exports);
|
|
36
|
+
__exportStar(require("./configuration-setting-response"), exports);
|
|
37
|
+
__exportStar(require("./configuration-setting-type"), exports);
|
|
37
38
|
__exportStar(require("./contact-response"), exports);
|
|
38
39
|
__exportStar(require("./create-address"), exports);
|
|
39
40
|
__exportStar(require("./create-asset-asset-category-relation-input"), exports);
|
|
@@ -45,23 +46,24 @@ __exportStar(require("./create-billing-run"), exports);
|
|
|
45
46
|
__exportStar(require("./create-calendar"), exports);
|
|
46
47
|
__exportStar(require("./create-checklist"), exports);
|
|
47
48
|
__exportStar(require("./create-communication"), exports);
|
|
49
|
+
__exportStar(require("./create-configuration-setting"), exports);
|
|
48
50
|
__exportStar(require("./create-document"), exports);
|
|
49
51
|
__exportStar(require("./create-instances"), exports);
|
|
50
52
|
__exportStar(require("./create-map-feature"), exports);
|
|
51
53
|
__exportStar(require("./create-note"), exports);
|
|
52
54
|
__exportStar(require("./create-notification"), exports);
|
|
53
55
|
__exportStar(require("./create-org"), exports);
|
|
54
|
-
__exportStar(require("./create-payment
|
|
56
|
+
__exportStar(require("./create-payment"), exports);
|
|
55
57
|
__exportStar(require("./create-payment-invoice"), exports);
|
|
56
58
|
__exportStar(require("./create-payment-refund"), exports);
|
|
57
59
|
__exportStar(require("./create-payment-run"), exports);
|
|
58
60
|
__exportStar(require("./create-plan-charge"), exports);
|
|
59
61
|
__exportStar(require("./create-product"), exports);
|
|
60
62
|
__exportStar(require("./create-product-custom"), exports);
|
|
63
|
+
__exportStar(require("./create-revenue-rule"), exports);
|
|
61
64
|
__exportStar(require("./create-site-custom"), exports);
|
|
62
65
|
__exportStar(require("./create-smart-bar-prompt"), exports);
|
|
63
66
|
__exportStar(require("./create-subscription"), exports);
|
|
64
|
-
__exportStar(require("./create-subscription-plan"), exports);
|
|
65
67
|
__exportStar(require("./create-task"), exports);
|
|
66
68
|
__exportStar(require("./create-task-template"), exports);
|
|
67
69
|
__exportStar(require("./create-template"), exports);
|
|
@@ -93,10 +95,11 @@ __exportStar(require("./get-calendars200-response"), exports);
|
|
|
93
95
|
__exportStar(require("./get-charges200-response"), exports);
|
|
94
96
|
__exportStar(require("./get-chart-of-accounts200-response"), exports);
|
|
95
97
|
__exportStar(require("./get-communications200-response"), exports);
|
|
98
|
+
__exportStar(require("./get-configuration-settings200-response"), exports);
|
|
96
99
|
__exportStar(require("./get-contacts200-response"), exports);
|
|
97
100
|
__exportStar(require("./get-customers200-response"), exports);
|
|
98
101
|
__exportStar(require("./get-intent"), exports);
|
|
99
|
-
__exportStar(require("./get-
|
|
102
|
+
__exportStar(require("./get-invoices200-response"), exports);
|
|
100
103
|
__exportStar(require("./get-notes200-response"), exports);
|
|
101
104
|
__exportStar(require("./get-notifications200-response"), exports);
|
|
102
105
|
__exportStar(require("./get-payment-runs200-response"), exports);
|
|
@@ -173,6 +176,7 @@ __exportStar(require("./update-asset"), exports);
|
|
|
173
176
|
__exportStar(require("./update-asset-category"), exports);
|
|
174
177
|
__exportStar(require("./update-asset-feature"), exports);
|
|
175
178
|
__exportStar(require("./update-checklist-task-template"), exports);
|
|
179
|
+
__exportStar(require("./update-configuration-setting"), exports);
|
|
176
180
|
__exportStar(require("./update-extensibility-repo"), exports);
|
|
177
181
|
__exportStar(require("./update-map-feature"), exports);
|
|
178
182
|
__exportStar(require("./update-note"), exports);
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { WorkflowDefinitionResponse } from './workflow-definition-response';
|
|
13
13
|
import type { CalendarResponse } from './calendar-response';
|
|
14
|
-
import type {
|
|
14
|
+
import type { ConfigurationSettingResponse } from './configuration-setting-response';
|
|
15
15
|
import type { CommunicationResponse } from './communication-response';
|
|
16
16
|
import type { ContactResponse } from './contact-response';
|
|
17
17
|
import type { ChecklistResponse } from './checklist-response';
|
|
@@ -179,10 +179,10 @@ export interface OrgResponse {
|
|
|
179
179
|
note?: Array<NoteResponse>;
|
|
180
180
|
/**
|
|
181
181
|
*
|
|
182
|
-
* @type {Array<
|
|
182
|
+
* @type {Array<ConfigurationSettingResponse>}
|
|
183
183
|
* @memberof OrgResponse
|
|
184
184
|
*/
|
|
185
|
-
|
|
185
|
+
configurationSettings?: Array<ConfigurationSettingResponse>;
|
|
186
186
|
/**
|
|
187
187
|
*
|
|
188
188
|
* @type {Array<CustomerResponse>}
|
|
@@ -218,7 +218,7 @@ export interface OrgResponse {
|
|
|
218
218
|
* @type {Array<PlanResponse>}
|
|
219
219
|
* @memberof OrgResponse
|
|
220
220
|
*/
|
|
221
|
-
|
|
221
|
+
plans?: Array<PlanResponse>;
|
|
222
222
|
}
|
|
223
223
|
/**
|
|
224
224
|
* Check if a given object implements the OrgResponse interface.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"org-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/org-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAOjF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAO5D,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"org-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/org-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAOjF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAO5D,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,kCAAkC,CAAC;AAOrF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAOtE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAO1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAO9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAOpD,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAOtF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAOtD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAOpD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAO7E,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAOrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAOpD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAOzE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAOvE,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAOrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAOpD,OAAO,KAAK,EAAE,qCAAqC,EAAE,MAAM,4CAA4C,CAAC;AAOxG,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAOpE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAO1D,OAAO,KAAK,EAAE,uCAAuC,EAAE,MAAM,8CAA8C,CAAC;AAO5G,OAAO,KAAK,EAAE,qCAAqC,EAAE,MAAM,4CAA4C,CAAC;AAOxG,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAOpD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAQ5D;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IAC5B;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IAC5B;;;;OAIG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;;;OAIG;IACH,SAAS,EAAE,IAAI,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,CAAC;IAC5D;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,0BAA0B,CAAC,CAAC;IACxD;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,CAAC;IACpD;;;;OAIG;IACH,8BAA8B,CAAC,EAAE,KAAK,CAAC,qCAAqC,CAAC,CAAC;IAC9E;;;;OAIG;IACH,gCAAgC,CAAC,EAAE,KAAK,CAAC,uCAAuC,CAAC,CAAC;IAClF;;;;OAIG;IACH,8BAA8B,CAAC,EAAE,KAAK,CAAC,qCAAqC,CAAC,CAAC;IAC9E;;;;OAIG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;IAC9B;;;;OAIG;IACH,eAAe,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,CAAC;IAC/C;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;IAC5C;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;IAC5C;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IACpC;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACtC;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;IAC5C;;;;OAIG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,CAAC;IAC5D;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IACpC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,CAAC;IAClC;;;;OAIG;IACH,eAAe,CAAC,EAAE,KAAK,CAAC,sBAAsB,CAAC,CAAC;IAChD;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,CAAC;IAC9C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,CAAC;IAClC;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;CAC/B;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,WAAW,CAQzE;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,GAAG,GAAG,WAAW,CAE1D;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,WAAW,CAqC7F;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,GAAG,GAAG,WAAW,CAExD;AAED,wBAAgB,sBAAsB,CAAC,KAAK,CAAC,EAAE,WAAW,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAsC5G"}
|
|
@@ -16,7 +16,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.OrgResponseToJSONTyped = exports.OrgResponseToJSON = exports.OrgResponseFromJSONTyped = exports.OrgResponseFromJSON = exports.instanceOfOrgResponse = void 0;
|
|
17
17
|
const workflow_definition_response_1 = require("./workflow-definition-response");
|
|
18
18
|
const calendar_response_1 = require("./calendar-response");
|
|
19
|
-
const
|
|
19
|
+
const configuration_setting_response_1 = require("./configuration-setting-response");
|
|
20
20
|
const communication_response_1 = require("./communication-response");
|
|
21
21
|
const contact_response_1 = require("./contact-response");
|
|
22
22
|
const checklist_response_1 = require("./checklist-response");
|
|
@@ -89,13 +89,13 @@ function OrgResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
89
89
|
'checklists': json['checklists'] == null ? undefined : (json['checklists'].map(checklist_response_1.ChecklistResponseFromJSON)),
|
|
90
90
|
'taskTemplates': json['taskTemplates'] == null ? undefined : (json['taskTemplates'].map(task_template_response_1.TaskTemplateResponseFromJSON)),
|
|
91
91
|
'note': json['Note'] == null ? undefined : (json['Note'].map(note_response_1.NoteResponseFromJSON)),
|
|
92
|
-
'
|
|
92
|
+
'configurationSettings': json['configurationSettings'] == null ? undefined : (json['configurationSettings'].map(configuration_setting_response_1.ConfigurationSettingResponseFromJSON)),
|
|
93
93
|
'customers': json['customers'] == null ? undefined : (json['customers'].map(customer_response_1.CustomerResponseFromJSON)),
|
|
94
94
|
'contacts': json['contacts'] == null ? undefined : (json['contacts'].map(contact_response_1.ContactResponseFromJSON)),
|
|
95
95
|
'projectVersions': json['projectVersions'] == null ? undefined : (json['projectVersions'].map(project_version_response_1.ProjectVersionResponseFromJSON)),
|
|
96
96
|
'communications': json['communications'] == null ? undefined : (json['communications'].map(communication_response_1.CommunicationResponseFromJSON)),
|
|
97
97
|
'products': json['products'] == null ? undefined : (json['products'].map(product_response_1.ProductResponseFromJSON)),
|
|
98
|
-
'
|
|
98
|
+
'plans': json['plans'] == null ? undefined : (json['plans'].map(plan_response_1.PlanResponseFromJSON)),
|
|
99
99
|
};
|
|
100
100
|
}
|
|
101
101
|
exports.OrgResponseFromJSONTyped = OrgResponseFromJSONTyped;
|
|
@@ -131,13 +131,13 @@ function OrgResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
131
131
|
'checklists': value['checklists'] == null ? undefined : (value['checklists'].map(checklist_response_1.ChecklistResponseToJSON)),
|
|
132
132
|
'taskTemplates': value['taskTemplates'] == null ? undefined : (value['taskTemplates'].map(task_template_response_1.TaskTemplateResponseToJSON)),
|
|
133
133
|
'Note': value['note'] == null ? undefined : (value['note'].map(note_response_1.NoteResponseToJSON)),
|
|
134
|
-
'
|
|
134
|
+
'configurationSettings': value['configurationSettings'] == null ? undefined : (value['configurationSettings'].map(configuration_setting_response_1.ConfigurationSettingResponseToJSON)),
|
|
135
135
|
'customers': value['customers'] == null ? undefined : (value['customers'].map(customer_response_1.CustomerResponseToJSON)),
|
|
136
136
|
'contacts': value['contacts'] == null ? undefined : (value['contacts'].map(contact_response_1.ContactResponseToJSON)),
|
|
137
137
|
'projectVersions': value['projectVersions'] == null ? undefined : (value['projectVersions'].map(project_version_response_1.ProjectVersionResponseToJSON)),
|
|
138
138
|
'communications': value['communications'] == null ? undefined : (value['communications'].map(communication_response_1.CommunicationResponseToJSON)),
|
|
139
139
|
'products': value['products'] == null ? undefined : (value['products'].map(product_response_1.ProductResponseToJSON)),
|
|
140
|
-
'
|
|
140
|
+
'plans': value['plans'] == null ? undefined : (value['plans'].map(plan_response_1.PlanResponseToJSON)),
|
|
141
141
|
};
|
|
142
142
|
}
|
|
143
143
|
exports.OrgResponseToJSONTyped = OrgResponseToJSONTyped;
|
|
@@ -156,10 +156,10 @@ export interface PaymentResponse {
|
|
|
156
156
|
updatedAt: string;
|
|
157
157
|
/**
|
|
158
158
|
* Number of times attempts failed
|
|
159
|
-
* @type {
|
|
159
|
+
* @type {number}
|
|
160
160
|
* @memberof PaymentResponse
|
|
161
161
|
*/
|
|
162
|
-
failedAttempts:
|
|
162
|
+
failedAttempts: number;
|
|
163
163
|
/**
|
|
164
164
|
* Reason for failed attempt
|
|
165
165
|
* @type {string}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { CalendarResponse } from './calendar-response';
|
|
13
|
-
import type {
|
|
13
|
+
import type { ConfigurationSettingResponse } from './configuration-setting-response';
|
|
14
14
|
import type { CommunicationResponse } from './communication-response';
|
|
15
15
|
import type { OrgResponse } from './org-response';
|
|
16
16
|
import type { ChecklistResponse } from './checklist-response';
|
|
@@ -153,10 +153,10 @@ export interface SiteResponse {
|
|
|
153
153
|
notes?: Array<NoteResponse>;
|
|
154
154
|
/**
|
|
155
155
|
*
|
|
156
|
-
* @type {Array<
|
|
156
|
+
* @type {Array<ConfigurationSettingResponse>}
|
|
157
157
|
* @memberof SiteResponse
|
|
158
158
|
*/
|
|
159
|
-
|
|
159
|
+
configurationSettings?: Array<ConfigurationSettingResponse>;
|
|
160
160
|
/**
|
|
161
161
|
*
|
|
162
162
|
* @type {Array<CommunicationResponse>}
|
|
@@ -174,7 +174,7 @@ export interface SiteResponse {
|
|
|
174
174
|
* @type {Array<PlanResponse>}
|
|
175
175
|
* @memberof SiteResponse
|
|
176
176
|
*/
|
|
177
|
-
|
|
177
|
+
plans?: Array<PlanResponse>;
|
|
178
178
|
}
|
|
179
179
|
/**
|
|
180
180
|
* Check if a given object implements the SiteResponse interface.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/site-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAO5D,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"site-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/site-response.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.SiteResponseToJSONTyped = exports.SiteResponseToJSON = exports.SiteResponseFromJSONTyped = exports.SiteResponseFromJSON = exports.instanceOfSiteResponse = void 0;
|
|
17
17
|
const calendar_response_1 = require("./calendar-response");
|
|
18
|
-
const
|
|
18
|
+
const configuration_setting_response_1 = require("./configuration-setting-response");
|
|
19
19
|
const communication_response_1 = require("./communication-response");
|
|
20
20
|
const org_response_1 = require("./org-response");
|
|
21
21
|
const checklist_response_1 = require("./checklist-response");
|
|
@@ -82,10 +82,10 @@ function SiteResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
82
82
|
'checklists': json['checklists'] == null ? undefined : (json['checklists'].map(checklist_response_1.ChecklistResponseFromJSON)),
|
|
83
83
|
'taskTemplates': json['taskTemplates'] == null ? undefined : (json['taskTemplates'].map(task_template_response_1.TaskTemplateResponseFromJSON)),
|
|
84
84
|
'notes': json['notes'] == null ? undefined : (json['notes'].map(note_response_1.NoteResponseFromJSON)),
|
|
85
|
-
'
|
|
85
|
+
'configurationSettings': json['configurationSettings'] == null ? undefined : (json['configurationSettings'].map(configuration_setting_response_1.ConfigurationSettingResponseFromJSON)),
|
|
86
86
|
'communications': json['communications'] == null ? undefined : (json['communications'].map(communication_response_1.CommunicationResponseFromJSON)),
|
|
87
87
|
'products': json['products'] == null ? undefined : (json['products'].map(product_response_1.ProductResponseFromJSON)),
|
|
88
|
-
'
|
|
88
|
+
'plans': json['plans'] == null ? undefined : (json['plans'].map(plan_response_1.PlanResponseFromJSON)),
|
|
89
89
|
};
|
|
90
90
|
}
|
|
91
91
|
exports.SiteResponseFromJSONTyped = SiteResponseFromJSONTyped;
|
|
@@ -118,10 +118,10 @@ function SiteResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
118
118
|
'checklists': value['checklists'] == null ? undefined : (value['checklists'].map(checklist_response_1.ChecklistResponseToJSON)),
|
|
119
119
|
'taskTemplates': value['taskTemplates'] == null ? undefined : (value['taskTemplates'].map(task_template_response_1.TaskTemplateResponseToJSON)),
|
|
120
120
|
'notes': value['notes'] == null ? undefined : (value['notes'].map(note_response_1.NoteResponseToJSON)),
|
|
121
|
-
'
|
|
121
|
+
'configurationSettings': value['configurationSettings'] == null ? undefined : (value['configurationSettings'].map(configuration_setting_response_1.ConfigurationSettingResponseToJSON)),
|
|
122
122
|
'communications': value['communications'] == null ? undefined : (value['communications'].map(communication_response_1.CommunicationResponseToJSON)),
|
|
123
123
|
'products': value['products'] == null ? undefined : (value['products'].map(product_response_1.ProductResponseToJSON)),
|
|
124
|
-
'
|
|
124
|
+
'plans': value['plans'] == null ? undefined : (value['plans'].map(plan_response_1.PlanResponseToJSON)),
|
|
125
125
|
};
|
|
126
126
|
}
|
|
127
127
|
exports.SiteResponseToJSONTyped = SiteResponseToJSONTyped;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ManageSpace V2 Auth API
|
|
3
|
+
* ManageSpace Auth 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 { ConfigurationSettingType } from './configuration-setting-type';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateConfigurationSetting
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateConfigurationSetting {
|
|
19
|
+
/**
|
|
20
|
+
* Name of setting
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof UpdateConfigurationSetting
|
|
23
|
+
*/
|
|
24
|
+
name?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Description of setting
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof UpdateConfigurationSetting
|
|
29
|
+
*/
|
|
30
|
+
description?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ConfigurationSettingType}
|
|
34
|
+
* @memberof UpdateConfigurationSetting
|
|
35
|
+
*/
|
|
36
|
+
type?: ConfigurationSettingType;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof UpdateConfigurationSetting
|
|
41
|
+
*/
|
|
42
|
+
value?: string;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Check if a given object implements the UpdateConfigurationSetting interface.
|
|
46
|
+
*/
|
|
47
|
+
export declare function instanceOfUpdateConfigurationSetting(value: object): value is UpdateConfigurationSetting;
|
|
48
|
+
export declare function UpdateConfigurationSettingFromJSON(json: any): UpdateConfigurationSetting;
|
|
49
|
+
export declare function UpdateConfigurationSettingFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateConfigurationSetting;
|
|
50
|
+
export declare function UpdateConfigurationSettingToJSON(json: any): UpdateConfigurationSetting;
|
|
51
|
+
export declare function UpdateConfigurationSettingToJSONTyped(value?: UpdateConfigurationSetting | null, ignoreDiscriminator?: boolean): any;
|
|
52
|
+
//# sourceMappingURL=update-configuration-setting.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-configuration-setting.d.ts","sourceRoot":"","sources":["../../../src/generated/models/update-configuration-setting.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAQ7E;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,IAAI,CAAC,EAAE,wBAAwB,CAAC;IAChC;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAID;;GAEG;AACH,wBAAgB,oCAAoC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,0BAA0B,CAEvG;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,GAAG,GAAG,0BAA0B,CAExF;AAED,wBAAgB,uCAAuC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,0BAA0B,CAW3H;AAED,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,GAAG,GAAG,0BAA0B,CAEtF;AAED,wBAAgB,qCAAqC,CAAC,KAAK,CAAC,EAAE,0BAA0B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAY1I"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* ManageSpace V2 Auth API
|
|
6
|
+
* ManageSpace Auth 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.UpdateConfigurationSettingToJSONTyped = exports.UpdateConfigurationSettingToJSON = exports.UpdateConfigurationSettingFromJSONTyped = exports.UpdateConfigurationSettingFromJSON = exports.instanceOfUpdateConfigurationSetting = void 0;
|
|
17
|
+
const configuration_setting_type_1 = require("./configuration-setting-type");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the UpdateConfigurationSetting interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfUpdateConfigurationSetting(value) {
|
|
22
|
+
return true;
|
|
23
|
+
}
|
|
24
|
+
exports.instanceOfUpdateConfigurationSetting = instanceOfUpdateConfigurationSetting;
|
|
25
|
+
function UpdateConfigurationSettingFromJSON(json) {
|
|
26
|
+
return UpdateConfigurationSettingFromJSONTyped(json, false);
|
|
27
|
+
}
|
|
28
|
+
exports.UpdateConfigurationSettingFromJSON = UpdateConfigurationSettingFromJSON;
|
|
29
|
+
function UpdateConfigurationSettingFromJSONTyped(json, ignoreDiscriminator) {
|
|
30
|
+
if (json == null) {
|
|
31
|
+
return json;
|
|
32
|
+
}
|
|
33
|
+
return {
|
|
34
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
35
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
36
|
+
'type': json['type'] == null ? undefined : (0, configuration_setting_type_1.ConfigurationSettingTypeFromJSON)(json['type']),
|
|
37
|
+
'value': json['value'] == null ? undefined : json['value'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
exports.UpdateConfigurationSettingFromJSONTyped = UpdateConfigurationSettingFromJSONTyped;
|
|
41
|
+
function UpdateConfigurationSettingToJSON(json) {
|
|
42
|
+
return UpdateConfigurationSettingToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
exports.UpdateConfigurationSettingToJSON = UpdateConfigurationSettingToJSON;
|
|
45
|
+
function UpdateConfigurationSettingToJSONTyped(value, ignoreDiscriminator = false) {
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'name': value['name'],
|
|
51
|
+
'description': value['description'],
|
|
52
|
+
'type': (0, configuration_setting_type_1.ConfigurationSettingTypeToJSON)(value['type']),
|
|
53
|
+
'value': value['value'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
exports.UpdateConfigurationSettingToJSONTyped = UpdateConfigurationSettingToJSONTyped;
|