@murphai/contracts 0.1.14 → 0.1.17
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/LICENSE +201 -674
- package/dist/automation.d.ts +185 -0
- package/dist/automation.d.ts.map +1 -0
- package/dist/automation.js +110 -0
- package/dist/automation.js.map +1 -0
- package/dist/bank-entities.d.ts +6 -1
- package/dist/bank-entities.d.ts.map +1 -1
- package/dist/bank-entities.js +87 -10
- package/dist/bank-entities.js.map +1 -1
- package/dist/constants.d.ts +8 -1
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +8 -0
- package/dist/constants.js.map +1 -1
- package/dist/current-profile.d.ts +16 -0
- package/dist/current-profile.d.ts.map +1 -0
- package/dist/current-profile.js +163 -0
- package/dist/current-profile.js.map +1 -0
- package/dist/event-lifecycle.d.ts +28 -0
- package/dist/event-lifecycle.d.ts.map +1 -0
- package/dist/event-lifecycle.js +84 -0
- package/dist/event-lifecycle.js.map +1 -0
- package/dist/examples.d.ts.map +1 -1
- package/dist/examples.js +50 -96
- package/dist/examples.js.map +1 -1
- package/dist/health-entities.d.ts +44 -1
- package/dist/health-entities.d.ts.map +1 -1
- package/dist/health-entities.js +181 -11
- package/dist/health-entities.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/memory.d.ts +123 -0
- package/dist/memory.d.ts.map +1 -0
- package/dist/memory.js +295 -0
- package/dist/memory.js.map +1 -0
- package/dist/registry-helpers.d.ts.map +1 -1
- package/dist/registry-helpers.js +46 -5
- package/dist/registry-helpers.js.map +1 -1
- package/dist/relation-links.d.ts +67 -0
- package/dist/relation-links.d.ts.map +1 -0
- package/dist/relation-links.js +149 -0
- package/dist/relation-links.js.map +1 -0
- package/dist/scripts/verify.js +2 -0
- package/dist/scripts/verify.js.map +1 -1
- package/dist/shares.d.ts +222 -85
- package/dist/shares.d.ts.map +1 -1
- package/dist/shares.js +17 -5
- package/dist/shares.js.map +1 -1
- package/dist/vault.d.ts +32 -0
- package/dist/vault.d.ts.map +1 -0
- package/dist/vault.js +88 -0
- package/dist/vault.js.map +1 -0
- package/dist/zod.d.ts +468 -99
- package/dist/zod.d.ts.map +1 -1
- package/dist/zod.js +37 -74
- package/dist/zod.js.map +1 -1
- package/generated/assessment-response.schema.json +1 -1
- package/generated/audit-record.schema.json +2 -1
- package/generated/event-record.schema.json +4246 -500
- package/generated/frontmatter-allergy.schema.json +22 -0
- package/generated/frontmatter-condition.schema.json +44 -0
- package/generated/frontmatter-family-member.schema.json +22 -0
- package/generated/frontmatter-food.schema.json +22 -0
- package/generated/frontmatter-genetic-variant.schema.json +22 -0
- package/generated/frontmatter-goal.schema.json +62 -0
- package/generated/frontmatter-protocol.schema.json +70 -0
- package/generated/frontmatter-recipe.schema.json +44 -0
- package/generated/frontmatter-workout-format.schema.json +22 -102
- package/generated/inbox-capture-record.schema.json +0 -1
- package/generated/vault-metadata.schema.json +5 -291
- package/package.json +5 -11
- package/dist/tsconfig.build.tsbuildinfo +0 -1
package/dist/shares.d.ts
CHANGED
|
@@ -33,6 +33,13 @@ export declare const foodUpsertPayloadSchema: z.ZodObject<{
|
|
|
33
33
|
time: z.ZodString;
|
|
34
34
|
}, z.core.$strict>>;
|
|
35
35
|
attachedProtocolIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
36
|
+
links: z.ZodOptional<z.ZodType<{
|
|
37
|
+
type: string;
|
|
38
|
+
targetId: string;
|
|
39
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
40
|
+
type: string;
|
|
41
|
+
targetId: string;
|
|
42
|
+
}[], unknown>>>;
|
|
36
43
|
}, z.core.$strict>;
|
|
37
44
|
export declare const recipeUpsertPayloadSchema: z.ZodObject<{
|
|
38
45
|
recipeId: z.ZodOptional<z.ZodString>;
|
|
@@ -56,6 +63,13 @@ export declare const recipeUpsertPayloadSchema: z.ZodObject<{
|
|
|
56
63
|
steps: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
57
64
|
relatedGoalIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
58
65
|
relatedConditionIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
66
|
+
links: z.ZodOptional<z.ZodType<{
|
|
67
|
+
type: string;
|
|
68
|
+
targetId: string;
|
|
69
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
70
|
+
type: string;
|
|
71
|
+
targetId: string;
|
|
72
|
+
}[], unknown>>>;
|
|
59
73
|
}, z.core.$strict>;
|
|
60
74
|
export declare const workoutFormatUpsertPayloadSchema: z.ZodObject<{
|
|
61
75
|
workoutFormatId: z.ZodOptional<z.ZodString>;
|
|
@@ -69,32 +83,7 @@ export declare const workoutFormatUpsertPayloadSchema: z.ZodObject<{
|
|
|
69
83
|
activityType: z.ZodString;
|
|
70
84
|
durationMinutes: z.ZodOptional<z.ZodType<number, unknown, z.core.$ZodTypeInternals<number, unknown>>>;
|
|
71
85
|
distanceKm: z.ZodOptional<z.ZodNumber>;
|
|
72
|
-
|
|
73
|
-
exercise: string;
|
|
74
|
-
setCount: number;
|
|
75
|
-
repsPerSet: number;
|
|
76
|
-
loadDescription?: string | undefined;
|
|
77
|
-
} | {
|
|
78
|
-
load: number;
|
|
79
|
-
loadUnit: "lb" | "kg";
|
|
80
|
-
exercise: string;
|
|
81
|
-
setCount: number;
|
|
82
|
-
repsPerSet: number;
|
|
83
|
-
loadDescription?: string | undefined;
|
|
84
|
-
})[], unknown, z.core.$ZodTypeInternals<({
|
|
85
|
-
exercise: string;
|
|
86
|
-
setCount: number;
|
|
87
|
-
repsPerSet: number;
|
|
88
|
-
loadDescription?: string | undefined;
|
|
89
|
-
} | {
|
|
90
|
-
load: number;
|
|
91
|
-
loadUnit: "lb" | "kg";
|
|
92
|
-
exercise: string;
|
|
93
|
-
setCount: number;
|
|
94
|
-
repsPerSet: number;
|
|
95
|
-
loadDescription?: string | undefined;
|
|
96
|
-
})[], unknown>>>;
|
|
97
|
-
template: z.ZodOptional<z.ZodObject<{
|
|
86
|
+
template: z.ZodObject<{
|
|
98
87
|
routineNote: z.ZodOptional<z.ZodString>;
|
|
99
88
|
exercises: z.ZodArray<z.ZodObject<{
|
|
100
89
|
name: z.ZodString;
|
|
@@ -132,7 +121,7 @@ export declare const workoutFormatUpsertPayloadSchema: z.ZodObject<{
|
|
|
132
121
|
targetRpe: z.ZodOptional<z.ZodNumber>;
|
|
133
122
|
}, z.core.$strict>>;
|
|
134
123
|
}, z.core.$strict>>;
|
|
135
|
-
}, z.core.$strict
|
|
124
|
+
}, z.core.$strict>;
|
|
136
125
|
tags: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
137
126
|
note: z.ZodOptional<z.ZodString>;
|
|
138
127
|
templateText: z.ZodOptional<z.ZodString>;
|
|
@@ -161,6 +150,13 @@ export declare const goalUpsertPayloadSchema: z.ZodObject<{
|
|
|
161
150
|
parentGoalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162
151
|
relatedGoalIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
163
152
|
relatedExperimentIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
153
|
+
links: z.ZodOptional<z.ZodType<{
|
|
154
|
+
type: string;
|
|
155
|
+
targetId: string;
|
|
156
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
157
|
+
type: string;
|
|
158
|
+
targetId: string;
|
|
159
|
+
}[], unknown>>>;
|
|
164
160
|
domains: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
165
161
|
}, z.core.$strict>;
|
|
166
162
|
export declare const goalUpsertPatchPayloadSchema: z.ZodObject<{
|
|
@@ -187,6 +183,13 @@ export declare const goalUpsertPatchPayloadSchema: z.ZodObject<{
|
|
|
187
183
|
parentGoalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
188
184
|
relatedGoalIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
189
185
|
relatedExperimentIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
186
|
+
links: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
187
|
+
type: string;
|
|
188
|
+
targetId: string;
|
|
189
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
190
|
+
type: string;
|
|
191
|
+
targetId: string;
|
|
192
|
+
}[], unknown>>>>;
|
|
190
193
|
domains: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
191
194
|
}, z.core.$strict>;
|
|
192
195
|
export declare const conditionUpsertPayloadSchema: z.ZodObject<{
|
|
@@ -214,6 +217,13 @@ export declare const conditionUpsertPayloadSchema: z.ZodObject<{
|
|
|
214
217
|
bodySites: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
215
218
|
relatedGoalIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
216
219
|
relatedProtocolIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
220
|
+
links: z.ZodOptional<z.ZodType<{
|
|
221
|
+
type: string;
|
|
222
|
+
targetId: string;
|
|
223
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
224
|
+
type: string;
|
|
225
|
+
targetId: string;
|
|
226
|
+
}[], unknown>>>;
|
|
217
227
|
note: z.ZodOptional<z.ZodString>;
|
|
218
228
|
}, z.core.$strict>;
|
|
219
229
|
export declare const conditionUpsertPatchPayloadSchema: z.ZodObject<{
|
|
@@ -241,6 +251,13 @@ export declare const conditionUpsertPatchPayloadSchema: z.ZodObject<{
|
|
|
241
251
|
bodySites: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
242
252
|
relatedGoalIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
243
253
|
relatedProtocolIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
254
|
+
links: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
255
|
+
type: string;
|
|
256
|
+
targetId: string;
|
|
257
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
258
|
+
type: string;
|
|
259
|
+
targetId: string;
|
|
260
|
+
}[], unknown>>>>;
|
|
244
261
|
note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
245
262
|
}, z.core.$strict>;
|
|
246
263
|
export declare const allergyUpsertPayloadSchema: z.ZodObject<{
|
|
@@ -261,6 +278,13 @@ export declare const allergyUpsertPayloadSchema: z.ZodObject<{
|
|
|
261
278
|
reaction: z.ZodOptional<z.ZodString>;
|
|
262
279
|
recordedOn: z.ZodOptional<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>;
|
|
263
280
|
relatedConditionIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
281
|
+
links: z.ZodOptional<z.ZodType<{
|
|
282
|
+
type: string;
|
|
283
|
+
targetId: string;
|
|
284
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
285
|
+
type: string;
|
|
286
|
+
targetId: string;
|
|
287
|
+
}[], unknown>>>;
|
|
264
288
|
note: z.ZodOptional<z.ZodString>;
|
|
265
289
|
}, z.core.$strict>;
|
|
266
290
|
export declare const allergyUpsertPatchPayloadSchema: z.ZodObject<{
|
|
@@ -281,6 +305,13 @@ export declare const allergyUpsertPatchPayloadSchema: z.ZodObject<{
|
|
|
281
305
|
reaction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
282
306
|
recordedOn: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
283
307
|
relatedConditionIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
308
|
+
links: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
309
|
+
type: string;
|
|
310
|
+
targetId: string;
|
|
311
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
312
|
+
type: string;
|
|
313
|
+
targetId: string;
|
|
314
|
+
}[], unknown>>>>;
|
|
284
315
|
note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
285
316
|
}, z.core.$strict>;
|
|
286
317
|
export declare const familyMemberUpsertPayloadSchema: z.ZodObject<{
|
|
@@ -292,6 +323,13 @@ export declare const familyMemberUpsertPayloadSchema: z.ZodObject<{
|
|
|
292
323
|
deceased: z.ZodOptional<z.ZodBoolean>;
|
|
293
324
|
note: z.ZodOptional<z.ZodString>;
|
|
294
325
|
relatedVariantIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
326
|
+
links: z.ZodOptional<z.ZodType<{
|
|
327
|
+
type: string;
|
|
328
|
+
targetId: string;
|
|
329
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
330
|
+
type: string;
|
|
331
|
+
targetId: string;
|
|
332
|
+
}[], unknown>>>;
|
|
295
333
|
}, z.core.$strict>;
|
|
296
334
|
export declare const familyMemberUpsertPatchPayloadSchema: z.ZodObject<{
|
|
297
335
|
familyMemberId: z.ZodOptional<z.ZodString>;
|
|
@@ -302,6 +340,13 @@ export declare const familyMemberUpsertPatchPayloadSchema: z.ZodObject<{
|
|
|
302
340
|
deceased: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
303
341
|
note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
304
342
|
relatedVariantIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
343
|
+
links: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
344
|
+
type: string;
|
|
345
|
+
targetId: string;
|
|
346
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
347
|
+
type: string;
|
|
348
|
+
targetId: string;
|
|
349
|
+
}[], unknown>>>>;
|
|
305
350
|
}, z.core.$strict>;
|
|
306
351
|
export declare const geneticVariantUpsertPayloadSchema: z.ZodObject<{
|
|
307
352
|
variantId: z.ZodOptional<z.ZodString>;
|
|
@@ -324,6 +369,13 @@ export declare const geneticVariantUpsertPayloadSchema: z.ZodObject<{
|
|
|
324
369
|
}>>;
|
|
325
370
|
inheritance: z.ZodOptional<z.ZodString>;
|
|
326
371
|
sourceFamilyMemberIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
372
|
+
links: z.ZodOptional<z.ZodType<{
|
|
373
|
+
type: string;
|
|
374
|
+
targetId: string;
|
|
375
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
376
|
+
type: string;
|
|
377
|
+
targetId: string;
|
|
378
|
+
}[], unknown>>>;
|
|
327
379
|
note: z.ZodOptional<z.ZodString>;
|
|
328
380
|
}, z.core.$strict>;
|
|
329
381
|
export declare const geneticVariantUpsertPatchPayloadSchema: z.ZodObject<{
|
|
@@ -347,6 +399,13 @@ export declare const geneticVariantUpsertPatchPayloadSchema: z.ZodObject<{
|
|
|
347
399
|
}>>>;
|
|
348
400
|
inheritance: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
349
401
|
sourceFamilyMemberIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
402
|
+
links: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
403
|
+
type: string;
|
|
404
|
+
targetId: string;
|
|
405
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
406
|
+
type: string;
|
|
407
|
+
targetId: string;
|
|
408
|
+
}[], unknown>>>>;
|
|
350
409
|
note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
351
410
|
}, z.core.$strict>;
|
|
352
411
|
export declare const protocolUpsertPayloadSchema: z.ZodObject<{
|
|
@@ -391,21 +450,36 @@ export declare const protocolUpsertPayloadSchema: z.ZodObject<{
|
|
|
391
450
|
}[], unknown>>>;
|
|
392
451
|
relatedGoalIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
393
452
|
relatedConditionIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
453
|
+
relatedProtocolIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
454
|
+
links: z.ZodOptional<z.ZodType<{
|
|
455
|
+
type: string;
|
|
456
|
+
targetId: string;
|
|
457
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
458
|
+
type: string;
|
|
459
|
+
targetId: string;
|
|
460
|
+
}[], unknown>>>;
|
|
394
461
|
group: z.ZodOptional<z.ZodString>;
|
|
395
462
|
}, z.core.$strict>;
|
|
396
463
|
export declare const sharePackFoodPayloadSchema: z.ZodObject<{
|
|
397
|
-
note: z.ZodOptional<z.ZodString>;
|
|
398
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
399
|
-
title: z.ZodString;
|
|
400
464
|
kind: z.ZodOptional<z.ZodString>;
|
|
401
465
|
slug: z.ZodOptional<z.ZodString>;
|
|
402
|
-
|
|
403
|
-
location: z.ZodOptional<z.ZodString>;
|
|
404
|
-
ingredients: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
466
|
+
title: z.ZodString;
|
|
405
467
|
status: z.ZodDefault<z.ZodEnum<{
|
|
406
468
|
active: "active";
|
|
407
469
|
archived: "archived";
|
|
408
470
|
}>>;
|
|
471
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
472
|
+
tags: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
473
|
+
note: z.ZodOptional<z.ZodString>;
|
|
474
|
+
links: z.ZodOptional<z.ZodType<{
|
|
475
|
+
type: string;
|
|
476
|
+
targetId: string;
|
|
477
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
478
|
+
type: string;
|
|
479
|
+
targetId: string;
|
|
480
|
+
}[], unknown>>>;
|
|
481
|
+
location: z.ZodOptional<z.ZodString>;
|
|
482
|
+
ingredients: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
409
483
|
aliases: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
410
484
|
brand: z.ZodOptional<z.ZodString>;
|
|
411
485
|
vendor: z.ZodOptional<z.ZodString>;
|
|
@@ -416,18 +490,25 @@ export declare const sharePackFoodPayloadSchema: z.ZodObject<{
|
|
|
416
490
|
attachedProtocolRefs: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
417
491
|
}, z.core.$strict>;
|
|
418
492
|
export declare const sharePackRecipePayloadSchema: z.ZodObject<{
|
|
419
|
-
steps: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
420
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
421
|
-
title: z.ZodString;
|
|
422
493
|
slug: z.ZodOptional<z.ZodString>;
|
|
423
|
-
|
|
424
|
-
tags: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
425
|
-
ingredients: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
494
|
+
title: z.ZodString;
|
|
426
495
|
status: z.ZodDefault<z.ZodEnum<{
|
|
427
496
|
archived: "archived";
|
|
428
497
|
draft: "draft";
|
|
429
498
|
saved: "saved";
|
|
430
499
|
}>>;
|
|
500
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
501
|
+
tags: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
502
|
+
steps: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
503
|
+
source: z.ZodOptional<z.ZodString>;
|
|
504
|
+
links: z.ZodOptional<z.ZodType<{
|
|
505
|
+
type: string;
|
|
506
|
+
targetId: string;
|
|
507
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
508
|
+
type: string;
|
|
509
|
+
targetId: string;
|
|
510
|
+
}[], unknown>>>;
|
|
511
|
+
ingredients: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
431
512
|
cuisine: z.ZodOptional<z.ZodString>;
|
|
432
513
|
dishType: z.ZodOptional<z.ZodString>;
|
|
433
514
|
servings: z.ZodOptional<z.ZodNumber>;
|
|
@@ -438,15 +519,29 @@ export declare const sharePackRecipePayloadSchema: z.ZodObject<{
|
|
|
438
519
|
relatedConditionIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
439
520
|
}, z.core.$strict>;
|
|
440
521
|
export declare const sharePackProtocolPayloadSchema: z.ZodObject<{
|
|
441
|
-
title: z.ZodString;
|
|
442
522
|
kind: z.ZodDefault<z.ZodEnum<{
|
|
443
523
|
medication: "medication";
|
|
444
524
|
supplement: "supplement";
|
|
445
525
|
therapy: "therapy";
|
|
446
526
|
habit: "habit";
|
|
447
527
|
}>>;
|
|
448
|
-
|
|
528
|
+
schedule: z.ZodOptional<z.ZodString>;
|
|
449
529
|
slug: z.ZodOptional<z.ZodString>;
|
|
530
|
+
title: z.ZodString;
|
|
531
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
532
|
+
active: "active";
|
|
533
|
+
paused: "paused";
|
|
534
|
+
completed: "completed";
|
|
535
|
+
stopped: "stopped";
|
|
536
|
+
}>>;
|
|
537
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
538
|
+
links: z.ZodOptional<z.ZodType<{
|
|
539
|
+
type: string;
|
|
540
|
+
targetId: string;
|
|
541
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
542
|
+
type: string;
|
|
543
|
+
targetId: string;
|
|
544
|
+
}[], unknown>>>;
|
|
450
545
|
ingredients: z.ZodOptional<z.ZodType<{
|
|
451
546
|
compound: string;
|
|
452
547
|
label?: string | undefined;
|
|
@@ -463,19 +558,13 @@ export declare const sharePackProtocolPayloadSchema: z.ZodObject<{
|
|
|
463
558
|
note?: string | undefined;
|
|
464
559
|
}[], unknown>>>;
|
|
465
560
|
dose: z.ZodOptional<z.ZodNumber>;
|
|
466
|
-
status: z.ZodDefault<z.ZodEnum<{
|
|
467
|
-
active: "active";
|
|
468
|
-
paused: "paused";
|
|
469
|
-
completed: "completed";
|
|
470
|
-
stopped: "stopped";
|
|
471
|
-
}>>;
|
|
472
561
|
substance: z.ZodOptional<z.ZodString>;
|
|
473
562
|
startedOn: z.ZodOptional<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>;
|
|
474
563
|
brand: z.ZodOptional<z.ZodString>;
|
|
475
564
|
relatedGoalIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
476
565
|
relatedConditionIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
566
|
+
relatedProtocolIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
477
567
|
stoppedOn: z.ZodOptional<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>;
|
|
478
|
-
schedule: z.ZodOptional<z.ZodString>;
|
|
479
568
|
manufacturer: z.ZodOptional<z.ZodString>;
|
|
480
569
|
servingSize: z.ZodOptional<z.ZodString>;
|
|
481
570
|
group: z.ZodOptional<z.ZodString>;
|
|
@@ -484,18 +573,25 @@ export declare const sharePackEntitySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
484
573
|
kind: z.ZodLiteral<"food">;
|
|
485
574
|
ref: z.ZodString;
|
|
486
575
|
payload: z.ZodObject<{
|
|
487
|
-
note: z.ZodOptional<z.ZodString>;
|
|
488
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
489
|
-
title: z.ZodString;
|
|
490
576
|
kind: z.ZodOptional<z.ZodString>;
|
|
491
577
|
slug: z.ZodOptional<z.ZodString>;
|
|
492
|
-
|
|
493
|
-
location: z.ZodOptional<z.ZodString>;
|
|
494
|
-
ingredients: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
578
|
+
title: z.ZodString;
|
|
495
579
|
status: z.ZodDefault<z.ZodEnum<{
|
|
496
580
|
active: "active";
|
|
497
581
|
archived: "archived";
|
|
498
582
|
}>>;
|
|
583
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
584
|
+
tags: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
585
|
+
note: z.ZodOptional<z.ZodString>;
|
|
586
|
+
links: z.ZodOptional<z.ZodType<{
|
|
587
|
+
type: string;
|
|
588
|
+
targetId: string;
|
|
589
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
590
|
+
type: string;
|
|
591
|
+
targetId: string;
|
|
592
|
+
}[], unknown>>>;
|
|
593
|
+
location: z.ZodOptional<z.ZodString>;
|
|
594
|
+
ingredients: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
499
595
|
aliases: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
500
596
|
brand: z.ZodOptional<z.ZodString>;
|
|
501
597
|
vendor: z.ZodOptional<z.ZodString>;
|
|
@@ -509,18 +605,25 @@ export declare const sharePackEntitySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
509
605
|
kind: z.ZodLiteral<"recipe">;
|
|
510
606
|
ref: z.ZodString;
|
|
511
607
|
payload: z.ZodObject<{
|
|
512
|
-
steps: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
513
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
514
|
-
title: z.ZodString;
|
|
515
608
|
slug: z.ZodOptional<z.ZodString>;
|
|
516
|
-
|
|
517
|
-
tags: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
518
|
-
ingredients: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
609
|
+
title: z.ZodString;
|
|
519
610
|
status: z.ZodDefault<z.ZodEnum<{
|
|
520
611
|
archived: "archived";
|
|
521
612
|
draft: "draft";
|
|
522
613
|
saved: "saved";
|
|
523
614
|
}>>;
|
|
615
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
616
|
+
tags: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
617
|
+
steps: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
618
|
+
source: z.ZodOptional<z.ZodString>;
|
|
619
|
+
links: z.ZodOptional<z.ZodType<{
|
|
620
|
+
type: string;
|
|
621
|
+
targetId: string;
|
|
622
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
623
|
+
type: string;
|
|
624
|
+
targetId: string;
|
|
625
|
+
}[], unknown>>>;
|
|
626
|
+
ingredients: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
524
627
|
cuisine: z.ZodOptional<z.ZodString>;
|
|
525
628
|
dishType: z.ZodOptional<z.ZodString>;
|
|
526
629
|
servings: z.ZodOptional<z.ZodNumber>;
|
|
@@ -534,15 +637,29 @@ export declare const sharePackEntitySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
534
637
|
kind: z.ZodLiteral<"protocol">;
|
|
535
638
|
ref: z.ZodString;
|
|
536
639
|
payload: z.ZodObject<{
|
|
537
|
-
title: z.ZodString;
|
|
538
640
|
kind: z.ZodDefault<z.ZodEnum<{
|
|
539
641
|
medication: "medication";
|
|
540
642
|
supplement: "supplement";
|
|
541
643
|
therapy: "therapy";
|
|
542
644
|
habit: "habit";
|
|
543
645
|
}>>;
|
|
544
|
-
|
|
646
|
+
schedule: z.ZodOptional<z.ZodString>;
|
|
545
647
|
slug: z.ZodOptional<z.ZodString>;
|
|
648
|
+
title: z.ZodString;
|
|
649
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
650
|
+
active: "active";
|
|
651
|
+
paused: "paused";
|
|
652
|
+
completed: "completed";
|
|
653
|
+
stopped: "stopped";
|
|
654
|
+
}>>;
|
|
655
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
656
|
+
links: z.ZodOptional<z.ZodType<{
|
|
657
|
+
type: string;
|
|
658
|
+
targetId: string;
|
|
659
|
+
}[], unknown, z.core.$ZodTypeInternals<{
|
|
660
|
+
type: string;
|
|
661
|
+
targetId: string;
|
|
662
|
+
}[], unknown>>>;
|
|
546
663
|
ingredients: z.ZodOptional<z.ZodType<{
|
|
547
664
|
compound: string;
|
|
548
665
|
label?: string | undefined;
|
|
@@ -559,19 +676,13 @@ export declare const sharePackEntitySchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
559
676
|
note?: string | undefined;
|
|
560
677
|
}[], unknown>>>;
|
|
561
678
|
dose: z.ZodOptional<z.ZodNumber>;
|
|
562
|
-
status: z.ZodDefault<z.ZodEnum<{
|
|
563
|
-
active: "active";
|
|
564
|
-
paused: "paused";
|
|
565
|
-
completed: "completed";
|
|
566
|
-
stopped: "stopped";
|
|
567
|
-
}>>;
|
|
568
679
|
substance: z.ZodOptional<z.ZodString>;
|
|
569
680
|
startedOn: z.ZodOptional<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>;
|
|
570
681
|
brand: z.ZodOptional<z.ZodString>;
|
|
571
682
|
relatedGoalIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
572
683
|
relatedConditionIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
684
|
+
relatedProtocolIds: z.ZodOptional<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>;
|
|
573
685
|
stoppedOn: z.ZodOptional<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>;
|
|
574
|
-
schedule: z.ZodOptional<z.ZodString>;
|
|
575
686
|
manufacturer: z.ZodOptional<z.ZodString>;
|
|
576
687
|
servingSize: z.ZodOptional<z.ZodString>;
|
|
577
688
|
group: z.ZodOptional<z.ZodString>;
|
|
@@ -587,11 +698,15 @@ export declare const sharePackSchema: z.ZodObject<{
|
|
|
587
698
|
payload: {
|
|
588
699
|
title: string;
|
|
589
700
|
status: "active" | "archived";
|
|
590
|
-
note?: string | undefined;
|
|
591
|
-
summary?: string | undefined;
|
|
592
701
|
kind?: string | undefined;
|
|
593
702
|
slug?: string | undefined;
|
|
703
|
+
summary?: string | undefined;
|
|
594
704
|
tags?: string[] | undefined;
|
|
705
|
+
note?: string | undefined;
|
|
706
|
+
links?: {
|
|
707
|
+
type: string;
|
|
708
|
+
targetId: string;
|
|
709
|
+
}[] | undefined;
|
|
595
710
|
location?: string | undefined;
|
|
596
711
|
ingredients?: string[] | undefined;
|
|
597
712
|
aliases?: string[] | undefined;
|
|
@@ -609,11 +724,15 @@ export declare const sharePackSchema: z.ZodObject<{
|
|
|
609
724
|
payload: {
|
|
610
725
|
title: string;
|
|
611
726
|
status: "archived" | "draft" | "saved";
|
|
612
|
-
steps?: string[] | undefined;
|
|
613
|
-
summary?: string | undefined;
|
|
614
727
|
slug?: string | undefined;
|
|
615
|
-
|
|
728
|
+
summary?: string | undefined;
|
|
616
729
|
tags?: string[] | undefined;
|
|
730
|
+
steps?: string[] | undefined;
|
|
731
|
+
source?: string | undefined;
|
|
732
|
+
links?: {
|
|
733
|
+
type: string;
|
|
734
|
+
targetId: string;
|
|
735
|
+
}[] | undefined;
|
|
617
736
|
ingredients?: string[] | undefined;
|
|
618
737
|
cuisine?: string | undefined;
|
|
619
738
|
dishType?: string | undefined;
|
|
@@ -628,11 +747,16 @@ export declare const sharePackSchema: z.ZodObject<{
|
|
|
628
747
|
kind: "protocol";
|
|
629
748
|
ref: string;
|
|
630
749
|
payload: {
|
|
631
|
-
title: string;
|
|
632
750
|
kind: "medication" | "supplement" | "therapy" | "habit";
|
|
751
|
+
title: string;
|
|
633
752
|
status: "active" | "paused" | "completed" | "stopped";
|
|
634
|
-
|
|
753
|
+
schedule?: string | undefined;
|
|
635
754
|
slug?: string | undefined;
|
|
755
|
+
unit?: string | undefined;
|
|
756
|
+
links?: {
|
|
757
|
+
type: string;
|
|
758
|
+
targetId: string;
|
|
759
|
+
}[] | undefined;
|
|
636
760
|
ingredients?: {
|
|
637
761
|
compound: string;
|
|
638
762
|
label?: string | undefined;
|
|
@@ -647,8 +771,8 @@ export declare const sharePackSchema: z.ZodObject<{
|
|
|
647
771
|
brand?: string | undefined;
|
|
648
772
|
relatedGoalIds?: string[] | undefined;
|
|
649
773
|
relatedConditionIds?: string[] | undefined;
|
|
774
|
+
relatedProtocolIds?: string[] | undefined;
|
|
650
775
|
stoppedOn?: string | undefined;
|
|
651
|
-
schedule?: string | undefined;
|
|
652
776
|
manufacturer?: string | undefined;
|
|
653
777
|
servingSize?: string | undefined;
|
|
654
778
|
group?: string | undefined;
|
|
@@ -659,11 +783,15 @@ export declare const sharePackSchema: z.ZodObject<{
|
|
|
659
783
|
payload: {
|
|
660
784
|
title: string;
|
|
661
785
|
status: "active" | "archived";
|
|
662
|
-
note?: string | undefined;
|
|
663
|
-
summary?: string | undefined;
|
|
664
786
|
kind?: string | undefined;
|
|
665
787
|
slug?: string | undefined;
|
|
788
|
+
summary?: string | undefined;
|
|
666
789
|
tags?: string[] | undefined;
|
|
790
|
+
note?: string | undefined;
|
|
791
|
+
links?: {
|
|
792
|
+
type: string;
|
|
793
|
+
targetId: string;
|
|
794
|
+
}[] | undefined;
|
|
667
795
|
location?: string | undefined;
|
|
668
796
|
ingredients?: string[] | undefined;
|
|
669
797
|
aliases?: string[] | undefined;
|
|
@@ -681,11 +809,15 @@ export declare const sharePackSchema: z.ZodObject<{
|
|
|
681
809
|
payload: {
|
|
682
810
|
title: string;
|
|
683
811
|
status: "archived" | "draft" | "saved";
|
|
684
|
-
steps?: string[] | undefined;
|
|
685
|
-
summary?: string | undefined;
|
|
686
812
|
slug?: string | undefined;
|
|
687
|
-
|
|
813
|
+
summary?: string | undefined;
|
|
688
814
|
tags?: string[] | undefined;
|
|
815
|
+
steps?: string[] | undefined;
|
|
816
|
+
source?: string | undefined;
|
|
817
|
+
links?: {
|
|
818
|
+
type: string;
|
|
819
|
+
targetId: string;
|
|
820
|
+
}[] | undefined;
|
|
689
821
|
ingredients?: string[] | undefined;
|
|
690
822
|
cuisine?: string | undefined;
|
|
691
823
|
dishType?: string | undefined;
|
|
@@ -700,11 +832,16 @@ export declare const sharePackSchema: z.ZodObject<{
|
|
|
700
832
|
kind: "protocol";
|
|
701
833
|
ref: string;
|
|
702
834
|
payload: {
|
|
703
|
-
title: string;
|
|
704
835
|
kind: "medication" | "supplement" | "therapy" | "habit";
|
|
836
|
+
title: string;
|
|
705
837
|
status: "active" | "paused" | "completed" | "stopped";
|
|
706
|
-
|
|
838
|
+
schedule?: string | undefined;
|
|
707
839
|
slug?: string | undefined;
|
|
840
|
+
unit?: string | undefined;
|
|
841
|
+
links?: {
|
|
842
|
+
type: string;
|
|
843
|
+
targetId: string;
|
|
844
|
+
}[] | undefined;
|
|
708
845
|
ingredients?: {
|
|
709
846
|
compound: string;
|
|
710
847
|
label?: string | undefined;
|
|
@@ -719,8 +856,8 @@ export declare const sharePackSchema: z.ZodObject<{
|
|
|
719
856
|
brand?: string | undefined;
|
|
720
857
|
relatedGoalIds?: string[] | undefined;
|
|
721
858
|
relatedConditionIds?: string[] | undefined;
|
|
859
|
+
relatedProtocolIds?: string[] | undefined;
|
|
722
860
|
stoppedOn?: string | undefined;
|
|
723
|
-
schedule?: string | undefined;
|
|
724
861
|
manufacturer?: string | undefined;
|
|
725
862
|
servingSize?: string | undefined;
|
|
726
863
|
group?: string | undefined;
|
package/dist/shares.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shares.d.ts","sourceRoot":"","sources":["../src/shares.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"shares.d.ts","sourceRoot":"","sources":["../src/shares.ts"],"names":[],"mappings":"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"}
|