@crowdedkingdoms/crowdyjs 10.0.0 → 11.0.0
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/MIGRATION.md +48 -48
- package/README.md +24 -21
- package/dist/crowdy-client.d.ts +3 -3
- package/dist/crowdy-client.d.ts.map +1 -1
- package/dist/crowdy-client.js +2 -2
- package/dist/crowdy-studio/controller.d.ts +188 -0
- package/dist/crowdy-studio/controller.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/controller.js +22 -22
- package/dist/crowdy-studio/diagnostics.d.ts +22 -0
- package/dist/crowdy-studio/diagnostics.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/diagnostics.js +2 -2
- package/dist/{mod-studio → crowdy-studio}/dom-shell.d.ts +4 -4
- package/dist/crowdy-studio/dom-shell.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/dom-shell.js +31 -31
- package/dist/crowdy-studio/editor.d.ts +17 -0
- package/dist/crowdy-studio/editor.d.ts.map +1 -0
- package/dist/crowdy-studio/index.d.ts +10 -0
- package/dist/crowdy-studio/index.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/index.js +4 -4
- package/dist/crowdy-studio/models.d.ts +149 -0
- package/dist/crowdy-studio/models.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/models.js +10 -10
- package/dist/{mod-studio → crowdy-studio}/monaco-editor.d.ts +3 -3
- package/dist/crowdy-studio/monaco-editor.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/monaco-editor.js +4 -4
- package/dist/crowdy-studio/mount.d.ts +17 -0
- package/dist/crowdy-studio/mount.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/mount.js +14 -14
- package/dist/crowdy-studio/starter-projects.d.ts +11 -0
- package/dist/crowdy-studio/starter-projects.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/starter-projects.js +2 -2
- package/dist/crowdy-studio/styles.d.ts +2 -0
- package/dist/crowdy-studio/styles.d.ts.map +1 -0
- package/dist/crowdy-studio/styles.js +14 -0
- package/dist/crowdy-studio/textarea-editor.d.ts +8 -0
- package/dist/crowdy-studio/textarea-editor.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/textarea-editor.js +3 -3
- package/dist/domains/crowdyStudio.d.ts +27 -0
- package/dist/domains/crowdyStudio.d.ts.map +1 -0
- package/dist/domains/{playerCodeProjects.js → crowdyStudio.js} +47 -45
- package/dist/domains/playerCompute.d.ts +1 -1
- package/dist/domains/playerCompute.js +1 -1
- package/dist/generated/graphql.d.ts +670 -670
- package/dist/generated/graphql.d.ts.map +1 -1
- package/dist/generated/graphql.js +57 -57
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/kit/npcs.d.ts.map +1 -1
- package/dist/kit/social.d.ts.map +1 -1
- package/dist/live-coding/rust-analysis.js +1 -1
- package/package.json +4 -4
- package/dist/domains/playerCodeProjects.d.ts +0 -25
- package/dist/domains/playerCodeProjects.d.ts.map +0 -1
- package/dist/mod-studio/controller.d.ts +0 -188
- package/dist/mod-studio/controller.d.ts.map +0 -1
- package/dist/mod-studio/diagnostics.d.ts +0 -22
- package/dist/mod-studio/diagnostics.d.ts.map +0 -1
- package/dist/mod-studio/dom-shell.d.ts.map +0 -1
- package/dist/mod-studio/editor.d.ts +0 -17
- package/dist/mod-studio/editor.d.ts.map +0 -1
- package/dist/mod-studio/index.d.ts +0 -10
- package/dist/mod-studio/index.d.ts.map +0 -1
- package/dist/mod-studio/models.d.ts +0 -149
- package/dist/mod-studio/models.d.ts.map +0 -1
- package/dist/mod-studio/monaco-editor.d.ts.map +0 -1
- package/dist/mod-studio/mount.d.ts +0 -17
- package/dist/mod-studio/mount.d.ts.map +0 -1
- package/dist/mod-studio/starter-projects.d.ts +0 -11
- package/dist/mod-studio/starter-projects.d.ts.map +0 -1
- package/dist/mod-studio/styles.d.ts +0 -2
- package/dist/mod-studio/styles.d.ts.map +0 -1
- package/dist/mod-studio/styles.js +0 -14
- package/dist/mod-studio/textarea-editor.d.ts +0 -8
- package/dist/mod-studio/textarea-editor.d.ts.map +0 -1
- /package/dist/{mod-studio → crowdy-studio}/editor.js +0 -0
|
@@ -1913,6 +1913,46 @@ export type CreateContainerInput = {
|
|
|
1913
1913
|
/** The container type to instantiate. */
|
|
1914
1914
|
typeName: Scalars['String']['input'];
|
|
1915
1915
|
};
|
|
1916
|
+
/** Lazily create a private project by copying the authenticated author’s latest source versions from existing self-authored player modules. */
|
|
1917
|
+
export type CreateCrowdyStudioProjectFromModulesInput = {
|
|
1918
|
+
/** App tenant containing the authored modules. */
|
|
1919
|
+
appId: Scalars['BigInt']['input'];
|
|
1920
|
+
/** Existing self-authored CLIENT module name to copy; at least one module name is required. */
|
|
1921
|
+
clientModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
1922
|
+
/** Grid containing the authored modules. Current ownership is not required to recover one’s own source, but deployment is rechecked separately. */
|
|
1923
|
+
gridId: Scalars['BigInt']['input'];
|
|
1924
|
+
/** Optional 24-hour retry key. The operation also returns an already-created active project with the same module affinity. */
|
|
1925
|
+
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
1926
|
+
/** Optional project name. Omit to derive a bounded name from the imported module name(s). */
|
|
1927
|
+
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
1928
|
+
/** Existing self-authored SERVER module name to copy; at least one module name is required. */
|
|
1929
|
+
serverModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
1930
|
+
};
|
|
1931
|
+
/** Create a private player-owned project, optionally with bounded initial files for either target. */
|
|
1932
|
+
export type CreateCrowdyStudioProjectInput = {
|
|
1933
|
+
/** Supported guest ABI pin; defaults to ABI 0. */
|
|
1934
|
+
abiVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
1935
|
+
/** App tenant. Requires an app-scoped token for this exact app; the project is owned by the authenticated user. */
|
|
1936
|
+
appId: Scalars['BigInt']['input'];
|
|
1937
|
+
/** Optional stable crate-style CLIENT module name. It must differ from the server name. */
|
|
1938
|
+
clientModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
1939
|
+
/** Optional private project description. */
|
|
1940
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1941
|
+
/** Optional grid affinity in the same app. Affinity does not grant deployment permission and survives ownership transfer. */
|
|
1942
|
+
gridId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1943
|
+
/** Optional retry key. Same user, operation, key, and input replay the first result for 24 hours; changed input returns IDEMPOTENCY_CONFLICT. */
|
|
1944
|
+
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
1945
|
+
/** Optional initial source files. At most 16 total and at most 8/256 KiB independently per target. */
|
|
1946
|
+
initialFiles?: InputMaybe<Array<CrowdyStudioProjectFileInput>>;
|
|
1947
|
+
/** Player-facing project name. */
|
|
1948
|
+
name: Scalars['String']['input'];
|
|
1949
|
+
/** Optional editor pairing preference; defaults to PAIRED. */
|
|
1950
|
+
pairingPreference?: InputMaybe<CrowdyStudioPairingPreference>;
|
|
1951
|
+
/** Supported crowdy-compute-sdk pin; defaults to the current 0.1.5 authoring pin. */
|
|
1952
|
+
sdkVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1953
|
+
/** Optional stable crate-style SERVER module name. Deployment rechecks current authority. */
|
|
1954
|
+
serverModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
1955
|
+
};
|
|
1916
1956
|
/** Input for createEnvironment. For dedicated (default) supply the four per-role flavors plus scaling counts; for dev_single supply a single flavor and the per-role/count fields are ignored. */
|
|
1917
1957
|
export type CreateEnvironmentInput = {
|
|
1918
1958
|
/** Optional app ids to link to the new environment at creation. Each must be unique; omit or pass an empty list to link none. */
|
|
@@ -2055,46 +2095,6 @@ export type CreatePlayerAutomationInput = {
|
|
|
2055
2095
|
/** Strict trigger JSON. Schedule: {"kind":"schedule","scheduleKind":"interval","intervalMs":2000} or cron with cronExpr. Event: {"kind":"event","eventKind":"owner_container_changed|grid_actor_changed|grid_voxel_changed|compute_event"}; compute_event may include eventName. */
|
|
2056
2096
|
triggerJson: Scalars['String']['input'];
|
|
2057
2097
|
};
|
|
2058
|
-
/** Lazily create a private project by copying the authenticated author’s latest source versions from existing self-authored player modules. */
|
|
2059
|
-
export type CreatePlayerCodeProjectFromModulesInput = {
|
|
2060
|
-
/** App tenant containing the authored modules. */
|
|
2061
|
-
appId: Scalars['BigInt']['input'];
|
|
2062
|
-
/** Existing self-authored CLIENT module name to copy; at least one module name is required. */
|
|
2063
|
-
clientModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
2064
|
-
/** Grid containing the authored modules. Current ownership is not required to recover one’s own source, but deployment is rechecked separately. */
|
|
2065
|
-
gridId: Scalars['BigInt']['input'];
|
|
2066
|
-
/** Optional 24-hour retry key. The operation also returns an already-created active project with the same module affinity. */
|
|
2067
|
-
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
2068
|
-
/** Optional project name. Omit to derive a bounded name from the imported module name(s). */
|
|
2069
|
-
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
2070
|
-
/** Existing self-authored SERVER module name to copy; at least one module name is required. */
|
|
2071
|
-
serverModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
2072
|
-
};
|
|
2073
|
-
/** Create a private player-owned project, optionally with bounded initial files for either target. */
|
|
2074
|
-
export type CreatePlayerCodeProjectInput = {
|
|
2075
|
-
/** Supported guest ABI pin; defaults to ABI 0. */
|
|
2076
|
-
abiVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
2077
|
-
/** App tenant. Requires an app-scoped token for this exact app; the project is owned by the authenticated user. */
|
|
2078
|
-
appId: Scalars['BigInt']['input'];
|
|
2079
|
-
/** Optional stable crate-style CLIENT module name. It must differ from the server name. */
|
|
2080
|
-
clientModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
2081
|
-
/** Optional private project description. */
|
|
2082
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
2083
|
-
/** Optional grid affinity in the same app. Affinity does not grant deployment permission and survives ownership transfer. */
|
|
2084
|
-
gridId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2085
|
-
/** Optional retry key. Same user, operation, key, and input replay the first result for 24 hours; changed input returns IDEMPOTENCY_CONFLICT. */
|
|
2086
|
-
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
2087
|
-
/** Optional initial source files. At most 16 total and at most 8/256 KiB independently per target. */
|
|
2088
|
-
initialFiles?: InputMaybe<Array<PlayerCodeProjectFileInput>>;
|
|
2089
|
-
/** Player-facing project name. */
|
|
2090
|
-
name: Scalars['String']['input'];
|
|
2091
|
-
/** Optional editor pairing preference; defaults to PAIRED. */
|
|
2092
|
-
pairingPreference?: InputMaybe<PlayerCodePairingPreference>;
|
|
2093
|
-
/** Supported crowdy-compute-sdk pin; defaults to the current 0.1.5 authoring pin. */
|
|
2094
|
-
sdkVersion?: InputMaybe<Scalars['String']['input']>;
|
|
2095
|
-
/** Optional stable crate-style SERVER module name. Deployment rechecks current authority. */
|
|
2096
|
-
serverModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
2097
|
-
};
|
|
2098
2098
|
/** Create a flexible player-owned model container inside one grid. The caller must currently own the grid; owner identity cannot be supplied. */
|
|
2099
2099
|
export type CreatePlayerModelContainerInput = {
|
|
2100
2100
|
/** App containing the owned grid. */
|
|
@@ -2147,6 +2147,199 @@ export type CreateUserAppStateInput = {
|
|
|
2147
2147
|
/** Per-app user state as base64-encoded binary. Omit or send null to clear it. */
|
|
2148
2148
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
2149
2149
|
};
|
|
2150
|
+
/** A Crowdy Studio-curated app-scoped common file at its current immutable published version. Unlike personal source, this content is intentionally readable by app-scoped players. */
|
|
2151
|
+
export type CrowdyStudioCommonFile = {
|
|
2152
|
+
__typename?: 'CrowdyStudioCommonFile';
|
|
2153
|
+
/** App tenant whose players may read this published entry. */
|
|
2154
|
+
appId: Scalars['BigInt']['output'];
|
|
2155
|
+
/** Stable common catalog entry UUID. */
|
|
2156
|
+
commonFileId: Scalars['String']['output'];
|
|
2157
|
+
/** Published UTF-8 source text for this immutable version. */
|
|
2158
|
+
content: Scalars['String']['output'];
|
|
2159
|
+
/** Lowercase SHA-256 digest of the exact UTF-8 content bytes. */
|
|
2160
|
+
contentSha256: Scalars['String']['output'];
|
|
2161
|
+
/** Catalog entry creation timestamp. */
|
|
2162
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2163
|
+
/** Optional Crowdy Studio-authored catalog description. */
|
|
2164
|
+
description: Maybe<Scalars['String']['output']>;
|
|
2165
|
+
/** Safe recommended project destination path. */
|
|
2166
|
+
path: Scalars['String']['output'];
|
|
2167
|
+
/** Timestamp when the current immutable version was published. */
|
|
2168
|
+
publishedAt: Scalars['DateTime']['output'];
|
|
2169
|
+
/** Crowdy Studio user that published the current immutable version. */
|
|
2170
|
+
publishedByUserId: Scalars['BigInt']['output'];
|
|
2171
|
+
/** Stable lowercase URL-safe catalog slug. */
|
|
2172
|
+
slug: Scalars['String']['output'];
|
|
2173
|
+
/** Catalog lifecycle state; ordinary player queries expose only PUBLISHED. */
|
|
2174
|
+
status: CrowdyStudioCommonStatus;
|
|
2175
|
+
/** Normalized Crowdy Studio-curated discovery tags. */
|
|
2176
|
+
tags: Array<Scalars['String']['output']>;
|
|
2177
|
+
/** Compatible project target for this catalog entry. */
|
|
2178
|
+
target: CrowdyStudioTarget;
|
|
2179
|
+
/** Crowdy Studio-authored catalog title. */
|
|
2180
|
+
title: Scalars['String']['output'];
|
|
2181
|
+
/** Timestamp of the latest catalog publication. */
|
|
2182
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2183
|
+
/** Current immutable content-version UUID. */
|
|
2184
|
+
versionId: Scalars['String']['output'];
|
|
2185
|
+
/** Monotonic immutable version number within the catalog entry. */
|
|
2186
|
+
versionNo: Scalars['BigInt']['output'];
|
|
2187
|
+
};
|
|
2188
|
+
/** Crowdy Studio catalog visibility. Player catalog queries return only published entries. */
|
|
2189
|
+
export declare enum CrowdyStudioCommonStatus {
|
|
2190
|
+
/** Retained for provenance but hidden from new player catalog reads and imports. */
|
|
2191
|
+
Archived = "ARCHIVED",
|
|
2192
|
+
/** Crowdy Studio work in progress; hidden from player common-file queries. */
|
|
2193
|
+
Draft = "DRAFT",
|
|
2194
|
+
/** Available to app-scoped players for reading and copy-by-value import. */
|
|
2195
|
+
Published = "PUBLISHED"
|
|
2196
|
+
}
|
|
2197
|
+
/** How a project file entered the project. Imported content is copied by value; provenance is informational and does not create a live link. */
|
|
2198
|
+
export declare enum CrowdyStudioFileProvenance {
|
|
2199
|
+
/** The owner authored or directly saved this project file. */
|
|
2200
|
+
Authored = "AUTHORED",
|
|
2201
|
+
/** The file was copied from a specific immutable version of the app’s Crowdy Studio-curated common catalog. */
|
|
2202
|
+
Common = "COMMON",
|
|
2203
|
+
/** The file was copied from a specific revision of the owner’s private personal library. */
|
|
2204
|
+
Library = "LIBRARY"
|
|
2205
|
+
}
|
|
2206
|
+
/** The source catalog used for a copy-by-value project file import. */
|
|
2207
|
+
export declare enum CrowdyStudioImportSource {
|
|
2208
|
+
/** Import from an immutable published common-file version in the requested app. */
|
|
2209
|
+
Common = "COMMON",
|
|
2210
|
+
/** Import from a private personal-library file owned by the authenticated caller. */
|
|
2211
|
+
Library = "LIBRARY"
|
|
2212
|
+
}
|
|
2213
|
+
/** A reusable private text file in the authenticated player’s app-scoped personal library. */
|
|
2214
|
+
export type CrowdyStudioLibraryFile = {
|
|
2215
|
+
__typename?: 'CrowdyStudioLibraryFile';
|
|
2216
|
+
/** App tenant that isolates this private library entry. */
|
|
2217
|
+
appId: Scalars['BigInt']['output'];
|
|
2218
|
+
/** Whether this entry is archived and unavailable for new imports. */
|
|
2219
|
+
archived: Scalars['Boolean']['output'];
|
|
2220
|
+
/** Archive timestamp, or null while active. */
|
|
2221
|
+
archivedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2222
|
+
/** Private UTF-8 source text, visible only to the app-scoped owner. */
|
|
2223
|
+
content: Scalars['String']['output'];
|
|
2224
|
+
/** Library entry creation timestamp. */
|
|
2225
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2226
|
+
/** Stable personal-library file UUID. */
|
|
2227
|
+
libraryFileId: Scalars['String']['output'];
|
|
2228
|
+
/** User that exclusively owns this library entry. */
|
|
2229
|
+
ownerUserId: Scalars['BigInt']['output'];
|
|
2230
|
+
/** Safe suggested destination path; imports may choose another safe path. */
|
|
2231
|
+
pathHint: Scalars['String']['output'];
|
|
2232
|
+
/** Monotonic optimistic-concurrency revision. */
|
|
2233
|
+
revision: Scalars['BigInt']['output'];
|
|
2234
|
+
/** Normalized search tags, each lowercase and hyphen-safe. */
|
|
2235
|
+
tags: Array<Scalars['String']['output']>;
|
|
2236
|
+
/** Compatible project target for this reusable file. */
|
|
2237
|
+
target: CrowdyStudioTarget;
|
|
2238
|
+
/** Player-facing library title. */
|
|
2239
|
+
title: Scalars['String']['output'];
|
|
2240
|
+
/** Timestamp of the latest successful library mutation. */
|
|
2241
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2242
|
+
};
|
|
2243
|
+
/** Editor preference describing how the project presents its server and client targets; it never grants deployment or runtime authority. */
|
|
2244
|
+
export declare enum CrowdyStudioPairingPreference {
|
|
2245
|
+
/** Present only the client-target authoring workflow. */
|
|
2246
|
+
ClientOnly = "CLIENT_ONLY",
|
|
2247
|
+
/** Present server and client sources independently without an implied requirement edge. */
|
|
2248
|
+
Independent = "INDEPENDENT",
|
|
2249
|
+
/** Present server and client sources as two coordinated halves of one Crowdy Studio project. */
|
|
2250
|
+
Paired = "PAIRED",
|
|
2251
|
+
/** Present only the server-target authoring workflow. */
|
|
2252
|
+
ServerOnly = "SERVER_ONLY"
|
|
2253
|
+
}
|
|
2254
|
+
/** A private, revisioned Crowdy Studio project owned by one user in one app. Optional grid affinity and module names are authoring hints only; deployment still rechecks current grid ownership and target-specific permissions. */
|
|
2255
|
+
export type CrowdyStudioProject = {
|
|
2256
|
+
__typename?: 'CrowdyStudioProject';
|
|
2257
|
+
/** Pinned guest ABI version used when constructing deploy input. */
|
|
2258
|
+
abiVersion: Scalars['Int']['output'];
|
|
2259
|
+
/** App tenant that isolates this project and all of its source. */
|
|
2260
|
+
appId: Scalars['BigInt']['output'];
|
|
2261
|
+
/** Whether the project is archived. Archived projects remain private and retained but are read-only until unarchived. */
|
|
2262
|
+
archived: Scalars['Boolean']['output'];
|
|
2263
|
+
/** Archive timestamp, or null while the project is active. */
|
|
2264
|
+
archivedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2265
|
+
/** Stable crate-style CLIENT module name used when the owner chooses to deploy, or null when unassigned. */
|
|
2266
|
+
clientModuleName: Maybe<Scalars['String']['output']>;
|
|
2267
|
+
/** Project creation timestamp. */
|
|
2268
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2269
|
+
/** Optional private project description. */
|
|
2270
|
+
description: Maybe<Scalars['String']['output']>;
|
|
2271
|
+
/** Total file count across both targets; each target is independently capped at eight. */
|
|
2272
|
+
fileCount: Scalars['Int']['output'];
|
|
2273
|
+
/** Private project files ordered by target and path. Bounded to eight files per target. */
|
|
2274
|
+
files: Array<CrowdyStudioProjectFile>;
|
|
2275
|
+
/** Optional grid affinity. It survives a grid transfer and does not itself grant deploy authority. */
|
|
2276
|
+
gridId: Maybe<Scalars['BigInt']['output']>;
|
|
2277
|
+
/** Player-facing project name. */
|
|
2278
|
+
name: Scalars['String']['output'];
|
|
2279
|
+
/** User that exclusively owns and may read or modify this project source. */
|
|
2280
|
+
ownerUserId: Scalars['BigInt']['output'];
|
|
2281
|
+
/** Editor presentation preference for the two source targets. */
|
|
2282
|
+
pairingPreference: CrowdyStudioPairingPreference;
|
|
2283
|
+
/** Stable project UUID. */
|
|
2284
|
+
projectId: Scalars['String']['output'];
|
|
2285
|
+
/** Monotonic project revision required by optimistic metadata, file, import, and archive mutations. */
|
|
2286
|
+
revision: Scalars['BigInt']['output'];
|
|
2287
|
+
/** Pinned crowdy-compute-sdk version used when constructing deploy input. */
|
|
2288
|
+
sdkVersion: Scalars['String']['output'];
|
|
2289
|
+
/** Stable crate-style SERVER module name used when the owner chooses to deploy, or null when unassigned. */
|
|
2290
|
+
serverModuleName: Maybe<Scalars['String']['output']>;
|
|
2291
|
+
/** Total UTF-8 source bytes across both targets, bounded by target and aggregate owner quotas. */
|
|
2292
|
+
totalBytes: Scalars['BigInt']['output'];
|
|
2293
|
+
/** Timestamp of the latest successful project mutation. */
|
|
2294
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2295
|
+
};
|
|
2296
|
+
/** One private text file in a player-owned project. It is returned only when both app id and authenticated owner match the project. */
|
|
2297
|
+
export type CrowdyStudioProjectFile = {
|
|
2298
|
+
__typename?: 'CrowdyStudioProjectFile';
|
|
2299
|
+
/** Private UTF-8 source text. Grid ownership and Crowdy Studio permissions never override project ownership. */
|
|
2300
|
+
content: Scalars['String']['output'];
|
|
2301
|
+
/** Timestamp when this target/path entry was first created. */
|
|
2302
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2303
|
+
/** Safe compute-source relative path: Cargo.toml or a Rust file below src/. */
|
|
2304
|
+
path: Scalars['String']['output'];
|
|
2305
|
+
/** Copy provenance. Imported bytes remain unchanged if the source catalog entry later changes. */
|
|
2306
|
+
provenance: CrowdyStudioFileProvenance;
|
|
2307
|
+
/** Immutable common-file version UUID copied into this file, or null when common provenance does not apply. */
|
|
2308
|
+
provenanceCommonVersionId: Maybe<Scalars['String']['output']>;
|
|
2309
|
+
/** Private library file UUID used for the copy, or null for authored/common content. */
|
|
2310
|
+
provenanceLibraryFileId: Maybe<Scalars['String']['output']>;
|
|
2311
|
+
/** Library revision copied into this file, or null when library provenance does not apply. */
|
|
2312
|
+
provenanceLibraryRevision: Maybe<Scalars['BigInt']['output']>;
|
|
2313
|
+
/** Monotonic revision of this target/path entry, incremented on every successful upsert. */
|
|
2314
|
+
revision: Scalars['BigInt']['output'];
|
|
2315
|
+
/** Server or client target whose independent 8-file/256-KiB deploy cap includes this file. */
|
|
2316
|
+
target: CrowdyStudioTarget;
|
|
2317
|
+
/** Timestamp of the latest successful content/provenance save. */
|
|
2318
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2319
|
+
};
|
|
2320
|
+
/** A target/path key removed atomically by crowdyStudioProjectSaveFiles. */
|
|
2321
|
+
export type CrowdyStudioProjectFileDeleteInput = {
|
|
2322
|
+
/** Safe relative path of the file to remove. */
|
|
2323
|
+
path: Scalars['String']['input'];
|
|
2324
|
+
/** Project target containing the file to remove. */
|
|
2325
|
+
target: CrowdyStudioTarget;
|
|
2326
|
+
};
|
|
2327
|
+
/** One direct-authored initial or batch-upsert project file. Paths and UTF-8 bytes are validated against player-compute safety limits. */
|
|
2328
|
+
export type CrowdyStudioProjectFileInput = {
|
|
2329
|
+
/** UTF-8 source text, capped at 64 KiB. */
|
|
2330
|
+
content: Scalars['String']['input'];
|
|
2331
|
+
/** Safe relative path: Cargo.toml or a .rs file below src/, with no traversal segments. */
|
|
2332
|
+
path: Scalars['String']['input'];
|
|
2333
|
+
/** Project target receiving this file. */
|
|
2334
|
+
target: CrowdyStudioTarget;
|
|
2335
|
+
};
|
|
2336
|
+
/** The independently capped source target inside a player-owned Crowdy Studio project. */
|
|
2337
|
+
export declare enum CrowdyStudioTarget {
|
|
2338
|
+
/** Browser-worker Rust that can run only after the caller separately passes current grid ownership and write_client_code deployment checks. */
|
|
2339
|
+
Client = "CLIENT",
|
|
2340
|
+
/** Server-target Rust that can run only after the caller separately passes current grid ownership and write_server_code deployment checks. */
|
|
2341
|
+
Server = "SERVER"
|
|
2342
|
+
}
|
|
2150
2343
|
/** Define an app feature key. */
|
|
2151
2344
|
export type DefineAppFeatureInput = {
|
|
2152
2345
|
/** The app (tenant) defining the feature. */
|
|
@@ -3496,7 +3689,7 @@ export type GroupRole = {
|
|
|
3496
3689
|
roleName: Scalars['String']['output'];
|
|
3497
3690
|
};
|
|
3498
3691
|
/** Copy a private library revision or immutable published common version into a project by value. */
|
|
3499
|
-
export type
|
|
3692
|
+
export type ImportCrowdyStudioProjectFileInput = {
|
|
3500
3693
|
/** App tenant shared by the project and import source. */
|
|
3501
3694
|
appId: Scalars['BigInt']['input'];
|
|
3502
3695
|
/** Immutable common version UUID; required only for COMMON imports. */
|
|
@@ -3512,7 +3705,7 @@ export type ImportPlayerCodeProjectFileInput = {
|
|
|
3512
3705
|
/** Destination project UUID. */
|
|
3513
3706
|
projectId: Scalars['String']['input'];
|
|
3514
3707
|
/** Private LIBRARY or app-curated COMMON source. */
|
|
3515
|
-
source:
|
|
3708
|
+
source: CrowdyStudioImportSource;
|
|
3516
3709
|
};
|
|
3517
3710
|
export type IngestEnvironmentVersionInput = {
|
|
3518
3711
|
/** Overwrite an existing version row if one already exists (default false). */
|
|
@@ -3720,6 +3913,26 @@ export type Mutation = {
|
|
|
3720
3913
|
createTeam: Group;
|
|
3721
3914
|
/** Create a custom (non-system) team role granting the given team permission keys. Requires the 'manage_roles' team permission (app admins bypass). Permission keys must be valid team permission keys (group_permission_defs). */
|
|
3722
3915
|
createTeamRole: GroupRole;
|
|
3916
|
+
/** Publish a new immutable version of an app-scoped Crowdy Studio-curated common file and make it the current player-readable version. Requires an app-scoped token plus the app manage_compute permission. Old versions remain immutable for provenance; an idempotency key is strongly recommended for transport retries. */
|
|
3917
|
+
crowdyStudioCommonPublish: CrowdyStudioCommonFile;
|
|
3918
|
+
/** Create or optimistically update one private personal-library source file. Requires an app-scoped token; ownership is always the authenticated player and cannot be delegated. Safe source paths, 64-KiB content, revision, and configurable bounded aggregate library storage are enforced atomically. */
|
|
3919
|
+
crowdyStudioLibrarySave: CrowdyStudioLibraryFile;
|
|
3920
|
+
/** Archive or restore one caller-owned personal-library file under optimistic revision control. Requires an app-scoped token and exact app/user ownership; archived entries remain retained but cannot be imported until restored. */
|
|
3921
|
+
crowdyStudioLibrarySetArchived: CrowdyStudioLibraryFile;
|
|
3922
|
+
/** Create a private revisioned Crowdy Studio project for the authenticated player, optionally with initial server/client text files. Requires only an app-scoped token for the input app; optional grid affinity is validated but grants no deployment authority. Source paths, per-target deploy caps, and aggregate owner/app storage are enforced atomically. */
|
|
3923
|
+
crowdyStudioProjectCreate: CrowdyStudioProject;
|
|
3924
|
+
/** Lazily create a private project by copying the authenticated author’s latest source from an existing self-authored SERVER module, CLIENT module, or both. Requires an app-scoped token and authorship of every requested module; current grid ownership is deliberately not required for private source recovery after transfer, while any later deploy still rechecks ownership and target permissions. Repeated requests reuse the matching active project. */
|
|
3925
|
+
crowdyStudioProjectCreateFromModules: CrowdyStudioProject;
|
|
3926
|
+
/** Copy one active caller-owned library revision or one immutable published app-common version into a private project by value. Requires an app-scoped token and exact project ownership. The source is re-authorized, content/provenance are snapshotted, project caps and aggregate storage are checked, and the project revision advances atomically. */
|
|
3927
|
+
crowdyStudioProjectImportFile: CrowdyStudioProject;
|
|
3928
|
+
/** Atomically save selected private project metadata and a batch of file upserts/deletes under one expected project revision. Requires an app-scoped token and exact project ownership. No partial metadata or file changes survive validation, target-cap, aggregate-storage, module-binding, or revision failures. */
|
|
3929
|
+
crowdyStudioProjectSave: CrowdyStudioProject;
|
|
3930
|
+
/** Apply a batch of project-file upserts and deletes in one transaction under one expected project revision. Requires an app-scoped token and exact project ownership. No partial writes survive path, manifest, independent 8-file/64-KiB-file/256-KiB-target caps, aggregate storage, or revision failures. */
|
|
3931
|
+
crowdyStudioProjectSaveFiles: CrowdyStudioProject;
|
|
3932
|
+
/** Optimistically save selected private project metadata and increment its monotonic revision. Requires an app-scoped token and exact project ownership. A stale expectedRevision returns CONFLICT; grid affinity remains an authoring hint and never bypasses player-compute deployment checks. */
|
|
3933
|
+
crowdyStudioProjectSaveMetadata: CrowdyStudioProject;
|
|
3934
|
+
/** Archive or restore a private project without deleting any source or provenance, using optimistic revision control. Requires an app-scoped token and exact owner match. Archived projects remain readable by their owner but are read-only until restored. */
|
|
3935
|
+
crowdyStudioProjectSetArchived: CrowdyStudioProject;
|
|
3723
3936
|
/** Release (settle held order + unfreeze payout) or confirm (uphold) a T11 risk flag. Requires 'manage_compute'. */
|
|
3724
3937
|
decideCommerceRiskFlag: Scalars['Boolean']['output'];
|
|
3725
3938
|
/** Approve or deny a pending grid claim request (claim policy APPROVAL). Callable by the app's designated approver users or studio staff holding manage_compute. Approval assigns grid_ownership to the requester. */
|
|
@@ -3854,26 +4067,6 @@ export type Mutation = {
|
|
|
3854
4067
|
playerAutomationDelete: Scalars['Boolean']['output'];
|
|
3855
4068
|
/** Enable or disable one caller-owned player automation. Enabling requires effective run_server_code and, in strict mode, author admission. Interval/cron triggers compute the first due time; the P1 dispatcher executes scheduled studio-model actions while event delivery and player-compute actions remain typed pending paths. */
|
|
3856
4069
|
playerAutomationSetEnabled: PlayerAutomation;
|
|
3857
|
-
/** Publish a new immutable version of an app-scoped studio-curated common file and make it the current player-readable version. Requires an app-scoped token plus the app manage_compute permission. Old versions remain immutable for provenance; an idempotency key is strongly recommended for transport retries. */
|
|
3858
|
-
playerCodeCommonPublish: PlayerCodeCommonFile;
|
|
3859
|
-
/** Create or optimistically update one private personal-library source file. Requires an app-scoped token; ownership is always the authenticated player and cannot be delegated. Safe source paths, 64-KiB content, revision, and configurable bounded aggregate library storage are enforced atomically. */
|
|
3860
|
-
playerCodeLibrarySave: PlayerCodeLibraryFile;
|
|
3861
|
-
/** Archive or restore one caller-owned personal-library file under optimistic revision control. Requires an app-scoped token and exact app/user ownership; archived entries remain retained but cannot be imported until restored. */
|
|
3862
|
-
playerCodeLibrarySetArchived: PlayerCodeLibraryFile;
|
|
3863
|
-
/** Create a private revisioned Mod Studio project for the authenticated player, optionally with initial server/client text files. Requires only an app-scoped token for the input app; optional grid affinity is validated but grants no deployment authority. Source paths, per-target deploy caps, and aggregate owner/app storage are enforced atomically. */
|
|
3864
|
-
playerCodeProjectCreate: PlayerCodeProject;
|
|
3865
|
-
/** Lazily create a private project by copying the authenticated author’s latest source from an existing self-authored SERVER module, CLIENT module, or both. Requires an app-scoped token and authorship of every requested module; current grid ownership is deliberately not required for private source recovery after transfer, while any later deploy still rechecks ownership and target permissions. Repeated requests reuse the matching active project. */
|
|
3866
|
-
playerCodeProjectCreateFromModules: PlayerCodeProject;
|
|
3867
|
-
/** Copy one active caller-owned library revision or one immutable published app-common version into a private project by value. Requires an app-scoped token and exact project ownership. The source is re-authorized, content/provenance are snapshotted, project caps and aggregate storage are checked, and the project revision advances atomically. */
|
|
3868
|
-
playerCodeProjectImportFile: PlayerCodeProject;
|
|
3869
|
-
/** Atomically save selected private project metadata and a batch of file upserts/deletes under one expected project revision. Requires an app-scoped token and exact project ownership. No partial metadata or file changes survive validation, target-cap, aggregate-storage, module-binding, or revision failures. */
|
|
3870
|
-
playerCodeProjectSave: PlayerCodeProject;
|
|
3871
|
-
/** Apply a batch of project-file upserts and deletes in one transaction under one expected project revision. Requires an app-scoped token and exact project ownership. No partial writes survive path, manifest, independent 8-file/64-KiB-file/256-KiB-target caps, aggregate storage, or revision failures. */
|
|
3872
|
-
playerCodeProjectSaveFiles: PlayerCodeProject;
|
|
3873
|
-
/** Optimistically save selected private project metadata and increment its monotonic revision. Requires an app-scoped token and exact project ownership. A stale expectedRevision returns CONFLICT; grid affinity remains an authoring hint and never bypasses player-compute deployment checks. */
|
|
3874
|
-
playerCodeProjectSaveMetadata: PlayerCodeProject;
|
|
3875
|
-
/** Archive or restore a private project without deleting any source or provenance, using optimistic revision control. Requires an app-scoped token and exact owner match. Archived projects remain readable by their owner but are read-only until restored. */
|
|
3876
|
-
playerCodeProjectSetArchived: PlayerCodeProject;
|
|
3877
4070
|
/** Delete a self-authored player module and its source versions. Only the code author may delete it, and they must still own the target grid. Returns false when no matching module exists. */
|
|
3878
4071
|
playerComputeDelete: Scalars['Boolean']['output'];
|
|
3879
4072
|
/** Deploy player-authored Rust into a grid the caller currently owns. Requires the target's write permission at both app-tier and grid ACL layers. One call creates/updates the module and publishes an immutable pending version; the shared compiler builds it asynchronously. Authoring is never admission-gated, but only the original author may replace closed source. */
|
|
@@ -4269,6 +4462,36 @@ export type MutationCreateTeamArgs = {
|
|
|
4269
4462
|
export type MutationCreateTeamRoleArgs = {
|
|
4270
4463
|
input: CreateGroupRoleInput;
|
|
4271
4464
|
};
|
|
4465
|
+
export type MutationCrowdyStudioCommonPublishArgs = {
|
|
4466
|
+
input: PublishCrowdyStudioCommonFileInput;
|
|
4467
|
+
};
|
|
4468
|
+
export type MutationCrowdyStudioLibrarySaveArgs = {
|
|
4469
|
+
input: SaveCrowdyStudioLibraryFileInput;
|
|
4470
|
+
};
|
|
4471
|
+
export type MutationCrowdyStudioLibrarySetArchivedArgs = {
|
|
4472
|
+
input: SetCrowdyStudioLibraryFileArchivedInput;
|
|
4473
|
+
};
|
|
4474
|
+
export type MutationCrowdyStudioProjectCreateArgs = {
|
|
4475
|
+
input: CreateCrowdyStudioProjectInput;
|
|
4476
|
+
};
|
|
4477
|
+
export type MutationCrowdyStudioProjectCreateFromModulesArgs = {
|
|
4478
|
+
input: CreateCrowdyStudioProjectFromModulesInput;
|
|
4479
|
+
};
|
|
4480
|
+
export type MutationCrowdyStudioProjectImportFileArgs = {
|
|
4481
|
+
input: ImportCrowdyStudioProjectFileInput;
|
|
4482
|
+
};
|
|
4483
|
+
export type MutationCrowdyStudioProjectSaveArgs = {
|
|
4484
|
+
input: SaveCrowdyStudioProjectInput;
|
|
4485
|
+
};
|
|
4486
|
+
export type MutationCrowdyStudioProjectSaveFilesArgs = {
|
|
4487
|
+
input: SaveCrowdyStudioProjectFilesInput;
|
|
4488
|
+
};
|
|
4489
|
+
export type MutationCrowdyStudioProjectSaveMetadataArgs = {
|
|
4490
|
+
input: SaveCrowdyStudioProjectMetadataInput;
|
|
4491
|
+
};
|
|
4492
|
+
export type MutationCrowdyStudioProjectSetArchivedArgs = {
|
|
4493
|
+
input: SetCrowdyStudioProjectArchivedInput;
|
|
4494
|
+
};
|
|
4272
4495
|
export type MutationDecideCommerceRiskFlagArgs = {
|
|
4273
4496
|
appId: Scalars['BigInt']['input'];
|
|
4274
4497
|
flagId: Scalars['String']['input'];
|
|
@@ -4488,36 +4711,6 @@ export type MutationPlayerAutomationDeleteArgs = {
|
|
|
4488
4711
|
export type MutationPlayerAutomationSetEnabledArgs = {
|
|
4489
4712
|
input: SetPlayerAutomationEnabledInput;
|
|
4490
4713
|
};
|
|
4491
|
-
export type MutationPlayerCodeCommonPublishArgs = {
|
|
4492
|
-
input: PublishPlayerCodeCommonFileInput;
|
|
4493
|
-
};
|
|
4494
|
-
export type MutationPlayerCodeLibrarySaveArgs = {
|
|
4495
|
-
input: SavePlayerCodeLibraryFileInput;
|
|
4496
|
-
};
|
|
4497
|
-
export type MutationPlayerCodeLibrarySetArchivedArgs = {
|
|
4498
|
-
input: SetPlayerCodeLibraryFileArchivedInput;
|
|
4499
|
-
};
|
|
4500
|
-
export type MutationPlayerCodeProjectCreateArgs = {
|
|
4501
|
-
input: CreatePlayerCodeProjectInput;
|
|
4502
|
-
};
|
|
4503
|
-
export type MutationPlayerCodeProjectCreateFromModulesArgs = {
|
|
4504
|
-
input: CreatePlayerCodeProjectFromModulesInput;
|
|
4505
|
-
};
|
|
4506
|
-
export type MutationPlayerCodeProjectImportFileArgs = {
|
|
4507
|
-
input: ImportPlayerCodeProjectFileInput;
|
|
4508
|
-
};
|
|
4509
|
-
export type MutationPlayerCodeProjectSaveArgs = {
|
|
4510
|
-
input: SavePlayerCodeProjectInput;
|
|
4511
|
-
};
|
|
4512
|
-
export type MutationPlayerCodeProjectSaveFilesArgs = {
|
|
4513
|
-
input: SavePlayerCodeProjectFilesInput;
|
|
4514
|
-
};
|
|
4515
|
-
export type MutationPlayerCodeProjectSaveMetadataArgs = {
|
|
4516
|
-
input: SavePlayerCodeProjectMetadataInput;
|
|
4517
|
-
};
|
|
4518
|
-
export type MutationPlayerCodeProjectSetArchivedArgs = {
|
|
4519
|
-
input: SetPlayerCodeProjectArchivedInput;
|
|
4520
|
-
};
|
|
4521
4714
|
export type MutationPlayerComputeDeleteArgs = {
|
|
4522
4715
|
appId: Scalars['BigInt']['input'];
|
|
4523
4716
|
gridId: Scalars['BigInt']['input'];
|
|
@@ -5409,69 +5602,6 @@ export declare enum PlayerCodeAdmissionState {
|
|
|
5409
5602
|
Pending = "PENDING",
|
|
5410
5603
|
Revoked = "REVOKED"
|
|
5411
5604
|
}
|
|
5412
|
-
/** A studio-curated app-scoped common file at its current immutable published version. Unlike personal source, this content is intentionally readable by app-scoped players. */
|
|
5413
|
-
export type PlayerCodeCommonFile = {
|
|
5414
|
-
__typename?: 'PlayerCodeCommonFile';
|
|
5415
|
-
/** App tenant whose players may read this published entry. */
|
|
5416
|
-
appId: Scalars['BigInt']['output'];
|
|
5417
|
-
/** Stable common catalog entry UUID. */
|
|
5418
|
-
commonFileId: Scalars['String']['output'];
|
|
5419
|
-
/** Published UTF-8 source text for this immutable version. */
|
|
5420
|
-
content: Scalars['String']['output'];
|
|
5421
|
-
/** Lowercase SHA-256 digest of the exact UTF-8 content bytes. */
|
|
5422
|
-
contentSha256: Scalars['String']['output'];
|
|
5423
|
-
/** Catalog entry creation timestamp. */
|
|
5424
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5425
|
-
/** Optional studio-authored catalog description. */
|
|
5426
|
-
description: Maybe<Scalars['String']['output']>;
|
|
5427
|
-
/** Safe recommended project destination path. */
|
|
5428
|
-
path: Scalars['String']['output'];
|
|
5429
|
-
/** Timestamp when the current immutable version was published. */
|
|
5430
|
-
publishedAt: Scalars['DateTime']['output'];
|
|
5431
|
-
/** Studio user that published the current immutable version. */
|
|
5432
|
-
publishedByUserId: Scalars['BigInt']['output'];
|
|
5433
|
-
/** Stable lowercase URL-safe catalog slug. */
|
|
5434
|
-
slug: Scalars['String']['output'];
|
|
5435
|
-
/** Catalog lifecycle state; ordinary player queries expose only PUBLISHED. */
|
|
5436
|
-
status: PlayerCodeCommonStatus;
|
|
5437
|
-
/** Normalized studio-curated discovery tags. */
|
|
5438
|
-
tags: Array<Scalars['String']['output']>;
|
|
5439
|
-
/** Compatible project target for this catalog entry. */
|
|
5440
|
-
target: PlayerCodeTarget;
|
|
5441
|
-
/** Studio-authored catalog title. */
|
|
5442
|
-
title: Scalars['String']['output'];
|
|
5443
|
-
/** Timestamp of the latest catalog publication. */
|
|
5444
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5445
|
-
/** Current immutable content-version UUID. */
|
|
5446
|
-
versionId: Scalars['String']['output'];
|
|
5447
|
-
/** Monotonic immutable version number within the catalog entry. */
|
|
5448
|
-
versionNo: Scalars['BigInt']['output'];
|
|
5449
|
-
};
|
|
5450
|
-
/** Studio-controlled catalog visibility. Player catalog queries return only published entries. */
|
|
5451
|
-
export declare enum PlayerCodeCommonStatus {
|
|
5452
|
-
/** Retained for provenance but hidden from new player catalog reads and imports. */
|
|
5453
|
-
Archived = "ARCHIVED",
|
|
5454
|
-
/** Studio work in progress; hidden from player common-file queries. */
|
|
5455
|
-
Draft = "DRAFT",
|
|
5456
|
-
/** Available to app-scoped players for reading and copy-by-value import. */
|
|
5457
|
-
Published = "PUBLISHED"
|
|
5458
|
-
}
|
|
5459
|
-
/** How a project file entered the project. Imported content is copied by value; provenance is informational and does not create a live link. */
|
|
5460
|
-
export declare enum PlayerCodeFileProvenance {
|
|
5461
|
-
/** The owner authored or directly saved this project file. */
|
|
5462
|
-
Authored = "AUTHORED",
|
|
5463
|
-
/** The file was copied from a specific immutable version of the app’s studio-curated common catalog. */
|
|
5464
|
-
Common = "COMMON",
|
|
5465
|
-
/** The file was copied from a specific revision of the owner’s private personal library. */
|
|
5466
|
-
Library = "LIBRARY"
|
|
5467
|
-
}
|
|
5468
|
-
/** The source catalog used for a copy-by-value project file import. */
|
|
5469
|
-
export declare enum PlayerCodeImportSource {
|
|
5470
|
-
/** Import from an immutable published common-file version in the requested app. */
|
|
5471
|
-
Common = "COMMON",
|
|
5472
|
-
/** Import from a private personal-library file owned by the authenticated caller. */
|
|
5473
|
-
Library = "LIBRARY"
|
|
5474
|
-
}
|
|
5475
5605
|
/** An install of an acquired listing: the pinned version, the consent hash acknowledged, and (for server halves) the owned target grid. Installs pin their version; updating to a newer version is a new consent + install update, never automatic. */
|
|
5476
5606
|
export type PlayerCodeInstall = {
|
|
5477
5607
|
__typename?: 'PlayerCodeInstall';
|
|
@@ -5494,36 +5624,6 @@ export type PlayerCodeInstall = {
|
|
|
5494
5624
|
/** Owned grid the server half (and any bundled client attachment) was installed into; null for personal client-only installs. */
|
|
5495
5625
|
targetGridId: Maybe<Scalars['BigInt']['output']>;
|
|
5496
5626
|
};
|
|
5497
|
-
/** A reusable private text file in the authenticated player’s app-scoped personal library. */
|
|
5498
|
-
export type PlayerCodeLibraryFile = {
|
|
5499
|
-
__typename?: 'PlayerCodeLibraryFile';
|
|
5500
|
-
/** App tenant that isolates this private library entry. */
|
|
5501
|
-
appId: Scalars['BigInt']['output'];
|
|
5502
|
-
/** Whether this entry is archived and unavailable for new imports. */
|
|
5503
|
-
archived: Scalars['Boolean']['output'];
|
|
5504
|
-
/** Archive timestamp, or null while active. */
|
|
5505
|
-
archivedAt: Maybe<Scalars['DateTime']['output']>;
|
|
5506
|
-
/** Private UTF-8 source text, visible only to the app-scoped owner. */
|
|
5507
|
-
content: Scalars['String']['output'];
|
|
5508
|
-
/** Library entry creation timestamp. */
|
|
5509
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5510
|
-
/** Stable personal-library file UUID. */
|
|
5511
|
-
libraryFileId: Scalars['String']['output'];
|
|
5512
|
-
/** User that exclusively owns this library entry. */
|
|
5513
|
-
ownerUserId: Scalars['BigInt']['output'];
|
|
5514
|
-
/** Safe suggested destination path; imports may choose another safe path. */
|
|
5515
|
-
pathHint: Scalars['String']['output'];
|
|
5516
|
-
/** Monotonic optimistic-concurrency revision. */
|
|
5517
|
-
revision: Scalars['BigInt']['output'];
|
|
5518
|
-
/** Normalized search tags, each lowercase and hyphen-safe. */
|
|
5519
|
-
tags: Array<Scalars['String']['output']>;
|
|
5520
|
-
/** Compatible project target for this reusable file. */
|
|
5521
|
-
target: PlayerCodeTarget;
|
|
5522
|
-
/** Player-facing library title. */
|
|
5523
|
-
title: Scalars['String']['output'];
|
|
5524
|
-
/** Timestamp of the latest successful library mutation. */
|
|
5525
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5526
|
-
};
|
|
5527
5627
|
/** Source-access mode of a listing: CLOSED (artifacts + contracts only) or OPEN_SOURCE (source readable; irreversible per published version). */
|
|
5528
5628
|
export declare enum PlayerCodeLicenseMode {
|
|
5529
5629
|
Closed = "CLOSED",
|
|
@@ -5606,99 +5706,6 @@ export declare enum PlayerCodeOwnerKind {
|
|
|
5606
5706
|
Org = "ORG",
|
|
5607
5707
|
User = "USER"
|
|
5608
5708
|
}
|
|
5609
|
-
/** Editor preference describing how the project presents its server and client targets; it never grants deployment or runtime authority. */
|
|
5610
|
-
export declare enum PlayerCodePairingPreference {
|
|
5611
|
-
/** Present only the client-target authoring workflow. */
|
|
5612
|
-
ClientOnly = "CLIENT_ONLY",
|
|
5613
|
-
/** Present server and client sources independently without an implied requirement edge. */
|
|
5614
|
-
Independent = "INDEPENDENT",
|
|
5615
|
-
/** Present server and client sources as two coordinated halves of one mod. */
|
|
5616
|
-
Paired = "PAIRED",
|
|
5617
|
-
/** Present only the server-target authoring workflow. */
|
|
5618
|
-
ServerOnly = "SERVER_ONLY"
|
|
5619
|
-
}
|
|
5620
|
-
/** A private, revisioned Mod Studio project owned by one user in one app. Optional grid affinity and module names are authoring hints only; deployment still rechecks current grid ownership and target-specific permissions. */
|
|
5621
|
-
export type PlayerCodeProject = {
|
|
5622
|
-
__typename?: 'PlayerCodeProject';
|
|
5623
|
-
/** Pinned guest ABI version used when constructing deploy input. */
|
|
5624
|
-
abiVersion: Scalars['Int']['output'];
|
|
5625
|
-
/** App tenant that isolates this project and all of its source. */
|
|
5626
|
-
appId: Scalars['BigInt']['output'];
|
|
5627
|
-
/** Whether the project is archived. Archived projects remain private and retained but are read-only until unarchived. */
|
|
5628
|
-
archived: Scalars['Boolean']['output'];
|
|
5629
|
-
/** Archive timestamp, or null while the project is active. */
|
|
5630
|
-
archivedAt: Maybe<Scalars['DateTime']['output']>;
|
|
5631
|
-
/** Stable crate-style CLIENT module name used when the owner chooses to deploy, or null when unassigned. */
|
|
5632
|
-
clientModuleName: Maybe<Scalars['String']['output']>;
|
|
5633
|
-
/** Project creation timestamp. */
|
|
5634
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5635
|
-
/** Optional private project description. */
|
|
5636
|
-
description: Maybe<Scalars['String']['output']>;
|
|
5637
|
-
/** Total file count across both targets; each target is independently capped at eight. */
|
|
5638
|
-
fileCount: Scalars['Int']['output'];
|
|
5639
|
-
/** Private project files ordered by target and path. Bounded to eight files per target. */
|
|
5640
|
-
files: Array<PlayerCodeProjectFile>;
|
|
5641
|
-
/** Optional grid affinity. It survives a grid transfer and does not itself grant deploy authority. */
|
|
5642
|
-
gridId: Maybe<Scalars['BigInt']['output']>;
|
|
5643
|
-
/** Player-facing project name. */
|
|
5644
|
-
name: Scalars['String']['output'];
|
|
5645
|
-
/** User that exclusively owns and may read or modify this project source. */
|
|
5646
|
-
ownerUserId: Scalars['BigInt']['output'];
|
|
5647
|
-
/** Editor presentation preference for the two source targets. */
|
|
5648
|
-
pairingPreference: PlayerCodePairingPreference;
|
|
5649
|
-
/** Stable project UUID. */
|
|
5650
|
-
projectId: Scalars['String']['output'];
|
|
5651
|
-
/** Monotonic project revision required by optimistic metadata, file, import, and archive mutations. */
|
|
5652
|
-
revision: Scalars['BigInt']['output'];
|
|
5653
|
-
/** Pinned crowdy-compute-sdk version used when constructing deploy input. */
|
|
5654
|
-
sdkVersion: Scalars['String']['output'];
|
|
5655
|
-
/** Stable crate-style SERVER module name used when the owner chooses to deploy, or null when unassigned. */
|
|
5656
|
-
serverModuleName: Maybe<Scalars['String']['output']>;
|
|
5657
|
-
/** Total UTF-8 source bytes across both targets, bounded by target and aggregate owner quotas. */
|
|
5658
|
-
totalBytes: Scalars['BigInt']['output'];
|
|
5659
|
-
/** Timestamp of the latest successful project mutation. */
|
|
5660
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5661
|
-
};
|
|
5662
|
-
/** One private text file in a player-owned project. It is returned only when both app id and authenticated owner match the project. */
|
|
5663
|
-
export type PlayerCodeProjectFile = {
|
|
5664
|
-
__typename?: 'PlayerCodeProjectFile';
|
|
5665
|
-
/** Private UTF-8 source text. Grid ownership and studio permissions never override project ownership. */
|
|
5666
|
-
content: Scalars['String']['output'];
|
|
5667
|
-
/** Timestamp when this target/path entry was first created. */
|
|
5668
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5669
|
-
/** Safe compute-source relative path: Cargo.toml or a Rust file below src/. */
|
|
5670
|
-
path: Scalars['String']['output'];
|
|
5671
|
-
/** Copy provenance. Imported bytes remain unchanged if the source catalog entry later changes. */
|
|
5672
|
-
provenance: PlayerCodeFileProvenance;
|
|
5673
|
-
/** Immutable common-file version UUID copied into this file, or null when common provenance does not apply. */
|
|
5674
|
-
provenanceCommonVersionId: Maybe<Scalars['String']['output']>;
|
|
5675
|
-
/** Private library file UUID used for the copy, or null for authored/common content. */
|
|
5676
|
-
provenanceLibraryFileId: Maybe<Scalars['String']['output']>;
|
|
5677
|
-
/** Library revision copied into this file, or null when library provenance does not apply. */
|
|
5678
|
-
provenanceLibraryRevision: Maybe<Scalars['BigInt']['output']>;
|
|
5679
|
-
/** Monotonic revision of this target/path entry, incremented on every successful upsert. */
|
|
5680
|
-
revision: Scalars['BigInt']['output'];
|
|
5681
|
-
/** Server or client target whose independent 8-file/256-KiB deploy cap includes this file. */
|
|
5682
|
-
target: PlayerCodeTarget;
|
|
5683
|
-
/** Timestamp of the latest successful content/provenance save. */
|
|
5684
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5685
|
-
};
|
|
5686
|
-
/** A target/path key removed atomically by playerCodeProjectSaveFiles. */
|
|
5687
|
-
export type PlayerCodeProjectFileDeleteInput = {
|
|
5688
|
-
/** Safe relative path of the file to remove. */
|
|
5689
|
-
path: Scalars['String']['input'];
|
|
5690
|
-
/** Project target containing the file to remove. */
|
|
5691
|
-
target: PlayerCodeTarget;
|
|
5692
|
-
};
|
|
5693
|
-
/** One direct-authored initial or batch-upsert project file. Paths and UTF-8 bytes are validated against player-compute safety limits. */
|
|
5694
|
-
export type PlayerCodeProjectFileInput = {
|
|
5695
|
-
/** UTF-8 source text, capped at 64 KiB. */
|
|
5696
|
-
content: Scalars['String']['input'];
|
|
5697
|
-
/** Safe relative path: Cargo.toml or a .rs file below src/, with no traversal segments. */
|
|
5698
|
-
path: Scalars['String']['input'];
|
|
5699
|
-
/** Project target receiving this file. */
|
|
5700
|
-
target: PlayerCodeTarget;
|
|
5701
|
-
};
|
|
5702
5709
|
/** One explicit edge from a server artifact to the client artifact it requires within the same immutable marketplace bundle. */
|
|
5703
5710
|
export type PlayerCodeRequirement = {
|
|
5704
5711
|
__typename?: 'PlayerCodeRequirement';
|
|
@@ -5707,13 +5714,6 @@ export type PlayerCodeRequirement = {
|
|
|
5707
5714
|
/** Artifact hash of the SERVER half declaring the requirement. */
|
|
5708
5715
|
serverArtifactHash: Scalars['String']['output'];
|
|
5709
5716
|
};
|
|
5710
|
-
/** The independently capped source target inside a player-owned Mod Studio project. */
|
|
5711
|
-
export declare enum PlayerCodeTarget {
|
|
5712
|
-
/** Browser-worker Rust that can run only after the caller separately passes current grid ownership and write_client_code deployment checks. */
|
|
5713
|
-
Client = "CLIENT",
|
|
5714
|
-
/** Server-target Rust that can run only after the caller separately passes current grid ownership and write_server_code deployment checks. */
|
|
5715
|
-
Server = "SERVER"
|
|
5716
|
-
}
|
|
5717
5717
|
/** An immutable published version of a code listing. Snapshots ARTIFACT HASHES and explicit server-to-client requirements from the author’s compiled module versions — never source (OQ-1). */
|
|
5718
5718
|
export type PlayerCodeVersion = {
|
|
5719
5719
|
__typename?: 'PlayerCodeVersion';
|
|
@@ -6124,21 +6124,15 @@ export type PublishAppResult = {
|
|
|
6124
6124
|
/** True when the app uses a free org app-slot (under the quota). */
|
|
6125
6125
|
free: Scalars['Boolean']['output'];
|
|
6126
6126
|
};
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
force?: Scalars['Boolean']['input'];
|
|
6130
|
-
/** cks-game-api semver tag (e.g. v0.6.20). */
|
|
6131
|
-
gameApiTag: Scalars['String']['input'];
|
|
6132
|
-
};
|
|
6133
|
-
/** Publish a new immutable studio-curated common-file version. Requires the app manage_compute permission. */
|
|
6134
|
-
export type PublishPlayerCodeCommonFileInput = {
|
|
6127
|
+
/** Publish a new immutable Crowdy Studio-curated common-file version. Requires the app manage_compute permission. */
|
|
6128
|
+
export type PublishCrowdyStudioCommonFileInput = {
|
|
6135
6129
|
/** App tenant receiving the common entry; the token and manage_compute permission must cover this app. */
|
|
6136
6130
|
appId: Scalars['BigInt']['input'];
|
|
6137
6131
|
/** Existing common entry UUID to version; omit to create or version by slug. */
|
|
6138
6132
|
commonFileId?: InputMaybe<Scalars['String']['input']>;
|
|
6139
6133
|
/** UTF-8 source text for the new immutable version, capped at 64 KiB. */
|
|
6140
6134
|
content: Scalars['String']['input'];
|
|
6141
|
-
/** Optional
|
|
6135
|
+
/** Optional Crowdy Studio-authored catalog description. */
|
|
6142
6136
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6143
6137
|
/** Optional 24-hour retry key; strongly recommended to avoid duplicate versions after transport retries. */
|
|
6144
6138
|
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6149,10 +6143,16 @@ export type PublishPlayerCodeCommonFileInput = {
|
|
|
6149
6143
|
/** Optional unique lowercase discovery tags; at most 16. */
|
|
6150
6144
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6151
6145
|
/** Compatible project target for this common file. */
|
|
6152
|
-
target:
|
|
6153
|
-
/** Studio-authored catalog title. */
|
|
6146
|
+
target: CrowdyStudioTarget;
|
|
6147
|
+
/** Crowdy Studio-authored catalog title. */
|
|
6154
6148
|
title: Scalars['String']['input'];
|
|
6155
6149
|
};
|
|
6150
|
+
export type PublishEnvironmentReleaseFromGameApiTagInput = {
|
|
6151
|
+
/** Overwrite an existing environment version row if it already exists. */
|
|
6152
|
+
force?: Scalars['Boolean']['input'];
|
|
6153
|
+
/** cks-game-api semver tag (e.g. v0.6.20). */
|
|
6154
|
+
gameApiTag: Scalars['String']['input'];
|
|
6155
|
+
};
|
|
6156
6156
|
export type PublishPlayerCodeInput = {
|
|
6157
6157
|
/** App the listing belongs to. */
|
|
6158
6158
|
appId: Scalars['BigInt']['input'];
|
|
@@ -6321,6 +6321,14 @@ export type Query = {
|
|
|
6321
6321
|
cpUnreleasedGameApiTags: CpUnreleasedGameApiTagsPage;
|
|
6322
6322
|
/** Operator only (is_operator). Per-minute usage summary for any environment by slug (operator equivalent of environmentUsageSummary, not org-scoped). Read-only. */
|
|
6323
6323
|
cpUsageSummary: CpUsageSummary;
|
|
6324
|
+
/** List the current immutable versions of published Crowdy Studio-curated common files for one app. Requires an app-scoped token for appId; unlike private player source, this catalog content is intentionally readable by players in that app. Results are bounded and may be filtered by target. */
|
|
6325
|
+
crowdyStudioCommonFiles: Array<CrowdyStudioCommonFile>;
|
|
6326
|
+
/** List the authenticated player’s private reusable Crowdy Studio source files in one app. Requires an app-scoped token for appId; cross-user entries are never visible, including to grid owners or Crowdy Studio operators. The bounded result defaults to 50. */
|
|
6327
|
+
crowdyStudioLibraryFiles: Array<CrowdyStudioLibraryFile>;
|
|
6328
|
+
/** Load one private Crowdy Studio project with all bounded source files. Requires an app-scoped token for appId and exact caller ownership; missing, cross-app, and cross-user ids all return the same NOT_FOUND shape. Grid owners and Crowdy Studio operators receive no source override. */
|
|
6329
|
+
crowdyStudioProject: CrowdyStudioProject;
|
|
6330
|
+
/** List the authenticated player’s private Crowdy Studio projects in one app, newest first. Requires an app-scoped token for appId; every row and source-file read is filtered by both app and caller ownership. The bounded result defaults to 25 and never grants grid deployment authority. */
|
|
6331
|
+
crowdyStudioProjects: Array<CrowdyStudioProject>;
|
|
6324
6332
|
/** Resolves the single most-specific quota that applies to the given (tierId, appId, orgId, metric) by walking tier -> app -> org -> free-tier defaults and returning the first match; its limitValue/period describe the enforced limit. Returns null if no matching rule and no free-tier default exist for the metric. Requires the 'view_usage' permission on the most-specific scope provided: tierId or appId -> 'view_usage' on the (owning) app; orgId -> 'view_usage' on the org. A metric-only query (no scope ids) resolves the platform free-tier default and only requires an authenticated user. */
|
|
6325
6333
|
effectiveQuota: Maybe<ServiceQuota>;
|
|
6326
6334
|
/** OVH datacenters that have at least one customer-priced instance flavor available for customer selection. */
|
|
@@ -6509,18 +6517,10 @@ export type Query = {
|
|
|
6509
6517
|
playerAutomations: Array<PlayerAutomation>;
|
|
6510
6518
|
/** Fetch client WASM for an entitled marketplace install or an exact marketplace/self-authored grid attachment. Attachment fetches require current in-grid presence plus matching attachment consent or capability-bound author trust; self-authored code uses module/author admission rather than a synthetic listing. Every factor, including run_client_code, Buddy lease when enabled, and kill switches, fails closed as 'not found'. */
|
|
6511
6519
|
playerCodeClientArtifact: PlayerClientArtifact;
|
|
6512
|
-
/** List the current immutable versions of published studio-curated common files for one app. Requires an app-scoped token for appId; unlike private player source, this catalog content is intentionally readable by players in that app. Results are bounded and may be filtered by target. */
|
|
6513
|
-
playerCodeCommonFiles: Array<PlayerCodeCommonFile>;
|
|
6514
|
-
/** List the authenticated player’s private reusable source files in one app. Requires an app-scoped token for appId; cross-user entries are never visible, including to grid owners or studio operators. The bounded result defaults to 50. */
|
|
6515
|
-
playerCodeLibraryFiles: Array<PlayerCodeLibraryFile>;
|
|
6516
6520
|
/** List the immutable published versions of a listing, newest first, with each version’s derived capability summary and consent hash. */
|
|
6517
6521
|
playerCodeListingVersions: Array<PlayerCodeListingVersion>;
|
|
6518
6522
|
/** Browse an app's active marketplace code listings (free mode). Each listing carries its admission standing: in allow_list apps a PENDING listing can be acquired but not installed. Closed-source listings expose artifact hashes and the derived capability summary only — never source. */
|
|
6519
6523
|
playerCodeListings: Array<PlayerCodeListing>;
|
|
6520
|
-
/** Load one private Mod Studio project with all bounded source files. Requires an app-scoped token for appId and exact caller ownership; missing, cross-app, and cross-user ids all return the same NOT_FOUND shape. Grid owners and studio operators receive no source override. */
|
|
6521
|
-
playerCodeProject: PlayerCodeProject;
|
|
6522
|
-
/** List the authenticated player’s private Mod Studio projects in one app, newest first. Requires an app-scoped token for appId; every row and source-file read is filtered by both app and caller ownership. The bounded result defaults to 25 and never grants grid deployment authority. */
|
|
6523
|
-
playerCodeProjects: Array<PlayerCodeProject>;
|
|
6524
6524
|
/** Fetch a compiled CLIENT player artifact plus the metadata the browser broker needs to run it (player compute P3). Fail-closed: the caller must currently own the grid, be the version's author, hold run_client_code at app and grid scope, and the code must be admitted under the app's mode. Returns the gas-injected wasm bytes (base64), the declared client contract, and the per-dispatch fuel budget the glue worker enforces. Acquired (bought/rented) client code is served through the marketplace path in a later phase. */
|
|
6525
6525
|
playerComputeArtifact: PlayerClientArtifact;
|
|
6526
6526
|
/** Failed-run diagnostics for player modules on a grid the caller currently owns: the failing runs with their typed error kinds, newest first. The owner-scoped twin of computeModuleLogs. */
|
|
@@ -6833,6 +6833,28 @@ export type QueryCpUsageSummaryArgs = {
|
|
|
6833
6833
|
environmentSlug: Scalars['String']['input'];
|
|
6834
6834
|
since: Scalars['DateTime']['input'];
|
|
6835
6835
|
};
|
|
6836
|
+
export type QueryCrowdyStudioCommonFilesArgs = {
|
|
6837
|
+
appId: Scalars['BigInt']['input'];
|
|
6838
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6839
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6840
|
+
target?: InputMaybe<CrowdyStudioTarget>;
|
|
6841
|
+
};
|
|
6842
|
+
export type QueryCrowdyStudioLibraryFilesArgs = {
|
|
6843
|
+
appId: Scalars['BigInt']['input'];
|
|
6844
|
+
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6845
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6846
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6847
|
+
};
|
|
6848
|
+
export type QueryCrowdyStudioProjectArgs = {
|
|
6849
|
+
appId: Scalars['BigInt']['input'];
|
|
6850
|
+
projectId: Scalars['String']['input'];
|
|
6851
|
+
};
|
|
6852
|
+
export type QueryCrowdyStudioProjectsArgs = {
|
|
6853
|
+
appId: Scalars['BigInt']['input'];
|
|
6854
|
+
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6855
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6856
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6857
|
+
};
|
|
6836
6858
|
export type QueryEffectiveQuotaArgs = {
|
|
6837
6859
|
appId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
6838
6860
|
metric: Scalars['String']['input'];
|
|
@@ -7115,34 +7137,12 @@ export type QueryPlayerCodeClientArtifactArgs = {
|
|
|
7115
7137
|
listingId?: InputMaybe<Scalars['String']['input']>;
|
|
7116
7138
|
versionId?: InputMaybe<Scalars['String']['input']>;
|
|
7117
7139
|
};
|
|
7118
|
-
export type QueryPlayerCodeCommonFilesArgs = {
|
|
7119
|
-
appId: Scalars['BigInt']['input'];
|
|
7120
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7121
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7122
|
-
target?: InputMaybe<PlayerCodeTarget>;
|
|
7123
|
-
};
|
|
7124
|
-
export type QueryPlayerCodeLibraryFilesArgs = {
|
|
7125
|
-
appId: Scalars['BigInt']['input'];
|
|
7126
|
-
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7127
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7128
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7129
|
-
};
|
|
7130
7140
|
export type QueryPlayerCodeListingVersionsArgs = {
|
|
7131
7141
|
appId: Scalars['BigInt']['input'];
|
|
7132
|
-
listingId: Scalars['String']['input'];
|
|
7133
|
-
};
|
|
7134
|
-
export type QueryPlayerCodeListingsArgs = {
|
|
7135
|
-
appId: Scalars['BigInt']['input'];
|
|
7136
|
-
};
|
|
7137
|
-
export type QueryPlayerCodeProjectArgs = {
|
|
7138
|
-
appId: Scalars['BigInt']['input'];
|
|
7139
|
-
projectId: Scalars['String']['input'];
|
|
7142
|
+
listingId: Scalars['String']['input'];
|
|
7140
7143
|
};
|
|
7141
|
-
export type
|
|
7144
|
+
export type QueryPlayerCodeListingsArgs = {
|
|
7142
7145
|
appId: Scalars['BigInt']['input'];
|
|
7143
|
-
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7144
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7145
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7146
7146
|
};
|
|
7147
7147
|
export type QueryPlayerComputeArtifactArgs = {
|
|
7148
7148
|
appId: Scalars['BigInt']['input'];
|
|
@@ -7420,7 +7420,7 @@ export type RollbackVoxelUpdatesInput = {
|
|
|
7420
7420
|
userId: Scalars['BigInt']['input'];
|
|
7421
7421
|
};
|
|
7422
7422
|
/** Create or optimistically update one private reusable personal-library file. */
|
|
7423
|
-
export type
|
|
7423
|
+
export type SaveCrowdyStudioLibraryFileInput = {
|
|
7424
7424
|
/** App tenant. Requires an app-scoped token; ownership is always the authenticated user. */
|
|
7425
7425
|
appId: Scalars['BigInt']['input'];
|
|
7426
7426
|
/** Private UTF-8 source text, capped at 64 KiB. */
|
|
@@ -7436,16 +7436,16 @@ export type SavePlayerCodeLibraryFileInput = {
|
|
|
7436
7436
|
/** Optional unique lowercase discovery tags; at most 16, each at most 32 characters. */
|
|
7437
7437
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7438
7438
|
/** Compatible project target for this reusable file. */
|
|
7439
|
-
target:
|
|
7439
|
+
target: CrowdyStudioTarget;
|
|
7440
7440
|
/** Player-facing library title. */
|
|
7441
7441
|
title: Scalars['String']['input'];
|
|
7442
7442
|
};
|
|
7443
7443
|
/** Atomically upsert and delete a private project’s text files under one expected project revision. */
|
|
7444
|
-
export type
|
|
7444
|
+
export type SaveCrowdyStudioProjectFilesInput = {
|
|
7445
7445
|
/** App tenant that owns the private project. */
|
|
7446
7446
|
appId: Scalars['BigInt']['input'];
|
|
7447
7447
|
/** Files to remove in the same transaction. A target/path cannot also appear in upserts. */
|
|
7448
|
-
deletes?: InputMaybe<Array<
|
|
7448
|
+
deletes?: InputMaybe<Array<CrowdyStudioProjectFileDeleteInput>>;
|
|
7449
7449
|
/** Current project revision used for optimistic concurrency across the entire batch. */
|
|
7450
7450
|
expectedRevision: Scalars['BigInt']['input'];
|
|
7451
7451
|
/** Optional 24-hour retry key; recommended because a successful batch increments the expected revision. */
|
|
@@ -7453,10 +7453,10 @@ export type SavePlayerCodeProjectFilesInput = {
|
|
|
7453
7453
|
/** Project UUID to mutate. */
|
|
7454
7454
|
projectId: Scalars['String']['input'];
|
|
7455
7455
|
/** Files to insert or replace. The batch commits only if all paths and post-save caps are valid. */
|
|
7456
|
-
upserts?: InputMaybe<Array<
|
|
7456
|
+
upserts?: InputMaybe<Array<CrowdyStudioProjectFileInput>>;
|
|
7457
7457
|
};
|
|
7458
|
-
/** Atomically save selected project metadata plus a batch of file upserts/deletes under one expected project revision.
|
|
7459
|
-
export type
|
|
7458
|
+
/** Atomically save selected project metadata plus a batch of file upserts/deletes under one expected project revision. Crowdy Studio uses this to persist one coherent full-stack edit. */
|
|
7459
|
+
export type SaveCrowdyStudioProjectInput = {
|
|
7460
7460
|
/** New supported ABI pin, or omit to preserve. */
|
|
7461
7461
|
abiVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
7462
7462
|
/** App tenant that owns the private project. */
|
|
@@ -7464,10 +7464,10 @@ export type SavePlayerCodeProjectInput = {
|
|
|
7464
7464
|
/** New CLIENT module name, explicit null to clear, or omit to preserve. */
|
|
7465
7465
|
clientModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
7466
7466
|
/** Files to delete in the same transaction. A target/path cannot also appear in upserts. */
|
|
7467
|
-
deletes?: InputMaybe<Array<
|
|
7467
|
+
deletes?: InputMaybe<Array<CrowdyStudioProjectFileDeleteInput>>;
|
|
7468
7468
|
/** New private description, explicit null to clear, or omit to preserve. */
|
|
7469
7469
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7470
|
-
/** Current project revision. A stale value returns CONFLICT with
|
|
7470
|
+
/** Current project revision. A stale value returns CONFLICT with CROWDY_STUDIO_REVISION_CONFLICT and applies no metadata or file writes. */
|
|
7471
7471
|
expectedRevision: Scalars['BigInt']['input'];
|
|
7472
7472
|
/** New optional grid affinity, explicit null to clear, or omit to preserve. Affinity never grants deploy authority. */
|
|
7473
7473
|
gridId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -7476,7 +7476,7 @@ export type SavePlayerCodeProjectInput = {
|
|
|
7476
7476
|
/** New non-empty project name, or omit to preserve. */
|
|
7477
7477
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7478
7478
|
/** New editor pairing preference, or omit to preserve. */
|
|
7479
|
-
pairingPreference?: InputMaybe<
|
|
7479
|
+
pairingPreference?: InputMaybe<CrowdyStudioPairingPreference>;
|
|
7480
7480
|
/** Project UUID to update. */
|
|
7481
7481
|
projectId: Scalars['String']['input'];
|
|
7482
7482
|
/** New supported SDK pin, or omit to preserve. */
|
|
@@ -7484,10 +7484,10 @@ export type SavePlayerCodeProjectInput = {
|
|
|
7484
7484
|
/** New SERVER module name, explicit null to clear, or omit to preserve. */
|
|
7485
7485
|
serverModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
7486
7486
|
/** Changed or new files to insert/replace. Unmentioned files and their provenance remain unchanged. */
|
|
7487
|
-
upserts?: InputMaybe<Array<
|
|
7487
|
+
upserts?: InputMaybe<Array<CrowdyStudioProjectFileInput>>;
|
|
7488
7488
|
};
|
|
7489
7489
|
/** Optimistically save selected project metadata. Omitted fields remain unchanged; explicit null clears nullable metadata. */
|
|
7490
|
-
export type
|
|
7490
|
+
export type SaveCrowdyStudioProjectMetadataInput = {
|
|
7491
7491
|
/** New supported ABI pin, or omit to preserve. */
|
|
7492
7492
|
abiVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
7493
7493
|
/** App tenant that owns the private project. */
|
|
@@ -7496,7 +7496,7 @@ export type SavePlayerCodeProjectMetadataInput = {
|
|
|
7496
7496
|
clientModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
7497
7497
|
/** New private description, explicit null to clear, or omit to preserve. */
|
|
7498
7498
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7499
|
-
/** Current project revision. A stale value returns CONFLICT with
|
|
7499
|
+
/** Current project revision. A stale value returns CONFLICT with CROWDY_STUDIO_REVISION_CONFLICT. */
|
|
7500
7500
|
expectedRevision: Scalars['BigInt']['input'];
|
|
7501
7501
|
/** New optional grid affinity, explicit null to clear, or omit to preserve. Affinity never grants deploy authority. */
|
|
7502
7502
|
gridId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -7505,7 +7505,7 @@ export type SavePlayerCodeProjectMetadataInput = {
|
|
|
7505
7505
|
/** New project name, or omit to preserve. */
|
|
7506
7506
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7507
7507
|
/** New editor pairing preference, or omit to preserve. */
|
|
7508
|
-
pairingPreference?: InputMaybe<
|
|
7508
|
+
pairingPreference?: InputMaybe<CrowdyStudioPairingPreference>;
|
|
7509
7509
|
/** Project UUID to update. */
|
|
7510
7510
|
projectId: Scalars['String']['input'];
|
|
7511
7511
|
/** New supported SDK pin, or omit to preserve. */
|
|
@@ -7906,6 +7906,32 @@ export type SetContainerPropertyInput = {
|
|
|
7906
7906
|
/** The value type being written (must match the property definition). */
|
|
7907
7907
|
valueType: Scalars['String']['input'];
|
|
7908
7908
|
};
|
|
7909
|
+
/** Optimistically archive or restore one caller-owned personal-library file. */
|
|
7910
|
+
export type SetCrowdyStudioLibraryFileArchivedInput = {
|
|
7911
|
+
/** App tenant that owns the private library entry. */
|
|
7912
|
+
appId: Scalars['BigInt']['input'];
|
|
7913
|
+
/** True to archive; false to make the entry active again. */
|
|
7914
|
+
archived: Scalars['Boolean']['input'];
|
|
7915
|
+
/** Current library revision required for optimistic concurrency. */
|
|
7916
|
+
expectedRevision: Scalars['BigInt']['input'];
|
|
7917
|
+
/** Optional 24-hour retry key. */
|
|
7918
|
+
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
7919
|
+
/** Personal-library file UUID. */
|
|
7920
|
+
libraryFileId: Scalars['String']['input'];
|
|
7921
|
+
};
|
|
7922
|
+
/** Optimistically archive or unarchive one private project without deleting its files or provenance. */
|
|
7923
|
+
export type SetCrowdyStudioProjectArchivedInput = {
|
|
7924
|
+
/** App tenant that owns the private project. */
|
|
7925
|
+
appId: Scalars['BigInt']['input'];
|
|
7926
|
+
/** True to archive; false to restore the project. */
|
|
7927
|
+
archived: Scalars['Boolean']['input'];
|
|
7928
|
+
/** Current project revision required for optimistic concurrency. */
|
|
7929
|
+
expectedRevision: Scalars['BigInt']['input'];
|
|
7930
|
+
/** Optional 24-hour retry key. */
|
|
7931
|
+
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
7932
|
+
/** Project UUID to archive or restore. */
|
|
7933
|
+
projectId: Scalars['String']['input'];
|
|
7934
|
+
};
|
|
7909
7935
|
/** Set the app's game-model runtime policy. */
|
|
7910
7936
|
export type SetGameModelPolicyInput = {
|
|
7911
7937
|
/** The app (tenant) whose policy to set. */
|
|
@@ -7962,32 +7988,6 @@ export type SetPlayerAutomationEnabledInput = {
|
|
|
7962
7988
|
/** Grid that confines the automation. */
|
|
7963
7989
|
gridId: Scalars['BigInt']['input'];
|
|
7964
7990
|
};
|
|
7965
|
-
/** Optimistically archive or restore one caller-owned personal-library file. */
|
|
7966
|
-
export type SetPlayerCodeLibraryFileArchivedInput = {
|
|
7967
|
-
/** App tenant that owns the private library entry. */
|
|
7968
|
-
appId: Scalars['BigInt']['input'];
|
|
7969
|
-
/** True to archive; false to make the entry active again. */
|
|
7970
|
-
archived: Scalars['Boolean']['input'];
|
|
7971
|
-
/** Current library revision required for optimistic concurrency. */
|
|
7972
|
-
expectedRevision: Scalars['BigInt']['input'];
|
|
7973
|
-
/** Optional 24-hour retry key. */
|
|
7974
|
-
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
7975
|
-
/** Personal-library file UUID. */
|
|
7976
|
-
libraryFileId: Scalars['String']['input'];
|
|
7977
|
-
};
|
|
7978
|
-
/** Optimistically archive or unarchive one private project without deleting its files or provenance. */
|
|
7979
|
-
export type SetPlayerCodeProjectArchivedInput = {
|
|
7980
|
-
/** App tenant that owns the private project. */
|
|
7981
|
-
appId: Scalars['BigInt']['input'];
|
|
7982
|
-
/** True to archive; false to restore the project. */
|
|
7983
|
-
archived: Scalars['Boolean']['input'];
|
|
7984
|
-
/** Current project revision required for optimistic concurrency. */
|
|
7985
|
-
expectedRevision: Scalars['BigInt']['input'];
|
|
7986
|
-
/** Optional 24-hour retry key. */
|
|
7987
|
-
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
7988
|
-
/** Project UUID to archive or restore. */
|
|
7989
|
-
projectId: Scalars['String']['input'];
|
|
7990
|
-
};
|
|
7991
7991
|
/** Set one arbitrary JSON property on a player-owned container. The caller must currently own the specified grid and container. */
|
|
7992
7992
|
export type SetPlayerModelPropertyInput = {
|
|
7993
7993
|
/** App containing the owned grid. */
|
|
@@ -11776,7 +11776,299 @@ export type CpSetComputePlatformCeilingsMutation = {
|
|
|
11776
11776
|
maxEgressMsgsPerMin: number | null;
|
|
11777
11777
|
maxEgressBytesPerMin: string | null;
|
|
11778
11778
|
updatedAt: string;
|
|
11779
|
-
updatedByUserId: string | null;
|
|
11779
|
+
updatedByUserId: string | null;
|
|
11780
|
+
};
|
|
11781
|
+
};
|
|
11782
|
+
export type CrowdyStudioProjectFieldsFragment = {
|
|
11783
|
+
__typename?: 'CrowdyStudioProject';
|
|
11784
|
+
projectId: string;
|
|
11785
|
+
appId: string;
|
|
11786
|
+
ownerUserId: string;
|
|
11787
|
+
gridId: string | null;
|
|
11788
|
+
name: string;
|
|
11789
|
+
description: string | null;
|
|
11790
|
+
serverModuleName: string | null;
|
|
11791
|
+
clientModuleName: string | null;
|
|
11792
|
+
pairingPreference: CrowdyStudioPairingPreference;
|
|
11793
|
+
sdkVersion: string;
|
|
11794
|
+
abiVersion: number;
|
|
11795
|
+
revision: string;
|
|
11796
|
+
archived: boolean;
|
|
11797
|
+
archivedAt: string | null;
|
|
11798
|
+
fileCount: number;
|
|
11799
|
+
totalBytes: string;
|
|
11800
|
+
createdAt: string;
|
|
11801
|
+
updatedAt: string;
|
|
11802
|
+
files: Array<{
|
|
11803
|
+
__typename?: 'CrowdyStudioProjectFile';
|
|
11804
|
+
target: CrowdyStudioTarget;
|
|
11805
|
+
path: string;
|
|
11806
|
+
content: string;
|
|
11807
|
+
revision: string;
|
|
11808
|
+
provenance: CrowdyStudioFileProvenance;
|
|
11809
|
+
provenanceLibraryFileId: string | null;
|
|
11810
|
+
provenanceLibraryRevision: string | null;
|
|
11811
|
+
provenanceCommonVersionId: string | null;
|
|
11812
|
+
createdAt: string;
|
|
11813
|
+
updatedAt: string;
|
|
11814
|
+
}>;
|
|
11815
|
+
};
|
|
11816
|
+
export type CrowdyStudioProjectsQueryVariables = Exact<{
|
|
11817
|
+
appId: Scalars['BigInt']['input'];
|
|
11818
|
+
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11819
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
11820
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
11821
|
+
}>;
|
|
11822
|
+
export type CrowdyStudioProjectsQuery = {
|
|
11823
|
+
__typename?: 'Query';
|
|
11824
|
+
crowdyStudioProjects: Array<{
|
|
11825
|
+
__typename?: 'CrowdyStudioProject';
|
|
11826
|
+
projectId: string;
|
|
11827
|
+
gridId: string | null;
|
|
11828
|
+
name: string;
|
|
11829
|
+
serverModuleName: string | null;
|
|
11830
|
+
clientModuleName: string | null;
|
|
11831
|
+
pairingPreference: CrowdyStudioPairingPreference;
|
|
11832
|
+
revision: string;
|
|
11833
|
+
archived: boolean;
|
|
11834
|
+
updatedAt: string;
|
|
11835
|
+
}>;
|
|
11836
|
+
};
|
|
11837
|
+
export type CrowdyStudioProjectQueryVariables = Exact<{
|
|
11838
|
+
appId: Scalars['BigInt']['input'];
|
|
11839
|
+
projectId: Scalars['String']['input'];
|
|
11840
|
+
}>;
|
|
11841
|
+
export type CrowdyStudioProjectQuery = {
|
|
11842
|
+
__typename?: 'Query';
|
|
11843
|
+
crowdyStudioProject: {
|
|
11844
|
+
__typename?: 'CrowdyStudioProject';
|
|
11845
|
+
projectId: string;
|
|
11846
|
+
appId: string;
|
|
11847
|
+
ownerUserId: string;
|
|
11848
|
+
gridId: string | null;
|
|
11849
|
+
name: string;
|
|
11850
|
+
description: string | null;
|
|
11851
|
+
serverModuleName: string | null;
|
|
11852
|
+
clientModuleName: string | null;
|
|
11853
|
+
pairingPreference: CrowdyStudioPairingPreference;
|
|
11854
|
+
sdkVersion: string;
|
|
11855
|
+
abiVersion: number;
|
|
11856
|
+
revision: string;
|
|
11857
|
+
archived: boolean;
|
|
11858
|
+
archivedAt: string | null;
|
|
11859
|
+
fileCount: number;
|
|
11860
|
+
totalBytes: string;
|
|
11861
|
+
createdAt: string;
|
|
11862
|
+
updatedAt: string;
|
|
11863
|
+
files: Array<{
|
|
11864
|
+
__typename?: 'CrowdyStudioProjectFile';
|
|
11865
|
+
target: CrowdyStudioTarget;
|
|
11866
|
+
path: string;
|
|
11867
|
+
content: string;
|
|
11868
|
+
revision: string;
|
|
11869
|
+
provenance: CrowdyStudioFileProvenance;
|
|
11870
|
+
provenanceLibraryFileId: string | null;
|
|
11871
|
+
provenanceLibraryRevision: string | null;
|
|
11872
|
+
provenanceCommonVersionId: string | null;
|
|
11873
|
+
createdAt: string;
|
|
11874
|
+
updatedAt: string;
|
|
11875
|
+
}>;
|
|
11876
|
+
};
|
|
11877
|
+
};
|
|
11878
|
+
export type CrowdyStudioProjectCreateMutationVariables = Exact<{
|
|
11879
|
+
input: CreateCrowdyStudioProjectInput;
|
|
11880
|
+
}>;
|
|
11881
|
+
export type CrowdyStudioProjectCreateMutation = {
|
|
11882
|
+
__typename?: 'Mutation';
|
|
11883
|
+
crowdyStudioProjectCreate: {
|
|
11884
|
+
__typename?: 'CrowdyStudioProject';
|
|
11885
|
+
projectId: string;
|
|
11886
|
+
appId: string;
|
|
11887
|
+
ownerUserId: string;
|
|
11888
|
+
gridId: string | null;
|
|
11889
|
+
name: string;
|
|
11890
|
+
description: string | null;
|
|
11891
|
+
serverModuleName: string | null;
|
|
11892
|
+
clientModuleName: string | null;
|
|
11893
|
+
pairingPreference: CrowdyStudioPairingPreference;
|
|
11894
|
+
sdkVersion: string;
|
|
11895
|
+
abiVersion: number;
|
|
11896
|
+
revision: string;
|
|
11897
|
+
archived: boolean;
|
|
11898
|
+
archivedAt: string | null;
|
|
11899
|
+
fileCount: number;
|
|
11900
|
+
totalBytes: string;
|
|
11901
|
+
createdAt: string;
|
|
11902
|
+
updatedAt: string;
|
|
11903
|
+
files: Array<{
|
|
11904
|
+
__typename?: 'CrowdyStudioProjectFile';
|
|
11905
|
+
target: CrowdyStudioTarget;
|
|
11906
|
+
path: string;
|
|
11907
|
+
content: string;
|
|
11908
|
+
revision: string;
|
|
11909
|
+
provenance: CrowdyStudioFileProvenance;
|
|
11910
|
+
provenanceLibraryFileId: string | null;
|
|
11911
|
+
provenanceLibraryRevision: string | null;
|
|
11912
|
+
provenanceCommonVersionId: string | null;
|
|
11913
|
+
createdAt: string;
|
|
11914
|
+
updatedAt: string;
|
|
11915
|
+
}>;
|
|
11916
|
+
};
|
|
11917
|
+
};
|
|
11918
|
+
export type CrowdyStudioProjectSaveMutationVariables = Exact<{
|
|
11919
|
+
input: SaveCrowdyStudioProjectInput;
|
|
11920
|
+
}>;
|
|
11921
|
+
export type CrowdyStudioProjectSaveMutation = {
|
|
11922
|
+
__typename?: 'Mutation';
|
|
11923
|
+
crowdyStudioProjectSave: {
|
|
11924
|
+
__typename?: 'CrowdyStudioProject';
|
|
11925
|
+
projectId: string;
|
|
11926
|
+
appId: string;
|
|
11927
|
+
ownerUserId: string;
|
|
11928
|
+
gridId: string | null;
|
|
11929
|
+
name: string;
|
|
11930
|
+
description: string | null;
|
|
11931
|
+
serverModuleName: string | null;
|
|
11932
|
+
clientModuleName: string | null;
|
|
11933
|
+
pairingPreference: CrowdyStudioPairingPreference;
|
|
11934
|
+
sdkVersion: string;
|
|
11935
|
+
abiVersion: number;
|
|
11936
|
+
revision: string;
|
|
11937
|
+
archived: boolean;
|
|
11938
|
+
archivedAt: string | null;
|
|
11939
|
+
fileCount: number;
|
|
11940
|
+
totalBytes: string;
|
|
11941
|
+
createdAt: string;
|
|
11942
|
+
updatedAt: string;
|
|
11943
|
+
files: Array<{
|
|
11944
|
+
__typename?: 'CrowdyStudioProjectFile';
|
|
11945
|
+
target: CrowdyStudioTarget;
|
|
11946
|
+
path: string;
|
|
11947
|
+
content: string;
|
|
11948
|
+
revision: string;
|
|
11949
|
+
provenance: CrowdyStudioFileProvenance;
|
|
11950
|
+
provenanceLibraryFileId: string | null;
|
|
11951
|
+
provenanceLibraryRevision: string | null;
|
|
11952
|
+
provenanceCommonVersionId: string | null;
|
|
11953
|
+
createdAt: string;
|
|
11954
|
+
updatedAt: string;
|
|
11955
|
+
}>;
|
|
11956
|
+
};
|
|
11957
|
+
};
|
|
11958
|
+
export type CrowdyStudioLibraryFilesQueryVariables = Exact<{
|
|
11959
|
+
appId: Scalars['BigInt']['input'];
|
|
11960
|
+
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11961
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
11962
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
11963
|
+
}>;
|
|
11964
|
+
export type CrowdyStudioLibraryFilesQuery = {
|
|
11965
|
+
__typename?: 'Query';
|
|
11966
|
+
crowdyStudioLibraryFiles: Array<{
|
|
11967
|
+
__typename?: 'CrowdyStudioLibraryFile';
|
|
11968
|
+
libraryFileId: string;
|
|
11969
|
+
appId: string;
|
|
11970
|
+
ownerUserId: string;
|
|
11971
|
+
title: string;
|
|
11972
|
+
pathHint: string;
|
|
11973
|
+
target: CrowdyStudioTarget;
|
|
11974
|
+
tags: Array<string>;
|
|
11975
|
+
content: string;
|
|
11976
|
+
revision: string;
|
|
11977
|
+
archived: boolean;
|
|
11978
|
+
archivedAt: string | null;
|
|
11979
|
+
createdAt: string;
|
|
11980
|
+
updatedAt: string;
|
|
11981
|
+
}>;
|
|
11982
|
+
};
|
|
11983
|
+
export type CrowdyStudioLibrarySaveMutationVariables = Exact<{
|
|
11984
|
+
input: SaveCrowdyStudioLibraryFileInput;
|
|
11985
|
+
}>;
|
|
11986
|
+
export type CrowdyStudioLibrarySaveMutation = {
|
|
11987
|
+
__typename?: 'Mutation';
|
|
11988
|
+
crowdyStudioLibrarySave: {
|
|
11989
|
+
__typename?: 'CrowdyStudioLibraryFile';
|
|
11990
|
+
libraryFileId: string;
|
|
11991
|
+
appId: string;
|
|
11992
|
+
ownerUserId: string;
|
|
11993
|
+
title: string;
|
|
11994
|
+
pathHint: string;
|
|
11995
|
+
target: CrowdyStudioTarget;
|
|
11996
|
+
tags: Array<string>;
|
|
11997
|
+
content: string;
|
|
11998
|
+
revision: string;
|
|
11999
|
+
archived: boolean;
|
|
12000
|
+
archivedAt: string | null;
|
|
12001
|
+
createdAt: string;
|
|
12002
|
+
updatedAt: string;
|
|
12003
|
+
};
|
|
12004
|
+
};
|
|
12005
|
+
export type CrowdyStudioCommonFilesQueryVariables = Exact<{
|
|
12006
|
+
appId: Scalars['BigInt']['input'];
|
|
12007
|
+
target?: InputMaybe<CrowdyStudioTarget>;
|
|
12008
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
12009
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
12010
|
+
}>;
|
|
12011
|
+
export type CrowdyStudioCommonFilesQuery = {
|
|
12012
|
+
__typename?: 'Query';
|
|
12013
|
+
crowdyStudioCommonFiles: Array<{
|
|
12014
|
+
__typename?: 'CrowdyStudioCommonFile';
|
|
12015
|
+
commonFileId: string;
|
|
12016
|
+
appId: string;
|
|
12017
|
+
slug: string;
|
|
12018
|
+
title: string;
|
|
12019
|
+
description: string | null;
|
|
12020
|
+
path: string;
|
|
12021
|
+
target: CrowdyStudioTarget;
|
|
12022
|
+
tags: Array<string>;
|
|
12023
|
+
status: CrowdyStudioCommonStatus;
|
|
12024
|
+
versionId: string;
|
|
12025
|
+
versionNo: string;
|
|
12026
|
+
content: string;
|
|
12027
|
+
contentSha256: string;
|
|
12028
|
+
publishedByUserId: string;
|
|
12029
|
+
publishedAt: string;
|
|
12030
|
+
createdAt: string;
|
|
12031
|
+
updatedAt: string;
|
|
12032
|
+
}>;
|
|
12033
|
+
};
|
|
12034
|
+
export type CrowdyStudioProjectImportFileMutationVariables = Exact<{
|
|
12035
|
+
input: ImportCrowdyStudioProjectFileInput;
|
|
12036
|
+
}>;
|
|
12037
|
+
export type CrowdyStudioProjectImportFileMutation = {
|
|
12038
|
+
__typename?: 'Mutation';
|
|
12039
|
+
crowdyStudioProjectImportFile: {
|
|
12040
|
+
__typename?: 'CrowdyStudioProject';
|
|
12041
|
+
projectId: string;
|
|
12042
|
+
appId: string;
|
|
12043
|
+
ownerUserId: string;
|
|
12044
|
+
gridId: string | null;
|
|
12045
|
+
name: string;
|
|
12046
|
+
description: string | null;
|
|
12047
|
+
serverModuleName: string | null;
|
|
12048
|
+
clientModuleName: string | null;
|
|
12049
|
+
pairingPreference: CrowdyStudioPairingPreference;
|
|
12050
|
+
sdkVersion: string;
|
|
12051
|
+
abiVersion: number;
|
|
12052
|
+
revision: string;
|
|
12053
|
+
archived: boolean;
|
|
12054
|
+
archivedAt: string | null;
|
|
12055
|
+
fileCount: number;
|
|
12056
|
+
totalBytes: string;
|
|
12057
|
+
createdAt: string;
|
|
12058
|
+
updatedAt: string;
|
|
12059
|
+
files: Array<{
|
|
12060
|
+
__typename?: 'CrowdyStudioProjectFile';
|
|
12061
|
+
target: CrowdyStudioTarget;
|
|
12062
|
+
path: string;
|
|
12063
|
+
content: string;
|
|
12064
|
+
revision: string;
|
|
12065
|
+
provenance: CrowdyStudioFileProvenance;
|
|
12066
|
+
provenanceLibraryFileId: string | null;
|
|
12067
|
+
provenanceLibraryRevision: string | null;
|
|
12068
|
+
provenanceCommonVersionId: string | null;
|
|
12069
|
+
createdAt: string;
|
|
12070
|
+
updatedAt: string;
|
|
12071
|
+
}>;
|
|
11780
12072
|
};
|
|
11781
12073
|
};
|
|
11782
12074
|
export type CreateEnvironmentMutationVariables = Exact<{
|
|
@@ -15175,298 +15467,6 @@ export type PlatformConfigQuery = {
|
|
|
15175
15467
|
freeAppsPerOrg: number;
|
|
15176
15468
|
};
|
|
15177
15469
|
};
|
|
15178
|
-
export type PlayerCodeProjectFieldsFragment = {
|
|
15179
|
-
__typename?: 'PlayerCodeProject';
|
|
15180
|
-
projectId: string;
|
|
15181
|
-
appId: string;
|
|
15182
|
-
ownerUserId: string;
|
|
15183
|
-
gridId: string | null;
|
|
15184
|
-
name: string;
|
|
15185
|
-
description: string | null;
|
|
15186
|
-
serverModuleName: string | null;
|
|
15187
|
-
clientModuleName: string | null;
|
|
15188
|
-
pairingPreference: PlayerCodePairingPreference;
|
|
15189
|
-
sdkVersion: string;
|
|
15190
|
-
abiVersion: number;
|
|
15191
|
-
revision: string;
|
|
15192
|
-
archived: boolean;
|
|
15193
|
-
archivedAt: string | null;
|
|
15194
|
-
fileCount: number;
|
|
15195
|
-
totalBytes: string;
|
|
15196
|
-
createdAt: string;
|
|
15197
|
-
updatedAt: string;
|
|
15198
|
-
files: Array<{
|
|
15199
|
-
__typename?: 'PlayerCodeProjectFile';
|
|
15200
|
-
target: PlayerCodeTarget;
|
|
15201
|
-
path: string;
|
|
15202
|
-
content: string;
|
|
15203
|
-
revision: string;
|
|
15204
|
-
provenance: PlayerCodeFileProvenance;
|
|
15205
|
-
provenanceLibraryFileId: string | null;
|
|
15206
|
-
provenanceLibraryRevision: string | null;
|
|
15207
|
-
provenanceCommonVersionId: string | null;
|
|
15208
|
-
createdAt: string;
|
|
15209
|
-
updatedAt: string;
|
|
15210
|
-
}>;
|
|
15211
|
-
};
|
|
15212
|
-
export type PlayerCodeProjectsQueryVariables = Exact<{
|
|
15213
|
-
appId: Scalars['BigInt']['input'];
|
|
15214
|
-
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15215
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15216
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
15217
|
-
}>;
|
|
15218
|
-
export type PlayerCodeProjectsQuery = {
|
|
15219
|
-
__typename?: 'Query';
|
|
15220
|
-
playerCodeProjects: Array<{
|
|
15221
|
-
__typename?: 'PlayerCodeProject';
|
|
15222
|
-
projectId: string;
|
|
15223
|
-
gridId: string | null;
|
|
15224
|
-
name: string;
|
|
15225
|
-
serverModuleName: string | null;
|
|
15226
|
-
clientModuleName: string | null;
|
|
15227
|
-
pairingPreference: PlayerCodePairingPreference;
|
|
15228
|
-
revision: string;
|
|
15229
|
-
archived: boolean;
|
|
15230
|
-
updatedAt: string;
|
|
15231
|
-
}>;
|
|
15232
|
-
};
|
|
15233
|
-
export type PlayerCodeProjectQueryVariables = Exact<{
|
|
15234
|
-
appId: Scalars['BigInt']['input'];
|
|
15235
|
-
projectId: Scalars['String']['input'];
|
|
15236
|
-
}>;
|
|
15237
|
-
export type PlayerCodeProjectQuery = {
|
|
15238
|
-
__typename?: 'Query';
|
|
15239
|
-
playerCodeProject: {
|
|
15240
|
-
__typename?: 'PlayerCodeProject';
|
|
15241
|
-
projectId: string;
|
|
15242
|
-
appId: string;
|
|
15243
|
-
ownerUserId: string;
|
|
15244
|
-
gridId: string | null;
|
|
15245
|
-
name: string;
|
|
15246
|
-
description: string | null;
|
|
15247
|
-
serverModuleName: string | null;
|
|
15248
|
-
clientModuleName: string | null;
|
|
15249
|
-
pairingPreference: PlayerCodePairingPreference;
|
|
15250
|
-
sdkVersion: string;
|
|
15251
|
-
abiVersion: number;
|
|
15252
|
-
revision: string;
|
|
15253
|
-
archived: boolean;
|
|
15254
|
-
archivedAt: string | null;
|
|
15255
|
-
fileCount: number;
|
|
15256
|
-
totalBytes: string;
|
|
15257
|
-
createdAt: string;
|
|
15258
|
-
updatedAt: string;
|
|
15259
|
-
files: Array<{
|
|
15260
|
-
__typename?: 'PlayerCodeProjectFile';
|
|
15261
|
-
target: PlayerCodeTarget;
|
|
15262
|
-
path: string;
|
|
15263
|
-
content: string;
|
|
15264
|
-
revision: string;
|
|
15265
|
-
provenance: PlayerCodeFileProvenance;
|
|
15266
|
-
provenanceLibraryFileId: string | null;
|
|
15267
|
-
provenanceLibraryRevision: string | null;
|
|
15268
|
-
provenanceCommonVersionId: string | null;
|
|
15269
|
-
createdAt: string;
|
|
15270
|
-
updatedAt: string;
|
|
15271
|
-
}>;
|
|
15272
|
-
};
|
|
15273
|
-
};
|
|
15274
|
-
export type PlayerCodeProjectCreateMutationVariables = Exact<{
|
|
15275
|
-
input: CreatePlayerCodeProjectInput;
|
|
15276
|
-
}>;
|
|
15277
|
-
export type PlayerCodeProjectCreateMutation = {
|
|
15278
|
-
__typename?: 'Mutation';
|
|
15279
|
-
playerCodeProjectCreate: {
|
|
15280
|
-
__typename?: 'PlayerCodeProject';
|
|
15281
|
-
projectId: string;
|
|
15282
|
-
appId: string;
|
|
15283
|
-
ownerUserId: string;
|
|
15284
|
-
gridId: string | null;
|
|
15285
|
-
name: string;
|
|
15286
|
-
description: string | null;
|
|
15287
|
-
serverModuleName: string | null;
|
|
15288
|
-
clientModuleName: string | null;
|
|
15289
|
-
pairingPreference: PlayerCodePairingPreference;
|
|
15290
|
-
sdkVersion: string;
|
|
15291
|
-
abiVersion: number;
|
|
15292
|
-
revision: string;
|
|
15293
|
-
archived: boolean;
|
|
15294
|
-
archivedAt: string | null;
|
|
15295
|
-
fileCount: number;
|
|
15296
|
-
totalBytes: string;
|
|
15297
|
-
createdAt: string;
|
|
15298
|
-
updatedAt: string;
|
|
15299
|
-
files: Array<{
|
|
15300
|
-
__typename?: 'PlayerCodeProjectFile';
|
|
15301
|
-
target: PlayerCodeTarget;
|
|
15302
|
-
path: string;
|
|
15303
|
-
content: string;
|
|
15304
|
-
revision: string;
|
|
15305
|
-
provenance: PlayerCodeFileProvenance;
|
|
15306
|
-
provenanceLibraryFileId: string | null;
|
|
15307
|
-
provenanceLibraryRevision: string | null;
|
|
15308
|
-
provenanceCommonVersionId: string | null;
|
|
15309
|
-
createdAt: string;
|
|
15310
|
-
updatedAt: string;
|
|
15311
|
-
}>;
|
|
15312
|
-
};
|
|
15313
|
-
};
|
|
15314
|
-
export type PlayerCodeProjectSaveMutationVariables = Exact<{
|
|
15315
|
-
input: SavePlayerCodeProjectInput;
|
|
15316
|
-
}>;
|
|
15317
|
-
export type PlayerCodeProjectSaveMutation = {
|
|
15318
|
-
__typename?: 'Mutation';
|
|
15319
|
-
playerCodeProjectSave: {
|
|
15320
|
-
__typename?: 'PlayerCodeProject';
|
|
15321
|
-
projectId: string;
|
|
15322
|
-
appId: string;
|
|
15323
|
-
ownerUserId: string;
|
|
15324
|
-
gridId: string | null;
|
|
15325
|
-
name: string;
|
|
15326
|
-
description: string | null;
|
|
15327
|
-
serverModuleName: string | null;
|
|
15328
|
-
clientModuleName: string | null;
|
|
15329
|
-
pairingPreference: PlayerCodePairingPreference;
|
|
15330
|
-
sdkVersion: string;
|
|
15331
|
-
abiVersion: number;
|
|
15332
|
-
revision: string;
|
|
15333
|
-
archived: boolean;
|
|
15334
|
-
archivedAt: string | null;
|
|
15335
|
-
fileCount: number;
|
|
15336
|
-
totalBytes: string;
|
|
15337
|
-
createdAt: string;
|
|
15338
|
-
updatedAt: string;
|
|
15339
|
-
files: Array<{
|
|
15340
|
-
__typename?: 'PlayerCodeProjectFile';
|
|
15341
|
-
target: PlayerCodeTarget;
|
|
15342
|
-
path: string;
|
|
15343
|
-
content: string;
|
|
15344
|
-
revision: string;
|
|
15345
|
-
provenance: PlayerCodeFileProvenance;
|
|
15346
|
-
provenanceLibraryFileId: string | null;
|
|
15347
|
-
provenanceLibraryRevision: string | null;
|
|
15348
|
-
provenanceCommonVersionId: string | null;
|
|
15349
|
-
createdAt: string;
|
|
15350
|
-
updatedAt: string;
|
|
15351
|
-
}>;
|
|
15352
|
-
};
|
|
15353
|
-
};
|
|
15354
|
-
export type PlayerCodeLibraryFilesQueryVariables = Exact<{
|
|
15355
|
-
appId: Scalars['BigInt']['input'];
|
|
15356
|
-
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15357
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15358
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
15359
|
-
}>;
|
|
15360
|
-
export type PlayerCodeLibraryFilesQuery = {
|
|
15361
|
-
__typename?: 'Query';
|
|
15362
|
-
playerCodeLibraryFiles: Array<{
|
|
15363
|
-
__typename?: 'PlayerCodeLibraryFile';
|
|
15364
|
-
libraryFileId: string;
|
|
15365
|
-
appId: string;
|
|
15366
|
-
ownerUserId: string;
|
|
15367
|
-
title: string;
|
|
15368
|
-
pathHint: string;
|
|
15369
|
-
target: PlayerCodeTarget;
|
|
15370
|
-
tags: Array<string>;
|
|
15371
|
-
content: string;
|
|
15372
|
-
revision: string;
|
|
15373
|
-
archived: boolean;
|
|
15374
|
-
archivedAt: string | null;
|
|
15375
|
-
createdAt: string;
|
|
15376
|
-
updatedAt: string;
|
|
15377
|
-
}>;
|
|
15378
|
-
};
|
|
15379
|
-
export type PlayerCodeLibrarySaveMutationVariables = Exact<{
|
|
15380
|
-
input: SavePlayerCodeLibraryFileInput;
|
|
15381
|
-
}>;
|
|
15382
|
-
export type PlayerCodeLibrarySaveMutation = {
|
|
15383
|
-
__typename?: 'Mutation';
|
|
15384
|
-
playerCodeLibrarySave: {
|
|
15385
|
-
__typename?: 'PlayerCodeLibraryFile';
|
|
15386
|
-
libraryFileId: string;
|
|
15387
|
-
appId: string;
|
|
15388
|
-
ownerUserId: string;
|
|
15389
|
-
title: string;
|
|
15390
|
-
pathHint: string;
|
|
15391
|
-
target: PlayerCodeTarget;
|
|
15392
|
-
tags: Array<string>;
|
|
15393
|
-
content: string;
|
|
15394
|
-
revision: string;
|
|
15395
|
-
archived: boolean;
|
|
15396
|
-
archivedAt: string | null;
|
|
15397
|
-
createdAt: string;
|
|
15398
|
-
updatedAt: string;
|
|
15399
|
-
};
|
|
15400
|
-
};
|
|
15401
|
-
export type PlayerCodeCommonFilesQueryVariables = Exact<{
|
|
15402
|
-
appId: Scalars['BigInt']['input'];
|
|
15403
|
-
target?: InputMaybe<PlayerCodeTarget>;
|
|
15404
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15405
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
15406
|
-
}>;
|
|
15407
|
-
export type PlayerCodeCommonFilesQuery = {
|
|
15408
|
-
__typename?: 'Query';
|
|
15409
|
-
playerCodeCommonFiles: Array<{
|
|
15410
|
-
__typename?: 'PlayerCodeCommonFile';
|
|
15411
|
-
commonFileId: string;
|
|
15412
|
-
appId: string;
|
|
15413
|
-
slug: string;
|
|
15414
|
-
title: string;
|
|
15415
|
-
description: string | null;
|
|
15416
|
-
path: string;
|
|
15417
|
-
target: PlayerCodeTarget;
|
|
15418
|
-
tags: Array<string>;
|
|
15419
|
-
status: PlayerCodeCommonStatus;
|
|
15420
|
-
versionId: string;
|
|
15421
|
-
versionNo: string;
|
|
15422
|
-
content: string;
|
|
15423
|
-
contentSha256: string;
|
|
15424
|
-
publishedByUserId: string;
|
|
15425
|
-
publishedAt: string;
|
|
15426
|
-
createdAt: string;
|
|
15427
|
-
updatedAt: string;
|
|
15428
|
-
}>;
|
|
15429
|
-
};
|
|
15430
|
-
export type PlayerCodeProjectImportFileMutationVariables = Exact<{
|
|
15431
|
-
input: ImportPlayerCodeProjectFileInput;
|
|
15432
|
-
}>;
|
|
15433
|
-
export type PlayerCodeProjectImportFileMutation = {
|
|
15434
|
-
__typename?: 'Mutation';
|
|
15435
|
-
playerCodeProjectImportFile: {
|
|
15436
|
-
__typename?: 'PlayerCodeProject';
|
|
15437
|
-
projectId: string;
|
|
15438
|
-
appId: string;
|
|
15439
|
-
ownerUserId: string;
|
|
15440
|
-
gridId: string | null;
|
|
15441
|
-
name: string;
|
|
15442
|
-
description: string | null;
|
|
15443
|
-
serverModuleName: string | null;
|
|
15444
|
-
clientModuleName: string | null;
|
|
15445
|
-
pairingPreference: PlayerCodePairingPreference;
|
|
15446
|
-
sdkVersion: string;
|
|
15447
|
-
abiVersion: number;
|
|
15448
|
-
revision: string;
|
|
15449
|
-
archived: boolean;
|
|
15450
|
-
archivedAt: string | null;
|
|
15451
|
-
fileCount: number;
|
|
15452
|
-
totalBytes: string;
|
|
15453
|
-
createdAt: string;
|
|
15454
|
-
updatedAt: string;
|
|
15455
|
-
files: Array<{
|
|
15456
|
-
__typename?: 'PlayerCodeProjectFile';
|
|
15457
|
-
target: PlayerCodeTarget;
|
|
15458
|
-
path: string;
|
|
15459
|
-
content: string;
|
|
15460
|
-
revision: string;
|
|
15461
|
-
provenance: PlayerCodeFileProvenance;
|
|
15462
|
-
provenanceLibraryFileId: string | null;
|
|
15463
|
-
provenanceLibraryRevision: string | null;
|
|
15464
|
-
provenanceCommonVersionId: string | null;
|
|
15465
|
-
createdAt: string;
|
|
15466
|
-
updatedAt: string;
|
|
15467
|
-
}>;
|
|
15468
|
-
};
|
|
15469
|
-
};
|
|
15470
15470
|
export type PlayerWasmModuleFieldsFragment = {
|
|
15471
15471
|
__typename?: 'PlayerWasmModule';
|
|
15472
15472
|
moduleId: string;
|
|
@@ -17851,6 +17851,7 @@ export declare const ComputeVersionFieldsFragmentDoc: DocumentNode<ComputeVersio
|
|
|
17851
17851
|
export declare const ComputeTriggerFieldsFragmentDoc: DocumentNode<ComputeTriggerFieldsFragment, unknown>;
|
|
17852
17852
|
export declare const ComputePolicyFieldsFragmentDoc: DocumentNode<ComputePolicyFieldsFragment, unknown>;
|
|
17853
17853
|
export declare const ComputeRunFieldsFragmentDoc: DocumentNode<ComputeRunFieldsFragment, unknown>;
|
|
17854
|
+
export declare const CrowdyStudioProjectFieldsFragmentDoc: DocumentNode<CrowdyStudioProjectFieldsFragment, unknown>;
|
|
17854
17855
|
export declare const GridOwnershipFieldsFragmentDoc: DocumentNode<GridOwnershipFieldsFragment, unknown>;
|
|
17855
17856
|
export declare const GmAutomationFieldsFragmentDoc: DocumentNode<GmAutomationFieldsFragment, unknown>;
|
|
17856
17857
|
export declare const GmAutomationTriggerFieldsFragmentDoc: DocumentNode<GmAutomationTriggerFieldsFragment, unknown>;
|
|
@@ -17866,7 +17867,6 @@ export declare const PlayerCodeListingVersionFieldsFragmentDoc: DocumentNode<Pla
|
|
|
17866
17867
|
export declare const PlayerCodeAcquisitionFieldsFragmentDoc: DocumentNode<PlayerCodeAcquisitionFieldsFragment, unknown>;
|
|
17867
17868
|
export declare const PlayerCodeInstallFieldsFragmentDoc: DocumentNode<PlayerCodeInstallFieldsFragment, unknown>;
|
|
17868
17869
|
export declare const GridClaimRequestFieldsFragmentDoc: DocumentNode<GridClaimRequestFieldsFragment, unknown>;
|
|
17869
|
-
export declare const PlayerCodeProjectFieldsFragmentDoc: DocumentNode<PlayerCodeProjectFieldsFragment, unknown>;
|
|
17870
17870
|
export declare const PlayerWasmModuleFieldsFragmentDoc: DocumentNode<PlayerWasmModuleFieldsFragment, unknown>;
|
|
17871
17871
|
export declare const PlayerWasmModuleVersionFieldsFragmentDoc: DocumentNode<PlayerWasmModuleVersionFieldsFragment, unknown>;
|
|
17872
17872
|
export declare const PlayerWasmModuleRunFieldsFragmentDoc: DocumentNode<PlayerWasmModuleRunFieldsFragment, unknown>;
|
|
@@ -17999,6 +17999,14 @@ export declare const PublishEnvironmentReleaseFromGameApiTagDocument: DocumentNo
|
|
|
17999
17999
|
export declare const YankEnvironmentVersionDocument: DocumentNode<YankEnvironmentVersionMutation, YankEnvironmentVersionMutationVariables>;
|
|
18000
18000
|
export declare const CpComputePlatformCeilingsDocument: DocumentNode<CpComputePlatformCeilingsQuery, CpComputePlatformCeilingsQueryVariables>;
|
|
18001
18001
|
export declare const CpSetComputePlatformCeilingsDocument: DocumentNode<CpSetComputePlatformCeilingsMutation, CpSetComputePlatformCeilingsMutationVariables>;
|
|
18002
|
+
export declare const CrowdyStudioProjectsDocument: DocumentNode<CrowdyStudioProjectsQuery, CrowdyStudioProjectsQueryVariables>;
|
|
18003
|
+
export declare const CrowdyStudioProjectDocument: DocumentNode<CrowdyStudioProjectQuery, CrowdyStudioProjectQueryVariables>;
|
|
18004
|
+
export declare const CrowdyStudioProjectCreateDocument: DocumentNode<CrowdyStudioProjectCreateMutation, CrowdyStudioProjectCreateMutationVariables>;
|
|
18005
|
+
export declare const CrowdyStudioProjectSaveDocument: DocumentNode<CrowdyStudioProjectSaveMutation, CrowdyStudioProjectSaveMutationVariables>;
|
|
18006
|
+
export declare const CrowdyStudioLibraryFilesDocument: DocumentNode<CrowdyStudioLibraryFilesQuery, CrowdyStudioLibraryFilesQueryVariables>;
|
|
18007
|
+
export declare const CrowdyStudioLibrarySaveDocument: DocumentNode<CrowdyStudioLibrarySaveMutation, CrowdyStudioLibrarySaveMutationVariables>;
|
|
18008
|
+
export declare const CrowdyStudioCommonFilesDocument: DocumentNode<CrowdyStudioCommonFilesQuery, CrowdyStudioCommonFilesQueryVariables>;
|
|
18009
|
+
export declare const CrowdyStudioProjectImportFileDocument: DocumentNode<CrowdyStudioProjectImportFileMutation, CrowdyStudioProjectImportFileMutationVariables>;
|
|
18002
18010
|
export declare const CreateEnvironmentDocument: DocumentNode<CreateEnvironmentMutation, CreateEnvironmentMutationVariables>;
|
|
18003
18011
|
export declare const DestroyEnvironmentDocument: DocumentNode<DestroyEnvironmentMutation, DestroyEnvironmentMutationVariables>;
|
|
18004
18012
|
export declare const EnvironmentDatacentersDocument: DocumentNode<EnvironmentDatacentersQuery, EnvironmentDatacentersQueryVariables>;
|
|
@@ -18156,14 +18164,6 @@ export declare const MyCheckoutsConnectionDocument: DocumentNode<MyCheckoutsConn
|
|
|
18156
18164
|
export declare const PaymentEventsDocument: DocumentNode<PaymentEventsQuery, PaymentEventsQueryVariables>;
|
|
18157
18165
|
export declare const PaymentEventsConnectionDocument: DocumentNode<PaymentEventsConnectionQuery, PaymentEventsConnectionQueryVariables>;
|
|
18158
18166
|
export declare const PlatformConfigDocument: DocumentNode<PlatformConfigQuery, PlatformConfigQueryVariables>;
|
|
18159
|
-
export declare const PlayerCodeProjectsDocument: DocumentNode<PlayerCodeProjectsQuery, PlayerCodeProjectsQueryVariables>;
|
|
18160
|
-
export declare const PlayerCodeProjectDocument: DocumentNode<PlayerCodeProjectQuery, PlayerCodeProjectQueryVariables>;
|
|
18161
|
-
export declare const PlayerCodeProjectCreateDocument: DocumentNode<PlayerCodeProjectCreateMutation, PlayerCodeProjectCreateMutationVariables>;
|
|
18162
|
-
export declare const PlayerCodeProjectSaveDocument: DocumentNode<PlayerCodeProjectSaveMutation, PlayerCodeProjectSaveMutationVariables>;
|
|
18163
|
-
export declare const PlayerCodeLibraryFilesDocument: DocumentNode<PlayerCodeLibraryFilesQuery, PlayerCodeLibraryFilesQueryVariables>;
|
|
18164
|
-
export declare const PlayerCodeLibrarySaveDocument: DocumentNode<PlayerCodeLibrarySaveMutation, PlayerCodeLibrarySaveMutationVariables>;
|
|
18165
|
-
export declare const PlayerCodeCommonFilesDocument: DocumentNode<PlayerCodeCommonFilesQuery, PlayerCodeCommonFilesQueryVariables>;
|
|
18166
|
-
export declare const PlayerCodeProjectImportFileDocument: DocumentNode<PlayerCodeProjectImportFileMutation, PlayerCodeProjectImportFileMutationVariables>;
|
|
18167
18167
|
export declare const PlayerComputeDeployDocument: DocumentNode<PlayerComputeDeployMutation, PlayerComputeDeployMutationVariables>;
|
|
18168
18168
|
export declare const PlayerComputeSetEnabledDocument: DocumentNode<PlayerComputeSetEnabledMutation, PlayerComputeSetEnabledMutationVariables>;
|
|
18169
18169
|
export declare const PlayerComputeSetRequiresDocument: DocumentNode<PlayerComputeSetRequiresMutation, PlayerComputeSetRequiresMutationVariables>;
|