@serviceai/api-spec 1.2.53 → 1.2.55
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/openapi.json +5 -2
- package/openapi.yaml +4 -2
- package/package.json +1 -1
- package/types.d.ts +2 -1
package/openapi.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.1.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "ServiceAi API",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.55",
|
|
6
6
|
"description": "Source-of-truth API contract for ServiceAi. Generated from `shared/schema.ts` Zod schemas by `scripts/build-api-spec.ts`. Versioning policy: see `docs/api-versioning.md`. The hand-written docs/ios-contract.md and docs/lidar-mobile-upload-contract.md are human-readable design notes only — this spec is the canonical wire contract.",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "Proprietary",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"properties": {
|
|
115
115
|
"apiVersion": {
|
|
116
116
|
"type": "string",
|
|
117
|
-
"example": "1.2.
|
|
117
|
+
"example": "1.2.55"
|
|
118
118
|
},
|
|
119
119
|
"minClientVersion": {
|
|
120
120
|
"type": "string",
|
|
@@ -2297,6 +2297,9 @@
|
|
|
2297
2297
|
"type": "number"
|
|
2298
2298
|
}
|
|
2299
2299
|
}
|
|
2300
|
+
},
|
|
2301
|
+
"rotation": {
|
|
2302
|
+
"type": "number"
|
|
2300
2303
|
}
|
|
2301
2304
|
}
|
|
2302
2305
|
}
|
package/openapi.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.1.0
|
|
2
2
|
info:
|
|
3
3
|
title: ServiceAi API
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.55
|
|
5
5
|
description: >-
|
|
6
6
|
Source-of-truth API contract for ServiceAi. Generated from `shared/schema.ts` Zod schemas by
|
|
7
7
|
`scripts/build-api-spec.ts`. Versioning policy: see `docs/api-versioning.md`. The hand-written docs/ios-contract.md
|
|
@@ -78,7 +78,7 @@ components:
|
|
|
78
78
|
properties:
|
|
79
79
|
apiVersion:
|
|
80
80
|
type: string
|
|
81
|
-
example: 1.2.
|
|
81
|
+
example: 1.2.55
|
|
82
82
|
minClientVersion:
|
|
83
83
|
type: string
|
|
84
84
|
example: 1.0.0
|
|
@@ -1473,6 +1473,8 @@ components:
|
|
|
1473
1473
|
type: number
|
|
1474
1474
|
depth:
|
|
1475
1475
|
type: number
|
|
1476
|
+
rotation:
|
|
1477
|
+
type: number
|
|
1476
1478
|
boundaryPolygon:
|
|
1477
1479
|
type: array
|
|
1478
1480
|
items:
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1845,7 +1845,7 @@ export interface components {
|
|
|
1845
1845
|
};
|
|
1846
1846
|
/** @description Cross-platform version handshake manifest. See docs/api-versioning.md. */
|
|
1847
1847
|
VersionManifest: {
|
|
1848
|
-
/** @example 1.2.
|
|
1848
|
+
/** @example 1.2.55 */
|
|
1849
1849
|
apiVersion: string;
|
|
1850
1850
|
/** @example 1.0.0 */
|
|
1851
1851
|
minClientVersion: string;
|
|
@@ -2230,6 +2230,7 @@ export interface components {
|
|
|
2230
2230
|
height?: number;
|
|
2231
2231
|
depth?: number;
|
|
2232
2232
|
};
|
|
2233
|
+
rotation?: number;
|
|
2233
2234
|
}[];
|
|
2234
2235
|
boundaryPolygon?: {
|
|
2235
2236
|
x: number;
|