@junobuild/functions 0.0.11 → 0.0.12
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/README.md +28 -28
- package/hooks/db/assertions.d.ts +1808 -120
- package/hooks/db/hooks.d.ts +2197 -125
- package/hooks/schemas/context.d.ts +5 -22
- package/hooks/schemas/db/context.d.ts +1299 -128
- package/index.js +1 -1
- package/index.js.map +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,11 +38,11 @@ JavaScript and TypeScript utilities for [Juno] Serverless Functions.
|
|
|
38
38
|
|
|
39
39
|
#### :gear: HookContextSchema
|
|
40
40
|
|
|
41
|
-
| Function | Type
|
|
42
|
-
| ------------------- |
|
|
43
|
-
| `HookContextSchema` | `<T extends z.ZodTypeAny>(dataSchema: T) => ZodObject<
|
|
41
|
+
| Function | Type |
|
|
42
|
+
| ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
43
|
+
| `HookContextSchema` | `<T extends z.ZodTypeAny>(dataSchema: T) => ZodObject<typeof schemaShape, "strict", ZodTypeAny, baseObjectOutputType<typeof schemaShape>, baseObjectInputType<typeof schemaShape>>` |
|
|
44
44
|
|
|
45
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#
|
|
45
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#L8)
|
|
46
46
|
|
|
47
47
|
#### :gear: AssertFunctionSchema
|
|
48
48
|
|
|
@@ -50,7 +50,7 @@ JavaScript and TypeScript utilities for [Juno] Serverless Functions.
|
|
|
50
50
|
| ---------------------- | ----------------------------------------------------------------------------------------------- |
|
|
51
51
|
| `AssertFunctionSchema` | `<T extends z.ZodTypeAny>(contextSchema: T) => ZodFunction<ZodTuple<[T], ZodUnknown>, ZodVoid>` |
|
|
52
52
|
|
|
53
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#
|
|
53
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#L41)
|
|
54
54
|
|
|
55
55
|
#### :gear: RunFunctionSchema
|
|
56
56
|
|
|
@@ -58,15 +58,15 @@ JavaScript and TypeScript utilities for [Juno] Serverless Functions.
|
|
|
58
58
|
| ------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
|
|
59
59
|
| `RunFunctionSchema` | `<T extends z.ZodTypeAny>(contextSchema: T) => ZodFunction<ZodTuple<[T], ZodUnknown>, ZodUnion<[ZodPromise<ZodVoid>, ZodVoid]>>` |
|
|
60
60
|
|
|
61
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#
|
|
61
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#L56)
|
|
62
62
|
|
|
63
63
|
#### :gear: DocContextSchema
|
|
64
64
|
|
|
65
|
-
| Function | Type
|
|
66
|
-
| ------------------ |
|
|
67
|
-
| `DocContextSchema` | `<T extends z.ZodTypeAny>(dataSchema: T) => ZodObject<
|
|
65
|
+
| Function | Type |
|
|
66
|
+
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
67
|
+
| `DocContextSchema` | `<T extends z.ZodTypeAny>(dataSchema: T) => ZodObject<typeof schemaShape, "strict", ZodTypeAny, baseObjectOutputType<typeof schemaShape>, baseObjectInputType<typeof schemaShape>>` |
|
|
68
68
|
|
|
69
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#
|
|
69
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#L10)
|
|
70
70
|
|
|
71
71
|
#### :gear: AssertFnSchema
|
|
72
72
|
|
|
@@ -405,19 +405,19 @@ A schema that validates a value is an Uint8Array.
|
|
|
405
405
|
|
|
406
406
|
#### :gear: OnSetDocContextSchema
|
|
407
407
|
|
|
408
|
-
| Constant | Type
|
|
409
|
-
| ----------------------- |
|
|
410
|
-
| `OnSetDocContextSchema` | `ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<ArrayBufferLike>>; data: ZodObject<...>; }, "strict", ZodTypeAny,
|
|
408
|
+
| Constant | Type |
|
|
409
|
+
| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
410
|
+
| `OnSetDocContextSchema` | `ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<ArrayBufferLike>>; data: ZodObject<...>; }, "strict", ZodTypeAny, baseObjectOutputType<...>, baseObjectInputType<...>>` |
|
|
411
411
|
|
|
412
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#
|
|
412
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#L48)
|
|
413
413
|
|
|
414
414
|
#### :gear: AssertSetDocContextSchema
|
|
415
415
|
|
|
416
|
-
| Constant | Type
|
|
417
|
-
| --------------------------- |
|
|
418
|
-
| `AssertSetDocContextSchema` | `ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<ArrayBufferLike>>; data: ZodObject<...>; }, "strict", ZodTypeAny,
|
|
416
|
+
| Constant | Type |
|
|
417
|
+
| --------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
418
|
+
| `AssertSetDocContextSchema` | `ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<ArrayBufferLike>>; data: ZodObject<...>; }, "strict", ZodTypeAny, baseObjectOutputType<...>, baseObjectInputType<...>>` |
|
|
419
419
|
|
|
420
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#
|
|
420
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#L61)
|
|
421
421
|
|
|
422
422
|
#### :gear: SatelliteEnvSchema
|
|
423
423
|
|
|
@@ -431,7 +431,7 @@ A schema that validates a value is an Uint8Array.
|
|
|
431
431
|
|
|
432
432
|
| Constant | Type |
|
|
433
433
|
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
434
|
-
| `AssertSetDocSchema` | `ZodObject<extendShape<{ collections: ZodReadonly<ZodArray<ZodString, "many">>; }, { assert: ZodFunction<ZodTuple<[ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<...>>; data: ZodObject<...>; }, "strict", ZodTypeAny,
|
|
434
|
+
| `AssertSetDocSchema` | `ZodObject<extendShape<{ collections: ZodReadonly<ZodArray<ZodString, "many">>; }, { assert: ZodFunction<ZodTuple<[ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<...>>; data: ZodObject<...>; }, "strict", ZodTypeAny, baseObjectOutputType<...>, baseObjectInputType<...>>], ZodUnknown>, Z...` |
|
|
435
435
|
|
|
436
436
|
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/db/assertions.ts#L26)
|
|
437
437
|
|
|
@@ -439,7 +439,7 @@ A schema that validates a value is an Uint8Array.
|
|
|
439
439
|
|
|
440
440
|
| Constant | Type |
|
|
441
441
|
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
442
|
-
| `AssertSchema` | `ZodObject<extendShape<{ collections: ZodReadonly<ZodArray<ZodString, "many">>; }, { assert: ZodFunction<ZodTuple<[ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<...>>; data: ZodObject<...>; }, "strict", ZodTypeAny,
|
|
442
|
+
| `AssertSchema` | `ZodObject<extendShape<{ collections: ZodReadonly<ZodArray<ZodString, "many">>; }, { assert: ZodFunction<ZodTuple<[ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<...>>; data: ZodObject<...>; }, "strict", ZodTypeAny, baseObjectOutputType<...>, baseObjectInputType<...>>], ZodUnknown>, Z...` |
|
|
443
443
|
|
|
444
444
|
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/db/assertions.ts#L37)
|
|
445
445
|
|
|
@@ -447,7 +447,7 @@ A schema that validates a value is an Uint8Array.
|
|
|
447
447
|
|
|
448
448
|
| Constant | Type |
|
|
449
449
|
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
450
|
-
| `OnSetDocSchema` | `ZodObject<extendShape<{ collections: ZodReadonly<ZodArray<ZodString, "many">>; }, { run: ZodFunction<ZodTuple<[ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<...>>; data: ZodObject<...>; }, "strict", ZodTypeAny,
|
|
450
|
+
| `OnSetDocSchema` | `ZodObject<extendShape<{ collections: ZodReadonly<ZodArray<ZodString, "many">>; }, { run: ZodFunction<ZodTuple<[ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<...>>; data: ZodObject<...>; }, "strict", ZodTypeAny, baseObjectOutputType<...>, baseObjectInputType<...>>], ZodUnknown>, ZodU...` |
|
|
451
451
|
|
|
452
452
|
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/db/hooks.ts#L26)
|
|
453
453
|
|
|
@@ -455,7 +455,7 @@ A schema that validates a value is an Uint8Array.
|
|
|
455
455
|
|
|
456
456
|
| Constant | Type |
|
|
457
457
|
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
458
|
-
| `HookSchema` | `ZodObject<extendShape<{ collections: ZodReadonly<ZodArray<ZodString, "many">>; }, { run: ZodFunction<ZodTuple<[ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<...>>; data: ZodObject<...>; }, "strict", ZodTypeAny,
|
|
458
|
+
| `HookSchema` | `ZodObject<extendShape<{ collections: ZodReadonly<ZodArray<ZodString, "many">>; }, { run: ZodFunction<ZodTuple<[ZodObject<{ caller: ZodType<Uint8Array<ArrayBufferLike>, ZodTypeDef, Uint8Array<...>>; data: ZodObject<...>; }, "strict", ZodTypeAny, baseObjectOutputType<...>, baseObjectInputType<...>>], ZodUnknown>, ZodU...` |
|
|
459
459
|
|
|
460
460
|
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/db/hooks.ts#L37)
|
|
461
461
|
|
|
@@ -667,7 +667,7 @@ Represents the context provided to hooks, containing information about the calle
|
|
|
667
667
|
| ------------- | -------------------------------------------------- |
|
|
668
668
|
| `HookContext` | `z.infer<ReturnType<typeof HookContextSchema<T>>>` |
|
|
669
669
|
|
|
670
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#
|
|
670
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#L36)
|
|
671
671
|
|
|
672
672
|
#### :gear: AssertFunction
|
|
673
673
|
|
|
@@ -679,7 +679,7 @@ The function takes a context argument and returns `void`.
|
|
|
679
679
|
| ---------------- | ---------------------------------------------------------------- |
|
|
680
680
|
| `AssertFunction` | `z.infer<ReturnType<typeof AssertFunctionSchema<z.ZodType<T>>>>` |
|
|
681
681
|
|
|
682
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#
|
|
682
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#L51)
|
|
683
683
|
|
|
684
684
|
#### :gear: RunFunction
|
|
685
685
|
|
|
@@ -691,7 +691,7 @@ The function takes a context argument and returns either a `Promise<void>` or `v
|
|
|
691
691
|
| ------------- | ------------------------------------------------------------- |
|
|
692
692
|
| `RunFunction` | `z.infer<ReturnType<typeof RunFunctionSchema<z.ZodType<T>>>>` |
|
|
693
693
|
|
|
694
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#
|
|
694
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/context.ts#L66)
|
|
695
695
|
|
|
696
696
|
#### :gear: DocDescription
|
|
697
697
|
|
|
@@ -769,7 +769,7 @@ Represents the context of a document operation within a collection.
|
|
|
769
769
|
| ------------ | ------------------------------------------------- |
|
|
770
770
|
| `DocContext` | `z.infer<ReturnType<typeof DocContextSchema<T>>>` |
|
|
771
771
|
|
|
772
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#
|
|
772
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#L43)
|
|
773
773
|
|
|
774
774
|
#### :gear: OnSetDocContext
|
|
775
775
|
|
|
@@ -782,7 +782,7 @@ along with details about the user who triggered the operation.
|
|
|
782
782
|
| ----------------- | --------------------------------------- |
|
|
783
783
|
| `OnSetDocContext` | `z.infer<typeof OnSetDocContextSchema>` |
|
|
784
784
|
|
|
785
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#
|
|
785
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#L56)
|
|
786
786
|
|
|
787
787
|
#### :gear: AssertSetDocContext
|
|
788
788
|
|
|
@@ -795,7 +795,7 @@ it is created or updated. If validation fails, the developer should throw an err
|
|
|
795
795
|
| --------------------- | ------------------------------------------- |
|
|
796
796
|
| `AssertSetDocContext` | `z.infer<typeof AssertSetDocContextSchema>` |
|
|
797
797
|
|
|
798
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#
|
|
798
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/functions/src/hooks/schemas/db/context.ts#L69)
|
|
799
799
|
|
|
800
800
|
#### :gear: SatelliteEnv
|
|
801
801
|
|