@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
|
@@ -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 CreateConfigurationSetting
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateConfigurationSetting {
|
|
19
|
+
/**
|
|
20
|
+
* Name of setting
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateConfigurationSetting
|
|
23
|
+
*/
|
|
24
|
+
name: string;
|
|
25
|
+
/**
|
|
26
|
+
* Description of setting
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CreateConfigurationSetting
|
|
29
|
+
*/
|
|
30
|
+
description: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ConfigurationSettingType}
|
|
34
|
+
* @memberof CreateConfigurationSetting
|
|
35
|
+
*/
|
|
36
|
+
type: ConfigurationSettingType;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreateConfigurationSetting
|
|
41
|
+
*/
|
|
42
|
+
value: string;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Check if a given object implements the CreateConfigurationSetting interface.
|
|
46
|
+
*/
|
|
47
|
+
export declare function instanceOfCreateConfigurationSetting(value: object): value is CreateConfigurationSetting;
|
|
48
|
+
export declare function CreateConfigurationSettingFromJSON(json: any): CreateConfigurationSetting;
|
|
49
|
+
export declare function CreateConfigurationSettingFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateConfigurationSetting;
|
|
50
|
+
export declare function CreateConfigurationSettingToJSON(json: any): CreateConfigurationSetting;
|
|
51
|
+
export declare function CreateConfigurationSettingToJSONTyped(value?: CreateConfigurationSetting | null, ignoreDiscriminator?: boolean): any;
|
|
52
|
+
//# sourceMappingURL=create-configuration-setting.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-configuration-setting.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-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,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,IAAI,EAAE,wBAAwB,CAAC;IAC/B;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;CACjB;AAID;;GAEG;AACH,wBAAgB,oCAAoC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,0BAA0B,CAMvG;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,64 @@
|
|
|
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.CreateConfigurationSettingToJSONTyped = exports.CreateConfigurationSettingToJSON = exports.CreateConfigurationSettingFromJSONTyped = exports.CreateConfigurationSettingFromJSON = exports.instanceOfCreateConfigurationSetting = void 0;
|
|
17
|
+
const configuration_setting_type_1 = require("./configuration-setting-type");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the CreateConfigurationSetting interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfCreateConfigurationSetting(value) {
|
|
22
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
if (!('description' in value) || value['description'] === undefined)
|
|
25
|
+
return false;
|
|
26
|
+
if (!('type' in value) || value['type'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('value' in value) || value['value'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
exports.instanceOfCreateConfigurationSetting = instanceOfCreateConfigurationSetting;
|
|
33
|
+
function CreateConfigurationSettingFromJSON(json) {
|
|
34
|
+
return CreateConfigurationSettingFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
exports.CreateConfigurationSettingFromJSON = CreateConfigurationSettingFromJSON;
|
|
37
|
+
function CreateConfigurationSettingFromJSONTyped(json, ignoreDiscriminator) {
|
|
38
|
+
if (json == null) {
|
|
39
|
+
return json;
|
|
40
|
+
}
|
|
41
|
+
return {
|
|
42
|
+
'name': json['name'],
|
|
43
|
+
'description': json['description'],
|
|
44
|
+
'type': (0, configuration_setting_type_1.ConfigurationSettingTypeFromJSON)(json['type']),
|
|
45
|
+
'value': json['value'],
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
exports.CreateConfigurationSettingFromJSONTyped = CreateConfigurationSettingFromJSONTyped;
|
|
49
|
+
function CreateConfigurationSettingToJSON(json) {
|
|
50
|
+
return CreateConfigurationSettingToJSONTyped(json, false);
|
|
51
|
+
}
|
|
52
|
+
exports.CreateConfigurationSettingToJSON = CreateConfigurationSettingToJSON;
|
|
53
|
+
function CreateConfigurationSettingToJSONTyped(value, ignoreDiscriminator = false) {
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return value;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
'name': value['name'],
|
|
59
|
+
'description': value['description'],
|
|
60
|
+
'type': (0, configuration_setting_type_1.ConfigurationSettingTypeToJSON)(value['type']),
|
|
61
|
+
'value': value['value'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
exports.CreateConfigurationSettingToJSONTyped = CreateConfigurationSettingToJSONTyped;
|
|
@@ -21,7 +21,7 @@ export interface CreatePaymentRun {
|
|
|
21
21
|
* @type {PaymentRunFilterOptionResponse}
|
|
22
22
|
* @memberof CreatePaymentRun
|
|
23
23
|
*/
|
|
24
|
-
filterOptions
|
|
24
|
+
filterOptions?: PaymentRunFilterOptionResponse;
|
|
25
25
|
/**
|
|
26
26
|
* The last Date included in the Payment Run
|
|
27
27
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-payment-run.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-payment-run.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AAQ3F;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,aAAa,EAAE,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"create-payment-run.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-payment-run.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AAQ3F;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,aAAa,CAAC,EAAE,8BAA8B,CAAC;IAC/C;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gBAAgB,CAGnF;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAEpE;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gBAAgB,CASvG;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,CAUtH"}
|
|
@@ -19,8 +19,6 @@ const payment_run_filter_option_response_1 = require("./payment-run-filter-optio
|
|
|
19
19
|
* Check if a given object implements the CreatePaymentRun interface.
|
|
20
20
|
*/
|
|
21
21
|
function instanceOfCreatePaymentRun(value) {
|
|
22
|
-
if (!('filterOptions' in value) || value['filterOptions'] === undefined)
|
|
23
|
-
return false;
|
|
24
22
|
if (!('targetDate' in value) || value['targetDate'] === undefined)
|
|
25
23
|
return false;
|
|
26
24
|
return true;
|
|
@@ -35,7 +33,7 @@ function CreatePaymentRunFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
33
|
return json;
|
|
36
34
|
}
|
|
37
35
|
return {
|
|
38
|
-
'filterOptions': (0, payment_run_filter_option_response_1.PaymentRunFilterOptionResponseFromJSON)(json['filterOptions']),
|
|
36
|
+
'filterOptions': json['filterOptions'] == null ? undefined : (0, payment_run_filter_option_response_1.PaymentRunFilterOptionResponseFromJSON)(json['filterOptions']),
|
|
39
37
|
'targetDate': json['targetDate'],
|
|
40
38
|
};
|
|
41
39
|
}
|
|
@@ -0,0 +1,155 @@
|
|
|
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 { CreatePaymentInvoice } from './create-payment-invoice';
|
|
13
|
+
import type { CreatePaymentRefund } from './create-payment-refund';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface CreatePayment
|
|
18
|
+
*/
|
|
19
|
+
export interface CreatePayment {
|
|
20
|
+
/**
|
|
21
|
+
* Customer Id
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof CreatePayment
|
|
24
|
+
*/
|
|
25
|
+
customerId: string;
|
|
26
|
+
/**
|
|
27
|
+
* Date of payment transaction
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CreatePayment
|
|
30
|
+
*/
|
|
31
|
+
paymentDate: string;
|
|
32
|
+
/**
|
|
33
|
+
* Status of payment
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CreatePayment
|
|
36
|
+
*/
|
|
37
|
+
status: string;
|
|
38
|
+
/**
|
|
39
|
+
* Total amount of payment
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreatePayment
|
|
42
|
+
*/
|
|
43
|
+
paymentAmount: string;
|
|
44
|
+
/**
|
|
45
|
+
* Transaction Fee
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreatePayment
|
|
48
|
+
*/
|
|
49
|
+
feeAmount: string;
|
|
50
|
+
/**
|
|
51
|
+
* Amount of payment applied to invoices
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreatePayment
|
|
54
|
+
*/
|
|
55
|
+
appliedAmount: string;
|
|
56
|
+
/**
|
|
57
|
+
* Amount of payment not yet applied to invoices
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CreatePayment
|
|
60
|
+
*/
|
|
61
|
+
unappliedAmount: string;
|
|
62
|
+
/**
|
|
63
|
+
* External or Electronic payments
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CreatePayment
|
|
66
|
+
*/
|
|
67
|
+
paymentType: string;
|
|
68
|
+
/**
|
|
69
|
+
* Method of payment
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof CreatePayment
|
|
72
|
+
*/
|
|
73
|
+
paymentMethod: string;
|
|
74
|
+
/**
|
|
75
|
+
* Payment method saved and used for future billing
|
|
76
|
+
* @type {boolean}
|
|
77
|
+
* @memberof CreatePayment
|
|
78
|
+
*/
|
|
79
|
+
saveForLater: boolean;
|
|
80
|
+
/**
|
|
81
|
+
* Currency
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof CreatePayment
|
|
84
|
+
*/
|
|
85
|
+
currency: string;
|
|
86
|
+
/**
|
|
87
|
+
* Automatically apply unapplied amount to next invoice
|
|
88
|
+
* @type {boolean}
|
|
89
|
+
* @memberof CreatePayment
|
|
90
|
+
*/
|
|
91
|
+
autoApply: boolean;
|
|
92
|
+
/**
|
|
93
|
+
* General Ledger account
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof CreatePayment
|
|
96
|
+
*/
|
|
97
|
+
glAccount: string;
|
|
98
|
+
/**
|
|
99
|
+
* Generate email
|
|
100
|
+
* @type {boolean}
|
|
101
|
+
* @memberof CreatePayment
|
|
102
|
+
*/
|
|
103
|
+
emailStatus: boolean;
|
|
104
|
+
/**
|
|
105
|
+
* Custom fields on the invoice
|
|
106
|
+
* @type {object}
|
|
107
|
+
* @memberof CreatePayment
|
|
108
|
+
*/
|
|
109
|
+
customFields: object;
|
|
110
|
+
/**
|
|
111
|
+
* Miscellaneous notes
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof CreatePayment
|
|
114
|
+
*/
|
|
115
|
+
notes?: string;
|
|
116
|
+
/**
|
|
117
|
+
* Payment token
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof CreatePayment
|
|
120
|
+
*/
|
|
121
|
+
paymentToken?: string;
|
|
122
|
+
/**
|
|
123
|
+
* Reference number for payment transaction
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof CreatePayment
|
|
126
|
+
*/
|
|
127
|
+
referenceNumber?: string;
|
|
128
|
+
/**
|
|
129
|
+
* Gateway Name for electronic payment
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof CreatePayment
|
|
132
|
+
*/
|
|
133
|
+
gatewayName?: string;
|
|
134
|
+
/**
|
|
135
|
+
* List of invoices paid by payment
|
|
136
|
+
* @type {Array<CreatePaymentInvoice>}
|
|
137
|
+
* @memberof CreatePayment
|
|
138
|
+
*/
|
|
139
|
+
invoices: Array<CreatePaymentInvoice>;
|
|
140
|
+
/**
|
|
141
|
+
* List of refunds associated with payment
|
|
142
|
+
* @type {Array<CreatePaymentRefund>}
|
|
143
|
+
* @memberof CreatePayment
|
|
144
|
+
*/
|
|
145
|
+
refunds?: Array<CreatePaymentRefund>;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Check if a given object implements the CreatePayment interface.
|
|
149
|
+
*/
|
|
150
|
+
export declare function instanceOfCreatePayment(value: object): value is CreatePayment;
|
|
151
|
+
export declare function CreatePaymentFromJSON(json: any): CreatePayment;
|
|
152
|
+
export declare function CreatePaymentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePayment;
|
|
153
|
+
export declare function CreatePaymentToJSON(json: any): CreatePayment;
|
|
154
|
+
export declare function CreatePaymentToJSONTyped(value?: CreatePayment | null, ignoreDiscriminator?: boolean): any;
|
|
155
|
+
//# sourceMappingURL=create-payment.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-payment.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-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,aAAa;IAC1B;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,WAAW,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,QAAQ,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;IACtC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,mBAAmB,CAAC,CAAC;CACxC;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,aAAa,CAkB7E;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,GAAG,GAAG,aAAa,CAE9D;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,aAAa,CA4BjG;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,GAAG,GAAG,aAAa,CAE5D;AAED,wBAAgB,wBAAwB,CAAC,KAAK,CAAC,EAAE,aAAa,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CA6BhH"}
|
|
@@ -0,0 +1,123 @@
|
|
|
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.CreatePaymentToJSONTyped = exports.CreatePaymentToJSON = exports.CreatePaymentFromJSONTyped = exports.CreatePaymentFromJSON = exports.instanceOfCreatePayment = void 0;
|
|
17
|
+
const create_payment_invoice_1 = require("./create-payment-invoice");
|
|
18
|
+
const create_payment_refund_1 = require("./create-payment-refund");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the CreatePayment interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfCreatePayment(value) {
|
|
23
|
+
if (!('customerId' in value) || value['customerId'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('paymentDate' in value) || value['paymentDate'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('status' in value) || value['status'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('paymentAmount' in value) || value['paymentAmount'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('feeAmount' in value) || value['feeAmount'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('appliedAmount' in value) || value['appliedAmount'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('unappliedAmount' in value) || value['unappliedAmount'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('paymentType' in value) || value['paymentType'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('paymentMethod' in value) || value['paymentMethod'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
if (!('saveForLater' in value) || value['saveForLater'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
if (!('currency' in value) || value['currency'] === undefined)
|
|
44
|
+
return false;
|
|
45
|
+
if (!('autoApply' in value) || value['autoApply'] === undefined)
|
|
46
|
+
return false;
|
|
47
|
+
if (!('glAccount' in value) || value['glAccount'] === undefined)
|
|
48
|
+
return false;
|
|
49
|
+
if (!('emailStatus' in value) || value['emailStatus'] === undefined)
|
|
50
|
+
return false;
|
|
51
|
+
if (!('customFields' in value) || value['customFields'] === undefined)
|
|
52
|
+
return false;
|
|
53
|
+
if (!('invoices' in value) || value['invoices'] === undefined)
|
|
54
|
+
return false;
|
|
55
|
+
return true;
|
|
56
|
+
}
|
|
57
|
+
exports.instanceOfCreatePayment = instanceOfCreatePayment;
|
|
58
|
+
function CreatePaymentFromJSON(json) {
|
|
59
|
+
return CreatePaymentFromJSONTyped(json, false);
|
|
60
|
+
}
|
|
61
|
+
exports.CreatePaymentFromJSON = CreatePaymentFromJSON;
|
|
62
|
+
function CreatePaymentFromJSONTyped(json, ignoreDiscriminator) {
|
|
63
|
+
if (json == null) {
|
|
64
|
+
return json;
|
|
65
|
+
}
|
|
66
|
+
return {
|
|
67
|
+
'customerId': json['customerId'],
|
|
68
|
+
'paymentDate': json['paymentDate'],
|
|
69
|
+
'status': json['status'],
|
|
70
|
+
'paymentAmount': json['paymentAmount'],
|
|
71
|
+
'feeAmount': json['feeAmount'],
|
|
72
|
+
'appliedAmount': json['appliedAmount'],
|
|
73
|
+
'unappliedAmount': json['unappliedAmount'],
|
|
74
|
+
'paymentType': json['paymentType'],
|
|
75
|
+
'paymentMethod': json['paymentMethod'],
|
|
76
|
+
'saveForLater': json['saveForLater'],
|
|
77
|
+
'currency': json['currency'],
|
|
78
|
+
'autoApply': json['autoApply'],
|
|
79
|
+
'glAccount': json['glAccount'],
|
|
80
|
+
'emailStatus': json['emailStatus'],
|
|
81
|
+
'customFields': json['customFields'],
|
|
82
|
+
'notes': json['notes'] == null ? undefined : json['notes'],
|
|
83
|
+
'paymentToken': json['paymentToken'] == null ? undefined : json['paymentToken'],
|
|
84
|
+
'referenceNumber': json['referenceNumber'] == null ? undefined : json['referenceNumber'],
|
|
85
|
+
'gatewayName': json['gatewayName'] == null ? undefined : json['gatewayName'],
|
|
86
|
+
'invoices': (json['invoices'].map(create_payment_invoice_1.CreatePaymentInvoiceFromJSON)),
|
|
87
|
+
'refunds': json['refunds'] == null ? undefined : (json['refunds'].map(create_payment_refund_1.CreatePaymentRefundFromJSON)),
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
exports.CreatePaymentFromJSONTyped = CreatePaymentFromJSONTyped;
|
|
91
|
+
function CreatePaymentToJSON(json) {
|
|
92
|
+
return CreatePaymentToJSONTyped(json, false);
|
|
93
|
+
}
|
|
94
|
+
exports.CreatePaymentToJSON = CreatePaymentToJSON;
|
|
95
|
+
function CreatePaymentToJSONTyped(value, ignoreDiscriminator = false) {
|
|
96
|
+
if (value == null) {
|
|
97
|
+
return value;
|
|
98
|
+
}
|
|
99
|
+
return {
|
|
100
|
+
'customerId': value['customerId'],
|
|
101
|
+
'paymentDate': value['paymentDate'],
|
|
102
|
+
'status': value['status'],
|
|
103
|
+
'paymentAmount': value['paymentAmount'],
|
|
104
|
+
'feeAmount': value['feeAmount'],
|
|
105
|
+
'appliedAmount': value['appliedAmount'],
|
|
106
|
+
'unappliedAmount': value['unappliedAmount'],
|
|
107
|
+
'paymentType': value['paymentType'],
|
|
108
|
+
'paymentMethod': value['paymentMethod'],
|
|
109
|
+
'saveForLater': value['saveForLater'],
|
|
110
|
+
'currency': value['currency'],
|
|
111
|
+
'autoApply': value['autoApply'],
|
|
112
|
+
'glAccount': value['glAccount'],
|
|
113
|
+
'emailStatus': value['emailStatus'],
|
|
114
|
+
'customFields': value['customFields'],
|
|
115
|
+
'notes': value['notes'],
|
|
116
|
+
'paymentToken': value['paymentToken'],
|
|
117
|
+
'referenceNumber': value['referenceNumber'],
|
|
118
|
+
'gatewayName': value['gatewayName'],
|
|
119
|
+
'invoices': (value['invoices'].map(create_payment_invoice_1.CreatePaymentInvoiceToJSON)),
|
|
120
|
+
'refunds': value['refunds'] == null ? undefined : (value['refunds'].map(create_payment_refund_1.CreatePaymentRefundToJSON)),
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
exports.CreatePaymentToJSONTyped = CreatePaymentToJSONTyped;
|
|
@@ -0,0 +1,69 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateRevenueRule
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateRevenueRule {
|
|
18
|
+
/**
|
|
19
|
+
* Name of Revenue Rule
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateRevenueRule
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
/**
|
|
25
|
+
* Revenue Recognition Method
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateRevenueRule
|
|
28
|
+
*/
|
|
29
|
+
recoginitionMethod: string;
|
|
30
|
+
/**
|
|
31
|
+
* `Time period of recognition for rule
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateRevenueRule
|
|
34
|
+
*/
|
|
35
|
+
recognitionSchedulePeriod: string;
|
|
36
|
+
/**
|
|
37
|
+
* Day of the month we will recognize the revenue
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateRevenueRule
|
|
40
|
+
*/
|
|
41
|
+
postingDay: string;
|
|
42
|
+
/**
|
|
43
|
+
* Whether we will be recognizing it Automatically or Manually
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateRevenueRule
|
|
46
|
+
*/
|
|
47
|
+
postingMethod: string;
|
|
48
|
+
/**
|
|
49
|
+
* Revenue rule status
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateRevenueRule
|
|
52
|
+
*/
|
|
53
|
+
status: string;
|
|
54
|
+
/**
|
|
55
|
+
* Whether revenue rule will align with periods in a controct or fixed
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateRevenueRule
|
|
58
|
+
*/
|
|
59
|
+
recognitionTerm: string;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Check if a given object implements the CreateRevenueRule interface.
|
|
63
|
+
*/
|
|
64
|
+
export declare function instanceOfCreateRevenueRule(value: object): value is CreateRevenueRule;
|
|
65
|
+
export declare function CreateRevenueRuleFromJSON(json: any): CreateRevenueRule;
|
|
66
|
+
export declare function CreateRevenueRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRevenueRule;
|
|
67
|
+
export declare function CreateRevenueRuleToJSON(json: any): CreateRevenueRule;
|
|
68
|
+
export declare function CreateRevenueRuleToJSONTyped(value?: CreateRevenueRule | null, ignoreDiscriminator?: boolean): any;
|
|
69
|
+
//# sourceMappingURL=create-revenue-rule.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-revenue-rule.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-revenue-rule.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,iBAAiB,CASrF;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,GAAG,GAAG,iBAAiB,CAEtE;AAED,wBAAgB,8BAA8B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,iBAAiB,CAczG;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,GAAG,GAAG,iBAAiB,CAEpE;AAED,wBAAgB,4BAA4B,CAAC,KAAK,CAAC,EAAE,iBAAiB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAexH"}
|
|
@@ -0,0 +1,75 @@
|
|
|
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.CreateRevenueRuleToJSONTyped = exports.CreateRevenueRuleToJSON = exports.CreateRevenueRuleFromJSONTyped = exports.CreateRevenueRuleFromJSON = exports.instanceOfCreateRevenueRule = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the CreateRevenueRule interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfCreateRevenueRule(value) {
|
|
21
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('recoginitionMethod' in value) || value['recoginitionMethod'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('recognitionSchedulePeriod' in value) || value['recognitionSchedulePeriod'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('postingDay' in value) || value['postingDay'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('postingMethod' in value) || value['postingMethod'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('status' in value) || value['status'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('recognitionTerm' in value) || value['recognitionTerm'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
exports.instanceOfCreateRevenueRule = instanceOfCreateRevenueRule;
|
|
38
|
+
function CreateRevenueRuleFromJSON(json) {
|
|
39
|
+
return CreateRevenueRuleFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
exports.CreateRevenueRuleFromJSON = CreateRevenueRuleFromJSON;
|
|
42
|
+
function CreateRevenueRuleFromJSONTyped(json, ignoreDiscriminator) {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'name': json['name'],
|
|
48
|
+
'recoginitionMethod': json['recoginitionMethod'],
|
|
49
|
+
'recognitionSchedulePeriod': json['recognitionSchedulePeriod'],
|
|
50
|
+
'postingDay': json['postingDay'],
|
|
51
|
+
'postingMethod': json['postingMethod'],
|
|
52
|
+
'status': json['status'],
|
|
53
|
+
'recognitionTerm': json['recognitionTerm'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
exports.CreateRevenueRuleFromJSONTyped = CreateRevenueRuleFromJSONTyped;
|
|
57
|
+
function CreateRevenueRuleToJSON(json) {
|
|
58
|
+
return CreateRevenueRuleToJSONTyped(json, false);
|
|
59
|
+
}
|
|
60
|
+
exports.CreateRevenueRuleToJSON = CreateRevenueRuleToJSON;
|
|
61
|
+
function CreateRevenueRuleToJSONTyped(value, ignoreDiscriminator = false) {
|
|
62
|
+
if (value == null) {
|
|
63
|
+
return value;
|
|
64
|
+
}
|
|
65
|
+
return {
|
|
66
|
+
'name': value['name'],
|
|
67
|
+
'recoginitionMethod': value['recoginitionMethod'],
|
|
68
|
+
'recognitionSchedulePeriod': value['recognitionSchedulePeriod'],
|
|
69
|
+
'postingDay': value['postingDay'],
|
|
70
|
+
'postingMethod': value['postingMethod'],
|
|
71
|
+
'status': value['status'],
|
|
72
|
+
'recognitionTerm': value['recognitionTerm'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
exports.CreateRevenueRuleToJSONTyped = CreateRevenueRuleToJSONTyped;
|
|
@@ -9,19 +9,12 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { CreateSubscriptionPlan } from './create-subscription-plan';
|
|
13
12
|
/**
|
|
14
13
|
*
|
|
15
14
|
* @export
|
|
16
15
|
* @interface CreateSubscription
|
|
17
16
|
*/
|
|
18
17
|
export interface CreateSubscription {
|
|
19
|
-
/**
|
|
20
|
-
* Asset id associated with subscription
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof CreateSubscription
|
|
23
|
-
*/
|
|
24
|
-
assetId: string;
|
|
25
18
|
/**
|
|
26
19
|
* Status of subscription contract
|
|
27
20
|
* @type {string}
|
|
@@ -46,18 +39,12 @@ export interface CreateSubscription {
|
|
|
46
39
|
* @memberof CreateSubscription
|
|
47
40
|
*/
|
|
48
41
|
billingStartDate: string;
|
|
49
|
-
/**
|
|
50
|
-
* separate invoice generated
|
|
51
|
-
* @type {boolean}
|
|
52
|
-
* @memberof CreateSubscription
|
|
53
|
-
*/
|
|
54
|
-
separateInvoice: boolean;
|
|
55
42
|
/**
|
|
56
43
|
* Subscription plan details
|
|
57
|
-
* @type {Array<
|
|
44
|
+
* @type {Array<string>}
|
|
58
45
|
* @memberof CreateSubscription
|
|
59
46
|
*/
|
|
60
|
-
|
|
47
|
+
planIds: Array<string>;
|
|
61
48
|
}
|
|
62
49
|
/**
|
|
63
50
|
* Check if a given object implements the CreateSubscription interface.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-subscription.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-subscription.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH
|
|
1
|
+
{"version":3,"file":"create-subscription.d.ts","sourceRoot":"","sources":["../../../src/generated/models/create-subscription.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC1B;AAED;;GAEG;AACH,wBAAgB,4BAA4B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,kBAAkB,CAOvF;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,GAAG,kBAAkB,CAExE;AAED,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,kBAAkB,CAY3G;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,GAAG,kBAAkB,CAEtE;AAED,wBAAgB,6BAA6B,CAAC,KAAK,CAAC,EAAE,kBAAkB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAa1H"}
|