@serviceai/api-spec 1.2.349 → 1.2.351

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.349",
5
+ "version": "1.2.351",
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.349"
117
+ "example": "1.2.351"
118
118
  },
119
119
  "minClientVersion": {
120
120
  "type": "string",
@@ -3071,13 +3071,21 @@
3071
3071
  },
3072
3072
  "timestamp": {
3073
3073
  "type": "string"
3074
+ },
3075
+ "timezone": {
3076
+ "type": "string"
3077
+ },
3078
+ "utcOffset": {
3079
+ "type": "string"
3074
3080
  }
3075
3081
  },
3076
3082
  "required": [
3077
3083
  "instructions",
3078
3084
  "knowledgeBaseLoaded",
3079
3085
  "workflowStagesLoaded",
3080
- "timestamp"
3086
+ "timestamp",
3087
+ "timezone",
3088
+ "utcOffset"
3081
3089
  ]
3082
3090
  },
3083
3091
  "RealtimeTokenRequest": {
@@ -6060,13 +6068,21 @@
6060
6068
  },
6061
6069
  "timestamp": {
6062
6070
  "type": "string"
6071
+ },
6072
+ "timezone": {
6073
+ "type": "string"
6074
+ },
6075
+ "utcOffset": {
6076
+ "type": "string"
6063
6077
  }
6064
6078
  },
6065
6079
  "required": [
6066
6080
  "instructions",
6067
6081
  "knowledgeBaseLoaded",
6068
6082
  "workflowStagesLoaded",
6069
- "timestamp"
6083
+ "timestamp",
6084
+ "timezone",
6085
+ "utcOffset"
6070
6086
  ]
6071
6087
  }
6072
6088
  }
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.349
4
+ version: 1.2.351
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.349
81
+ example: 1.2.351
82
82
  minClientVersion:
83
83
  type: string
84
84
  example: 1.0.0
@@ -2017,11 +2017,17 @@ components:
2017
2017
  type: boolean
2018
2018
  timestamp:
2019
2019
  type: string
2020
+ timezone:
2021
+ type: string
2022
+ utcOffset:
2023
+ type: string
2020
2024
  required:
2021
2025
  - instructions
2022
2026
  - knowledgeBaseLoaded
2023
2027
  - workflowStagesLoaded
2024
2028
  - timestamp
2029
+ - timezone
2030
+ - utcOffset
2025
2031
  RealtimeTokenRequest:
2026
2032
  type: object
2027
2033
  properties:
@@ -3847,11 +3853,17 @@ paths:
3847
3853
  type: boolean
3848
3854
  timestamp:
3849
3855
  type: string
3856
+ timezone:
3857
+ type: string
3858
+ utcOffset:
3859
+ type: string
3850
3860
  required:
3851
3861
  - instructions
3852
3862
  - knowledgeBaseLoaded
3853
3863
  - workflowStagesLoaded
3854
3864
  - timestamp
3865
+ - timezone
3866
+ - utcOffset
3855
3867
  '401':
3856
3868
  description: Unauthenticated.
3857
3869
  content:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceai/api-spec",
3
- "version": "1.2.349",
3
+ "version": "1.2.351",
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
@@ -1495,6 +1495,8 @@ export interface paths {
1495
1495
  knowledgeBaseLoaded: boolean;
1496
1496
  workflowStagesLoaded: boolean;
1497
1497
  timestamp: string;
1498
+ timezone: string;
1499
+ utcOffset: string;
1498
1500
  };
1499
1501
  };
1500
1502
  };
@@ -1848,7 +1850,7 @@ export interface components {
1848
1850
  };
1849
1851
  /** @description Cross-platform version handshake manifest. See docs/api-versioning.md. */
1850
1852
  VersionManifest: {
1851
- /** @example 1.2.349 */
1853
+ /** @example 1.2.351 */
1852
1854
  apiVersion: string;
1853
1855
  /** @example 1.0.0 */
1854
1856
  minClientVersion: string;
@@ -2422,6 +2424,8 @@ export interface components {
2422
2424
  knowledgeBaseLoaded: boolean;
2423
2425
  workflowStagesLoaded: boolean;
2424
2426
  timestamp: string;
2427
+ timezone: string;
2428
+ utcOffset: string;
2425
2429
  };
2426
2430
  RealtimeTokenRequest: {
2427
2431
  directWebRTC?: boolean;