@spacefast/common 0.0.26 → 0.2.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/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 +192 -7
- package/dist/contracts/builds.js +84 -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 +273 -7
- package/dist/contracts/error-code-meta.js +81 -5
- package/dist/contracts/error-codes.d.ts +5 -5
- package/dist/contracts/error-codes.js +79 -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 +121 -10
- package/dist/contracts/oauth-resources.js +130 -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 +2102 -1
- package/dist/docs/error-docs.js +285 -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
package/dist/contracts/tags.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const tagRevisionStatusSchema: z.ZodEnum<{
|
|
3
3
|
approved: "approved";
|
|
4
4
|
published: "published";
|
|
5
|
-
publishing: "publishing";
|
|
6
5
|
draft: "draft";
|
|
6
|
+
publishing: "publishing";
|
|
7
7
|
in_review: "in_review";
|
|
8
8
|
abandoned: "abandoned";
|
|
9
9
|
}>;
|
|
@@ -28,6 +28,7 @@ export declare const TAG_CONSENT_CATEGORY_DEFINITIONS: [{
|
|
|
28
28
|
readonly defaultGranted: true;
|
|
29
29
|
readonly required: true;
|
|
30
30
|
readonly privacySignalDefaultDenied: false;
|
|
31
|
+
readonly requiresConsentInGdprCountries: false;
|
|
31
32
|
}, {
|
|
32
33
|
readonly id: "functional";
|
|
33
34
|
readonly label: "Functional";
|
|
@@ -35,6 +36,7 @@ export declare const TAG_CONSENT_CATEGORY_DEFINITIONS: [{
|
|
|
35
36
|
readonly defaultGranted: true;
|
|
36
37
|
readonly required: false;
|
|
37
38
|
readonly privacySignalDefaultDenied: false;
|
|
39
|
+
readonly requiresConsentInGdprCountries: false;
|
|
38
40
|
}, {
|
|
39
41
|
readonly id: "analytics";
|
|
40
42
|
readonly label: "Analytics";
|
|
@@ -42,6 +44,7 @@ export declare const TAG_CONSENT_CATEGORY_DEFINITIONS: [{
|
|
|
42
44
|
readonly defaultGranted: true;
|
|
43
45
|
readonly required: false;
|
|
44
46
|
readonly privacySignalDefaultDenied: true;
|
|
47
|
+
readonly requiresConsentInGdprCountries: true;
|
|
45
48
|
}, {
|
|
46
49
|
readonly id: "marketing";
|
|
47
50
|
readonly label: "Marketing";
|
|
@@ -49,6 +52,7 @@ export declare const TAG_CONSENT_CATEGORY_DEFINITIONS: [{
|
|
|
49
52
|
readonly defaultGranted: true;
|
|
50
53
|
readonly required: false;
|
|
51
54
|
readonly privacySignalDefaultDenied: true;
|
|
55
|
+
readonly requiresConsentInGdprCountries: true;
|
|
52
56
|
}, {
|
|
53
57
|
readonly id: "personalization";
|
|
54
58
|
readonly label: "Personalization";
|
|
@@ -56,6 +60,7 @@ export declare const TAG_CONSENT_CATEGORY_DEFINITIONS: [{
|
|
|
56
60
|
readonly defaultGranted: true;
|
|
57
61
|
readonly required: false;
|
|
58
62
|
readonly privacySignalDefaultDenied: true;
|
|
63
|
+
readonly requiresConsentInGdprCountries: true;
|
|
59
64
|
}];
|
|
60
65
|
export declare const TAG_CONSENT_CATEGORY_IDS: ("analytics" | "marketing" | "necessary" | "functional" | "personalization")[];
|
|
61
66
|
export declare const DEFAULT_TAG_CONSENT_DEFAULTS: Record<TagConsentCategory, boolean>;
|
|
@@ -68,6 +73,7 @@ export declare const tagConsentPolicySchema: z.ZodObject<{
|
|
|
68
73
|
defaultGranted: z.ZodBoolean;
|
|
69
74
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
70
75
|
privacySignalDefaultDenied: z.ZodDefault<z.ZodBoolean>;
|
|
76
|
+
requiresConsentInGdprCountries: z.ZodDefault<z.ZodBoolean>;
|
|
71
77
|
}, z.core.$strip>>>;
|
|
72
78
|
defaultByCategory: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
73
79
|
regionDefaults: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
|
|
@@ -81,8 +87,8 @@ export declare const tagConsentPolicySchema: z.ZodObject<{
|
|
|
81
87
|
code: z.ZodString;
|
|
82
88
|
severity: z.ZodEnum<{
|
|
83
89
|
info: "info";
|
|
84
|
-
error: "error";
|
|
85
90
|
warning: "warning";
|
|
91
|
+
error: "error";
|
|
86
92
|
}>;
|
|
87
93
|
message: z.ZodString;
|
|
88
94
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -142,8 +148,8 @@ export declare const tagValidationResultSchema: z.ZodObject<{
|
|
|
142
148
|
code: z.ZodString;
|
|
143
149
|
severity: z.ZodEnum<{
|
|
144
150
|
info: "info";
|
|
145
|
-
error: "error";
|
|
146
151
|
warning: "warning";
|
|
152
|
+
error: "error";
|
|
147
153
|
}>;
|
|
148
154
|
message: z.ZodString;
|
|
149
155
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -161,16 +167,16 @@ export declare const tagValidationResultSchema: z.ZodObject<{
|
|
|
161
167
|
graphRevision: z.ZodNumber;
|
|
162
168
|
}, z.core.$strip>;
|
|
163
169
|
export type TagValidationResult = z.infer<typeof tagValidationResultSchema>;
|
|
164
|
-
export declare const
|
|
170
|
+
export declare const tagRevisionSchema: z.ZodObject<{
|
|
165
171
|
id: z.ZodString;
|
|
166
172
|
tagSetId: z.ZodString;
|
|
167
|
-
|
|
168
|
-
|
|
173
|
+
revisionNumber: z.ZodNumber;
|
|
174
|
+
baseRevisionId: z.ZodNullable<z.ZodString>;
|
|
169
175
|
status: z.ZodEnum<{
|
|
170
176
|
approved: "approved";
|
|
171
177
|
published: "published";
|
|
172
|
-
publishing: "publishing";
|
|
173
178
|
draft: "draft";
|
|
179
|
+
publishing: "publishing";
|
|
174
180
|
in_review: "in_review";
|
|
175
181
|
abandoned: "abandoned";
|
|
176
182
|
}>;
|
|
@@ -191,8 +197,8 @@ export declare const tagVersionSchema: z.ZodObject<{
|
|
|
191
197
|
code: z.ZodString;
|
|
192
198
|
severity: z.ZodEnum<{
|
|
193
199
|
info: "info";
|
|
194
|
-
error: "error";
|
|
195
200
|
warning: "warning";
|
|
201
|
+
error: "error";
|
|
196
202
|
}>;
|
|
197
203
|
message: z.ZodString;
|
|
198
204
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -218,29 +224,29 @@ export declare const tagVersionSchema: z.ZodObject<{
|
|
|
218
224
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
219
225
|
immutableAt: z.ZodNullable<z.ZodString>;
|
|
220
226
|
}, z.core.$strip>;
|
|
221
|
-
export declare const
|
|
227
|
+
export declare const tagRevisionListQuerySchema: z.ZodObject<{
|
|
222
228
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
223
229
|
cursor: z.ZodOptional<z.ZodString>;
|
|
224
230
|
status: z.ZodOptional<z.ZodEnum<{
|
|
225
231
|
approved: "approved";
|
|
226
232
|
published: "published";
|
|
227
|
-
publishing: "publishing";
|
|
228
233
|
draft: "draft";
|
|
234
|
+
publishing: "publishing";
|
|
229
235
|
in_review: "in_review";
|
|
230
236
|
abandoned: "abandoned";
|
|
231
237
|
}>>;
|
|
232
238
|
}, z.core.$strip>;
|
|
233
|
-
export declare const
|
|
239
|
+
export declare const tagRevisionListResponseSchema: z.ZodObject<{
|
|
234
240
|
data: z.ZodArray<z.ZodObject<{
|
|
235
241
|
id: z.ZodString;
|
|
236
242
|
tagSetId: z.ZodString;
|
|
237
|
-
|
|
238
|
-
|
|
243
|
+
revisionNumber: z.ZodNumber;
|
|
244
|
+
baseRevisionId: z.ZodNullable<z.ZodString>;
|
|
239
245
|
status: z.ZodEnum<{
|
|
240
246
|
approved: "approved";
|
|
241
247
|
published: "published";
|
|
242
|
-
publishing: "publishing";
|
|
243
248
|
draft: "draft";
|
|
249
|
+
publishing: "publishing";
|
|
244
250
|
in_review: "in_review";
|
|
245
251
|
abandoned: "abandoned";
|
|
246
252
|
}>;
|
|
@@ -261,8 +267,8 @@ export declare const tagVersionListResponseSchema: z.ZodObject<{
|
|
|
261
267
|
code: z.ZodString;
|
|
262
268
|
severity: z.ZodEnum<{
|
|
263
269
|
info: "info";
|
|
264
|
-
error: "error";
|
|
265
270
|
warning: "warning";
|
|
271
|
+
error: "error";
|
|
266
272
|
}>;
|
|
267
273
|
message: z.ZodString;
|
|
268
274
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -293,17 +299,17 @@ export declare const tagVersionListResponseSchema: z.ZodObject<{
|
|
|
293
299
|
hasMore: z.ZodBoolean;
|
|
294
300
|
}, z.core.$strip>;
|
|
295
301
|
}, z.core.$strip>;
|
|
296
|
-
export declare const
|
|
302
|
+
export declare const tagRevisionResponseSchema: z.ZodObject<{
|
|
297
303
|
data: z.ZodObject<{
|
|
298
304
|
id: z.ZodString;
|
|
299
305
|
tagSetId: z.ZodString;
|
|
300
|
-
|
|
301
|
-
|
|
306
|
+
revisionNumber: z.ZodNumber;
|
|
307
|
+
baseRevisionId: z.ZodNullable<z.ZodString>;
|
|
302
308
|
status: z.ZodEnum<{
|
|
303
309
|
approved: "approved";
|
|
304
310
|
published: "published";
|
|
305
|
-
publishing: "publishing";
|
|
306
311
|
draft: "draft";
|
|
312
|
+
publishing: "publishing";
|
|
307
313
|
in_review: "in_review";
|
|
308
314
|
abandoned: "abandoned";
|
|
309
315
|
}>;
|
|
@@ -324,8 +330,8 @@ export declare const tagVersionResponseSchema: z.ZodObject<{
|
|
|
324
330
|
code: z.ZodString;
|
|
325
331
|
severity: z.ZodEnum<{
|
|
326
332
|
info: "info";
|
|
327
|
-
error: "error";
|
|
328
333
|
warning: "warning";
|
|
334
|
+
error: "error";
|
|
329
335
|
}>;
|
|
330
336
|
message: z.ZodString;
|
|
331
337
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -352,10 +358,10 @@ export declare const tagVersionResponseSchema: z.ZodObject<{
|
|
|
352
358
|
immutableAt: z.ZodNullable<z.ZodString>;
|
|
353
359
|
}, z.core.$strip>;
|
|
354
360
|
}, z.core.$strip>;
|
|
355
|
-
export declare const
|
|
361
|
+
export declare const tagRevisionCreateSchema: z.ZodObject<{
|
|
356
362
|
title: z.ZodDefault<z.ZodString>;
|
|
357
363
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
358
|
-
|
|
364
|
+
baseRevisionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
359
365
|
graph: z.ZodOptional<z.ZodObject<{
|
|
360
366
|
format: z.ZodDefault<z.ZodLiteral<"spacefast.tag_graph.v1">>;
|
|
361
367
|
tags: z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -365,13 +371,13 @@ export declare const tagVersionCreateSchema: z.ZodObject<{
|
|
|
365
371
|
consentPolicy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
366
372
|
}, z.core.$strict>>;
|
|
367
373
|
}, z.core.$strip>;
|
|
368
|
-
export declare const
|
|
374
|
+
export declare const tagRevisionPatchSchema: z.ZodObject<{
|
|
369
375
|
title: z.ZodOptional<z.ZodString>;
|
|
370
376
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
371
377
|
}, z.core.$strip>;
|
|
372
378
|
export declare const tagGraphResponseSchema: z.ZodObject<{
|
|
373
379
|
data: z.ZodObject<{
|
|
374
|
-
|
|
380
|
+
revisionId: z.ZodString;
|
|
375
381
|
graph: z.ZodObject<{
|
|
376
382
|
format: z.ZodDefault<z.ZodLiteral<"spacefast.tag_graph.v1">>;
|
|
377
383
|
tags: z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -419,8 +425,8 @@ export declare const tagValidateResponseSchema: z.ZodObject<{
|
|
|
419
425
|
code: z.ZodString;
|
|
420
426
|
severity: z.ZodEnum<{
|
|
421
427
|
info: "info";
|
|
422
|
-
error: "error";
|
|
423
428
|
warning: "warning";
|
|
429
|
+
error: "error";
|
|
424
430
|
}>;
|
|
425
431
|
message: z.ZodString;
|
|
426
432
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -439,8 +445,8 @@ export declare const tagValidateResponseSchema: z.ZodObject<{
|
|
|
439
445
|
}, z.core.$strip>;
|
|
440
446
|
}, z.core.$strip>;
|
|
441
447
|
export declare const tagDiffSchema: z.ZodObject<{
|
|
442
|
-
|
|
443
|
-
|
|
448
|
+
baseRevisionId: z.ZodNullable<z.ZodString>;
|
|
449
|
+
targetRevisionId: z.ZodString;
|
|
444
450
|
addedTagIds: z.ZodArray<z.ZodString>;
|
|
445
451
|
removedTagIds: z.ZodArray<z.ZodString>;
|
|
446
452
|
changedTagIds: z.ZodArray<z.ZodString>;
|
|
@@ -448,8 +454,8 @@ export declare const tagDiffSchema: z.ZodObject<{
|
|
|
448
454
|
}, z.core.$strip>;
|
|
449
455
|
export declare const tagDiffResponseSchema: z.ZodObject<{
|
|
450
456
|
data: z.ZodObject<{
|
|
451
|
-
|
|
452
|
-
|
|
457
|
+
baseRevisionId: z.ZodNullable<z.ZodString>;
|
|
458
|
+
targetRevisionId: z.ZodString;
|
|
453
459
|
addedTagIds: z.ZodArray<z.ZodString>;
|
|
454
460
|
removedTagIds: z.ZodArray<z.ZodString>;
|
|
455
461
|
changedTagIds: z.ZodArray<z.ZodString>;
|
|
@@ -464,8 +470,8 @@ export declare const tagReleaseSchema: z.ZodObject<{
|
|
|
464
470
|
preview: "preview";
|
|
465
471
|
development: "development";
|
|
466
472
|
}>;
|
|
467
|
-
|
|
468
|
-
|
|
473
|
+
revisionId: z.ZodString;
|
|
474
|
+
previousRevisionId: z.ZodNullable<z.ZodString>;
|
|
469
475
|
sdkRevision: z.ZodString;
|
|
470
476
|
staticDigest: z.ZodString;
|
|
471
477
|
releaseNotes: z.ZodNullable<z.ZodString>;
|
|
@@ -480,8 +486,8 @@ export declare const tagReleaseListResponseSchema: z.ZodObject<{
|
|
|
480
486
|
preview: "preview";
|
|
481
487
|
development: "development";
|
|
482
488
|
}>;
|
|
483
|
-
|
|
484
|
-
|
|
489
|
+
revisionId: z.ZodString;
|
|
490
|
+
previousRevisionId: z.ZodNullable<z.ZodString>;
|
|
485
491
|
sdkRevision: z.ZodString;
|
|
486
492
|
staticDigest: z.ZodString;
|
|
487
493
|
releaseNotes: z.ZodNullable<z.ZodString>;
|
|
@@ -497,8 +503,8 @@ export declare const tagReleaseResponseSchema: z.ZodObject<{
|
|
|
497
503
|
preview: "preview";
|
|
498
504
|
development: "development";
|
|
499
505
|
}>;
|
|
500
|
-
|
|
501
|
-
|
|
506
|
+
revisionId: z.ZodString;
|
|
507
|
+
previousRevisionId: z.ZodNullable<z.ZodString>;
|
|
502
508
|
sdkRevision: z.ZodString;
|
|
503
509
|
staticDigest: z.ZodString;
|
|
504
510
|
releaseNotes: z.ZodNullable<z.ZodString>;
|
|
@@ -550,7 +556,7 @@ export declare const tagInheritancePatchSchema: z.ZodObject<{
|
|
|
550
556
|
export declare const tagActivityEventSchema: z.ZodObject<{
|
|
551
557
|
id: z.ZodString;
|
|
552
558
|
type: z.ZodString;
|
|
553
|
-
|
|
559
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
554
560
|
environment: z.ZodNullable<z.ZodEnum<{
|
|
555
561
|
production: "production";
|
|
556
562
|
preview: "preview";
|
|
@@ -564,7 +570,7 @@ export declare const tagActivityResponseSchema: z.ZodObject<{
|
|
|
564
570
|
data: z.ZodArray<z.ZodObject<{
|
|
565
571
|
id: z.ZodString;
|
|
566
572
|
type: z.ZodString;
|
|
567
|
-
|
|
573
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
568
574
|
environment: z.ZodNullable<z.ZodEnum<{
|
|
569
575
|
production: "production";
|
|
570
576
|
preview: "preview";
|
|
@@ -592,8 +598,8 @@ export declare const tagEffectiveTagResponseSchema: z.ZodObject<{
|
|
|
592
598
|
}, z.core.$strip>;
|
|
593
599
|
}, z.core.$strip>;
|
|
594
600
|
export declare const tagReleasePutSchema: z.ZodObject<{
|
|
595
|
-
|
|
596
|
-
|
|
601
|
+
revisionId: z.ZodString;
|
|
602
|
+
expectedCurrentRevisionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
597
603
|
releaseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
598
604
|
}, z.core.$strip>;
|
|
599
605
|
export declare const tagApplySchema: z.ZodObject<{
|
|
@@ -606,20 +612,20 @@ export declare const tagApplySchema: z.ZodObject<{
|
|
|
606
612
|
preview: "preview";
|
|
607
613
|
development: "development";
|
|
608
614
|
}>>;
|
|
609
|
-
|
|
615
|
+
expectedCurrentRevisionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
610
616
|
}, z.core.$strip>;
|
|
611
617
|
export declare const tagApplyResponseSchema: z.ZodObject<{
|
|
612
618
|
data: z.ZodObject<{
|
|
613
|
-
|
|
619
|
+
revision: z.ZodObject<{
|
|
614
620
|
id: z.ZodString;
|
|
615
621
|
tagSetId: z.ZodString;
|
|
616
|
-
|
|
617
|
-
|
|
622
|
+
revisionNumber: z.ZodNumber;
|
|
623
|
+
baseRevisionId: z.ZodNullable<z.ZodString>;
|
|
618
624
|
status: z.ZodEnum<{
|
|
619
625
|
approved: "approved";
|
|
620
626
|
published: "published";
|
|
621
|
-
publishing: "publishing";
|
|
622
627
|
draft: "draft";
|
|
628
|
+
publishing: "publishing";
|
|
623
629
|
in_review: "in_review";
|
|
624
630
|
abandoned: "abandoned";
|
|
625
631
|
}>;
|
|
@@ -640,8 +646,8 @@ export declare const tagApplyResponseSchema: z.ZodObject<{
|
|
|
640
646
|
code: z.ZodString;
|
|
641
647
|
severity: z.ZodEnum<{
|
|
642
648
|
info: "info";
|
|
643
|
-
error: "error";
|
|
644
649
|
warning: "warning";
|
|
650
|
+
error: "error";
|
|
645
651
|
}>;
|
|
646
652
|
message: z.ZodString;
|
|
647
653
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -673,8 +679,8 @@ export declare const tagApplyResponseSchema: z.ZodObject<{
|
|
|
673
679
|
code: z.ZodString;
|
|
674
680
|
severity: z.ZodEnum<{
|
|
675
681
|
info: "info";
|
|
676
|
-
error: "error";
|
|
677
682
|
warning: "warning";
|
|
683
|
+
error: "error";
|
|
678
684
|
}>;
|
|
679
685
|
message: z.ZodString;
|
|
680
686
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -699,8 +705,8 @@ export declare const tagApplyResponseSchema: z.ZodObject<{
|
|
|
699
705
|
preview: "preview";
|
|
700
706
|
development: "development";
|
|
701
707
|
}>;
|
|
702
|
-
|
|
703
|
-
|
|
708
|
+
revisionId: z.ZodString;
|
|
709
|
+
previousRevisionId: z.ZodNullable<z.ZodString>;
|
|
704
710
|
sdkRevision: z.ZodString;
|
|
705
711
|
staticDigest: z.ZodString;
|
|
706
712
|
releaseNotes: z.ZodNullable<z.ZodString>;
|
|
@@ -720,7 +726,7 @@ export declare const tagApplyResponseSchema: z.ZodObject<{
|
|
|
720
726
|
}, z.core.$strip>;
|
|
721
727
|
export declare const tagPreviewSessionSchema: z.ZodObject<{
|
|
722
728
|
id: z.ZodString;
|
|
723
|
-
|
|
729
|
+
revisionId: z.ZodString;
|
|
724
730
|
environment: z.ZodEnum<{
|
|
725
731
|
production: "production";
|
|
726
732
|
preview: "preview";
|
|
@@ -739,7 +745,7 @@ export declare const tagPreviewSessionSchema: z.ZodObject<{
|
|
|
739
745
|
export declare const tagPreviewSessionResponseSchema: z.ZodObject<{
|
|
740
746
|
data: z.ZodObject<{
|
|
741
747
|
id: z.ZodString;
|
|
742
|
-
|
|
748
|
+
revisionId: z.ZodString;
|
|
743
749
|
environment: z.ZodEnum<{
|
|
744
750
|
production: "production";
|
|
745
751
|
preview: "preview";
|
|
@@ -756,6 +762,26 @@ export declare const tagPreviewSessionResponseSchema: z.ZodObject<{
|
|
|
756
762
|
revokedAt: z.ZodNullable<z.ZodString>;
|
|
757
763
|
}, z.core.$strip>;
|
|
758
764
|
}, z.core.$strip>;
|
|
765
|
+
export declare const tagPreviewSessionListResponseSchema: z.ZodObject<{
|
|
766
|
+
data: z.ZodArray<z.ZodObject<{
|
|
767
|
+
id: z.ZodString;
|
|
768
|
+
revisionId: z.ZodString;
|
|
769
|
+
environment: z.ZodEnum<{
|
|
770
|
+
production: "production";
|
|
771
|
+
preview: "preview";
|
|
772
|
+
development: "development";
|
|
773
|
+
}>;
|
|
774
|
+
previewUrl: z.ZodString;
|
|
775
|
+
sdkRevision: z.ZodString;
|
|
776
|
+
cacheMode: z.ZodLiteral<"public, max-age=0, s-maxage=60, must-revalidate">;
|
|
777
|
+
websocket: z.ZodObject<{
|
|
778
|
+
enabled: z.ZodBoolean;
|
|
779
|
+
}, z.core.$strip>;
|
|
780
|
+
createdAt: z.ZodString;
|
|
781
|
+
expiresAt: z.ZodString;
|
|
782
|
+
revokedAt: z.ZodNullable<z.ZodString>;
|
|
783
|
+
}, z.core.$strip>>;
|
|
784
|
+
}, z.core.$strip>;
|
|
759
785
|
export declare const tagPreviewSessionCreateSchema: z.ZodObject<{
|
|
760
786
|
url: z.ZodOptional<z.ZodString>;
|
|
761
787
|
ttlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -855,9 +881,9 @@ export declare const tagTemplateDefinitionSchema: z.ZodObject<{
|
|
|
855
881
|
label: z.ZodString;
|
|
856
882
|
kind: z.ZodDefault<z.ZodEnum<{
|
|
857
883
|
boolean: "boolean";
|
|
884
|
+
url: "url";
|
|
858
885
|
text: "text";
|
|
859
886
|
secret: "secret";
|
|
860
|
-
url: "url";
|
|
861
887
|
textarea: "textarea";
|
|
862
888
|
}>>;
|
|
863
889
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -964,9 +990,9 @@ export declare const tagTemplateListResponseSchema: z.ZodObject<{
|
|
|
964
990
|
label: z.ZodString;
|
|
965
991
|
kind: z.ZodDefault<z.ZodEnum<{
|
|
966
992
|
boolean: "boolean";
|
|
993
|
+
url: "url";
|
|
967
994
|
text: "text";
|
|
968
995
|
secret: "secret";
|
|
969
|
-
url: "url";
|
|
970
996
|
textarea: "textarea";
|
|
971
997
|
}>>;
|
|
972
998
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -998,7 +1024,7 @@ export declare const tagConsentPolicyResponseSchema: z.ZodObject<{
|
|
|
998
1024
|
preview: "preview";
|
|
999
1025
|
development: "development";
|
|
1000
1026
|
}>;
|
|
1001
|
-
|
|
1027
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
1002
1028
|
graphRevision: z.ZodNumber;
|
|
1003
1029
|
policy: z.ZodObject<{
|
|
1004
1030
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
@@ -1009,6 +1035,7 @@ export declare const tagConsentPolicyResponseSchema: z.ZodObject<{
|
|
|
1009
1035
|
defaultGranted: z.ZodBoolean;
|
|
1010
1036
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
1011
1037
|
privacySignalDefaultDenied: z.ZodDefault<z.ZodBoolean>;
|
|
1038
|
+
requiresConsentInGdprCountries: z.ZodDefault<z.ZodBoolean>;
|
|
1012
1039
|
}, z.core.$strip>>>;
|
|
1013
1040
|
defaultByCategory: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1014
1041
|
regionDefaults: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
|
|
@@ -1022,8 +1049,8 @@ export declare const tagConsentPolicyResponseSchema: z.ZodObject<{
|
|
|
1022
1049
|
code: z.ZodString;
|
|
1023
1050
|
severity: z.ZodEnum<{
|
|
1024
1051
|
info: "info";
|
|
1025
|
-
error: "error";
|
|
1026
1052
|
warning: "warning";
|
|
1053
|
+
error: "error";
|
|
1027
1054
|
}>;
|
|
1028
1055
|
message: z.ZodString;
|
|
1029
1056
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1114,7 +1141,7 @@ export declare function listTagTemplates(): {
|
|
|
1114
1141
|
fields: {
|
|
1115
1142
|
key: string;
|
|
1116
1143
|
label: string;
|
|
1117
|
-
kind: "boolean" | "
|
|
1144
|
+
kind: "boolean" | "url" | "text" | "secret" | "textarea";
|
|
1118
1145
|
required: boolean;
|
|
1119
1146
|
placeholder?: string | undefined;
|
|
1120
1147
|
help?: string | undefined;
|
|
@@ -1148,7 +1175,7 @@ export declare const tagEffectiveResponseSchema: z.ZodObject<{
|
|
|
1148
1175
|
preview: "preview";
|
|
1149
1176
|
development: "development";
|
|
1150
1177
|
}>;
|
|
1151
|
-
|
|
1178
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
1152
1179
|
graph: z.ZodObject<{
|
|
1153
1180
|
format: z.ZodDefault<z.ZodLiteral<"spacefast.tag_graph.v1">>;
|
|
1154
1181
|
tags: z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1165,7 +1192,7 @@ export declare const tagEffectiveResponseSchema: z.ZodObject<{
|
|
|
1165
1192
|
team: "team";
|
|
1166
1193
|
system: "system";
|
|
1167
1194
|
}>;
|
|
1168
|
-
|
|
1195
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
1169
1196
|
}, z.core.$strip>>;
|
|
1170
1197
|
}, z.core.$strip>;
|
|
1171
1198
|
}, z.core.$strip>;
|