@serviceai/api-spec 1.0.7 → 1.0.8

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 CHANGED
@@ -2,10 +2,11 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "ServiceAi API",
5
- "version": "1.0.7",
5
+ "version": "1.0.8",
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
- "name": "Proprietary"
8
+ "name": "Proprietary",
9
+ "identifier": "LicenseRef-Proprietary"
9
10
  }
10
11
  },
11
12
  "servers": [
@@ -113,7 +114,7 @@
113
114
  "properties": {
114
115
  "apiVersion": {
115
116
  "type": "string",
116
- "example": "1.0.7"
117
+ "example": "1.0.8"
117
118
  },
118
119
  "minClientVersion": {
119
120
  "type": "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.0.7
4
+ version: 1.0.8
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
@@ -9,6 +9,7 @@ info:
9
9
  contract.
10
10
  license:
11
11
  name: Proprietary
12
+ identifier: LicenseRef-Proprietary
12
13
  servers:
13
14
  - url: https://app.serviceai.com
14
15
  description: Production
@@ -77,7 +78,7 @@ components:
77
78
  properties:
78
79
  apiVersion:
79
80
  type: string
80
- example: 1.0.7
81
+ example: 1.0.8
81
82
  minClientVersion:
82
83
  type: string
83
84
  example: 1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceai/api-spec",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "ServiceAi OpenAPI 3.1 contract + generated TS types. Auto-published from the desktop repo.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
package/types.d.ts CHANGED
@@ -1051,7 +1051,7 @@ export interface components {
1051
1051
  };
1052
1052
  /** @description Cross-platform version handshake manifest. See docs/api-versioning.md. */
1053
1053
  VersionManifest: {
1054
- /** @example 1.0.7 */
1054
+ /** @example 1.0.8 */
1055
1055
  apiVersion: string;
1056
1056
  /** @example 1.0.0 */
1057
1057
  minClientVersion: string;