@managespace/sdk 0.1.159 → 0.1.160
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/generated/apis/default-api.d.ts +91 -1
- package/dist/generated/apis/default-api.d.ts.map +1 -1
- package/dist/generated/apis/default-api.js +330 -0
- package/dist/generated/models/billing-run.d.ts +6 -0
- package/dist/generated/models/billing-run.d.ts.map +1 -1
- package/dist/generated/models/billing-run.js +2 -0
- package/dist/generated/models/create-billing-run.d.ts +6 -0
- package/dist/generated/models/create-billing-run.d.ts.map +1 -1
- package/dist/generated/models/create-billing-run.js +2 -0
- package/dist/generated/models/income-report-filters.d.ts +45 -0
- package/dist/generated/models/income-report-filters.d.ts.map +1 -0
- package/dist/generated/models/income-report-filters.js +57 -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/occupancy-statistics-report-filters.d.ts +45 -0
- package/dist/generated/models/occupancy-statistics-report-filters.d.ts.map +1 -0
- package/dist/generated/models/occupancy-statistics-report-filters.js +57 -0
- package/dist/generated/models/prepaid-rent-report-filters.d.ts +45 -0
- package/dist/generated/models/prepaid-rent-report-filters.d.ts.map +1 -0
- package/dist/generated/models/prepaid-rent-report-filters.js +57 -0
- package/dist/generated/models/refund-summary-report-filters.d.ts +45 -0
- package/dist/generated/models/refund-summary-report-filters.d.ts.map +1 -0
- package/dist/generated/models/refund-summary-report-filters.js +57 -0
- package/dist/generated/models/security-deposits-report-filters.d.ts +45 -0
- package/dist/generated/models/security-deposits-report-filters.d.ts.map +1 -0
- package/dist/generated/models/security-deposits-report-filters.js +57 -0
- package/dist/generated/models/send-email.d.ts +6 -0
- package/dist/generated/models/send-email.d.ts.map +1 -1
- package/dist/generated/models/send-email.js +2 -0
- package/package.deploy.json +4 -8
- package/package.json +3 -4
- package/src/generated/.openapi-generator/FILES +5 -0
- package/src/generated/apis/default-api.ts +490 -0
- package/src/generated/models/billing-run.ts +8 -0
- package/src/generated/models/create-billing-run.ts +8 -0
- package/src/generated/models/income-report-filters.ts +84 -0
- package/src/generated/models/index.ts +5 -0
- package/src/generated/models/occupancy-statistics-report-filters.ts +84 -0
- package/src/generated/models/prepaid-rent-report-filters.ts +84 -0
- package/src/generated/models/refund-summary-report-filters.ts +84 -0
- package/src/generated/models/security-deposits-report-filters.ts +84 -0
- package/src/generated/models/send-email.ts +8 -0
|
@@ -0,0 +1,45 @@
|
|
|
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 OccupancyStatisticsReportFilters
|
|
16
|
+
*/
|
|
17
|
+
export interface OccupancyStatisticsReportFilters {
|
|
18
|
+
/**
|
|
19
|
+
* Site ID to filter the report
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OccupancyStatisticsReportFilters
|
|
22
|
+
*/
|
|
23
|
+
siteId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Start date for the report period
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof OccupancyStatisticsReportFilters
|
|
28
|
+
*/
|
|
29
|
+
startDate: Date;
|
|
30
|
+
/**
|
|
31
|
+
* End date for the report period (snapshot date)
|
|
32
|
+
* @type {Date}
|
|
33
|
+
* @memberof OccupancyStatisticsReportFilters
|
|
34
|
+
*/
|
|
35
|
+
endDate: Date;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the OccupancyStatisticsReportFilters interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfOccupancyStatisticsReportFilters(value: object): value is OccupancyStatisticsReportFilters;
|
|
41
|
+
export declare function OccupancyStatisticsReportFiltersFromJSON(json: any): OccupancyStatisticsReportFilters;
|
|
42
|
+
export declare function OccupancyStatisticsReportFiltersFromJSONTyped(json: any, ignoreDiscriminator: boolean): OccupancyStatisticsReportFilters;
|
|
43
|
+
export declare function OccupancyStatisticsReportFiltersToJSON(json: any): OccupancyStatisticsReportFilters;
|
|
44
|
+
export declare function OccupancyStatisticsReportFiltersToJSONTyped(value?: OccupancyStatisticsReportFilters | null, ignoreDiscriminator?: boolean): any;
|
|
45
|
+
//# sourceMappingURL=occupancy-statistics-report-filters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"occupancy-statistics-report-filters.d.ts","sourceRoot":"","sources":["../../../src/generated/models/occupancy-statistics-report-filters.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;;;OAIG;IACH,OAAO,EAAE,IAAI,CAAC;CACjB;AAED;;GAEG;AACH,wBAAgB,0CAA0C,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gCAAgC,CAInH;AAED,wBAAgB,wCAAwC,CAAC,IAAI,EAAE,GAAG,GAAG,gCAAgC,CAEpG;AAED,wBAAgB,6CAA6C,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gCAAgC,CAUvI;AAED,wBAAgB,sCAAsC,CAAC,IAAI,EAAE,GAAG,GAAG,gCAAgC,CAElG;AAED,wBAAgB,2CAA2C,CAAC,KAAK,CAAC,EAAE,gCAAgC,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAWtJ"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* ManageSpace API
|
|
7
|
+
* ManageSpace API Documentation
|
|
8
|
+
*
|
|
9
|
+
* The version of the OpenAPI document: 1.0.0
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13
|
+
* https://openapi-generator.tech
|
|
14
|
+
* Do not edit the class manually.
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.instanceOfOccupancyStatisticsReportFilters = instanceOfOccupancyStatisticsReportFilters;
|
|
18
|
+
exports.OccupancyStatisticsReportFiltersFromJSON = OccupancyStatisticsReportFiltersFromJSON;
|
|
19
|
+
exports.OccupancyStatisticsReportFiltersFromJSONTyped = OccupancyStatisticsReportFiltersFromJSONTyped;
|
|
20
|
+
exports.OccupancyStatisticsReportFiltersToJSON = OccupancyStatisticsReportFiltersToJSON;
|
|
21
|
+
exports.OccupancyStatisticsReportFiltersToJSONTyped = OccupancyStatisticsReportFiltersToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the OccupancyStatisticsReportFilters interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfOccupancyStatisticsReportFilters(value) {
|
|
26
|
+
if (!('startDate' in value) || value['startDate'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function OccupancyStatisticsReportFiltersFromJSON(json) {
|
|
33
|
+
return OccupancyStatisticsReportFiltersFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function OccupancyStatisticsReportFiltersFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'siteId': json['siteId'] == null ? undefined : json['siteId'],
|
|
41
|
+
'startDate': (new Date(json['startDate'])),
|
|
42
|
+
'endDate': (new Date(json['endDate'])),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function OccupancyStatisticsReportFiltersToJSON(json) {
|
|
46
|
+
return OccupancyStatisticsReportFiltersToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function OccupancyStatisticsReportFiltersToJSONTyped(value, ignoreDiscriminator = false) {
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'siteId': value['siteId'],
|
|
54
|
+
'startDate': ((value['startDate']).toISOString().substring(0, 10)),
|
|
55
|
+
'endDate': ((value['endDate']).toISOString().substring(0, 10)),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
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 PrepaidRentReportFilters
|
|
16
|
+
*/
|
|
17
|
+
export interface PrepaidRentReportFilters {
|
|
18
|
+
/**
|
|
19
|
+
* Site ID to filter the report
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PrepaidRentReportFilters
|
|
22
|
+
*/
|
|
23
|
+
siteId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Start date for the report period
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof PrepaidRentReportFilters
|
|
28
|
+
*/
|
|
29
|
+
startDate: Date;
|
|
30
|
+
/**
|
|
31
|
+
* End date for the report period
|
|
32
|
+
* @type {Date}
|
|
33
|
+
* @memberof PrepaidRentReportFilters
|
|
34
|
+
*/
|
|
35
|
+
endDate: Date;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the PrepaidRentReportFilters interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfPrepaidRentReportFilters(value: object): value is PrepaidRentReportFilters;
|
|
41
|
+
export declare function PrepaidRentReportFiltersFromJSON(json: any): PrepaidRentReportFilters;
|
|
42
|
+
export declare function PrepaidRentReportFiltersFromJSONTyped(json: any, ignoreDiscriminator: boolean): PrepaidRentReportFilters;
|
|
43
|
+
export declare function PrepaidRentReportFiltersToJSON(json: any): PrepaidRentReportFilters;
|
|
44
|
+
export declare function PrepaidRentReportFiltersToJSONTyped(value?: PrepaidRentReportFilters | null, ignoreDiscriminator?: boolean): any;
|
|
45
|
+
//# sourceMappingURL=prepaid-rent-report-filters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prepaid-rent-report-filters.d.ts","sourceRoot":"","sources":["../../../src/generated/models/prepaid-rent-report-filters.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;;;OAIG;IACH,OAAO,EAAE,IAAI,CAAC;CACjB;AAED;;GAEG;AACH,wBAAgB,kCAAkC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,wBAAwB,CAInG;AAED,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,GAAG,GAAG,wBAAwB,CAEpF;AAED,wBAAgB,qCAAqC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,wBAAwB,CAUvH;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,CAWtI"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* ManageSpace API
|
|
7
|
+
* ManageSpace API Documentation
|
|
8
|
+
*
|
|
9
|
+
* The version of the OpenAPI document: 1.0.0
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13
|
+
* https://openapi-generator.tech
|
|
14
|
+
* Do not edit the class manually.
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.instanceOfPrepaidRentReportFilters = instanceOfPrepaidRentReportFilters;
|
|
18
|
+
exports.PrepaidRentReportFiltersFromJSON = PrepaidRentReportFiltersFromJSON;
|
|
19
|
+
exports.PrepaidRentReportFiltersFromJSONTyped = PrepaidRentReportFiltersFromJSONTyped;
|
|
20
|
+
exports.PrepaidRentReportFiltersToJSON = PrepaidRentReportFiltersToJSON;
|
|
21
|
+
exports.PrepaidRentReportFiltersToJSONTyped = PrepaidRentReportFiltersToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the PrepaidRentReportFilters interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfPrepaidRentReportFilters(value) {
|
|
26
|
+
if (!('startDate' in value) || value['startDate'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function PrepaidRentReportFiltersFromJSON(json) {
|
|
33
|
+
return PrepaidRentReportFiltersFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function PrepaidRentReportFiltersFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'siteId': json['siteId'] == null ? undefined : json['siteId'],
|
|
41
|
+
'startDate': (new Date(json['startDate'])),
|
|
42
|
+
'endDate': (new Date(json['endDate'])),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function PrepaidRentReportFiltersToJSON(json) {
|
|
46
|
+
return PrepaidRentReportFiltersToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function PrepaidRentReportFiltersToJSONTyped(value, ignoreDiscriminator = false) {
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'siteId': value['siteId'],
|
|
54
|
+
'startDate': ((value['startDate']).toISOString().substring(0, 10)),
|
|
55
|
+
'endDate': ((value['endDate']).toISOString().substring(0, 10)),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
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 RefundSummaryReportFilters
|
|
16
|
+
*/
|
|
17
|
+
export interface RefundSummaryReportFilters {
|
|
18
|
+
/**
|
|
19
|
+
* Site ID to filter the report
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RefundSummaryReportFilters
|
|
22
|
+
*/
|
|
23
|
+
siteId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Start date for the report period
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof RefundSummaryReportFilters
|
|
28
|
+
*/
|
|
29
|
+
startDate: Date;
|
|
30
|
+
/**
|
|
31
|
+
* End date for the report period
|
|
32
|
+
* @type {Date}
|
|
33
|
+
* @memberof RefundSummaryReportFilters
|
|
34
|
+
*/
|
|
35
|
+
endDate: Date;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the RefundSummaryReportFilters interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfRefundSummaryReportFilters(value: object): value is RefundSummaryReportFilters;
|
|
41
|
+
export declare function RefundSummaryReportFiltersFromJSON(json: any): RefundSummaryReportFilters;
|
|
42
|
+
export declare function RefundSummaryReportFiltersFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundSummaryReportFilters;
|
|
43
|
+
export declare function RefundSummaryReportFiltersToJSON(json: any): RefundSummaryReportFilters;
|
|
44
|
+
export declare function RefundSummaryReportFiltersToJSONTyped(value?: RefundSummaryReportFilters | null, ignoreDiscriminator?: boolean): any;
|
|
45
|
+
//# sourceMappingURL=refund-summary-report-filters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"refund-summary-report-filters.d.ts","sourceRoot":"","sources":["../../../src/generated/models/refund-summary-report-filters.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;;;OAIG;IACH,OAAO,EAAE,IAAI,CAAC;CACjB;AAED;;GAEG;AACH,wBAAgB,oCAAoC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,0BAA0B,CAIvG;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,GAAG,GAAG,0BAA0B,CAExF;AAED,wBAAgB,uCAAuC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,0BAA0B,CAU3H;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,CAW1I"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* ManageSpace API
|
|
7
|
+
* ManageSpace API Documentation
|
|
8
|
+
*
|
|
9
|
+
* The version of the OpenAPI document: 1.0.0
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13
|
+
* https://openapi-generator.tech
|
|
14
|
+
* Do not edit the class manually.
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.instanceOfRefundSummaryReportFilters = instanceOfRefundSummaryReportFilters;
|
|
18
|
+
exports.RefundSummaryReportFiltersFromJSON = RefundSummaryReportFiltersFromJSON;
|
|
19
|
+
exports.RefundSummaryReportFiltersFromJSONTyped = RefundSummaryReportFiltersFromJSONTyped;
|
|
20
|
+
exports.RefundSummaryReportFiltersToJSON = RefundSummaryReportFiltersToJSON;
|
|
21
|
+
exports.RefundSummaryReportFiltersToJSONTyped = RefundSummaryReportFiltersToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the RefundSummaryReportFilters interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfRefundSummaryReportFilters(value) {
|
|
26
|
+
if (!('startDate' in value) || value['startDate'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function RefundSummaryReportFiltersFromJSON(json) {
|
|
33
|
+
return RefundSummaryReportFiltersFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function RefundSummaryReportFiltersFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'siteId': json['siteId'] == null ? undefined : json['siteId'],
|
|
41
|
+
'startDate': (new Date(json['startDate'])),
|
|
42
|
+
'endDate': (new Date(json['endDate'])),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function RefundSummaryReportFiltersToJSON(json) {
|
|
46
|
+
return RefundSummaryReportFiltersToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function RefundSummaryReportFiltersToJSONTyped(value, ignoreDiscriminator = false) {
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'siteId': value['siteId'],
|
|
54
|
+
'startDate': ((value['startDate']).toISOString().substring(0, 10)),
|
|
55
|
+
'endDate': ((value['endDate']).toISOString().substring(0, 10)),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
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 SecurityDepositsReportFilters
|
|
16
|
+
*/
|
|
17
|
+
export interface SecurityDepositsReportFilters {
|
|
18
|
+
/**
|
|
19
|
+
* Site ID to filter the report
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SecurityDepositsReportFilters
|
|
22
|
+
*/
|
|
23
|
+
siteId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Start date for the report period
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof SecurityDepositsReportFilters
|
|
28
|
+
*/
|
|
29
|
+
startDate: Date;
|
|
30
|
+
/**
|
|
31
|
+
* End date for the report period
|
|
32
|
+
* @type {Date}
|
|
33
|
+
* @memberof SecurityDepositsReportFilters
|
|
34
|
+
*/
|
|
35
|
+
endDate: Date;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the SecurityDepositsReportFilters interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfSecurityDepositsReportFilters(value: object): value is SecurityDepositsReportFilters;
|
|
41
|
+
export declare function SecurityDepositsReportFiltersFromJSON(json: any): SecurityDepositsReportFilters;
|
|
42
|
+
export declare function SecurityDepositsReportFiltersFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecurityDepositsReportFilters;
|
|
43
|
+
export declare function SecurityDepositsReportFiltersToJSON(json: any): SecurityDepositsReportFilters;
|
|
44
|
+
export declare function SecurityDepositsReportFiltersToJSONTyped(value?: SecurityDepositsReportFilters | null, ignoreDiscriminator?: boolean): any;
|
|
45
|
+
//# sourceMappingURL=security-deposits-report-filters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-deposits-report-filters.d.ts","sourceRoot":"","sources":["../../../src/generated/models/security-deposits-report-filters.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;;;OAIG;IACH,OAAO,EAAE,IAAI,CAAC;CACjB;AAED;;GAEG;AACH,wBAAgB,uCAAuC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,6BAA6B,CAI7G;AAED,wBAAgB,qCAAqC,CAAC,IAAI,EAAE,GAAG,GAAG,6BAA6B,CAE9F;AAED,wBAAgB,0CAA0C,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,6BAA6B,CAUjI;AAED,wBAAgB,mCAAmC,CAAC,IAAI,EAAE,GAAG,GAAG,6BAA6B,CAE5F;AAED,wBAAgB,wCAAwC,CAAC,KAAK,CAAC,EAAE,6BAA6B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAWhJ"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* ManageSpace API
|
|
7
|
+
* ManageSpace API Documentation
|
|
8
|
+
*
|
|
9
|
+
* The version of the OpenAPI document: 1.0.0
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13
|
+
* https://openapi-generator.tech
|
|
14
|
+
* Do not edit the class manually.
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.instanceOfSecurityDepositsReportFilters = instanceOfSecurityDepositsReportFilters;
|
|
18
|
+
exports.SecurityDepositsReportFiltersFromJSON = SecurityDepositsReportFiltersFromJSON;
|
|
19
|
+
exports.SecurityDepositsReportFiltersFromJSONTyped = SecurityDepositsReportFiltersFromJSONTyped;
|
|
20
|
+
exports.SecurityDepositsReportFiltersToJSON = SecurityDepositsReportFiltersToJSON;
|
|
21
|
+
exports.SecurityDepositsReportFiltersToJSONTyped = SecurityDepositsReportFiltersToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the SecurityDepositsReportFilters interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfSecurityDepositsReportFilters(value) {
|
|
26
|
+
if (!('startDate' in value) || value['startDate'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function SecurityDepositsReportFiltersFromJSON(json) {
|
|
33
|
+
return SecurityDepositsReportFiltersFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function SecurityDepositsReportFiltersFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'siteId': json['siteId'] == null ? undefined : json['siteId'],
|
|
41
|
+
'startDate': (new Date(json['startDate'])),
|
|
42
|
+
'endDate': (new Date(json['endDate'])),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function SecurityDepositsReportFiltersToJSON(json) {
|
|
46
|
+
return SecurityDepositsReportFiltersToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function SecurityDepositsReportFiltersToJSONTyped(value, ignoreDiscriminator = false) {
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'siteId': value['siteId'],
|
|
54
|
+
'startDate': ((value['startDate']).toISOString().substring(0, 10)),
|
|
55
|
+
'endDate': ((value['endDate']).toISOString().substring(0, 10)),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -57,6 +57,12 @@ export interface SendEmail {
|
|
|
57
57
|
* @memberof SendEmail
|
|
58
58
|
*/
|
|
59
59
|
html?: string;
|
|
60
|
+
/**
|
|
61
|
+
* The attachments of the email being sent.
|
|
62
|
+
* @type {Array<string>}
|
|
63
|
+
* @memberof SendEmail
|
|
64
|
+
*/
|
|
65
|
+
attachmentUrls?: Array<string>;
|
|
60
66
|
}
|
|
61
67
|
/**
|
|
62
68
|
* Check if a given object implements the SendEmail interface.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"send-email.d.ts","sourceRoot":"","sources":["../../../src/generated/models/send-email.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,SAAS;IACtB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"send-email.d.ts","sourceRoot":"","sources":["../../../src/generated/models/send-email.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,SAAS;IACtB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAClC;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,SAAS,CAOrE;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,GAAG,GAAG,SAAS,CAEtD;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,SAAS,CAezF;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,SAAS,CAEpD;AAED,wBAAgB,oBAAoB,CAAC,KAAK,CAAC,EAAE,SAAS,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAgBxG"}
|
|
@@ -50,6 +50,7 @@ function SendEmailFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
50
|
'subject': json['subject'],
|
|
51
51
|
'text': json['text'] == null ? undefined : json['text'],
|
|
52
52
|
'html': json['html'] == null ? undefined : json['html'],
|
|
53
|
+
'attachmentUrls': json['attachmentUrls'] == null ? undefined : json['attachmentUrls'],
|
|
53
54
|
};
|
|
54
55
|
}
|
|
55
56
|
function SendEmailToJSON(json) {
|
|
@@ -67,5 +68,6 @@ function SendEmailToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
67
68
|
'subject': value['subject'],
|
|
68
69
|
'text': value['text'],
|
|
69
70
|
'html': value['html'],
|
|
71
|
+
'attachmentUrls': value['attachmentUrls'],
|
|
70
72
|
};
|
|
71
73
|
}
|
package/package.deploy.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@managespace/sdk",
|
|
3
|
-
"version": "0.1.158
|
|
3
|
+
"version": "0.1.158",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "tsc -w --preserveWatchOutput",
|
|
6
6
|
"build": "tsc",
|
|
7
7
|
"lint:check": "eslint .",
|
|
8
8
|
"lint:fix": "eslint --fix .",
|
|
9
9
|
"lint:fix:cache": "eslint --fix .",
|
|
10
|
-
"upload": "tsc && npm publish"
|
|
11
|
-
"upload:beta": "tsc && npm publish --tag extensions"
|
|
10
|
+
"upload": "tsc && npm publish"
|
|
12
11
|
},
|
|
13
12
|
"main": "./dist/index.js",
|
|
14
13
|
"types": "./dist/index.d.ts",
|
|
@@ -30,8 +29,5 @@
|
|
|
30
29
|
"typescript": "~5.4.2",
|
|
31
30
|
"@repo/eslint-config": "*",
|
|
32
31
|
"@repo/typescript-config": "*"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
"beta"
|
|
36
|
-
]
|
|
37
|
-
}
|
|
32
|
+
}
|
|
33
|
+
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@managespace/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.160",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "tsc -w --preserveWatchOutput",
|
|
6
6
|
"build": "tsc",
|
|
7
7
|
"lint:check": "eslint .",
|
|
8
8
|
"lint:fix": "eslint --fix .",
|
|
9
9
|
"lint:fix:cache": "eslint --fix .",
|
|
10
|
-
"upload": "tsc && npm publish"
|
|
11
|
-
"upload:beta": "tsc && npm publish --tag extensions"
|
|
10
|
+
"upload": "tsc && npm publish"
|
|
12
11
|
},
|
|
13
12
|
"main": "./dist/index.js",
|
|
14
13
|
"types": "./dist/index.d.ts",
|
|
@@ -31,4 +30,4 @@
|
|
|
31
30
|
"@repo/eslint-config": "*",
|
|
32
31
|
"@repo/typescript-config": "*"
|
|
33
32
|
}
|
|
34
|
-
}
|
|
33
|
+
}
|
|
@@ -156,6 +156,7 @@ models/get-templates200-response.ts
|
|
|
156
156
|
models/get-users200-response.ts
|
|
157
157
|
models/get-workflow-definitions200-response.ts
|
|
158
158
|
models/get-workflow-instances200-response.ts
|
|
159
|
+
models/income-report-filters.ts
|
|
159
160
|
models/index.ts
|
|
160
161
|
models/insured-roll-report-filters.ts
|
|
161
162
|
models/intent.ts
|
|
@@ -170,6 +171,7 @@ models/map-feature.ts
|
|
|
170
171
|
models/merge-assets-custom.ts
|
|
171
172
|
models/note.ts
|
|
172
173
|
models/notification.ts
|
|
174
|
+
models/occupancy-statistics-report-filters.ts
|
|
173
175
|
models/omit-type-class.ts
|
|
174
176
|
models/order-line-item.ts
|
|
175
177
|
models/order-operator.ts
|
|
@@ -196,6 +198,7 @@ models/plugin-filter-item.ts
|
|
|
196
198
|
models/plugin-filter-operator.ts
|
|
197
199
|
models/plugin-version.ts
|
|
198
200
|
models/plugin.ts
|
|
201
|
+
models/prepaid-rent-report-filters.ts
|
|
199
202
|
models/preview-subscription.ts
|
|
200
203
|
models/pricing-rule-criteria.ts
|
|
201
204
|
models/pricing-rule-legend.ts
|
|
@@ -209,10 +212,12 @@ models/rate-change-status.ts
|
|
|
209
212
|
models/rate-change.ts
|
|
210
213
|
models/refund-invoice.ts
|
|
211
214
|
models/refund-payment.ts
|
|
215
|
+
models/refund-summary-report-filters.ts
|
|
212
216
|
models/refund.ts
|
|
213
217
|
models/rent-roll-report-filters.ts
|
|
214
218
|
models/revenue-rule.ts
|
|
215
219
|
models/roles.ts
|
|
220
|
+
models/security-deposits-report-filters.ts
|
|
216
221
|
models/send-email.ts
|
|
217
222
|
models/send-sms.ts
|
|
218
223
|
models/separate-assets-custom.ts
|