@spacefast/common 0.0.26 → 0.2.1
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/agents/connect-targets.d.ts +6 -146
- package/dist/agents/connect-targets.js +63 -295
- package/dist/agents/private-key-oauth.d.ts +31 -1
- package/dist/agents/private-key-oauth.js +124 -33
- package/dist/agents/registry/core.d.ts +292 -0
- package/dist/agents/registry/core.js +1388 -0
- package/dist/agents/registry/deeplink-probes.d.ts +23 -0
- package/dist/agents/registry/deeplink-probes.js +18 -0
- package/dist/agents/registry/node.d.ts +56 -0
- package/dist/agents/registry/node.js +339 -0
- package/dist/brand-assets-build.js +1 -2
- package/dist/brand-assets.js +4 -7
- package/dist/brand.d.ts +17 -0
- package/dist/brand.js +24 -4
- package/dist/config/domains.d.ts +55 -28
- package/dist/config/domains.js +85 -41
- package/dist/config/index.js +1 -2
- package/dist/contracts/abuse.js +9 -24
- package/dist/contracts/access-profiles.d.ts +86 -0
- package/dist/contracts/access-profiles.js +89 -0
- package/dist/contracts/access.d.ts +21 -27
- package/dist/contracts/access.js +33 -64
- package/dist/contracts/activity.d.ts +18 -1
- package/dist/contracts/activity.js +70 -26
- package/dist/contracts/analytics.js +8 -10
- package/dist/contracts/api-keys.d.ts +77 -52
- package/dist/contracts/api-keys.js +44 -24
- package/dist/contracts/application-journal.d.ts +216 -0
- package/dist/contracts/application-journal.js +167 -0
- package/dist/contracts/auth.d.ts +90 -17
- package/dist/contracts/auth.js +86 -17
- package/dist/contracts/beta.d.ts +9 -4
- package/dist/contracts/beta.js +20 -16
- package/dist/contracts/billing.js +7 -11
- package/dist/contracts/bootstrap.d.ts +791 -0
- package/dist/contracts/bootstrap.js +51 -0
- package/dist/contracts/builds.d.ts +186 -7
- package/dist/contracts/builds.js +75 -21
- package/dist/contracts/channels.d.ts +43 -0
- package/dist/contracts/channels.js +25 -9
- package/dist/contracts/cli.d.ts +7 -0
- package/dist/contracts/cli.js +6 -0
- package/dist/contracts/collab-public.d.ts +1 -1
- package/dist/contracts/collab-public.js +5 -8
- package/dist/contracts/comments.d.ts +45 -35
- package/dist/contracts/comments.js +107 -77
- package/dist/contracts/commerce.d.ts +165 -0
- package/dist/contracts/commerce.js +146 -0
- package/dist/contracts/common.d.ts +3 -3
- package/dist/contracts/common.js +18 -29
- package/dist/contracts/content-contract-verification.d.ts +521 -0
- package/dist/contracts/content-contract-verification.js +320 -0
- package/dist/contracts/content-platform-fixture.d.ts +1278 -0
- package/dist/contracts/content-platform-fixture.js +44 -0
- package/dist/contracts/content-program.d.ts +994 -0
- package/dist/contracts/content-program.js +658 -0
- package/dist/contracts/content-sync.d.ts +290 -0
- package/dist/contracts/content-sync.js +167 -0
- package/dist/contracts/content.d.ts +432 -0
- package/dist/contracts/content.js +303 -0
- package/dist/contracts/continuation.d.ts +17 -1
- package/dist/contracts/continuation.js +23 -23
- package/dist/contracts/countries.js +3 -4
- package/dist/contracts/crons.d.ts +17 -0
- package/dist/contracts/crons.js +33 -15
- package/dist/contracts/dashboard-prefs.d.ts +56 -0
- package/dist/contracts/dashboard-prefs.js +51 -0
- package/dist/contracts/device-auth.d.ts +234 -37
- package/dist/contracts/device-auth.js +267 -53
- package/dist/contracts/docs.d.ts +6 -10
- package/dist/contracts/docs.js +5 -13
- package/dist/contracts/domains.d.ts +499 -102
- package/dist/contracts/domains.js +169 -58
- package/dist/contracts/email-preferences.d.ts +3 -3
- package/dist/contracts/email-preferences.js +6 -7
- package/dist/contracts/enums.d.ts +26 -26
- package/dist/contracts/enums.js +61 -54
- package/dist/contracts/error-code-meta.d.ts +269 -7
- package/dist/contracts/error-code-meta.js +80 -5
- package/dist/contracts/error-codes.d.ts +5 -5
- package/dist/contracts/error-codes.js +78 -16
- package/dist/contracts/events.d.ts +100 -20
- package/dist/contracts/events.js +107 -20
- package/dist/contracts/execution.d.ts +47 -66
- package/dist/contracts/execution.js +51 -64
- package/dist/contracts/feature-lifecycle.d.ts +70 -14
- package/dist/contracts/feature-lifecycle.js +86 -15
- package/dist/contracts/features.d.ts +100 -37
- package/dist/contracts/features.js +21 -27
- package/dist/contracts/fixtures/content-platform-v1.json +1108 -0
- package/dist/contracts/frame-session.d.ts +192 -0
- package/dist/contracts/frame-session.js +164 -0
- package/dist/contracts/functions.d.ts +218 -211
- package/dist/contracts/functions.js +273 -260
- package/dist/contracts/grant-copy.d.ts +43 -0
- package/dist/contracts/grant-copy.js +44 -0
- package/dist/contracts/grants.d.ts +64 -56
- package/dist/contracts/grants.js +124 -23
- package/dist/contracts/ids.d.ts +4 -1
- package/dist/contracts/ids.js +4 -1
- package/dist/contracts/internal.d.ts +5 -4
- package/dist/contracts/internal.js +12 -3
- package/dist/contracts/mcp.d.ts +17 -0
- package/dist/contracts/mcp.js +23 -0
- package/dist/contracts/me.d.ts +6 -1
- package/dist/contracts/me.js +12 -6
- package/dist/contracts/notifications.d.ts +27 -29
- package/dist/contracts/notifications.js +9 -4
- package/dist/contracts/oauth-resources.d.ts +112 -10
- package/dist/contracts/oauth-resources.js +116 -11
- package/dist/contracts/oauth-scope-actions.d.ts +90 -0
- package/dist/contracts/oauth-scope-actions.js +126 -0
- package/dist/contracts/operations.d.ts +27 -4
- package/dist/contracts/operations.js +11 -5
- package/dist/contracts/pages.d.ts +29 -5
- package/dist/contracts/pages.js +22 -5
- package/dist/contracts/partner-notifications.d.ts +3 -0
- package/dist/contracts/partner-notifications.js +65 -0
- package/dist/contracts/{platform.d.ts → partner.d.ts} +29 -42
- package/dist/contracts/{platform.js → partner.js} +27 -40
- package/dist/contracts/plan-policy.d.ts +1 -1
- package/dist/contracts/principal-assertion.d.ts +43 -0
- package/dist/contracts/principal-assertion.js +67 -0
- package/dist/contracts/principals.d.ts +73 -0
- package/dist/contracts/principals.js +59 -0
- package/dist/contracts/privacy.d.ts +11 -0
- package/dist/contracts/privacy.js +17 -0
- package/dist/contracts/problem-document.js +3 -4
- package/dist/contracts/publish-archive.d.ts +116 -18
- package/dist/contracts/publish-archive.js +6 -3
- package/dist/contracts/push-new.d.ts +4 -4
- package/dist/contracts/quotas.js +3 -3
- package/dist/contracts/realtime.d.ts +52 -0
- package/dist/contracts/realtime.js +54 -0
- package/dist/contracts/repository-connections.d.ts +1 -1
- package/dist/contracts/repository-connections.js +6 -2
- package/dist/contracts/resources.d.ts +105 -14
- package/dist/contracts/resources.js +145 -21
- package/dist/contracts/route-inventory.d.ts +358 -0
- package/dist/contracts/route-inventory.js +141 -0
- package/dist/contracts/runtime-api.d.ts +112 -35
- package/dist/contracts/runtime-api.js +86 -66
- package/dist/contracts/runtime-app.d.ts +11 -21
- package/dist/contracts/runtime-app.js +39 -24
- package/dist/contracts/runtime-components.d.ts +143 -0
- package/dist/contracts/runtime-components.js +199 -0
- package/dist/contracts/runtime-db.d.ts +45 -19
- package/dist/contracts/runtime-db.js +85 -20
- package/dist/contracts/runtime-purge.js +3 -5
- package/dist/contracts/runtime-services.d.ts +43 -75
- package/dist/contracts/runtime-services.js +29 -49
- package/dist/contracts/runtime-storage.d.ts +14 -14
- package/dist/contracts/runtime-storage.js +28 -13
- package/dist/contracts/sf-config-v1.d.ts +14 -18
- package/dist/contracts/slugs.js +13 -4
- package/dist/contracts/space-config.d.ts +235 -28
- package/dist/contracts/space-config.js +246 -91
- package/dist/contracts/spaces.d.ts +360 -255
- package/dist/contracts/spaces.js +190 -122
- package/dist/contracts/superadmin-activity.d.ts +3 -43
- package/dist/contracts/superadmin-activity.js +6 -30
- package/dist/contracts/superadmin-emails.d.ts +1 -0
- package/dist/contracts/superadmin-emails.js +17 -1
- package/dist/contracts/superadmin-runtime.d.ts +199 -0
- package/dist/contracts/superadmin-runtime.js +141 -0
- package/dist/contracts/superadmin-search.d.ts +22 -2
- package/dist/contracts/superadmin-search.js +14 -6
- package/dist/contracts/superadmin-spaces.d.ts +435 -186
- package/dist/contracts/superadmin-spaces.js +131 -25
- package/dist/contracts/superadmin-teams.d.ts +3 -0
- package/dist/contracts/superadmin-teams.js +1 -2
- package/dist/contracts/superadmin-tenants.d.ts +627 -6
- package/dist/contracts/superadmin-tenants.js +32 -7
- package/dist/contracts/superadmin.d.ts +98 -16
- package/dist/contracts/superadmin.js +63 -10
- package/dist/contracts/tags.d.ts +85 -58
- package/dist/contracts/tags.js +44 -34
- package/dist/contracts/teams.d.ts +72 -9
- package/dist/contracts/teams.js +84 -25
- package/dist/contracts/tenants.d.ts +135 -0
- package/dist/contracts/tenants.js +120 -0
- package/dist/contracts/test-triggers.d.ts +70 -0
- package/dist/contracts/test-triggers.js +116 -0
- package/dist/contracts/theme-json.js +3 -8
- package/dist/contracts/transfers.d.ts +1 -0
- package/dist/contracts/transfers.js +1 -0
- package/dist/contracts/usage.d.ts +209 -0
- package/dist/contracts/usage.js +124 -12
- package/dist/contracts/variables.d.ts +2 -2
- package/dist/contracts/variables.js +9 -13
- package/dist/contracts/webhooks.d.ts +13 -5
- package/dist/contracts/webhooks.js +3 -1
- package/dist/contracts/zero.d.ts +57 -64
- package/dist/contracts/zero.js +68 -66
- package/dist/dashboard-paths/index.d.ts +24 -21
- package/dist/dashboard-paths/index.js +35 -47
- package/dist/dashboard-paths/route-reservations.generated.d.ts +2 -0
- package/dist/dashboard-paths/route-reservations.generated.js +36 -0
- package/dist/docs/agent-arrival.d.ts +92 -0
- package/dist/docs/agent-arrival.js +227 -0
- package/dist/docs/agent-output-policy.d.ts +6 -0
- package/dist/docs/agent-output-policy.js +22 -0
- package/dist/docs/agent-prose.d.ts +11 -17
- package/dist/docs/agent-prose.js +62 -37
- package/dist/docs/agent-setup.d.ts +72 -41
- package/dist/docs/agent-setup.js +336 -436
- package/dist/docs/catalog.d.ts +147 -89
- package/dist/docs/catalog.js +157 -42
- package/dist/docs/error-docs.d.ts +2098 -1
- package/dist/docs/error-docs.js +281 -16
- package/dist/docs/index-build.d.ts +0 -1
- package/dist/docs/index-build.js +2 -3
- package/dist/docs/page-context-prompt.d.ts +77 -0
- package/dist/docs/page-context-prompt.js +131 -0
- package/dist/docs/reference-urls.d.ts +46 -0
- package/dist/docs/reference-urls.js +79 -0
- package/dist/docs/search.d.ts +6 -8
- package/dist/docs/search.js +10 -13
- package/dist/docs/skill-distribution.d.ts +4 -1
- package/dist/docs/skill-distribution.js +10 -5
- package/dist/docs/skills.d.ts +117 -117
- package/dist/docs/skills.js +120 -72
- package/dist/docs/start-prompts.d.ts +45 -0
- package/dist/docs/start-prompts.js +62 -0
- package/dist/domain-exploration.js +9 -13
- package/dist/og-template.d.ts +56 -0
- package/dist/og-template.js +56 -0
- package/dist/slug-policy/index.js +5 -11
- package/dist/utils/browser-credential.d.ts +13 -6
- package/dist/utils/browser-credential.js +14 -7
- package/dist/utils/build-settings.d.ts +16 -0
- package/dist/utils/build-settings.js +63 -17
- package/dist/utils/canonical-json.d.ts +3 -5
- package/dist/utils/canonical-json.js +3 -5
- package/dist/utils/cast-transport.d.ts +5 -17
- package/dist/utils/cast-transport.js +6 -19
- package/dist/utils/claim-token.js +1 -2
- package/dist/utils/comment-avatars.js +4 -6
- package/dist/utils/concurrency.js +2 -3
- package/dist/utils/content-type.d.ts +7 -6
- package/dist/utils/content-type.js +73 -51
- package/dist/utils/credential-policy.d.ts +50 -6
- package/dist/utils/credential-policy.js +123 -57
- package/dist/utils/egress-policy.fixtures.json +1 -1
- package/dist/utils/generate-space-name.d.ts +3 -8
- package/dist/utils/generate-space-name.js +3 -8
- package/dist/utils/grants.d.ts +0 -1
- package/dist/utils/grants.js +4 -7
- package/dist/utils/gravatar.d.ts +2 -4
- package/dist/utils/gravatar.js +6 -12
- package/dist/utils/id-hints.js +14 -23
- package/dist/utils/idempotency.d.ts +3 -3
- package/dist/utils/idempotency.js +6 -7
- package/dist/utils/local-space-state.d.ts +15 -15
- package/dist/utils/local-space-state.js +34 -23
- package/dist/utils/oauth-signed-query.d.ts +3 -5
- package/dist/utils/oauth-signed-query.js +6 -9
- package/dist/utils/one-shot-replay.d.ts +3 -5
- package/dist/utils/one-shot-replay.js +3 -5
- package/dist/utils/page-colors.d.ts +4 -10
- package/dist/utils/page-colors.js +11 -35
- package/dist/utils/page-fonts.js +6 -11
- package/dist/utils/page-preview.d.ts +0 -1
- package/dist/utils/page-preview.js +0 -1
- package/dist/utils/pages.d.ts +22 -11
- package/dist/utils/pages.js +70 -30
- package/dist/utils/privacy-regions.d.ts +19 -0
- package/dist/utils/privacy-regions.js +91 -0
- package/dist/utils/publish-form-data.d.ts +4 -5
- package/dist/utils/publish-form-data.js +2 -3
- package/dist/utils/publish-policy.d.ts +10 -23
- package/dist/utils/publish-policy.js +63 -116
- package/dist/utils/query-client.d.ts +2 -0
- package/dist/utils/query-client.js +10 -1
- package/dist/utils/runtime-paths.d.ts +4 -4
- package/dist/utils/runtime-paths.js +6 -8
- package/dist/utils/runtime-upload.d.ts +4 -0
- package/dist/utils/runtime-upload.js +5 -0
- package/dist/utils/secure-local-file.d.ts +3 -3
- package/dist/utils/secure-local-file.js +18 -24
- package/dist/utils/space-config.d.ts +11 -14
- package/dist/utils/space-config.js +10 -16
- package/dist/utils/static-runtime-policy.d.ts +5 -8
- package/dist/utils/static-runtime-policy.generated.d.ts +16 -0
- package/dist/utils/static-runtime-policy.generated.js +70 -0
- package/dist/utils/static-runtime-policy.js +17 -84
- package/dist/utils/storage-policy.js +1 -2
- package/dist/utils/upload-session.js +8 -14
- package/dist/utils/version-path.js +11 -19
- package/dist/utils/wpcom-auth-redirects.d.ts +5 -14
- package/dist/utils/wpcom-auth-redirects.js +1 -4
- package/dist/vocabulary.d.ts +7 -7
- package/dist/vocabulary.js +30 -16
- package/package.json +14 -2
- package/dist/agents/client-registry.d.ts +0 -22
- package/dist/agents/client-registry.js +0 -41
- package/dist/docs/agent-handoff-document.d.ts +0 -15
- package/dist/docs/agent-handoff-document.js +0 -180
- package/dist/docs/agent-solutions.d.ts +0 -110
- package/dist/docs/agent-solutions.js +0 -183
- package/dist/utils/query-keys.d.ts +0 -84
- package/dist/utils/query-keys.js +0 -108
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const routeInventoryEdgeAuthV1Schema: z.ZodLiteral<"inherit">;
|
|
3
|
+
export type RouteInventoryEdgeAuthV1 = z.infer<typeof routeInventoryEdgeAuthV1Schema>;
|
|
4
|
+
export declare const routeInventoryRecordV1Schema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5
|
+
kind: z.ZodLiteral<"redirect">;
|
|
6
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<303>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
|
|
7
|
+
runtime: z.ZodLiteral<"routing">;
|
|
8
|
+
destination: z.ZodString;
|
|
9
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
10
|
+
source: z.ZodString;
|
|
11
|
+
host: z.ZodString;
|
|
12
|
+
path: z.ZodString;
|
|
13
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
14
|
+
POST: "POST";
|
|
15
|
+
PUT: "PUT";
|
|
16
|
+
GET: "GET";
|
|
17
|
+
HEAD: "HEAD";
|
|
18
|
+
PATCH: "PATCH";
|
|
19
|
+
DELETE: "DELETE";
|
|
20
|
+
OPTIONS: "OPTIONS";
|
|
21
|
+
}>]>>;
|
|
22
|
+
auth: z.ZodLiteral<"inherit">;
|
|
23
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
24
|
+
kind: z.ZodLiteral<"rewrite">;
|
|
25
|
+
status: z.ZodLiteral<200>;
|
|
26
|
+
runtime: z.ZodLiteral<"routing">;
|
|
27
|
+
destination: z.ZodString;
|
|
28
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
29
|
+
source: z.ZodString;
|
|
30
|
+
host: z.ZodString;
|
|
31
|
+
path: z.ZodString;
|
|
32
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
33
|
+
POST: "POST";
|
|
34
|
+
PUT: "PUT";
|
|
35
|
+
GET: "GET";
|
|
36
|
+
HEAD: "HEAD";
|
|
37
|
+
PATCH: "PATCH";
|
|
38
|
+
DELETE: "DELETE";
|
|
39
|
+
OPTIONS: "OPTIONS";
|
|
40
|
+
}>]>>;
|
|
41
|
+
auth: z.ZodLiteral<"inherit">;
|
|
42
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
43
|
+
kind: z.ZodLiteral<"proxy">;
|
|
44
|
+
status: z.ZodLiteral<200>;
|
|
45
|
+
cache: z.ZodOptional<z.ZodLiteral<"shared">>;
|
|
46
|
+
runtime: z.ZodLiteral<"routing">;
|
|
47
|
+
destination: z.ZodString;
|
|
48
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
49
|
+
source: z.ZodString;
|
|
50
|
+
host: z.ZodString;
|
|
51
|
+
path: z.ZodString;
|
|
52
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
53
|
+
POST: "POST";
|
|
54
|
+
PUT: "PUT";
|
|
55
|
+
GET: "GET";
|
|
56
|
+
HEAD: "HEAD";
|
|
57
|
+
PATCH: "PATCH";
|
|
58
|
+
DELETE: "DELETE";
|
|
59
|
+
OPTIONS: "OPTIONS";
|
|
60
|
+
}>]>>;
|
|
61
|
+
auth: z.ZodLiteral<"inherit">;
|
|
62
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
63
|
+
kind: z.ZodLiteral<"not-found">;
|
|
64
|
+
status: z.ZodLiteral<404>;
|
|
65
|
+
runtime: z.ZodLiteral<"routing">;
|
|
66
|
+
destination: z.ZodString;
|
|
67
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
68
|
+
source: z.ZodString;
|
|
69
|
+
host: z.ZodString;
|
|
70
|
+
path: z.ZodString;
|
|
71
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
72
|
+
POST: "POST";
|
|
73
|
+
PUT: "PUT";
|
|
74
|
+
GET: "GET";
|
|
75
|
+
HEAD: "HEAD";
|
|
76
|
+
PATCH: "PATCH";
|
|
77
|
+
DELETE: "DELETE";
|
|
78
|
+
OPTIONS: "OPTIONS";
|
|
79
|
+
}>]>>;
|
|
80
|
+
auth: z.ZodLiteral<"inherit">;
|
|
81
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
82
|
+
kind: z.ZodLiteral<"functions">;
|
|
83
|
+
runtime: z.ZodLiteral<"cloudflare-worker">;
|
|
84
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
85
|
+
source: z.ZodString;
|
|
86
|
+
host: z.ZodString;
|
|
87
|
+
path: z.ZodString;
|
|
88
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
89
|
+
POST: "POST";
|
|
90
|
+
PUT: "PUT";
|
|
91
|
+
GET: "GET";
|
|
92
|
+
HEAD: "HEAD";
|
|
93
|
+
PATCH: "PATCH";
|
|
94
|
+
DELETE: "DELETE";
|
|
95
|
+
OPTIONS: "OPTIONS";
|
|
96
|
+
}>]>>;
|
|
97
|
+
auth: z.ZodLiteral<"inherit">;
|
|
98
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
99
|
+
kind: z.ZodLiteral<"php-function">;
|
|
100
|
+
runtime: z.ZodLiteral<"php">;
|
|
101
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
102
|
+
source: z.ZodString;
|
|
103
|
+
host: z.ZodString;
|
|
104
|
+
path: z.ZodString;
|
|
105
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
106
|
+
POST: "POST";
|
|
107
|
+
PUT: "PUT";
|
|
108
|
+
GET: "GET";
|
|
109
|
+
HEAD: "HEAD";
|
|
110
|
+
PATCH: "PATCH";
|
|
111
|
+
DELETE: "DELETE";
|
|
112
|
+
OPTIONS: "OPTIONS";
|
|
113
|
+
}>]>>;
|
|
114
|
+
auth: z.ZodLiteral<"inherit">;
|
|
115
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
116
|
+
kind: z.ZodLiteral<"zero-control">;
|
|
117
|
+
runtime: z.ZodLiteral<"php">;
|
|
118
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
119
|
+
source: z.ZodString;
|
|
120
|
+
host: z.ZodString;
|
|
121
|
+
path: z.ZodString;
|
|
122
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
123
|
+
POST: "POST";
|
|
124
|
+
PUT: "PUT";
|
|
125
|
+
GET: "GET";
|
|
126
|
+
HEAD: "HEAD";
|
|
127
|
+
PATCH: "PATCH";
|
|
128
|
+
DELETE: "DELETE";
|
|
129
|
+
OPTIONS: "OPTIONS";
|
|
130
|
+
}>]>>;
|
|
131
|
+
auth: z.ZodLiteral<"inherit">;
|
|
132
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
133
|
+
kind: z.ZodLiteral<"zero-endpoint">;
|
|
134
|
+
runtime: z.ZodLiteral<"quick-js">;
|
|
135
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
136
|
+
source: z.ZodString;
|
|
137
|
+
host: z.ZodString;
|
|
138
|
+
path: z.ZodString;
|
|
139
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
140
|
+
POST: "POST";
|
|
141
|
+
PUT: "PUT";
|
|
142
|
+
GET: "GET";
|
|
143
|
+
HEAD: "HEAD";
|
|
144
|
+
PATCH: "PATCH";
|
|
145
|
+
DELETE: "DELETE";
|
|
146
|
+
OPTIONS: "OPTIONS";
|
|
147
|
+
}>]>>;
|
|
148
|
+
auth: z.ZodLiteral<"inherit">;
|
|
149
|
+
}, z.core.$strict>], "kind">;
|
|
150
|
+
export type RouteInventoryRecordV1 = z.infer<typeof routeInventoryRecordV1Schema>;
|
|
151
|
+
export declare const routeInventoryV1Schema: z.ZodObject<{
|
|
152
|
+
format: z.ZodLiteral<"stattic.route-inventory.v1">;
|
|
153
|
+
routes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
154
|
+
kind: z.ZodLiteral<"redirect">;
|
|
155
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<303>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
|
|
156
|
+
runtime: z.ZodLiteral<"routing">;
|
|
157
|
+
destination: z.ZodString;
|
|
158
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
159
|
+
source: z.ZodString;
|
|
160
|
+
host: z.ZodString;
|
|
161
|
+
path: z.ZodString;
|
|
162
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
163
|
+
POST: "POST";
|
|
164
|
+
PUT: "PUT";
|
|
165
|
+
GET: "GET";
|
|
166
|
+
HEAD: "HEAD";
|
|
167
|
+
PATCH: "PATCH";
|
|
168
|
+
DELETE: "DELETE";
|
|
169
|
+
OPTIONS: "OPTIONS";
|
|
170
|
+
}>]>>;
|
|
171
|
+
auth: z.ZodLiteral<"inherit">;
|
|
172
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
173
|
+
kind: z.ZodLiteral<"rewrite">;
|
|
174
|
+
status: z.ZodLiteral<200>;
|
|
175
|
+
runtime: z.ZodLiteral<"routing">;
|
|
176
|
+
destination: z.ZodString;
|
|
177
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
178
|
+
source: z.ZodString;
|
|
179
|
+
host: z.ZodString;
|
|
180
|
+
path: z.ZodString;
|
|
181
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
182
|
+
POST: "POST";
|
|
183
|
+
PUT: "PUT";
|
|
184
|
+
GET: "GET";
|
|
185
|
+
HEAD: "HEAD";
|
|
186
|
+
PATCH: "PATCH";
|
|
187
|
+
DELETE: "DELETE";
|
|
188
|
+
OPTIONS: "OPTIONS";
|
|
189
|
+
}>]>>;
|
|
190
|
+
auth: z.ZodLiteral<"inherit">;
|
|
191
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
192
|
+
kind: z.ZodLiteral<"proxy">;
|
|
193
|
+
status: z.ZodLiteral<200>;
|
|
194
|
+
cache: z.ZodOptional<z.ZodLiteral<"shared">>;
|
|
195
|
+
runtime: z.ZodLiteral<"routing">;
|
|
196
|
+
destination: z.ZodString;
|
|
197
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
198
|
+
source: z.ZodString;
|
|
199
|
+
host: z.ZodString;
|
|
200
|
+
path: z.ZodString;
|
|
201
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
202
|
+
POST: "POST";
|
|
203
|
+
PUT: "PUT";
|
|
204
|
+
GET: "GET";
|
|
205
|
+
HEAD: "HEAD";
|
|
206
|
+
PATCH: "PATCH";
|
|
207
|
+
DELETE: "DELETE";
|
|
208
|
+
OPTIONS: "OPTIONS";
|
|
209
|
+
}>]>>;
|
|
210
|
+
auth: z.ZodLiteral<"inherit">;
|
|
211
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
212
|
+
kind: z.ZodLiteral<"not-found">;
|
|
213
|
+
status: z.ZodLiteral<404>;
|
|
214
|
+
runtime: z.ZodLiteral<"routing">;
|
|
215
|
+
destination: z.ZodString;
|
|
216
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
217
|
+
source: z.ZodString;
|
|
218
|
+
host: z.ZodString;
|
|
219
|
+
path: z.ZodString;
|
|
220
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
221
|
+
POST: "POST";
|
|
222
|
+
PUT: "PUT";
|
|
223
|
+
GET: "GET";
|
|
224
|
+
HEAD: "HEAD";
|
|
225
|
+
PATCH: "PATCH";
|
|
226
|
+
DELETE: "DELETE";
|
|
227
|
+
OPTIONS: "OPTIONS";
|
|
228
|
+
}>]>>;
|
|
229
|
+
auth: z.ZodLiteral<"inherit">;
|
|
230
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
231
|
+
kind: z.ZodLiteral<"functions">;
|
|
232
|
+
runtime: z.ZodLiteral<"cloudflare-worker">;
|
|
233
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
234
|
+
source: z.ZodString;
|
|
235
|
+
host: z.ZodString;
|
|
236
|
+
path: z.ZodString;
|
|
237
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
238
|
+
POST: "POST";
|
|
239
|
+
PUT: "PUT";
|
|
240
|
+
GET: "GET";
|
|
241
|
+
HEAD: "HEAD";
|
|
242
|
+
PATCH: "PATCH";
|
|
243
|
+
DELETE: "DELETE";
|
|
244
|
+
OPTIONS: "OPTIONS";
|
|
245
|
+
}>]>>;
|
|
246
|
+
auth: z.ZodLiteral<"inherit">;
|
|
247
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
248
|
+
kind: z.ZodLiteral<"php-function">;
|
|
249
|
+
runtime: z.ZodLiteral<"php">;
|
|
250
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
251
|
+
source: z.ZodString;
|
|
252
|
+
host: z.ZodString;
|
|
253
|
+
path: z.ZodString;
|
|
254
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
255
|
+
POST: "POST";
|
|
256
|
+
PUT: "PUT";
|
|
257
|
+
GET: "GET";
|
|
258
|
+
HEAD: "HEAD";
|
|
259
|
+
PATCH: "PATCH";
|
|
260
|
+
DELETE: "DELETE";
|
|
261
|
+
OPTIONS: "OPTIONS";
|
|
262
|
+
}>]>>;
|
|
263
|
+
auth: z.ZodLiteral<"inherit">;
|
|
264
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
265
|
+
kind: z.ZodLiteral<"zero-control">;
|
|
266
|
+
runtime: z.ZodLiteral<"php">;
|
|
267
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
268
|
+
source: z.ZodString;
|
|
269
|
+
host: z.ZodString;
|
|
270
|
+
path: z.ZodString;
|
|
271
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
272
|
+
POST: "POST";
|
|
273
|
+
PUT: "PUT";
|
|
274
|
+
GET: "GET";
|
|
275
|
+
HEAD: "HEAD";
|
|
276
|
+
PATCH: "PATCH";
|
|
277
|
+
DELETE: "DELETE";
|
|
278
|
+
OPTIONS: "OPTIONS";
|
|
279
|
+
}>]>>;
|
|
280
|
+
auth: z.ZodLiteral<"inherit">;
|
|
281
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
282
|
+
kind: z.ZodLiteral<"zero-endpoint">;
|
|
283
|
+
runtime: z.ZodLiteral<"quick-js">;
|
|
284
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
285
|
+
source: z.ZodString;
|
|
286
|
+
host: z.ZodString;
|
|
287
|
+
path: z.ZodString;
|
|
288
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
289
|
+
POST: "POST";
|
|
290
|
+
PUT: "PUT";
|
|
291
|
+
GET: "GET";
|
|
292
|
+
HEAD: "HEAD";
|
|
293
|
+
PATCH: "PATCH";
|
|
294
|
+
DELETE: "DELETE";
|
|
295
|
+
OPTIONS: "OPTIONS";
|
|
296
|
+
}>]>>;
|
|
297
|
+
auth: z.ZodLiteral<"inherit">;
|
|
298
|
+
}, z.core.$strict>], "kind">>;
|
|
299
|
+
}, z.core.$strict>;
|
|
300
|
+
export type RouteInventoryV1 = z.infer<typeof routeInventoryV1Schema>;
|
|
301
|
+
export declare const spaceRouteSnapshotRouteV1Schema: z.ZodObject<{
|
|
302
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
303
|
+
sourceRuleId: z.ZodNumber;
|
|
304
|
+
priority: z.ZodNumber;
|
|
305
|
+
host: z.ZodString;
|
|
306
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
307
|
+
POST: "POST";
|
|
308
|
+
PUT: "PUT";
|
|
309
|
+
GET: "GET";
|
|
310
|
+
HEAD: "HEAD";
|
|
311
|
+
PATCH: "PATCH";
|
|
312
|
+
DELETE: "DELETE";
|
|
313
|
+
OPTIONS: "OPTIONS";
|
|
314
|
+
}>]>>;
|
|
315
|
+
match: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
316
|
+
kind: z.ZodLiteral<"exact">;
|
|
317
|
+
path: z.ZodString;
|
|
318
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
319
|
+
kind: z.ZodLiteral<"pattern">;
|
|
320
|
+
pattern: z.ZodString;
|
|
321
|
+
}, z.core.$strict>], "kind">;
|
|
322
|
+
destination: z.ZodString;
|
|
323
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<303>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
|
|
324
|
+
}, z.core.$strict>;
|
|
325
|
+
export type SpaceRouteSnapshotRouteV1 = z.infer<typeof spaceRouteSnapshotRouteV1Schema>;
|
|
326
|
+
export declare const spaceRouteSnapshotV1Schema: z.ZodObject<{
|
|
327
|
+
format: z.ZodLiteral<"spacefast.space-route-snapshot">;
|
|
328
|
+
version: z.ZodLiteral<1>;
|
|
329
|
+
spaceId: z.ZodTemplateLiteral<`spc_${string}`>;
|
|
330
|
+
source: z.ZodLiteral<"wordpress-redirection">;
|
|
331
|
+
capturedAt: z.ZodString;
|
|
332
|
+
revision: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
333
|
+
routes: z.ZodArray<z.ZodObject<{
|
|
334
|
+
id: z.core.$ZodBranded<z.ZodString, "ContentProgramSha256", "out">;
|
|
335
|
+
sourceRuleId: z.ZodNumber;
|
|
336
|
+
priority: z.ZodNumber;
|
|
337
|
+
host: z.ZodString;
|
|
338
|
+
methods: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"*">, z.ZodEnum<{
|
|
339
|
+
POST: "POST";
|
|
340
|
+
PUT: "PUT";
|
|
341
|
+
GET: "GET";
|
|
342
|
+
HEAD: "HEAD";
|
|
343
|
+
PATCH: "PATCH";
|
|
344
|
+
DELETE: "DELETE";
|
|
345
|
+
OPTIONS: "OPTIONS";
|
|
346
|
+
}>]>>;
|
|
347
|
+
match: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
348
|
+
kind: z.ZodLiteral<"exact">;
|
|
349
|
+
path: z.ZodString;
|
|
350
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
351
|
+
kind: z.ZodLiteral<"pattern">;
|
|
352
|
+
pattern: z.ZodString;
|
|
353
|
+
}, z.core.$strict>], "kind">;
|
|
354
|
+
destination: z.ZodString;
|
|
355
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<303>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
|
|
356
|
+
}, z.core.$strict>>;
|
|
357
|
+
}, z.core.$strict>;
|
|
358
|
+
export type SpaceRouteSnapshotV1 = z.infer<typeof spaceRouteSnapshotV1Schema>;
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { contentProgramSha256Schema } from "./content-program.js";
|
|
3
|
+
import { httpMethodSchema } from "./execution.js";
|
|
4
|
+
import { registeredIdSchema } from "./ids.js";
|
|
5
|
+
const routeInventoryMethodsSchema = z
|
|
6
|
+
.array(z.union([z.literal("*"), httpMethodSchema]))
|
|
7
|
+
.min(1)
|
|
8
|
+
.refine((methods) => new Set(methods).size === methods.length, {
|
|
9
|
+
message: "route methods must be unique",
|
|
10
|
+
})
|
|
11
|
+
.refine((methods) => !methods.includes("*") || methods.length === 1, {
|
|
12
|
+
message: "the wildcard method cannot be combined with explicit methods",
|
|
13
|
+
});
|
|
14
|
+
// This is mutable edge policy inherited by an immutable Version. Ability
|
|
15
|
+
// endpoint admission is a separate dispatcher-owned contract.
|
|
16
|
+
export const routeInventoryEdgeAuthV1Schema = z.literal("inherit");
|
|
17
|
+
const routeInventoryRecordFields = {
|
|
18
|
+
id: contentProgramSha256Schema,
|
|
19
|
+
source: z.string().min(1).max(2_048),
|
|
20
|
+
host: z.string().min(1).max(255),
|
|
21
|
+
path: z.string().min(1).max(2_048).startsWith("/"),
|
|
22
|
+
methods: routeInventoryMethodsSchema,
|
|
23
|
+
auth: routeInventoryEdgeAuthV1Schema,
|
|
24
|
+
};
|
|
25
|
+
const routingRecordFields = {
|
|
26
|
+
...routeInventoryRecordFields,
|
|
27
|
+
runtime: z.literal("routing"),
|
|
28
|
+
destination: z.string(),
|
|
29
|
+
};
|
|
30
|
+
const redirectStatusSchema = z.union([
|
|
31
|
+
z.literal(301),
|
|
32
|
+
z.literal(302),
|
|
33
|
+
z.literal(303),
|
|
34
|
+
z.literal(307),
|
|
35
|
+
z.literal(308),
|
|
36
|
+
]);
|
|
37
|
+
export const routeInventoryRecordV1Schema = z.discriminatedUnion("kind", [
|
|
38
|
+
z
|
|
39
|
+
.object({ ...routingRecordFields, kind: z.literal("redirect"), status: redirectStatusSchema })
|
|
40
|
+
.strict(),
|
|
41
|
+
z.object({ ...routingRecordFields, kind: z.literal("rewrite"), status: z.literal(200) }).strict(),
|
|
42
|
+
z
|
|
43
|
+
.object({
|
|
44
|
+
...routingRecordFields,
|
|
45
|
+
kind: z.literal("proxy"),
|
|
46
|
+
status: z.literal(200),
|
|
47
|
+
cache: z.literal("shared").optional(),
|
|
48
|
+
})
|
|
49
|
+
.strict(),
|
|
50
|
+
z
|
|
51
|
+
.object({ ...routingRecordFields, kind: z.literal("not-found"), status: z.literal(404) })
|
|
52
|
+
.strict(),
|
|
53
|
+
z
|
|
54
|
+
.object({
|
|
55
|
+
...routeInventoryRecordFields,
|
|
56
|
+
kind: z.literal("functions"),
|
|
57
|
+
runtime: z.literal("cloudflare-worker"),
|
|
58
|
+
})
|
|
59
|
+
.strict(),
|
|
60
|
+
z
|
|
61
|
+
.object({
|
|
62
|
+
...routeInventoryRecordFields,
|
|
63
|
+
kind: z.literal("php-function"),
|
|
64
|
+
runtime: z.literal("php"),
|
|
65
|
+
})
|
|
66
|
+
.strict(),
|
|
67
|
+
z
|
|
68
|
+
.object({
|
|
69
|
+
...routeInventoryRecordFields,
|
|
70
|
+
kind: z.literal("zero-control"),
|
|
71
|
+
runtime: z.literal("php"),
|
|
72
|
+
})
|
|
73
|
+
.strict(),
|
|
74
|
+
z
|
|
75
|
+
.object({
|
|
76
|
+
...routeInventoryRecordFields,
|
|
77
|
+
kind: z.literal("zero-endpoint"),
|
|
78
|
+
runtime: z.literal("quick-js"),
|
|
79
|
+
})
|
|
80
|
+
.strict(),
|
|
81
|
+
]);
|
|
82
|
+
export const routeInventoryV1Schema = z
|
|
83
|
+
.object({
|
|
84
|
+
format: z.literal("stattic.route-inventory.v1"),
|
|
85
|
+
routes: z.array(routeInventoryRecordV1Schema).max(100_000),
|
|
86
|
+
})
|
|
87
|
+
.strict()
|
|
88
|
+
.refine((inventory) => new Set(inventory.routes.map((route) => route.id)).size === inventory.routes.length, {
|
|
89
|
+
path: ["routes"],
|
|
90
|
+
message: "route inventory ids must be unique",
|
|
91
|
+
});
|
|
92
|
+
const spaceRouteSnapshotMatchV1Schema = z.discriminatedUnion("kind", [
|
|
93
|
+
z
|
|
94
|
+
.object({ kind: z.literal("exact"), path: z.string().min(1).max(2_048).startsWith("/") })
|
|
95
|
+
.strict(),
|
|
96
|
+
z
|
|
97
|
+
.object({
|
|
98
|
+
kind: z.literal("pattern"),
|
|
99
|
+
pattern: z.string().min(1).max(2_048),
|
|
100
|
+
})
|
|
101
|
+
.strict(),
|
|
102
|
+
]);
|
|
103
|
+
export const spaceRouteSnapshotRouteV1Schema = z
|
|
104
|
+
.object({
|
|
105
|
+
id: contentProgramSha256Schema,
|
|
106
|
+
sourceRuleId: z.number().int().positive(),
|
|
107
|
+
priority: z.number().int().nonnegative(),
|
|
108
|
+
host: z.string().min(1).max(255),
|
|
109
|
+
methods: routeInventoryMethodsSchema,
|
|
110
|
+
match: spaceRouteSnapshotMatchV1Schema,
|
|
111
|
+
destination: z.string().min(1).max(8_192),
|
|
112
|
+
status: redirectStatusSchema,
|
|
113
|
+
})
|
|
114
|
+
.strict();
|
|
115
|
+
export const spaceRouteSnapshotV1Schema = z
|
|
116
|
+
.object({
|
|
117
|
+
format: z.literal("spacefast.space-route-snapshot"),
|
|
118
|
+
version: z.literal(1),
|
|
119
|
+
spaceId: registeredIdSchema("spc"),
|
|
120
|
+
source: z.literal("wordpress-redirection"),
|
|
121
|
+
capturedAt: z.string().datetime({ offset: true }),
|
|
122
|
+
revision: contentProgramSha256Schema,
|
|
123
|
+
routes: z.array(spaceRouteSnapshotRouteV1Schema).max(100_000),
|
|
124
|
+
})
|
|
125
|
+
.strict()
|
|
126
|
+
.superRefine((snapshot, context) => {
|
|
127
|
+
if (new Set(snapshot.routes.map((route) => route.id)).size !== snapshot.routes.length) {
|
|
128
|
+
context.addIssue({
|
|
129
|
+
code: "custom",
|
|
130
|
+
path: ["routes"],
|
|
131
|
+
message: "route snapshot ids must be unique",
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
if (new Set(snapshot.routes.map((route) => route.sourceRuleId)).size !== snapshot.routes.length) {
|
|
135
|
+
context.addIssue({
|
|
136
|
+
code: "custom",
|
|
137
|
+
path: ["routes"],
|
|
138
|
+
message: "route snapshot source rule ids must be unique",
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
});
|