@serviceai/api-spec 1.2.184 → 1.2.185

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,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "ServiceAi API",
5
- "version": "1.2.184",
5
+ "version": "1.2.185",
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.184"
117
+ "example": "1.2.185"
118
118
  },
119
119
  "minClientVersion": {
120
120
  "type": "string",
@@ -915,6 +915,12 @@
915
915
  "minimum": -2147483648,
916
916
  "maximum": 2147483647
917
917
  },
918
+ "shareToVendor": {
919
+ "type": [
920
+ "boolean",
921
+ "null"
922
+ ]
923
+ },
918
924
  "createdBy": {
919
925
  "type": [
920
926
  "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.184
4
+ version: 1.2.185
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.184
81
+ example: 1.2.185
82
82
  minClientVersion:
83
83
  type: string
84
84
  example: 1.0.0
@@ -588,6 +588,10 @@ components:
588
588
  - 'null'
589
589
  minimum: -2147483648
590
590
  maximum: 2147483647
591
+ shareToVendor:
592
+ type:
593
+ - boolean
594
+ - 'null'
591
595
  createdBy:
592
596
  type:
593
597
  - string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceai/api-spec",
3
- "version": "1.2.184",
3
+ "version": "1.2.185",
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
@@ -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.184 */
1848
+ /** @example 1.2.185 */
1849
1849
  apiVersion: string;
1850
1850
  /** @example 1.0.0 */
1851
1851
  minClientVersion: string;
@@ -1974,6 +1974,7 @@ export interface components {
1974
1974
  floorPlanWidthPx?: number | null;
1975
1975
  floorPlanHeightPx?: number | null;
1976
1976
  floorId?: number | null;
1977
+ shareToVendor?: boolean | null;
1977
1978
  createdBy?: string | null;
1978
1979
  deletedAt?: string | null;
1979
1980
  deletedBy?: string | null;