@serviceai/api-spec 1.2.327 → 1.2.329

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.327",
5
+ "version": "1.2.329",
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.327"
117
+ "example": "1.2.329"
118
118
  },
119
119
  "minClientVersion": {
120
120
  "type": "string",
@@ -600,6 +600,12 @@
600
600
  "processingStatus": {
601
601
  "type": "string"
602
602
  },
603
+ "processingError": {
604
+ "type": [
605
+ "string",
606
+ "null"
607
+ ]
608
+ },
603
609
  "aiAnalysis": {
604
610
  "anyOf": [
605
611
  {
@@ -1204,7 +1210,8 @@
1204
1210
  "15_min",
1205
1211
  "30_min",
1206
1212
  "1_hour",
1207
- "1_day"
1213
+ "1_day",
1214
+ "1_week"
1208
1215
  ]
1209
1216
  },
1210
1217
  "reminderNotificationId": {
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.327
4
+ version: 1.2.329
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.327
81
+ example: 1.2.329
82
82
  minClientVersion:
83
83
  type: string
84
84
  example: 1.0.0
@@ -407,6 +407,10 @@ components:
407
407
  maximum: 2147483647
408
408
  processingStatus:
409
409
  type: string
410
+ processingError:
411
+ type:
412
+ - string
413
+ - 'null'
410
414
  aiAnalysis:
411
415
  anyOf:
412
416
  - type: string
@@ -753,6 +757,7 @@ components:
753
757
  - 30_min
754
758
  - 1_hour
755
759
  - 1_day
760
+ - 1_week
756
761
  reminderNotificationId:
757
762
  type:
758
763
  - integer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceai/api-spec",
3
- "version": "1.2.327",
3
+ "version": "1.2.329",
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
@@ -1848,7 +1848,7 @@ export interface components {
1848
1848
  };
1849
1849
  /** @description Cross-platform version handshake manifest. See docs/api-versioning.md. */
1850
1850
  VersionManifest: {
1851
- /** @example 1.2.327 */
1851
+ /** @example 1.2.329 */
1852
1852
  apiVersion: string;
1853
1853
  /** @example 1.0.0 */
1854
1854
  minClientVersion: string;
@@ -1937,6 +1937,7 @@ export interface components {
1937
1937
  pageNumber?: number | null;
1938
1938
  totalPages?: number | null;
1939
1939
  processingStatus?: string;
1940
+ processingError?: string | null;
1940
1941
  aiAnalysis?: string | number | boolean | null | {
1941
1942
  [key: string]: unknown;
1942
1943
  } | unknown[];
@@ -2016,7 +2017,7 @@ export interface components {
2016
2017
  [key: string]: unknown;
2017
2018
  } | unknown[];
2018
2019
  /** @enum {string|null} */
2019
- reminder?: "none" | "when_due" | "15_min" | "30_min" | "1_hour" | "1_day" | null;
2020
+ reminder?: "none" | "when_due" | "15_min" | "30_min" | "1_hour" | "1_day" | "1_week" | null;
2020
2021
  reminderNotificationId?: number | null;
2021
2022
  isRecurring?: boolean | null;
2022
2023
  recurrencePattern?: string | null;