@mtnmanager/sdk 0.0.15 → 0.0.16
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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @mtnmanager/sdk@0.0.
|
|
1
|
+
# @mtnmanager/sdk@0.0.16
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the your-resort.mtnmanager.com API.
|
|
4
4
|
|
|
@@ -101,7 +101,7 @@ and is automatically generated by the
|
|
|
101
101
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
102
102
|
|
|
103
103
|
- API version: `1.0.0`
|
|
104
|
-
- Package version: `0.0.
|
|
104
|
+
- Package version: `0.0.16`
|
|
105
105
|
- Generator version: `7.17.0`
|
|
106
106
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
107
107
|
|
|
@@ -89,6 +89,12 @@ export interface PublicRun {
|
|
|
89
89
|
* @memberof PublicRun
|
|
90
90
|
*/
|
|
91
91
|
areaDisplayOrder?: number | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof PublicRun
|
|
96
|
+
*/
|
|
97
|
+
updatedAt?: string | null;
|
|
92
98
|
}
|
|
93
99
|
/**
|
|
94
100
|
* Check if a given object implements the PublicRun interface.
|
|
@@ -53,6 +53,7 @@ export function PublicRunFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
53
53
|
'areaUuid': json['area_uuid'] == null ? undefined : json['area_uuid'],
|
|
54
54
|
'areaName': json['area_name'] == null ? undefined : json['area_name'],
|
|
55
55
|
'areaDisplayOrder': json['area_display_order'] == null ? undefined : json['area_display_order'],
|
|
56
|
+
'updatedAt': json['updated_at'] == null ? undefined : json['updated_at'],
|
|
56
57
|
};
|
|
57
58
|
}
|
|
58
59
|
export function PublicRunToJSON(json) {
|
|
@@ -75,5 +76,6 @@ export function PublicRunToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
75
76
|
'area_uuid': value['areaUuid'],
|
|
76
77
|
'area_name': value['areaName'],
|
|
77
78
|
'area_display_order': value['areaDisplayOrder'],
|
|
79
|
+
'updated_at': value['updatedAt'],
|
|
78
80
|
};
|
|
79
81
|
}
|
|
@@ -89,6 +89,12 @@ export interface PublicRun {
|
|
|
89
89
|
* @memberof PublicRun
|
|
90
90
|
*/
|
|
91
91
|
areaDisplayOrder?: number | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof PublicRun
|
|
96
|
+
*/
|
|
97
|
+
updatedAt?: string | null;
|
|
92
98
|
}
|
|
93
99
|
/**
|
|
94
100
|
* Check if a given object implements the PublicRun interface.
|
package/dist/models/PublicRun.js
CHANGED
|
@@ -60,6 +60,7 @@ function PublicRunFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
60
60
|
'areaUuid': json['area_uuid'] == null ? undefined : json['area_uuid'],
|
|
61
61
|
'areaName': json['area_name'] == null ? undefined : json['area_name'],
|
|
62
62
|
'areaDisplayOrder': json['area_display_order'] == null ? undefined : json['area_display_order'],
|
|
63
|
+
'updatedAt': json['updated_at'] == null ? undefined : json['updated_at'],
|
|
63
64
|
};
|
|
64
65
|
}
|
|
65
66
|
function PublicRunToJSON(json) {
|
|
@@ -82,5 +83,6 @@ function PublicRunToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
82
83
|
'area_uuid': value['areaUuid'],
|
|
83
84
|
'area_name': value['areaName'],
|
|
84
85
|
'area_display_order': value['areaDisplayOrder'],
|
|
86
|
+
'updated_at': value['updatedAt'],
|
|
85
87
|
};
|
|
86
88
|
}
|