@mtnmanager/sdk 0.0.17 → 0.0.18
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 +2 -2
- package/dist/esm/models/LiftStatus.d.ts +2 -0
- package/dist/esm/models/LiftStatus.js +3 -1
- package/dist/esm/models/RunStatus.d.ts +1 -0
- package/dist/esm/models/RunStatus.js +2 -1
- package/dist/models/LiftStatus.d.ts +2 -0
- package/dist/models/LiftStatus.js +3 -1
- package/dist/models/RunStatus.d.ts +1 -0
- package/dist/models/RunStatus.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @mtnmanager/sdk@0.0.
|
|
1
|
+
# @mtnmanager/sdk@0.0.18
|
|
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.18`
|
|
105
105
|
- Generator version: `7.17.0`
|
|
106
106
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
107
107
|
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
export declare const LiftStatus: {
|
|
17
17
|
readonly Open: "open";
|
|
18
18
|
readonly Closed: "closed";
|
|
19
|
+
readonly OnHold: "on_hold";
|
|
20
|
+
readonly Unknown: "unknown";
|
|
19
21
|
};
|
|
20
22
|
export type LiftStatus = typeof LiftStatus[keyof typeof LiftStatus];
|
|
21
23
|
export declare function instanceOfLiftStatus(value: any): boolean;
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
export declare const RunStatus: {
|
|
17
17
|
readonly Open: "open";
|
|
18
18
|
readonly Closed: "closed";
|
|
19
|
+
readonly Unknown: "unknown";
|
|
19
20
|
};
|
|
20
21
|
export type RunStatus = typeof RunStatus[keyof typeof RunStatus];
|
|
21
22
|
export declare function instanceOfRunStatus(value: any): boolean;
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
export declare const LiftStatus: {
|
|
17
17
|
readonly Open: "open";
|
|
18
18
|
readonly Closed: "closed";
|
|
19
|
+
readonly OnHold: "on_hold";
|
|
20
|
+
readonly Unknown: "unknown";
|
|
19
21
|
};
|
|
20
22
|
export type LiftStatus = typeof LiftStatus[keyof typeof LiftStatus];
|
|
21
23
|
export declare function instanceOfLiftStatus(value: any): boolean;
|
|
@@ -25,7 +25,9 @@ exports.LiftStatusToJSONTyped = LiftStatusToJSONTyped;
|
|
|
25
25
|
*/
|
|
26
26
|
exports.LiftStatus = {
|
|
27
27
|
Open: 'open',
|
|
28
|
-
Closed: 'closed'
|
|
28
|
+
Closed: 'closed',
|
|
29
|
+
OnHold: 'on_hold',
|
|
30
|
+
Unknown: 'unknown'
|
|
29
31
|
};
|
|
30
32
|
function instanceOfLiftStatus(value) {
|
|
31
33
|
for (const key in exports.LiftStatus) {
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
export declare const RunStatus: {
|
|
17
17
|
readonly Open: "open";
|
|
18
18
|
readonly Closed: "closed";
|
|
19
|
+
readonly Unknown: "unknown";
|
|
19
20
|
};
|
|
20
21
|
export type RunStatus = typeof RunStatus[keyof typeof RunStatus];
|
|
21
22
|
export declare function instanceOfRunStatus(value: any): boolean;
|
package/dist/models/RunStatus.js
CHANGED