@serviceai/api-spec 1.2.17 → 1.2.19
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 +14 -2
- package/openapi.yaml +10 -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.19",
|
|
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.19"
|
|
118
118
|
},
|
|
119
119
|
"minClientVersion": {
|
|
120
120
|
"type": "string",
|
|
@@ -1389,6 +1389,18 @@
|
|
|
1389
1389
|
}
|
|
1390
1390
|
]
|
|
1391
1391
|
},
|
|
1392
|
+
"tags": {
|
|
1393
|
+
"type": [
|
|
1394
|
+
"array",
|
|
1395
|
+
"null"
|
|
1396
|
+
],
|
|
1397
|
+
"items": {
|
|
1398
|
+
"type": [
|
|
1399
|
+
"string",
|
|
1400
|
+
"null"
|
|
1401
|
+
]
|
|
1402
|
+
}
|
|
1403
|
+
},
|
|
1392
1404
|
"uploadedBy": {
|
|
1393
1405
|
"type": [
|
|
1394
1406
|
"string",
|
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.19
|
|
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.19
|
|
82
82
|
minClientVersion:
|
|
83
83
|
type: string
|
|
84
84
|
example: 1.0.0
|
|
@@ -870,6 +870,14 @@ components:
|
|
|
870
870
|
- type: array
|
|
871
871
|
items: {}
|
|
872
872
|
- type: 'null'
|
|
873
|
+
tags:
|
|
874
|
+
type:
|
|
875
|
+
- array
|
|
876
|
+
- 'null'
|
|
877
|
+
items:
|
|
878
|
+
type:
|
|
879
|
+
- string
|
|
880
|
+
- 'null'
|
|
873
881
|
uploadedBy:
|
|
874
882
|
type:
|
|
875
883
|
- string
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1842,7 +1842,7 @@ export interface components {
|
|
|
1842
1842
|
};
|
|
1843
1843
|
/** @description Cross-platform version handshake manifest. See docs/api-versioning.md. */
|
|
1844
1844
|
VersionManifest: {
|
|
1845
|
-
/** @example 1.2.
|
|
1845
|
+
/** @example 1.2.19 */
|
|
1846
1846
|
apiVersion: string;
|
|
1847
1847
|
/** @example 1.0.0 */
|
|
1848
1848
|
minClientVersion: string;
|
|
@@ -2042,6 +2042,7 @@ export interface components {
|
|
|
2042
2042
|
metadata?: string | number | boolean | null | {
|
|
2043
2043
|
[key: string]: unknown;
|
|
2044
2044
|
} | unknown[];
|
|
2045
|
+
tags?: (string | null)[] | null;
|
|
2045
2046
|
uploadedBy?: string | null;
|
|
2046
2047
|
deletedAt?: string | null;
|
|
2047
2048
|
deletedBy?: string | null;
|