@lukoweb/apitogo 0.1.0 → 0.1.2
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/dist/cli/cli.js +37 -147
- package/dist/declarations/lib/ui/Command.d.ts +1 -1
- package/dist/declarations/lib/util/MdxComponents.d.ts +1 -1
- package/package.json +1 -1
- package/src/app/main.tsx +150 -150
- package/src/config/loader.ts +245 -245
- package/src/index.ts +33 -33
- package/src/lib/authentication/components/CallbackHandler.tsx +45 -45
- package/src/lib/authentication/components/SignIn.tsx +46 -46
- package/src/lib/authentication/components/SignUp.tsx +48 -48
- package/src/lib/authentication/providers/clerk.tsx +224 -224
- package/src/lib/authentication/ui/AuthCard.tsx +7 -7
- package/src/lib/authentication/ui/EmailLinkCallbackUi.tsx +129 -125
- package/src/lib/authentication/ui/EmailLinkSentUi.tsx +105 -101
- package/src/lib/authentication/ui/EmailLinkSignInUi.tsx +100 -96
- package/src/lib/authentication/ui/EmailVerificationUi.tsx +128 -124
- package/src/lib/authentication/ui/ZudokuAuthUi.tsx +620 -616
- package/src/lib/components/AiAssistantMenuItems.tsx +102 -102
- package/src/lib/components/Autocomplete.tsx +123 -123
- package/src/lib/components/DeveloperHint.tsx +39 -35
- package/src/lib/components/Header.tsx +260 -260
- package/src/lib/components/Layout.tsx +53 -53
- package/src/lib/components/Main.tsx +51 -51
- package/src/lib/components/Mermaid.tsx +74 -70
- package/src/lib/components/MobileTopNavigation.tsx +276 -276
- package/src/lib/components/MultiSelect.tsx +86 -82
- package/src/lib/components/TopNavigation.tsx +103 -103
- package/src/lib/components/index.ts +26 -26
- package/src/lib/components/navigation/NavigationCategory.tsx +157 -157
- package/src/lib/components/navigation/NavigationFilterInput.tsx +35 -35
- package/src/lib/components/navigation/NavigationItem.tsx +181 -177
- package/src/lib/core/RouteGuard.tsx +193 -193
- package/src/lib/errors/ErrorMessage.tsx +50 -46
- package/src/lib/plugins/api-catalog/Catalog.tsx +80 -80
- package/src/lib/plugins/api-keys/CreateApiKey.tsx +128 -124
- package/src/lib/plugins/api-keys/CreateApiKeyDialog.tsx +49 -49
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +72 -72
- package/src/lib/plugins/api-keys/settings/ApiKeyItem.tsx +342 -342
- package/src/lib/plugins/api-keys/settings/RevealApiKey.tsx +127 -127
- package/src/lib/plugins/markdown/MdxPage.tsx +285 -285
- package/src/lib/plugins/openapi/ApiHeader.tsx +96 -96
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +88 -88
- package/src/lib/plugins/openapi/DownloadSchemaButton.tsx +94 -94
- package/src/lib/plugins/openapi/GeneratedExampleSidecarBox.tsx +52 -52
- package/src/lib/plugins/openapi/OperationListItem.tsx +183 -183
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +63 -63
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +120 -117
- package/src/lib/plugins/openapi/SchemaInfo.tsx +344 -344
- package/src/lib/plugins/openapi/SchemaList.tsx +113 -113
- package/src/lib/plugins/openapi/Sidecar.tsx +312 -309
- package/src/lib/plugins/openapi/SidecarExamples.tsx +177 -174
- package/src/lib/plugins/openapi/components/EnumValues.tsx +58 -58
- package/src/lib/plugins/openapi/components/ResponseContent.tsx +117 -114
- package/src/lib/plugins/openapi/playground/BodyPanel.tsx +274 -271
- package/src/lib/plugins/openapi/playground/CollapsibleHeader.tsx +51 -51
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +60 -60
- package/src/lib/plugins/openapi/playground/Headers.tsx +188 -181
- package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +75 -75
- package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +38 -38
- package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +45 -45
- package/src/lib/plugins/openapi/playground/Playground.tsx +602 -599
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +56 -56
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +151 -148
- package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +70 -70
- package/src/lib/plugins/openapi/playground/request-panel/MultipartField.tsx +91 -91
- package/src/lib/plugins/openapi/playground/result-panel/AudioPlayer.tsx +50 -50
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +355 -355
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +106 -102
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +189 -184
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +299 -299
- package/src/lib/plugins/search-pagefind/IndexingDialog.tsx +162 -162
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +202 -202
- package/src/lib/plugins/search-pagefind/ResultList.tsx +122 -118
- package/src/lib/ui/ActionButton.tsx +21 -21
- package/src/lib/ui/Command.tsx +191 -191
- package/src/lib/util/MdxComponents.tsx +150 -150
- package/src/vite/config.ts +234 -231
- package/src/vite/dev-server.ts +291 -291
- package/src/vite/plugin-api-keys.ts +50 -50
- package/src/vite/plugin-api.ts +320 -318
- package/src/vite/plugin-auth.ts +38 -38
- package/src/vite/plugin-component.ts +45 -39
- package/src/vite/plugin-config.ts +75 -75
- package/src/vite/plugin-custom-pages.ts +36 -36
- package/src/vite/plugin-docs.ts +202 -202
- package/src/vite/plugin-markdown-export.ts +214 -214
- package/src/vite/plugin-mdx.ts +149 -149
- package/src/vite/plugin-navigation.ts +106 -106
- package/src/vite/plugin-search.ts +47 -47
- package/src/vite/plugin.ts +42 -42
- package/src/vite/prerender/prerender.ts +233 -233
|
@@ -1,125 +1,129 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
const [
|
|
31
|
-
|
|
32
|
-
const
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
);
|
|
43
|
-
|
|
44
|
-
const
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
</
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
1
|
+
import { Spinner } from "@lukoweb/apitogo/components";
|
|
2
|
+
import { ActionButton } from "@lukoweb/apitogo/ui/ActionButton.js";
|
|
3
|
+
import {
|
|
4
|
+
Alert,
|
|
5
|
+
AlertDescription,
|
|
6
|
+
AlertTitle,
|
|
7
|
+
} from "@lukoweb/apitogo/ui/Alert.js";
|
|
8
|
+
import {
|
|
9
|
+
CardContent,
|
|
10
|
+
CardDescription,
|
|
11
|
+
CardHeader,
|
|
12
|
+
CardTitle,
|
|
13
|
+
} from "@lukoweb/apitogo/ui/Card.js";
|
|
14
|
+
import { Input } from "@lukoweb/apitogo/ui/Input.js";
|
|
15
|
+
import { useMutation } from "@tanstack/react-query";
|
|
16
|
+
import { useEffect, useRef, useState } from "react";
|
|
17
|
+
import { useNavigate, useSearchParams } from "react-router";
|
|
18
|
+
import { EMAIL_LINK_STORAGE_KEY } from "../constants.js";
|
|
19
|
+
import { getRelativeRedirectUrl } from "../utils/relativeRedirectUrl.js";
|
|
20
|
+
import { AuthCard } from "./AuthCard.js";
|
|
21
|
+
|
|
22
|
+
export const EmailLinkCallbackUi = ({
|
|
23
|
+
onCompleteSignIn,
|
|
24
|
+
isEmailLinkUrl,
|
|
25
|
+
}: {
|
|
26
|
+
onCompleteSignIn: (email: string) => Promise<void>;
|
|
27
|
+
isEmailLinkUrl: (url: string) => boolean;
|
|
28
|
+
}) => {
|
|
29
|
+
const navigate = useNavigate();
|
|
30
|
+
const [searchParams] = useSearchParams();
|
|
31
|
+
const redirectTo = searchParams.get("redirectTo");
|
|
32
|
+
const relativeRedirectTo = getRelativeRedirectUrl(redirectTo);
|
|
33
|
+
|
|
34
|
+
const [emailInput, setEmailInput] = useState("");
|
|
35
|
+
|
|
36
|
+
const signInMutation = useMutation({
|
|
37
|
+
mutationFn: (email: string) => onCompleteSignIn(email),
|
|
38
|
+
onSuccess: () => {
|
|
39
|
+
localStorage.removeItem(EMAIL_LINK_STORAGE_KEY);
|
|
40
|
+
void navigate(relativeRedirectTo, { replace: true });
|
|
41
|
+
},
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
const [storedEmail] = useState(() =>
|
|
45
|
+
localStorage.getItem(EMAIL_LINK_STORAGE_KEY),
|
|
46
|
+
);
|
|
47
|
+
|
|
48
|
+
const isValidLink = isEmailLinkUrl(window.location.href);
|
|
49
|
+
|
|
50
|
+
const hasTriggered = useRef(false);
|
|
51
|
+
useEffect(() => {
|
|
52
|
+
if (isValidLink && storedEmail && !hasTriggered.current) {
|
|
53
|
+
hasTriggered.current = true;
|
|
54
|
+
signInMutation.mutate(storedEmail);
|
|
55
|
+
}
|
|
56
|
+
}, [isValidLink, storedEmail, signInMutation.mutate]);
|
|
57
|
+
|
|
58
|
+
if (!isValidLink) {
|
|
59
|
+
return (
|
|
60
|
+
<AuthCard>
|
|
61
|
+
<CardHeader className="text-center">
|
|
62
|
+
<CardTitle>Invalid sign-in link</CardTitle>
|
|
63
|
+
<CardDescription>
|
|
64
|
+
This sign-in link is invalid or has expired. Please request a new
|
|
65
|
+
one.
|
|
66
|
+
</CardDescription>
|
|
67
|
+
</CardHeader>
|
|
68
|
+
<CardContent className="flex justify-center">
|
|
69
|
+
<a href="/signin/email-link" className="text-sm text-primary">
|
|
70
|
+
Request a new sign-in link
|
|
71
|
+
</a>
|
|
72
|
+
</CardContent>
|
|
73
|
+
</AuthCard>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if (signInMutation.isPending || (storedEmail && signInMutation.isIdle)) {
|
|
78
|
+
return (
|
|
79
|
+
<AuthCard>
|
|
80
|
+
<CardHeader className="text-center">
|
|
81
|
+
<CardTitle>Signing you in...</CardTitle>
|
|
82
|
+
<CardDescription>
|
|
83
|
+
Please wait while we complete your sign-in.
|
|
84
|
+
</CardDescription>
|
|
85
|
+
</CardHeader>
|
|
86
|
+
<CardContent className="flex items-center justify-center">
|
|
87
|
+
<Spinner />
|
|
88
|
+
</CardContent>
|
|
89
|
+
</AuthCard>
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
return (
|
|
94
|
+
<AuthCard>
|
|
95
|
+
<CardHeader>
|
|
96
|
+
<CardTitle>Confirm your email</CardTitle>
|
|
97
|
+
<CardDescription>
|
|
98
|
+
Please enter the email address you used to request the sign-in link.
|
|
99
|
+
</CardDescription>
|
|
100
|
+
</CardHeader>
|
|
101
|
+
<CardContent className="flex flex-col gap-4">
|
|
102
|
+
{signInMutation.error && (
|
|
103
|
+
<Alert variant="destructive">
|
|
104
|
+
<AlertTitle>Error</AlertTitle>
|
|
105
|
+
<AlertDescription>{signInMutation.error.message}</AlertDescription>
|
|
106
|
+
</Alert>
|
|
107
|
+
)}
|
|
108
|
+
<form
|
|
109
|
+
onSubmit={(e) => {
|
|
110
|
+
e.preventDefault();
|
|
111
|
+
signInMutation.mutate(emailInput);
|
|
112
|
+
}}
|
|
113
|
+
className="flex flex-col gap-2"
|
|
114
|
+
>
|
|
115
|
+
<Input
|
|
116
|
+
placeholder="you@example.com"
|
|
117
|
+
type="email"
|
|
118
|
+
value={emailInput}
|
|
119
|
+
onChange={(e) => setEmailInput(e.target.value)}
|
|
120
|
+
required
|
|
121
|
+
/>
|
|
122
|
+
<ActionButton type="submit" isPending={signInMutation.isPending}>
|
|
123
|
+
Complete sign-in
|
|
124
|
+
</ActionButton>
|
|
125
|
+
</form>
|
|
126
|
+
</CardContent>
|
|
127
|
+
</AuthCard>
|
|
128
|
+
);
|
|
129
|
+
};
|
|
@@ -1,101 +1,105 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import { Button } from "@lukoweb/apitogo/ui/Button.js";
|
|
7
|
-
import {
|
|
8
|
-
CardContent,
|
|
9
|
-
CardDescription,
|
|
10
|
-
CardHeader,
|
|
11
|
-
CardTitle,
|
|
12
|
-
} from "@lukoweb/apitogo/ui/Card.js";
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
<
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
<
|
|
40
|
-
|
|
41
|
-
</
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
</
|
|
91
|
-
|
|
92
|
-
<
|
|
93
|
-
to
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
1
|
+
import {
|
|
2
|
+
Alert,
|
|
3
|
+
AlertDescription,
|
|
4
|
+
AlertTitle,
|
|
5
|
+
} from "@lukoweb/apitogo/ui/Alert.js";
|
|
6
|
+
import { Button } from "@lukoweb/apitogo/ui/Button.js";
|
|
7
|
+
import {
|
|
8
|
+
CardContent,
|
|
9
|
+
CardDescription,
|
|
10
|
+
CardHeader,
|
|
11
|
+
CardTitle,
|
|
12
|
+
} from "@lukoweb/apitogo/ui/Card.js";
|
|
13
|
+
import { useMutation } from "@tanstack/react-query";
|
|
14
|
+
import { Mail, RefreshCw } from "lucide-react";
|
|
15
|
+
import { useState } from "react";
|
|
16
|
+
import { Link, Navigate } from "react-router";
|
|
17
|
+
import { cn } from "../../util/cn.js";
|
|
18
|
+
import { EMAIL_LINK_STORAGE_KEY } from "../constants.js";
|
|
19
|
+
import { AuthCard } from "./AuthCard.js";
|
|
20
|
+
|
|
21
|
+
export const EmailLinkSentUi = ({
|
|
22
|
+
onResendEmailLink,
|
|
23
|
+
}: {
|
|
24
|
+
onResendEmailLink: () => Promise<void>;
|
|
25
|
+
}) => {
|
|
26
|
+
const [email] = useState(() => localStorage.getItem(EMAIL_LINK_STORAGE_KEY));
|
|
27
|
+
|
|
28
|
+
const resendMutation = useMutation({
|
|
29
|
+
mutationFn: () => onResendEmailLink(),
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
if (!email) {
|
|
33
|
+
return <Navigate to="/signin/email-link" replace />;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<AuthCard>
|
|
38
|
+
<CardHeader className="text-center">
|
|
39
|
+
<div className="mx-auto mb-4 flex h-16 w-16 items-center justify-center rounded-full bg-primary/10">
|
|
40
|
+
<Mail className="h-8 w-8 text-primary" />
|
|
41
|
+
</div>
|
|
42
|
+
<CardTitle>Check your email</CardTitle>
|
|
43
|
+
<CardDescription>
|
|
44
|
+
We've sent a sign-in link to <strong>{email}</strong>.
|
|
45
|
+
</CardDescription>
|
|
46
|
+
</CardHeader>
|
|
47
|
+
<CardContent className="flex flex-col gap-4">
|
|
48
|
+
{resendMutation.error && (
|
|
49
|
+
<Alert variant="destructive">
|
|
50
|
+
<AlertTitle>Error</AlertTitle>
|
|
51
|
+
<AlertDescription>{resendMutation.error.message}</AlertDescription>
|
|
52
|
+
</Alert>
|
|
53
|
+
)}
|
|
54
|
+
|
|
55
|
+
{resendMutation.isSuccess && (
|
|
56
|
+
<Alert>
|
|
57
|
+
<AlertTitle>Email sent</AlertTitle>
|
|
58
|
+
<AlertDescription>
|
|
59
|
+
A new sign-in link has been sent. Please check your inbox.
|
|
60
|
+
</AlertDescription>
|
|
61
|
+
</Alert>
|
|
62
|
+
)}
|
|
63
|
+
|
|
64
|
+
<div className="space-y-4">
|
|
65
|
+
<div className="relative">
|
|
66
|
+
<div className="absolute inset-0 flex items-center">
|
|
67
|
+
<span className="w-full border-t" />
|
|
68
|
+
</div>
|
|
69
|
+
<div className="relative flex justify-center text-sm">
|
|
70
|
+
<span className="bg-card px-2 text-muted-foreground">
|
|
71
|
+
Didn't receive the email?
|
|
72
|
+
</span>
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
|
|
76
|
+
<Button
|
|
77
|
+
variant="outline"
|
|
78
|
+
onClick={() => void resendMutation.mutate()}
|
|
79
|
+
disabled={resendMutation.isPending}
|
|
80
|
+
className="w-full gap-2"
|
|
81
|
+
>
|
|
82
|
+
<RefreshCw
|
|
83
|
+
className={cn(
|
|
84
|
+
"h-4 w-4",
|
|
85
|
+
resendMutation.isPending && "animate-spin",
|
|
86
|
+
)}
|
|
87
|
+
/>
|
|
88
|
+
Resend sign-in link
|
|
89
|
+
</Button>
|
|
90
|
+
</div>
|
|
91
|
+
|
|
92
|
+
<p className="text-center text-xs text-muted-foreground">
|
|
93
|
+
Make sure to check your spam folder if you don't see the email.
|
|
94
|
+
</p>
|
|
95
|
+
|
|
96
|
+
<Link
|
|
97
|
+
to="/signin"
|
|
98
|
+
className="text-sm text-muted-foreground text-center"
|
|
99
|
+
>
|
|
100
|
+
Back to sign in
|
|
101
|
+
</Link>
|
|
102
|
+
</CardContent>
|
|
103
|
+
</AuthCard>
|
|
104
|
+
);
|
|
105
|
+
};
|