@ingenx-io/valets-schema-mcp-server 0.2.4 → 0.2.5
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/data/docs/collections/firestore-paths.md +32 -20
- package/data/docs/enums/app-status.md +24 -0
- package/data/docs/enums/attention-status.md +2 -2
- package/data/docs/enums/booking-status.md +2 -2
- package/data/docs/enums/customer-payment-status.md +2 -2
- package/data/docs/enums/customer-payment-target-type.md +2 -2
- package/data/docs/enums/delivery-type.md +2 -2
- package/data/docs/enums/deployment-link-type.md +2 -2
- package/data/docs/enums/event-status.md +2 -2
- package/data/docs/enums/fulfillment-status.md +2 -2
- package/data/docs/enums/loyalty-transaction-type.md +2 -2
- package/data/docs/enums/notification-channel.md +2 -2
- package/data/docs/enums/notification-entity-type.md +2 -2
- package/data/docs/enums/notification-status.md +2 -2
- package/data/docs/enums/order-status.md +2 -2
- package/data/docs/enums/outbound-message-format.md +2 -2
- package/data/docs/enums/outbound-message-purpose.md +2 -2
- package/data/docs/enums/outbound-message-status.md +2 -2
- package/data/docs/enums/payment-method.md +2 -2
- package/data/docs/enums/payment-proof-status.md +2 -2
- package/data/docs/enums/payment-status.md +2 -2
- package/data/docs/enums/pending-issue.md +2 -2
- package/data/docs/enums/return-status.md +2 -2
- package/data/docs/enums/session-status.md +2 -2
- package/data/docs/enums/site-status.md +2 -2
- package/data/docs/enums/stocktake-frequency.md +2 -2
- package/data/docs/enums/stocktake-item-status.md +2 -2
- package/data/docs/enums/stocktake-status.md +2 -2
- package/data/docs/enums/ticket-status.md +2 -2
- package/data/docs/enums/waba-label.md +2 -2
- package/data/docs/enums/whatsapp-button-sub-type.md +2 -2
- package/data/docs/enums/whatsapp-template-component.md +2 -2
- package/data/docs/enums/whatsapp-template-status.md +2 -2
- package/data/docs/index.md +9 -5
- package/data/docs/models/allowed-user.md +7 -7
- package/data/docs/models/analytics-backfill.md +7 -7
- package/data/docs/models/analytics-daily.md +6 -6
- package/data/docs/models/analytics-event.md +7 -7
- package/data/docs/models/analytics-hourly.md +6 -6
- package/data/docs/models/app-payment.md +200 -0
- package/data/docs/models/app.md +561 -0
- package/data/docs/models/booking-version.md +2 -2
- package/data/docs/models/booking.md +127 -127
- package/data/docs/models/customer-payment-allocation.md +20 -20
- package/data/docs/models/customer-payment.md +23 -23
- package/data/docs/models/customer.md +11 -11
- package/data/docs/models/event.md +22 -22
- package/data/docs/models/loyalty-config.md +4 -4
- package/data/docs/models/loyalty-reward.md +3 -3
- package/data/docs/models/loyalty-status.md +6 -6
- package/data/docs/models/loyalty-transaction.md +2 -2
- package/data/docs/models/magic-link-request.md +9 -9
- package/data/docs/models/metrics-current.md +169 -37
- package/data/docs/models/metrics-daily.md +172 -40
- package/data/docs/models/metrics-monthly.md +172 -40
- package/data/docs/models/notification-record.md +3 -3
- package/data/docs/models/order-item.md +6 -6
- package/data/docs/models/order.md +78 -78
- package/data/docs/models/sale.md +18 -18
- package/data/docs/models/site-payment.md +2 -2
- package/data/docs/models/site.md +2 -2
- package/data/docs/models/stocktake-item.md +4 -4
- package/data/docs/models/stocktake.md +5 -5
- package/data/docs/models/ticket.md +3 -3
- package/data/docs/models/user.md +249 -0
- package/data/docs/models/whatsapp-inbound-message.md +2 -2
- package/data/docs/models/whatsapp-outbound-lifecycle-event.md +2 -2
- package/data/docs/models/whatsapp-outbound-message.md +6 -6
- package/data/docs/models/whatsapp-template.md +2 -2
- package/data/static/llms.txt +179 -33
- package/data/static/openapi.yaml +626 -60
- package/data/static/schemas.json +680 -69
- package/package.json +1 -1
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "User"
|
|
3
|
+
sidebar_label: "User"
|
|
4
|
+
sidebar_position: 31
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# User
|
|
8
|
+
|
|
9
|
+
<details>
|
|
10
|
+
<summary>Example JSON</summary>
|
|
11
|
+
|
|
12
|
+
```json
|
|
13
|
+
{
|
|
14
|
+
"id": null,
|
|
15
|
+
"displayName": null,
|
|
16
|
+
"email": null,
|
|
17
|
+
"phoneE164": null,
|
|
18
|
+
"companyId": null,
|
|
19
|
+
"role": null,
|
|
20
|
+
"isActive": null,
|
|
21
|
+
"createdAt": "createdAt",
|
|
22
|
+
"updatedAt": "updatedAt"
|
|
23
|
+
}
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
</details>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
- [1. Property `id`](#id)
|
|
30
|
+
- [2. Property `displayName`](#displayName)
|
|
31
|
+
- [3. Property `email`](#email)
|
|
32
|
+
- [4. Property `phoneE164`](#phoneE164)
|
|
33
|
+
- [5. Property `companyId`](#companyId)
|
|
34
|
+
- [6. Property `role`](#role)
|
|
35
|
+
- [7. Property `isActive`](#isActive)
|
|
36
|
+
- [8. Property `createdAt`](#createdAt)
|
|
37
|
+
- [8.1. Property `firestore-timestamp`](#createdAt_anyOf_i0)
|
|
38
|
+
- [8.1.1. Property `_seconds`](#createdAt_anyOf_i0__seconds)
|
|
39
|
+
- [8.1.2. Property `_nanoseconds`](#createdAt_anyOf_i0__nanoseconds)
|
|
40
|
+
- [8.2. Property `item 1`](#createdAt_anyOf_i1)
|
|
41
|
+
- [9. Property `updatedAt`](#updatedAt)
|
|
42
|
+
- [9.1. Property `firestore-timestamp`](#updatedAt_anyOf_i0)
|
|
43
|
+
- [9.2. Property `item 1`](#updatedAt_anyOf_i1)
|
|
44
|
+
|
|
45
|
+
| | |
|
|
46
|
+
| ------------------------- | ------------------ |
|
|
47
|
+
| **Type** | `object` |
|
|
48
|
+
| **Required** | No |
|
|
49
|
+
| **Additional properties** | Not allowed |
|
|
50
|
+
| **Defined in** | #/definitions/user |
|
|
51
|
+
|
|
52
|
+
**Description:** User / staff account. Collection: users/\{uid\}. Document ID is always the Firebase Auth UID (decision #27). phoneE164 is the canonical E.164 phone field for OTP lookup. Legacy phone-keyed documents must be migrated to uid-keyed docs with phoneE164 set.
|
|
53
|
+
|
|
54
|
+
| Property | Pattern | Type | Deprecated | Definition | Title/Description |
|
|
55
|
+
| ------------------------------ | ------- | --------------- | ---------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------ |
|
|
56
|
+
| - [id](#id ) | No | string or null | No | - | (Read-only) Firebase Auth UID. Matches the Firestore document ID. |
|
|
57
|
+
| - [displayName](#displayName ) | No | string or null | No | - | User display name from Firebase Auth or manually set. |
|
|
58
|
+
| - [email](#email ) | No | string or null | No | - | Email address. Present for email/Google auth users. |
|
|
59
|
+
| - [phoneE164](#phoneE164 ) | No | string or null | No | - | E.164-normalized phone number (e.g. +2250777471485). Canonical phone identity field; used for WhatsApp OTP lookup via indexed query. |
|
|
60
|
+
| - [companyId](#companyId ) | No | string or null | No | - | (Immutable) FK → Company document ID. Present for staff accounts scoped to a company. |
|
|
61
|
+
| - [role](#role ) | No | string or null | No | - | Staff role within the company (e.g. admin, manager, staff). Application-defined. |
|
|
62
|
+
| - [isActive](#isActive ) | No | boolean or null | No | - | Whether this user account is active. Inactive accounts are denied access. |
|
|
63
|
+
| - [createdAt](#createdAt ) | No | Combination | No | - | (Read-only) When the user document was created. |
|
|
64
|
+
| - [updatedAt](#updatedAt ) | No | Combination | No | - | (Read-only) When the user document was last updated. |
|
|
65
|
+
|
|
66
|
+
## <a name="id"></a>1. Property `id`
|
|
67
|
+
|
|
68
|
+
| | |
|
|
69
|
+
| ------------ | ---------------- |
|
|
70
|
+
| **Type** | `string or null` |
|
|
71
|
+
| **Required** | No |
|
|
72
|
+
|
|
73
|
+
**Description:** (Read-only) Firebase Auth UID. Matches the Firestore document ID.
|
|
74
|
+
|
|
75
|
+
:::warning Server-set
|
|
76
|
+
Do not include in write requests. This field is set exclusively by the server (Firestore trigger or Admin SDK). Clients that send it will have the value silently ignored or may receive a validation error.
|
|
77
|
+
:::
|
|
78
|
+
|
|
79
|
+
## <a name="displayName"></a>2. Property `displayName`
|
|
80
|
+
|
|
81
|
+
| | |
|
|
82
|
+
| ------------ | ---------------- |
|
|
83
|
+
| **Type** | `string or null` |
|
|
84
|
+
| **Required** | No |
|
|
85
|
+
|
|
86
|
+
**Description:** User display name from Firebase Auth or manually set.
|
|
87
|
+
|
|
88
|
+
## <a name="email"></a>3. Property `email`
|
|
89
|
+
|
|
90
|
+
| | |
|
|
91
|
+
| ------------ | ---------------- |
|
|
92
|
+
| **Type** | `string or null` |
|
|
93
|
+
| **Required** | No |
|
|
94
|
+
|
|
95
|
+
**Description:** Email address. Present for email/Google auth users.
|
|
96
|
+
|
|
97
|
+
## <a name="phoneE164"></a>4. Property `phoneE164`
|
|
98
|
+
|
|
99
|
+
| | |
|
|
100
|
+
| ------------ | ---------------- |
|
|
101
|
+
| **Type** | `string or null` |
|
|
102
|
+
| **Required** | No |
|
|
103
|
+
|
|
104
|
+
**Description:** E.164-normalized phone number (e.g. +2250777471485). Canonical phone identity field; used for WhatsApp OTP lookup via indexed query.
|
|
105
|
+
|
|
106
|
+
:::note
|
|
107
|
+
E.164 format with leading + (e.g. +2250777471485). Canonical phone identity field (decision #27). Distinct from wa_id (Meta conversation key). Server must normalize at write time: 8-digit CI local → prepend +225.
|
|
108
|
+
:::
|
|
109
|
+
|
|
110
|
+
:::tip When to set
|
|
111
|
+
Set when the user authenticated via phone (WhatsApp OTP) or when a staff member's phone is known. Required for WhatsApp OTP lookup — add a Firestore composite index on phoneE164.
|
|
112
|
+
:::
|
|
113
|
+
|
|
114
|
+
## <a name="companyId"></a>5. Property `companyId`
|
|
115
|
+
|
|
116
|
+
| | |
|
|
117
|
+
| ------------ | ---------------- |
|
|
118
|
+
| **Type** | `string or null` |
|
|
119
|
+
| **Required** | No |
|
|
120
|
+
|
|
121
|
+
**Description:** (Immutable) FK → Company document ID. Present for staff accounts scoped to a company.
|
|
122
|
+
|
|
123
|
+
:::info Immutable
|
|
124
|
+
Set at creation only. This field cannot be modified after the document is created. Include it in CREATE payloads; omit it (or leave unchanged) in UPDATE payloads.
|
|
125
|
+
:::
|
|
126
|
+
|
|
127
|
+
## <a name="role"></a>6. Property `role`
|
|
128
|
+
|
|
129
|
+
| | |
|
|
130
|
+
| ------------ | ---------------- |
|
|
131
|
+
| **Type** | `string or null` |
|
|
132
|
+
| **Required** | No |
|
|
133
|
+
|
|
134
|
+
**Description:** Staff role within the company (e.g. admin, manager, staff). Application-defined.
|
|
135
|
+
|
|
136
|
+
## <a name="isActive"></a>7. Property `isActive`
|
|
137
|
+
|
|
138
|
+
| | |
|
|
139
|
+
| ------------ | ----------------- |
|
|
140
|
+
| **Type** | `boolean or null` |
|
|
141
|
+
| **Required** | No |
|
|
142
|
+
|
|
143
|
+
**Description:** Whether this user account is active. Inactive accounts are denied access.
|
|
144
|
+
|
|
145
|
+
## <a name="createdAt"></a>8. Property `createdAt`
|
|
146
|
+
|
|
147
|
+
| | |
|
|
148
|
+
| ------------------------- | ---------------- |
|
|
149
|
+
| **Type** | `combining` |
|
|
150
|
+
| **Required** | No |
|
|
151
|
+
| **Additional properties** | Any type allowed |
|
|
152
|
+
|
|
153
|
+
**Description:** (Read-only) When the user document was created.
|
|
154
|
+
|
|
155
|
+
| Any of(Option) |
|
|
156
|
+
| ------------------------------------------ |
|
|
157
|
+
| [firestore-timestamp](#createdAt_anyOf_i0) |
|
|
158
|
+
| [item 1](#createdAt_anyOf_i1) |
|
|
159
|
+
|
|
160
|
+
### <a name="createdAt_anyOf_i0"></a>8.1. Property `firestore-timestamp`
|
|
161
|
+
|
|
162
|
+
| | |
|
|
163
|
+
| ------------------------- | --------------------------------- |
|
|
164
|
+
| **Type** | `object` |
|
|
165
|
+
| **Required** | No |
|
|
166
|
+
| **Additional properties** | Not allowed |
|
|
167
|
+
| **Defined in** | #/definitions/firestore-timestamp |
|
|
168
|
+
|
|
169
|
+
**Description:** Firestore Timestamp — Admin SDK form: \{ _seconds, _nanoseconds \}. See types/firestore.ts for REST API v1 and client SDK serialization notes (#10).
|
|
170
|
+
|
|
171
|
+
| Property | Pattern | Type | Deprecated | Definition | Title/Description |
|
|
172
|
+
| --------------------------------------------------- | ------- | ------- | ---------- | ---------- | ----------------- |
|
|
173
|
+
| + [_seconds](#createdAt_anyOf_i0__seconds ) | No | integer | No | - | - |
|
|
174
|
+
| + [_nanoseconds](#createdAt_anyOf_i0__nanoseconds ) | No | integer | No | - | - |
|
|
175
|
+
|
|
176
|
+
#### <a name="createdAt_anyOf_i0__seconds"></a>8.1.1. Property `_seconds`
|
|
177
|
+
|
|
178
|
+
| | |
|
|
179
|
+
| ------------ | --------- |
|
|
180
|
+
| **Type** | `integer` |
|
|
181
|
+
| **Required** | Yes |
|
|
182
|
+
|
|
183
|
+
| Restrictions | |
|
|
184
|
+
| ------------ | ---------------------- |
|
|
185
|
+
| **Minimum** | ≥ -9007199254740991 |
|
|
186
|
+
| **Maximum** | ≤ 9007199254740991 |
|
|
187
|
+
|
|
188
|
+
#### <a name="createdAt_anyOf_i0__nanoseconds"></a>8.1.2. Property `_nanoseconds`
|
|
189
|
+
|
|
190
|
+
| | |
|
|
191
|
+
| ------------ | --------- |
|
|
192
|
+
| **Type** | `integer` |
|
|
193
|
+
| **Required** | Yes |
|
|
194
|
+
|
|
195
|
+
| Restrictions | |
|
|
196
|
+
| ------------ | ---------------------- |
|
|
197
|
+
| **Minimum** | ≥ -9007199254740991 |
|
|
198
|
+
| **Maximum** | ≤ 9007199254740991 |
|
|
199
|
+
|
|
200
|
+
### <a name="createdAt_anyOf_i1"></a>8.2. Property `item 1`
|
|
201
|
+
|
|
202
|
+
| | |
|
|
203
|
+
| ------------ | ------ |
|
|
204
|
+
| **Type** | `null` |
|
|
205
|
+
| **Required** | No |
|
|
206
|
+
|
|
207
|
+
:::warning Server-set
|
|
208
|
+
Do not include in write requests. This field is set exclusively by the server (Firestore trigger or Admin SDK). Clients that send it will have the value silently ignored or may receive a validation error.
|
|
209
|
+
:::
|
|
210
|
+
|
|
211
|
+
## <a name="updatedAt"></a>9. Property `updatedAt`
|
|
212
|
+
|
|
213
|
+
| | |
|
|
214
|
+
| ------------------------- | ---------------- |
|
|
215
|
+
| **Type** | `combining` |
|
|
216
|
+
| **Required** | No |
|
|
217
|
+
| **Additional properties** | Any type allowed |
|
|
218
|
+
|
|
219
|
+
**Description:** (Read-only) When the user document was last updated.
|
|
220
|
+
|
|
221
|
+
| Any of(Option) |
|
|
222
|
+
| ------------------------------------------ |
|
|
223
|
+
| [firestore-timestamp](#updatedAt_anyOf_i0) |
|
|
224
|
+
| [item 1](#updatedAt_anyOf_i1) |
|
|
225
|
+
|
|
226
|
+
### <a name="updatedAt_anyOf_i0"></a>9.1. Property `firestore-timestamp`
|
|
227
|
+
|
|
228
|
+
| | |
|
|
229
|
+
| ------------------------- | ----------------------------------------- |
|
|
230
|
+
| **Type** | `object` |
|
|
231
|
+
| **Required** | No |
|
|
232
|
+
| **Additional properties** | Not allowed |
|
|
233
|
+
| **Same definition as** | [createdAt_anyOf_i0](#createdAt_anyOf_i0) |
|
|
234
|
+
|
|
235
|
+
**Description:** Firestore Timestamp — Admin SDK form: \{ _seconds, _nanoseconds \}. See types/firestore.ts for REST API v1 and client SDK serialization notes (#10).
|
|
236
|
+
|
|
237
|
+
### <a name="updatedAt_anyOf_i1"></a>9.2. Property `item 1`
|
|
238
|
+
|
|
239
|
+
| | |
|
|
240
|
+
| ------------ | ------ |
|
|
241
|
+
| **Type** | `null` |
|
|
242
|
+
| **Required** | No |
|
|
243
|
+
|
|
244
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
245
|
+
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-30 at 12:42:51 +0000
|
|
246
|
+
|
|
247
|
+
:::warning Server-set
|
|
248
|
+
Do not include in write requests. This field is set exclusively by the server (Firestore trigger or Admin SDK). Clients that send it will have the value silently ignored or may receive a validation error.
|
|
249
|
+
:::
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: "WhatsappInboundMessage"
|
|
3
3
|
sidebar_label: "WhatsappInboundMessage"
|
|
4
|
-
sidebar_position:
|
|
4
|
+
sidebar_position: 32
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# WhatsappInboundMessage
|
|
@@ -366,4 +366,4 @@ Do not include in write requests. This field is set exclusively by the server (F
|
|
|
366
366
|
Specific value: `true`
|
|
367
367
|
|
|
368
368
|
----------------------------------------------------------------------------------------------------------------------------
|
|
369
|
-
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-
|
|
369
|
+
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-30 at 12:42:51 +0000
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: "WhatsappOutboundLifecycleEvent"
|
|
3
3
|
sidebar_label: "WhatsappOutboundLifecycleEvent"
|
|
4
|
-
sidebar_position:
|
|
4
|
+
sidebar_position: 33
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# WhatsappOutboundLifecycleEvent
|
|
@@ -303,7 +303,7 @@ Do not include in write requests. This field is set exclusively by the server (F
|
|
|
303
303
|
**Description:** (Read-only) Raw Meta error object(s).
|
|
304
304
|
|
|
305
305
|
----------------------------------------------------------------------------------------------------------------------------
|
|
306
|
-
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-
|
|
306
|
+
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-30 at 12:42:51 +0000
|
|
307
307
|
|
|
308
308
|
:::warning Server-set
|
|
309
309
|
Do not include in write requests. This field is set exclusively by the server (Firestore trigger or Admin SDK). Clients that send it will have the value silently ignored or may receive a validation error.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: "WhatsappOutboundMessage"
|
|
3
3
|
sidebar_label: "WhatsappOutboundMessage"
|
|
4
|
-
sidebar_position:
|
|
4
|
+
sidebar_position: 34
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# WhatsappOutboundMessage
|
|
@@ -461,7 +461,7 @@ Do not include in write requests. This field is set exclusively by the server (F
|
|
|
461
461
|
| **Additional properties** | Not allowed |
|
|
462
462
|
| **Same definition as** | [createdAt](#createdAt) |
|
|
463
463
|
|
|
464
|
-
**Description:** Firestore Timestamp
|
|
464
|
+
**Description:** Firestore Timestamp — Admin SDK form: \{ _seconds, _nanoseconds \}. See types/firestore.ts for REST API v1 and client SDK serialization notes (#10).
|
|
465
465
|
|
|
466
466
|
### <a name="sentAt_anyOf_i1"></a>15.2. Property `item 1`
|
|
467
467
|
|
|
@@ -498,7 +498,7 @@ Do not include in write requests. This field is set exclusively by the server (F
|
|
|
498
498
|
| **Additional properties** | Not allowed |
|
|
499
499
|
| **Same definition as** | [createdAt](#createdAt) |
|
|
500
500
|
|
|
501
|
-
**Description:** Firestore Timestamp
|
|
501
|
+
**Description:** Firestore Timestamp — Admin SDK form: \{ _seconds, _nanoseconds \}. See types/firestore.ts for REST API v1 and client SDK serialization notes (#10).
|
|
502
502
|
|
|
503
503
|
### <a name="deliveredAt_anyOf_i1"></a>16.2. Property `item 1`
|
|
504
504
|
|
|
@@ -535,7 +535,7 @@ Do not include in write requests. This field is set exclusively by the server (F
|
|
|
535
535
|
| **Additional properties** | Not allowed |
|
|
536
536
|
| **Same definition as** | [createdAt](#createdAt) |
|
|
537
537
|
|
|
538
|
-
**Description:** Firestore Timestamp
|
|
538
|
+
**Description:** Firestore Timestamp — Admin SDK form: \{ _seconds, _nanoseconds \}. See types/firestore.ts for REST API v1 and client SDK serialization notes (#10).
|
|
539
539
|
|
|
540
540
|
### <a name="readAt_anyOf_i1"></a>17.2. Property `item 1`
|
|
541
541
|
|
|
@@ -572,7 +572,7 @@ Do not include in write requests. This field is set exclusively by the server (F
|
|
|
572
572
|
| **Additional properties** | Not allowed |
|
|
573
573
|
| **Same definition as** | [createdAt](#createdAt) |
|
|
574
574
|
|
|
575
|
-
**Description:** Firestore Timestamp
|
|
575
|
+
**Description:** Firestore Timestamp — Admin SDK form: \{ _seconds, _nanoseconds \}. See types/firestore.ts for REST API v1 and client SDK serialization notes (#10).
|
|
576
576
|
|
|
577
577
|
### <a name="failedAt_anyOf_i1"></a>18.2. Property `item 1`
|
|
578
578
|
|
|
@@ -582,7 +582,7 @@ Do not include in write requests. This field is set exclusively by the server (F
|
|
|
582
582
|
| **Required** | No |
|
|
583
583
|
|
|
584
584
|
----------------------------------------------------------------------------------------------------------------------------
|
|
585
|
-
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-
|
|
585
|
+
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-30 at 12:42:51 +0000
|
|
586
586
|
|
|
587
587
|
:::warning Server-set
|
|
588
588
|
Do not include in write requests. This field is set exclusively by the server (Firestore trigger or Admin SDK). Clients that send it will have the value silently ignored or may receive a validation error.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: "WhatsappTemplate"
|
|
3
3
|
sidebar_label: "WhatsappTemplate"
|
|
4
|
-
sidebar_position:
|
|
4
|
+
sidebar_position: 35
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# WhatsappTemplate
|
|
@@ -287,7 +287,7 @@ Do not include in write requests. This field is set exclusively by the server (F
|
|
|
287
287
|
**Description:** (Read-only) Rendered preview text for display in the dashboard picker.
|
|
288
288
|
|
|
289
289
|
----------------------------------------------------------------------------------------------------------------------------
|
|
290
|
-
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-
|
|
290
|
+
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-05-30 at 12:42:51 +0000
|
|
291
291
|
|
|
292
292
|
:::warning Server-set
|
|
293
293
|
Do not include in write requests. This field is set exclusively by the server (Firestore trigger or Admin SDK). Clients that send it will have the value silently ignored or may receive a validation error.
|