@serviceai/api-spec 1.2.347 → 1.2.349

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.347",
5
+ "version": "1.2.349",
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.347"
117
+ "example": "1.2.349"
118
118
  },
119
119
  "minClientVersion": {
120
120
  "type": "string",
@@ -1903,6 +1903,24 @@
1903
1903
  "null"
1904
1904
  ]
1905
1905
  },
1906
+ "qboTotalTax": {
1907
+ "type": [
1908
+ "string",
1909
+ "null"
1910
+ ]
1911
+ },
1912
+ "qboTotalAmount": {
1913
+ "type": [
1914
+ "string",
1915
+ "null"
1916
+ ]
1917
+ },
1918
+ "qboTotalsAt": {
1919
+ "type": [
1920
+ "string",
1921
+ "null"
1922
+ ]
1923
+ },
1906
1924
  "createdBy": {
1907
1925
  "type": [
1908
1926
  "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.347
4
+ version: 1.2.349
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.347
81
+ example: 1.2.349
82
82
  minClientVersion:
83
83
  type: string
84
84
  example: 1.0.0
@@ -1198,6 +1198,18 @@ components:
1198
1198
  type:
1199
1199
  - string
1200
1200
  - 'null'
1201
+ qboTotalTax:
1202
+ type:
1203
+ - string
1204
+ - 'null'
1205
+ qboTotalAmount:
1206
+ type:
1207
+ - string
1208
+ - 'null'
1209
+ qboTotalsAt:
1210
+ type:
1211
+ - string
1212
+ - 'null'
1201
1213
  createdBy:
1202
1214
  type:
1203
1215
  - string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceai/api-spec",
3
- "version": "1.2.347",
3
+ "version": "1.2.349",
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.347 */
1851
+ /** @example 1.2.349 */
1852
1852
  apiVersion: string;
1853
1853
  /** @example 1.0.0 */
1854
1854
  minClientVersion: string;
@@ -2128,6 +2128,9 @@ export interface components {
2128
2128
  qboLastPushedAt?: string | null;
2129
2129
  qboLastPushedHash?: string | null;
2130
2130
  qboLastError?: string | null;
2131
+ qboTotalTax?: string | null;
2132
+ qboTotalAmount?: string | null;
2133
+ qboTotalsAt?: string | null;
2131
2134
  createdBy?: string | null;
2132
2135
  deletedAt?: string | null;
2133
2136
  deletedBy?: string | null;