@volant-autonomy/via-sdk 1.4291.1 → 1.4310.1

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.
@@ -998,7 +998,7 @@ export interface components {
998
998
  * - 'Closed' Airspace constraint is no longer valid and cannot be modified or submitted for
999
999
  * accepted state.
1000
1000
  * */
1001
- state: components["schemas"]["AirspaceConstraintStateBusiness"];
1001
+ state: components["schemas"]["AirspaceConstraintState"];
1002
1002
  };
1003
1003
  /** AirspaceConstraintResponse */
1004
1004
  AirspaceConstraintResponse: {
@@ -1018,10 +1018,10 @@ export interface components {
1018
1018
  attributes: components["schemas"]["AirspaceConstraint-Output"];
1019
1019
  };
1020
1020
  /**
1021
- * AirspaceConstraintStateBusiness
1021
+ * AirspaceConstraintState
1022
1022
  * @enum {string}
1023
1023
  */
1024
- AirspaceConstraintStateBusiness: "Accepted" | "Closed";
1024
+ AirspaceConstraintState: "Accepted" | "Closed";
1025
1025
  /** AirspaceConstraintStateRequest */
1026
1026
  AirspaceConstraintStateRequest: {
1027
1027
  /** @description State of an airspace constraint.
@@ -1032,7 +1032,7 @@ export interface components {
1032
1032
  * - 'Closed' Airspace constraint is no longer valid and cannot be modified or submitted for
1033
1033
  * accepted state.
1034
1034
  * */
1035
- state: components["schemas"]["AirspaceConstraintStateBusiness"];
1035
+ state: components["schemas"]["AirspaceConstraintState"];
1036
1036
  };
1037
1037
  /**
1038
1038
  * AirspaceRestrictionState
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4291.1",
3
+ "version": "1.4310.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",
@@ -26,19 +26,13 @@
26
26
  "@rollup/plugin-json": "^6.1.0",
27
27
  "@rollup/plugin-node-resolve": "^16.0.0",
28
28
  "@rollup/plugin-typescript": "^12.1.2",
29
- "@typescript-eslint/eslint-plugin": "^7.15.0",
30
- "@typescript-eslint/parser": "^7.15.0",
31
- "eslint": "^8.57.0",
32
- "eslint-config-prettier": "^9.1.0",
33
- "eslint-plugin-import": "^2.29.1",
34
- "eslint-plugin-jsdoc": "^48.5.0",
29
+ "eslint": "^9.39.2",
30
+ "eslint-config-via": "workspace:eslint-config-via@*",
35
31
  "esm": "^3.2.25",
36
32
  "openapi-typescript": "^7.1.0",
37
33
  "prettier": "^3.3.2",
38
- "prettier-eslint": "^16.3.0",
39
34
  "rollup": "^4.32.0",
40
35
  "rollup-plugin-dts": "^6.1.1",
41
- "standard": "^17.0.0",
42
36
  "ts-node": "^10.9.2",
43
37
  "typescript": "^5.7.2",
44
38
  "vitest": "^3.2.4"
@@ -59,7 +53,8 @@
59
53
  },
60
54
  "dependencies": {
61
55
  "openapi-fetch": "^0.10.2",
62
- "openapi-typescript-helpers": "^0.0.11"
56
+ "openapi-typescript-helpers": "^0.0.11",
57
+ "tslib": "^2.8.1"
63
58
  },
64
59
  "description": "An auto-generated type-safe wrapper for the Via API with automatic authentication handling. Usable in TypeScript or JavaScript."
65
60
  }