Skip to content

Commit 834307d

Browse files
author
cobraz
authored
chore(docs): run typegen
1 parent 7933a7b commit 834307d

21 files changed

+664
-530
lines changed

docs/assets/main.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/style.css

+58-29
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@
5151
--dark-color-text-aside: #dddddd;
5252
--dark-color-link: #00aff4;
5353

54-
--dark-color-ts-project: #e14dff;
54+
--dark-color-ts-project: #e358ff;
5555
--dark-color-ts-module: var(--dark-color-ts-project);
5656
--dark-color-ts-namespace: var(--dark-color-ts-project);
5757
--dark-color-ts-enum: #f4d93e;
5858
--dark-color-ts-enum-member: var(--dark-color-ts-enum);
5959
--dark-color-ts-variable: #798dff;
60-
--dark-color-ts-function: #9772ff;
60+
--dark-color-ts-function: #a280ff;
6161
--dark-color-ts-class: #8ac4ff;
6262
--dark-color-ts-interface: #6cff87;
6363
--dark-color-ts-constructor: var(--dark-color-ts-class);
@@ -262,6 +262,16 @@ h6 {
262262
line-height: 1.2;
263263
}
264264

265+
h1 > a,
266+
h2 > a,
267+
h3 > a,
268+
h4 > a,
269+
h5 > a,
270+
h6 > a {
271+
text-decoration: none;
272+
color: var(--color-text);
273+
}
274+
265275
h1 {
266276
font-size: 1.875rem;
267277
margin: 0.67rem 0;
@@ -296,12 +306,6 @@ h6 {
296306
text-transform: uppercase;
297307
}
298308

299-
pre {
300-
white-space: pre;
301-
white-space: pre-wrap;
302-
word-wrap: break-word;
303-
}
304-
305309
dl,
306310
menu,
307311
ol,
@@ -426,13 +430,29 @@ pre {
426430
}
427431

428432
pre {
433+
position: relative;
434+
white-space: pre;
435+
white-space: pre-wrap;
436+
word-wrap: break-word;
429437
padding: 10px;
430-
border: 0.1em solid var(--color-accent);
438+
border: 1px solid var(--color-accent);
431439
}
432440
pre code {
433441
padding: 0;
434442
font-size: 100%;
435443
}
444+
pre > button {
445+
position: absolute;
446+
top: 10px;
447+
right: 10px;
448+
opacity: 0;
449+
transition: opacity 0.1s;
450+
box-sizing: border-box;
451+
}
452+
pre:hover > button,
453+
pre > button.visible {
454+
opacity: 1;
455+
}
436456

437457
blockquote {
438458
margin: 1em 0;
@@ -676,7 +696,12 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
676696
.tsd-navigation.settings {
677697
margin: 1rem 0;
678698
}
699+
.tsd-navigation > a,
700+
.tsd-navigation .tsd-accordion-summary {
701+
width: calc(100% - 0.5rem);
702+
}
679703
.tsd-navigation a,
704+
.tsd-navigation summary > span,
680705
.tsd-page-navigation a {
681706
display: inline-flex;
682707
align-items: center;
@@ -685,14 +710,6 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
685710
text-decoration: none;
686711
box-sizing: border-box;
687712
}
688-
.tsd-navigation a {
689-
/* why 3rem? No idea, but it seems to work. */
690-
width: calc(100% - 3rem);
691-
}
692-
.tsd-page-navigation a {
693-
/* why is this different? */
694-
width: 100%;
695-
}
696713
.tsd-navigation a.current,
697714
.tsd-page-navigation a.current {
698715
background: var(--color-active-menu-item);
@@ -703,7 +720,8 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
703720
}
704721
.tsd-navigation ul,
705722
.tsd-page-navigation ul {
706-
margin: 0;
723+
margin-top: 0;
724+
margin-bottom: 0;
707725
padding: 0;
708726
list-style: none;
709727
}
@@ -712,18 +730,24 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
712730
padding: 0;
713731
max-width: 100%;
714732
}
715-
.tsd-nested-navigation > li > a {
733+
.tsd-nested-navigation {
716734
margin-left: 3rem;
717735
}
718736
.tsd-nested-navigation > li > details {
719-
margin-left: 1.5rem;
737+
margin-left: -1.5rem;
720738
}
721-
.tsd-small-nested-navigation > li > a {
739+
.tsd-small-nested-navigation {
722740
margin-left: 1.5rem;
723741
}
724742
.tsd-small-nested-navigation > li > details {
725-
margin-left: 0;
743+
margin-left: -1.5rem;
744+
}
745+
746+
.tsd-nested-navigation > li > a,
747+
.tsd-nested-navigation > li > span {
748+
width: calc(100% - 1.75rem - 0.5rem);
726749
}
750+
727751
.tsd-page-navigation ul {
728752
padding-left: 1.75rem;
729753
}
@@ -745,28 +769,33 @@ a.tsd-index-link {
745769
align-items: center;
746770
color: var(--color-text);
747771
}
772+
.tsd-accordion-summary {
773+
list-style-type: none; /* hide marker on non-safari */
774+
outline: none; /* broken on safari, so just hide it */
775+
}
776+
.tsd-accordion-summary::-webkit-details-marker {
777+
display: none; /* hide marker on safari */
778+
}
748779
.tsd-accordion-summary,
749780
.tsd-accordion-summary a {
750781
user-select: none;
751782
-moz-user-select: none;
752783
-webkit-user-select: none;
753784
-ms-user-select: none;
754785

755-
display: flex;
756-
align-items: center;
757786
cursor: pointer;
758787
}
788+
.tsd-accordion-summary a {
789+
width: calc(100% - 1.5rem);
790+
}
759791
.tsd-accordion-summary > * {
760792
margin-top: 0;
761793
margin-bottom: 0;
762794
padding-top: 0;
763795
padding-bottom: 0;
764796
}
765-
.tsd-accordion-summary::-webkit-details-marker {
766-
display: none;
767-
}
768-
.tsd-index-accordion .tsd-accordion-summary svg {
769-
margin-right: 0.25rem;
797+
.tsd-index-accordion .tsd-accordion-summary > svg {
798+
margin-left: 0.25rem;
770799
}
771800
.tsd-index-content > :not(:first-child) {
772801
margin-top: 0.75rem;

docs/classes/PubSubHandlerResponse.html

+29-28
Large diffs are not rendered by default.

docs/functions/createPubSubCloudFunctions.html

+23-22
Large diffs are not rendered by default.

docs/functions/handlePubSubMessage.html

+23-22
Large diffs are not rendered by default.

docs/functions/makePubSubConfig.html

+23-22
Large diffs are not rendered by default.

docs/functions/pubSubFastifyPlugin.html

+25-27
Large diffs are not rendered by default.

docs/index.html

+36-34
Large diffs are not rendered by default.

docs/interfaces/HandlePubSubMessageArgs.html

+47-46
Large diffs are not rendered by default.

docs/interfaces/PubSubCloudFunctionsConfig.html

+58-54
Large diffs are not rendered by default.

docs/interfaces/PubSubConfig.html

+53-49
Large diffs are not rendered by default.

docs/interfaces/PubSubHandlerFastifyConfig.html

+57-53
Large diffs are not rendered by default.

docs/types/CloudFunctionFun.html

+21-20
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ <h4>Type declaration</h4>
2727
<h4 class="tsd-parameters-title">Parameters</h4>
2828
<ul class="tsd-parameter-list">
2929
<li>
30-
<h5><span class="tsd-kind-parameter">req</span>: <span class="tsd-signature-type ">express.Request</span></h5></li>
30+
<h5><span class="tsd-kind-parameter">req</span>: <a href="CloudRunRequest.html" class="tsd-signature-type tsd-kind-type-alias">CloudRunRequest</a></h5></li>
3131
<li>
3232
<h5><span class="tsd-kind-parameter">res</span>: <span class="tsd-signature-type ">express.Response</span></h5></li></ul></div>
3333
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></h4></li></ul></li></ul></div><aside class="tsd-sources">
3434
<ul>
35-
<li>Defined in <a href="https://github.com/simenandre/pubsub-http-handler/blob/0a5bd8b/src/cloud-functions.ts#L14">src/cloud-functions.ts:14</a></li></ul></aside></div>
35+
<li>Defined in <a href="https://github.com/simenandre/pubsub-http-handler/blob/7933a7b/src/cloud-functions.ts#L22">src/cloud-functions.ts:22</a></li></ul></aside></div>
3636
<div class="col-sidebar">
3737
<div class="page-menu">
3838
<div class="tsd-navigation settings">
3939
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
40-
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg>Settings</h3></summary>
40+
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)" id="icon-chevronDown"></path></svg>Settings</h3></summary>
4141
<div class="tsd-accordion-details">
4242
<div class="tsd-filter-visibility">
4343
<h4 class="uppercase">Member Visibility</h4><form>
@@ -49,24 +49,25 @@ <h4 class="uppercase">Member Visibility</h4><form>
4949
<div class="tsd-theme-toggle">
5050
<h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
5151
<div class="site-menu">
52-
<nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4-path"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)" id="icon-4-text"></path></svg><span>pubsub-<wbr/>http-<wbr/>handler</span></a>
52+
<nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>pubsub-<wbr/>http-<wbr/>handler</span></a>
5353
<ul class="tsd-small-nested-navigation">
54-
<li><a href="../classes/PubSubHandlerResponse.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-128-path"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)" id="icon-128-text"></path></svg><span>Pub<wbr/>Sub<wbr/>Handler<wbr/>Response</span></a></li>
55-
<li><a href="../interfaces/HandlePubSubMessageArgs.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg><span>Handle<wbr/>Pub<wbr/>Sub<wbr/>Message<wbr/>Args</span></a></li>
56-
<li><a href="../interfaces/PubSubCloudFunctionsConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Pub<wbr/>Sub<wbr/>Cloud<wbr/>Functions<wbr/>Config</span></a></li>
57-
<li><a href="../interfaces/PubSubConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Pub<wbr/>Sub<wbr/>Config</span></a></li>
58-
<li><a href="../interfaces/PubSubHandlerFastifyConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Pub<wbr/>Sub<wbr/>Handler<wbr/>Fastify<wbr/>Config</span></a></li>
59-
<li><a href="CloudFunctionFun.html" class="current"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg><span>Cloud<wbr/>Function<wbr/>Fun</span></a></li>
60-
<li><a href="OnErrorHandler.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>On<wbr/>Error<wbr/>Handler</span></a></li>
61-
<li><a href="PubSubHandler.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>Pub<wbr/>Sub<wbr/>Handler</span></a></li>
62-
<li><a href="PubSubMessage.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>Pub<wbr/>Sub<wbr/>Message</span></a></li>
63-
<li><a href="PubSubRequest.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>Pub<wbr/>Sub<wbr/>Request</span></a></li>
64-
<li><a href="../variables/pubSubMessageSchema.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-32-path"></rect><path d="M11.106 16L8.85 7.24H9.966L11.454 13.192C11.558 13.608 11.646 13.996 11.718 14.356C11.79 14.708 11.842 14.976 11.874 15.16C11.906 14.976 11.954 14.708 12.018 14.356C12.09 13.996 12.178 13.608 12.282 13.192L13.758 7.24H14.85L12.582 16H11.106Z" fill="var(--color-text)" id="icon-32-text"></path></svg><span>pub<wbr/>Sub<wbr/>Message<wbr/>Schema</span></a></li>
65-
<li><a href="../variables/pubSubRequestSchema.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg><span>pub<wbr/>Sub<wbr/>Request<wbr/>Schema</span></a></li>
66-
<li><a href="../functions/createPubSubCloudFunctions.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg><span>create<wbr/>Pub<wbr/>Sub<wbr/>Cloud<wbr/>Functions</span></a></li>
67-
<li><a href="../functions/handlePubSubMessage.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg><span>handle<wbr/>Pub<wbr/>Sub<wbr/>Message</span></a></li>
68-
<li><a href="../functions/makePubSubConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg><span>make<wbr/>Pub<wbr/>Sub<wbr/>Config</span></a></li>
69-
<li><a href="../functions/pubSubFastifyPlugin.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg><span>pub<wbr/>Sub<wbr/>Fastify<wbr/>Plugin</span></a></li></ul></nav></div></div></div>
54+
<li><a href="../classes/PubSubHandlerResponse.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-128"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g></svg><span>Pub<wbr/>Sub<wbr/>Handler<wbr/>Response</span></a></li>
55+
<li><a href="../interfaces/HandlePubSubMessageArgs.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>Handle<wbr/>Pub<wbr/>Sub<wbr/>Message<wbr/>Args</span></a></li>
56+
<li><a href="../interfaces/PubSubCloudFunctionsConfig.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Pub<wbr/>Sub<wbr/>Cloud<wbr/>Functions<wbr/>Config</span></a></li>
57+
<li><a href="../interfaces/PubSubConfig.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Pub<wbr/>Sub<wbr/>Config</span></a></li>
58+
<li><a href="../interfaces/PubSubHandlerFastifyConfig.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Pub<wbr/>Sub<wbr/>Handler<wbr/>Fastify<wbr/>Config</span></a></li>
59+
<li><a href="CloudFunctionFun.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4194304"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g></svg><span>Cloud<wbr/>Function<wbr/>Fun</span></a></li>
60+
<li><a href="CloudRunRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Cloud<wbr/>Run<wbr/>Request</span></a></li>
61+
<li><a href="OnErrorHandler.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>On<wbr/>Error<wbr/>Handler</span></a></li>
62+
<li><a href="PubSubHandler.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Pub<wbr/>Sub<wbr/>Handler</span></a></li>
63+
<li><a href="PubSubMessage.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Pub<wbr/>Sub<wbr/>Message</span></a></li>
64+
<li><a href="PubSubRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Pub<wbr/>Sub<wbr/>Request</span></a></li>
65+
<li><a href="../variables/pubSubMessageSchema.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-32"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.106 16L8.85 7.24H9.966L11.454 13.192C11.558 13.608 11.646 13.996 11.718 14.356C11.79 14.708 11.842 14.976 11.874 15.16C11.906 14.976 11.954 14.708 12.018 14.356C12.09 13.996 12.178 13.608 12.282 13.192L13.758 7.24H14.85L12.582 16H11.106Z" fill="var(--color-text)"></path></g></svg><span>pub<wbr/>Sub<wbr/>Message<wbr/>Schema</span></a></li>
66+
<li><a href="../variables/pubSubRequestSchema.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>pub<wbr/>Sub<wbr/>Request<wbr/>Schema</span></a></li>
67+
<li><a href="../functions/createPubSubCloudFunctions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-64"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g></svg><span>create<wbr/>Pub<wbr/>Sub<wbr/>Cloud<wbr/>Functions</span></a></li>
68+
<li><a href="../functions/handlePubSubMessage.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>handle<wbr/>Pub<wbr/>Sub<wbr/>Message</span></a></li>
69+
<li><a href="../functions/makePubSubConfig.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>make<wbr/>Pub<wbr/>Sub<wbr/>Config</span></a></li>
70+
<li><a href="../functions/pubSubFastifyPlugin.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>pub<wbr/>Sub<wbr/>Fastify<wbr/>Plugin</span></a></li></ul></nav></div></div></div>
7071
<div class="tsd-generator">
7172
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
7273
<div class="overlay"></div></body></html>

0 commit comments

Comments
 (0)