@crowdedkingdoms/crowdyjs 12.2.0 → 13.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/MIGRATION.md +29 -0
- package/README.md +355 -588
- package/dist/crowdy-client.d.ts +6 -4
- package/dist/crowdy-client.d.ts.map +1 -1
- package/dist/crowdy-client.js +0 -3
- package/dist/domains/admin.d.ts +0 -4
- package/dist/domains/admin.d.ts.map +1 -1
- package/dist/domains/admin.js +0 -1
- package/dist/domains/billing.d.ts +1 -21
- package/dist/domains/billing.d.ts.map +1 -1
- package/dist/domains/billing.js +1 -30
- package/dist/domains/controlPlane.d.ts +14 -170
- package/dist/domains/controlPlane.d.ts.map +1 -1
- package/dist/domains/controlPlane.js +14 -249
- package/dist/domains/udp.d.ts.map +1 -1
- package/dist/domains/udp.js +25 -0
- package/dist/domains/usage.d.ts +9 -32
- package/dist/domains/usage.d.ts.map +1 -1
- package/dist/domains/usage.js +9 -48
- package/dist/generated/graphql.d.ts +52 -2071
- package/dist/generated/graphql.d.ts.map +1 -1
- package/dist/generated/graphql.js +9 -59
- package/dist/index.d.ts +2 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -3
- package/dist/kit/npcs.d.ts.map +1 -1
- package/dist/kit/social.d.ts.map +1 -1
- package/dist/lb-cookie-store.d.ts +4 -0
- package/dist/lb-cookie-store.d.ts.map +1 -1
- package/dist/lb-cookie-store.js +17 -0
- package/dist/realtime.d.ts +22 -0
- package/dist/realtime.d.ts.map +1 -1
- package/dist/realtime.js +115 -5
- package/package.json +1 -1
- package/dist/domains/environments.d.ts +0 -167
- package/dist/domains/environments.d.ts.map +0 -1
- package/dist/domains/environments.js +0 -238
|
@@ -103,6 +103,18 @@ export type ActorFilterInput = {
|
|
|
103
103
|
/** Restrict to a single actor by its 32-character ASCII actor id (the UDP-wire id, not a hyphenated UUID). */
|
|
104
104
|
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
105
105
|
};
|
|
106
|
+
/** The signed-in identity behind a bearer token. */
|
|
107
|
+
export type ActorType = {
|
|
108
|
+
__typename?: 'ActorType';
|
|
109
|
+
/** Contributor uuid — the votes/content actor. */
|
|
110
|
+
contributorUuid: Scalars['String']['output'];
|
|
111
|
+
email: Maybe<Scalars['String']['output']>;
|
|
112
|
+
/** Legacy bigint public user id (Buddy / CK wire), as a string. */
|
|
113
|
+
userId: Scalars['String']['output'];
|
|
114
|
+
/** User identity (galaxy row uuid). */
|
|
115
|
+
userUuid: Scalars['String']['output'];
|
|
116
|
+
username: Maybe<Scalars['String']['output']>;
|
|
117
|
+
};
|
|
106
118
|
/** Notification received when an actor (player or NPC) state is updated by another client or the server. Received via the udpNotifications subscription. */
|
|
107
119
|
export type ActorUpdateNotification = {
|
|
108
120
|
__typename?: 'ActorUpdateNotification';
|
|
@@ -1262,24 +1274,6 @@ export type AppUsageProjection = {
|
|
|
1262
1274
|
/** True when at least 3 days have elapsed in the month (projection is meaningful). */
|
|
1263
1275
|
sufficientData: Scalars['Boolean']['output'];
|
|
1264
1276
|
};
|
|
1265
|
-
/** Aggregate byte totals for one app over the requested window. All *Bytes fields are string counters (may exceed Int range). */
|
|
1266
|
-
export type AppUsageRollupRow = {
|
|
1267
|
-
__typename?: 'AppUsageRollupRow';
|
|
1268
|
-
/** App id (as a string). */
|
|
1269
|
-
appId: Scalars['String']['output'];
|
|
1270
|
-
/** App display name. */
|
|
1271
|
-
appName: Scalars['String']['output'];
|
|
1272
|
-
/** App slug. */
|
|
1273
|
-
appSlug: Scalars['String']['output'];
|
|
1274
|
-
/** Total GraphQL bytes received (string counter). */
|
|
1275
|
-
graphqlRecvBytes: Scalars['String']['output'];
|
|
1276
|
-
/** Total GraphQL bytes sent (string counter). */
|
|
1277
|
-
graphqlSendBytes: Scalars['String']['output'];
|
|
1278
|
-
/** Total replication bytes received (string counter). */
|
|
1279
|
-
replicationRecvBytes: Scalars['String']['output'];
|
|
1280
|
-
/** Total replication bytes sent (string counter). */
|
|
1281
|
-
replicationSendBytes: Scalars['String']['output'];
|
|
1282
|
-
};
|
|
1283
1277
|
/** Aggregate byte totals plus the top GraphQL operations for one app over the window. */
|
|
1284
1278
|
export type AppUsageSummary = {
|
|
1285
1279
|
__typename?: 'AppUsageSummary';
|
|
@@ -1472,23 +1466,6 @@ export type BatchActorLookupInput = {
|
|
|
1472
1466
|
/** Actor ids to look up. Each is exactly 32 ASCII characters (the UDP-wire actor id), NOT a hyphenated RFC-4122 UUID. Must be non-empty; unknown ids are silently omitted from the result. */
|
|
1473
1467
|
uuids: Array<Scalars['String']['input']>;
|
|
1474
1468
|
};
|
|
1475
|
-
/** Buddy (UDP replication) billing tier: message rate + bandwidth allotments and capacity charge. */
|
|
1476
|
-
export type BuddyBillingTier = {
|
|
1477
|
-
__typename?: 'BuddyBillingTier';
|
|
1478
|
-
/** Maximum bandwidth allotment in megabits per second. */
|
|
1479
|
-
bandwidthMbitPerSecond: Scalars['Float']['output'];
|
|
1480
|
-
/** Capacity charge for this tier, in cents (placeholder until load tests). */
|
|
1481
|
-
chargeCents: Scalars['BigInt']['output'];
|
|
1482
|
-
/** ISO-4217 currency for chargeCents, e.g. 'usd'. */
|
|
1483
|
-
currency: Scalars['String']['output'];
|
|
1484
|
-
description: Maybe<Scalars['String']['output']>;
|
|
1485
|
-
/** Customer-facing tier label. */
|
|
1486
|
-
label: Scalars['String']['output'];
|
|
1487
|
-
/** Maximum messages per second allotment. */
|
|
1488
|
-
messagesPerSecond: Scalars['Int']['output'];
|
|
1489
|
-
/** Tier level (1 = lowest offered tier). */
|
|
1490
|
-
tierLevel: Scalars['Int']['output'];
|
|
1491
|
-
};
|
|
1492
1469
|
/** Live (most recent heartbeat) Buddy UDP throughput rates. */
|
|
1493
1470
|
export type BuddyLiveRates = {
|
|
1494
1471
|
__typename?: 'BuddyLiveRates';
|
|
@@ -1774,311 +1751,6 @@ export type ChunksByDistanceResponse = {
|
|
|
1774
1751
|
/** Echo of the `skip` applied to this page, or null if none was supplied. */
|
|
1775
1752
|
skip: Maybe<Scalars['Int']['output']>;
|
|
1776
1753
|
};
|
|
1777
|
-
export type CksBuddyHealth = {
|
|
1778
|
-
__typename?: 'CksBuddyHealth';
|
|
1779
|
-
/** UDP port clients connect to on the Buddy server. */
|
|
1780
|
-
clientPort: Maybe<Scalars['Int']['output']>;
|
|
1781
|
-
/** Currently connected client count reported by Buddy. */
|
|
1782
|
-
clients: Maybe<Scalars['Int']['output']>;
|
|
1783
|
-
/** Seconds since server_status.updated_at (game DB heartbeat). */
|
|
1784
|
-
heartbeatAgeSec: Maybe<Scalars['Float']['output']>;
|
|
1785
|
-
/** Public IPv4 of the Buddy UDP runtime VM, if registered. */
|
|
1786
|
-
ip4: Maybe<Scalars['String']['output']>;
|
|
1787
|
-
/** True when heartbeat is missing or older than the staleness threshold (~30s). Game-api rejects assignment when age > ~11s. */
|
|
1788
|
-
isStale: Scalars['Boolean']['output'];
|
|
1789
|
-
/** False when no server_status row exists for this environment. */
|
|
1790
|
-
registered: Scalars['Boolean']['output'];
|
|
1791
|
-
/** Buddy-reported server state from server_status (e.g. 'ReadyForClients'). */
|
|
1792
|
-
status: Maybe<Scalars['String']['output']>;
|
|
1793
|
-
/** Operator-facing hint when multiplayer assignment may fail. */
|
|
1794
|
-
troubleshootingHint: Scalars['String']['output'];
|
|
1795
|
-
/** Timestamp of the last server_status heartbeat (game DB). */
|
|
1796
|
-
updatedAt: Maybe<Scalars['DateTime']['output']>;
|
|
1797
|
-
};
|
|
1798
|
-
/** Progress for the active or most recent deploy/destroy change order, with per-task counts and a retry hint. Durable change orders may expose read-only projected tasks and steps; planned work remains pending until an outcome is observed or inferred. */
|
|
1799
|
-
export type CksDeployProgress = {
|
|
1800
|
-
__typename?: 'CksDeployProgress';
|
|
1801
|
-
/** Redeploy is allowed (failed deploy or stuck order cleared) */
|
|
1802
|
-
canRetry: Scalars['Boolean']['output'];
|
|
1803
|
-
changeOrderId: Scalars['String']['output'];
|
|
1804
|
-
/** Change order kind (deploy or destroy pipeline identifier) */
|
|
1805
|
-
changeOrderKind: Scalars['String']['output'];
|
|
1806
|
-
changeOrderStatus: Scalars['String']['output'];
|
|
1807
|
-
currentStepKind: Maybe<Scalars['String']['output']>;
|
|
1808
|
-
currentTaskKind: Maybe<Scalars['String']['output']>;
|
|
1809
|
-
error: Maybe<Scalars['String']['output']>;
|
|
1810
|
-
/** True when the deploy failed but the change order was left in_progress */
|
|
1811
|
-
isStuck: Scalars['Boolean']['output'];
|
|
1812
|
-
targetVersion: Maybe<Scalars['String']['output']>;
|
|
1813
|
-
tasks: Array<CksDeployProgressTask>;
|
|
1814
|
-
tasksFailed: Scalars['Int']['output'];
|
|
1815
|
-
tasksInProgress: Scalars['Int']['output'];
|
|
1816
|
-
tasksPending: Scalars['Int']['output'];
|
|
1817
|
-
tasksSucceeded: Scalars['Int']['output'];
|
|
1818
|
-
tasksTotal: Scalars['Int']['output'];
|
|
1819
|
-
};
|
|
1820
|
-
/** A single step within a deploy/destroy task. Progress may be recorded directly or exposed as a read-only projection for a durable change order. Planned steps remain pending until an outcome is observed or inferred. */
|
|
1821
|
-
export type CksDeployProgressStep = {
|
|
1822
|
-
__typename?: 'CksDeployProgressStep';
|
|
1823
|
-
/** Attempt count. For projected progress, 0 means no attempt or outcome has been observed or inferred; 1 means an attempt or outcome has been observed or inferred. */
|
|
1824
|
-
attempt: Scalars['Int']['output'];
|
|
1825
|
-
error: Maybe<Scalars['String']['output']>;
|
|
1826
|
-
id: Scalars['String']['output'];
|
|
1827
|
-
kind: Scalars['String']['output'];
|
|
1828
|
-
/** Human-readable step label for the org UI */
|
|
1829
|
-
label: Scalars['String']['output'];
|
|
1830
|
-
/** Execution status. For projected progress, pending means the step is planned and no terminal outcome is available yet. */
|
|
1831
|
-
status: Scalars['String']['output'];
|
|
1832
|
-
};
|
|
1833
|
-
/** A task in a deploy/destroy pipeline, containing ordered steps. Durable change orders may expose task progress as a read-only projection. */
|
|
1834
|
-
export type CksDeployProgressTask = {
|
|
1835
|
-
__typename?: 'CksDeployProgressTask';
|
|
1836
|
-
error: Maybe<Scalars['String']['output']>;
|
|
1837
|
-
id: Scalars['String']['output'];
|
|
1838
|
-
kind: Scalars['String']['output'];
|
|
1839
|
-
label: Scalars['String']['output'];
|
|
1840
|
-
/** Execution status derived from available step outcomes. Active projected tasks may contain pending steps when exact live state is unavailable. */
|
|
1841
|
-
status: Scalars['String']['output'];
|
|
1842
|
-
steps: Array<CksDeployProgressStep>;
|
|
1843
|
-
};
|
|
1844
|
-
/** A provisioned (or provisioning/destroyed) tenant environment. status tracks provisioning lifecycle; billingStatus tracks payment lifecycle — they are independent. */
|
|
1845
|
-
export type CksEnvironment = {
|
|
1846
|
-
__typename?: 'CksEnvironment';
|
|
1847
|
-
/** When billingStatus = grace, the deadline to add funds before suspension (~24h after the failed charge). Null otherwise. */
|
|
1848
|
-
billingGraceDeadline: Maybe<Scalars['DateTime']['output']>;
|
|
1849
|
-
/** Payment lifecycle (NOT provisioning): active; grace (a charge failed — funds must be added before billingGraceDeadline); suspension_queued -> suspended (runtime stopped for non-payment); resume_queued -> active after payment (resume_failed on error). Recover with resumeEnvironment. */
|
|
1850
|
-
billingStatus: Scalars['String']['output'];
|
|
1851
|
-
/** Selected Buddy billing tier level, if any. */
|
|
1852
|
-
buddyBillingTier: Maybe<Scalars['Int']['output']>;
|
|
1853
|
-
caddyFlavor: Maybe<Scalars['String']['output']>;
|
|
1854
|
-
createdAt: Scalars['DateTime']['output'];
|
|
1855
|
-
databaseFlavor: Maybe<Scalars['String']['output']>;
|
|
1856
|
-
/** Environment release version the platform is driving toward (target/desired state). */
|
|
1857
|
-
desiredEnvironmentVersion: Maybe<Scalars['String']['output']>;
|
|
1858
|
-
displayName: Scalars['String']['output'];
|
|
1859
|
-
/** 'dedicated' (multi-VM) or 'dev_single' (one dev-only VM). */
|
|
1860
|
-
environmentClass: Scalars['String']['output'];
|
|
1861
|
-
gameApiFlavor: Maybe<Scalars['String']['output']>;
|
|
1862
|
-
gameApiMaxServers: Scalars['Int']['output'];
|
|
1863
|
-
gameApiMinServers: Scalars['Int']['output'];
|
|
1864
|
-
/** Selected GraphQL billing tier level, if any. */
|
|
1865
|
-
graphqlBillingTier: Maybe<Scalars['Int']['output']>;
|
|
1866
|
-
/** Opaque environment UUID (cks_environments.id). */
|
|
1867
|
-
id: Scalars['String']['output'];
|
|
1868
|
-
/** True for the single platform-owned shared environment (slug 'shared') that hosts the shared game-api serving apps with deploymentTarget='shared'. Customer environments are always false. */
|
|
1869
|
-
isShared: Scalars['Boolean']['output'];
|
|
1870
|
-
loadBalancerCount: Scalars['Int']['output'];
|
|
1871
|
-
/** Release version actually observed running. Lags desiredEnvironmentVersion while a deploy is in progress. */
|
|
1872
|
-
observedEnvironmentVersion: Maybe<Scalars['String']['output']>;
|
|
1873
|
-
/** Owning organization id (BigInt). */
|
|
1874
|
-
orgId: Scalars['BigInt']['output'];
|
|
1875
|
-
/** Selected Postgres billing tier level, if any. */
|
|
1876
|
-
postgresBillingTier: Maybe<Scalars['Int']['output']>;
|
|
1877
|
-
/** Cloud provider, e.g. 'ovh'. */
|
|
1878
|
-
primaryCloud: Scalars['String']['output'];
|
|
1879
|
-
/** Primary datacenter/region code, e.g. 'GRA11'. */
|
|
1880
|
-
primaryRegion: Scalars['String']['output'];
|
|
1881
|
-
/** Single VM flavor when environmentClass = 'dev_single'. */
|
|
1882
|
-
singleBoxFlavor: Maybe<Scalars['String']['output']>;
|
|
1883
|
-
/** URL-safe environment identifier, stable for the environment's lifetime. Auto-generated as 'e-<12 chars>' unless a custom slug was supplied at creation. */
|
|
1884
|
-
slug: Scalars['String']['output'];
|
|
1885
|
-
/** Provisioning lifecycle (NOT billing): deploy_requested -> provisioning -> active; deploy_failed on error; destroy_requested -> destroyed (destroy_failed on error). See billingStatus for payment state. */
|
|
1886
|
-
status: Scalars['String']['output'];
|
|
1887
|
-
/** Subdomain handle used to build the environment public URLs. Null until assigned. */
|
|
1888
|
-
subdomainHandle: Maybe<Scalars['String']['output']>;
|
|
1889
|
-
/** When the environment was suspended for non-payment. Null unless suspended. */
|
|
1890
|
-
suspendedAt: Maybe<Scalars['DateTime']['output']>;
|
|
1891
|
-
udpBuddyFlavor: Maybe<Scalars['String']['output']>;
|
|
1892
|
-
udpBuddyMaxServers: Scalars['Int']['output'];
|
|
1893
|
-
udpBuddyMinServers: Scalars['Int']['output'];
|
|
1894
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
1895
|
-
};
|
|
1896
|
-
/** Audit-log entry recording an environment lifecycle action. */
|
|
1897
|
-
export type CksEnvironmentAudit = {
|
|
1898
|
-
__typename?: 'CksEnvironmentAudit';
|
|
1899
|
-
action: Scalars['String']['output'];
|
|
1900
|
-
createdAt: Scalars['DateTime']['output'];
|
|
1901
|
-
environmentId: Scalars['String']['output'];
|
|
1902
|
-
id: Scalars['String']['output'];
|
|
1903
|
-
payloadJson: Maybe<Scalars['String']['output']>;
|
|
1904
|
-
};
|
|
1905
|
-
/** A billable cloud resource attributed to the environment, with its customer hourly price. */
|
|
1906
|
-
export type CksEnvironmentBillingResource = {
|
|
1907
|
-
__typename?: 'CksEnvironmentBillingResource';
|
|
1908
|
-
componentKind: Scalars['String']['output'];
|
|
1909
|
-
currency: Scalars['String']['output'];
|
|
1910
|
-
/** Customer hourly price billed for this resource, in cents. */
|
|
1911
|
-
customerHourlyPriceCents: Maybe<Scalars['BigInt']['output']>;
|
|
1912
|
-
environmentId: Scalars['String']['output'];
|
|
1913
|
-
flavorName: Maybe<Scalars['String']['output']>;
|
|
1914
|
-
id: Scalars['String']['output'];
|
|
1915
|
-
observedAt: Scalars['DateTime']['output'];
|
|
1916
|
-
provider: Scalars['String']['output'];
|
|
1917
|
-
region: Scalars['String']['output'];
|
|
1918
|
-
resourceId: Scalars['String']['output'];
|
|
1919
|
-
resourceName: Maybe<Scalars['String']['output']>;
|
|
1920
|
-
status: Scalars['String']['output'];
|
|
1921
|
-
};
|
|
1922
|
-
/** An asynchronous change order tracking a deploy / destroy / scaling pipeline for an environment. Returned by mutations so callers can poll completion. */
|
|
1923
|
-
export type CksEnvironmentChangeOrder = {
|
|
1924
|
-
__typename?: 'CksEnvironmentChangeOrder';
|
|
1925
|
-
claimedAt: Maybe<Scalars['DateTime']['output']>;
|
|
1926
|
-
claimedBy: Maybe<Scalars['String']['output']>;
|
|
1927
|
-
createdAt: Scalars['DateTime']['output'];
|
|
1928
|
-
environmentId: Scalars['String']['output'];
|
|
1929
|
-
error: Maybe<Scalars['String']['output']>;
|
|
1930
|
-
finishedAt: Maybe<Scalars['DateTime']['output']>;
|
|
1931
|
-
/** Change order UUID. */
|
|
1932
|
-
id: Scalars['String']['output'];
|
|
1933
|
-
/** Pipeline kind, e.g. 'deploy_environment_version', 'game_api_environment_destroy', or 'postgres_citus_destroy'. */
|
|
1934
|
-
kind: Scalars['String']['output'];
|
|
1935
|
-
/** JSON-encoded change order payload. */
|
|
1936
|
-
payloadJson: Scalars['String']['output'];
|
|
1937
|
-
/** User id (BigInt) that requested the change order. */
|
|
1938
|
-
requestedBy: Maybe<Scalars['BigInt']['output']>;
|
|
1939
|
-
/** Execution status: pending, claimed/in_progress, succeeded, failed, or cancelled. */
|
|
1940
|
-
status: Scalars['String']['output'];
|
|
1941
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
1942
|
-
};
|
|
1943
|
-
/** One provisioned component of an environment (DNS, database VM, game-api, Buddy, load balancer, etc.) with its desired vs. observed version and spec. */
|
|
1944
|
-
export type CksEnvironmentComponent = {
|
|
1945
|
-
__typename?: 'CksEnvironmentComponent';
|
|
1946
|
-
desiredSpecJson: Maybe<Scalars['String']['output']>;
|
|
1947
|
-
desiredVersion: Maybe<Scalars['String']['output']>;
|
|
1948
|
-
environmentId: Scalars['String']['output'];
|
|
1949
|
-
id: Scalars['String']['output'];
|
|
1950
|
-
kind: Scalars['String']['output'];
|
|
1951
|
-
lastObservedAt: Maybe<Scalars['DateTime']['output']>;
|
|
1952
|
-
observedSpecJson: Maybe<Scalars['String']['output']>;
|
|
1953
|
-
observedVersion: Maybe<Scalars['String']['output']>;
|
|
1954
|
-
status: Maybe<Scalars['String']['output']>;
|
|
1955
|
-
};
|
|
1956
|
-
/** Full environment detail returned by orgEnvironment: the environment plus its components, change orders, audit, secrets, outputs, billing resources, live deploy/destroy progress, and Buddy health. */
|
|
1957
|
-
export type CksEnvironmentDetail = {
|
|
1958
|
-
__typename?: 'CksEnvironmentDetail';
|
|
1959
|
-
audit: Array<CksEnvironmentAudit>;
|
|
1960
|
-
billingResources: Array<CksEnvironmentBillingResource>;
|
|
1961
|
-
/** Buddy UDP server heartbeat from mirrored server_status. Null when env is destroyed or management DB has no row. */
|
|
1962
|
-
buddyHealth: Maybe<CksBuddyHealth>;
|
|
1963
|
-
changeOrders: Array<CksEnvironmentChangeOrder>;
|
|
1964
|
-
components: Array<CksEnvironmentComponent>;
|
|
1965
|
-
/** Deploy task/step progress for the active or most recent deploy. Durable change orders may expose read-only projected progress, with planned work pending until an outcome is observed or inferred. */
|
|
1966
|
-
deployProgress: Maybe<CksDeployProgress>;
|
|
1967
|
-
/** Destroy tear-down progress for game-api and platform change orders. Durable change orders may expose read-only projected progress and show planned work as pending. */
|
|
1968
|
-
destroyProgress: Array<CksDeployProgress>;
|
|
1969
|
-
environment: CksEnvironment;
|
|
1970
|
-
outputs: Array<CksEnvironmentOutput>;
|
|
1971
|
-
secrets: Array<CksEnvironmentSecretValue>;
|
|
1972
|
-
};
|
|
1973
|
-
/** A published output value from a provisioned component (e.g. URLs, handles, connection details). */
|
|
1974
|
-
export type CksEnvironmentOutput = {
|
|
1975
|
-
__typename?: 'CksEnvironmentOutput';
|
|
1976
|
-
componentKind: Scalars['String']['output'];
|
|
1977
|
-
environmentId: Scalars['String']['output'];
|
|
1978
|
-
id: Scalars['String']['output'];
|
|
1979
|
-
label: Scalars['String']['output'];
|
|
1980
|
-
name: Scalars['String']['output'];
|
|
1981
|
-
value: Scalars['String']['output'];
|
|
1982
|
-
valueKind: Scalars['String']['output'];
|
|
1983
|
-
};
|
|
1984
|
-
/** Pricing quote for a proposed environment selection plus the org wallet balance, used to gate createEnvironment. All *Cents fields are in minor currency units (cents). */
|
|
1985
|
-
export type CksEnvironmentQuote = {
|
|
1986
|
-
__typename?: 'CksEnvironmentQuote';
|
|
1987
|
-
/** Wallet balance still available after existing reservations, in cents. Compared against firstDayReserveCents. */
|
|
1988
|
-
availableBalanceCents: Scalars['BigInt']['output'];
|
|
1989
|
-
caddyFlavor: Scalars['String']['output'];
|
|
1990
|
-
/** True when availableBalanceCents ≥ firstDayReserveCents, or when AUTO_BILLING_PAID_PROVISIONING_ENABLED is true and auto-billing is enabled with a saved payment method and enough period headroom to cover the shortfall. createEnvironment may auto-recharge before provisioning when the wallet is short but billing-ready. */
|
|
1991
|
-
canCreate: Scalars['Boolean']['output'];
|
|
1992
|
-
/** ISO-4217 currency of the *Cents fields, e.g. 'USD'. */
|
|
1993
|
-
currency: Scalars['String']['output'];
|
|
1994
|
-
databaseFlavor: Scalars['String']['output'];
|
|
1995
|
-
datacenter: Scalars['String']['output'];
|
|
1996
|
-
/** 'dedicated' (multi-VM) or 'dev_single' (one dev-only VM). */
|
|
1997
|
-
environmentClass: Scalars['String']['output'];
|
|
1998
|
-
/** Up-front wallet reserve required to create (≈ first day of runtime), in cents. */
|
|
1999
|
-
firstDayReserveCents: Scalars['BigInt']['output'];
|
|
2000
|
-
gameApiFlavor: Scalars['String']['output'];
|
|
2001
|
-
gameApiMaxServers: Scalars['Int']['output'];
|
|
2002
|
-
gameApiMinServers: Scalars['Int']['output'];
|
|
2003
|
-
/** Total hourly price of the full selection, in cents. */
|
|
2004
|
-
hourlyCostCents: Scalars['BigInt']['output'];
|
|
2005
|
-
loadBalancerCount: Scalars['Int']['output'];
|
|
2006
|
-
/** Single VM flavor when environmentClass = 'dev_single'. */
|
|
2007
|
-
singleBoxFlavor: Maybe<Scalars['String']['output']>;
|
|
2008
|
-
udpBuddyFlavor: Scalars['String']['output'];
|
|
2009
|
-
udpBuddyMaxServers: Scalars['Int']['output'];
|
|
2010
|
-
udpBuddyMinServers: Scalars['Int']['output'];
|
|
2011
|
-
/** Org wallet balance, in cents. */
|
|
2012
|
-
walletBalanceCents: Scalars['BigInt']['output'];
|
|
2013
|
-
};
|
|
2014
|
-
/** A sealed environment secret. Exposes ciphertext only (sealedCiphertextBase64) — never the plaintext. */
|
|
2015
|
-
export type CksEnvironmentSecretValue = {
|
|
2016
|
-
__typename?: 'CksEnvironmentSecretValue';
|
|
2017
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2018
|
-
environmentId: Scalars['String']['output'];
|
|
2019
|
-
id: Scalars['String']['output'];
|
|
2020
|
-
kind: Maybe<Scalars['String']['output']>;
|
|
2021
|
-
name: Scalars['String']['output'];
|
|
2022
|
-
sealedCiphertextBase64: Scalars['String']['output'];
|
|
2023
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
2024
|
-
};
|
|
2025
|
-
/** An environment release version in the deployable catalog. */
|
|
2026
|
-
export type CksEnvironmentVersion = {
|
|
2027
|
-
__typename?: 'CksEnvironmentVersion';
|
|
2028
|
-
/** Pinned cks-game-api git tag from the ingested manifest. */
|
|
2029
|
-
gameApiGitTag: Maybe<Scalars['String']['output']>;
|
|
2030
|
-
notes: Maybe<Scalars['String']['output']>;
|
|
2031
|
-
releasedAt: Scalars['DateTime']['output'];
|
|
2032
|
-
/** Release status, e.g. 'available' (deployable) or 'yanked' (withdrawn). */
|
|
2033
|
-
status: Scalars['String']['output'];
|
|
2034
|
-
/** Semantic version, e.g. 'v0.1.4'. */
|
|
2035
|
-
version: Scalars['String']['output'];
|
|
2036
|
-
};
|
|
2037
|
-
/** An OVH datacenter offered for environment placement. Only datacenters with at least one customer-selectable flavor are returned by environmentDatacenters. */
|
|
2038
|
-
export type CksOvhDatacenter = {
|
|
2039
|
-
__typename?: 'CksOvhDatacenter';
|
|
2040
|
-
city: Maybe<Scalars['String']['output']>;
|
|
2041
|
-
continent: Maybe<Scalars['String']['output']>;
|
|
2042
|
-
/** True when the datacenter is currently accepting new instances. */
|
|
2043
|
-
isAvailable: Scalars['Boolean']['output'];
|
|
2044
|
-
name: Maybe<Scalars['String']['output']>;
|
|
2045
|
-
/** Region/datacenter code used as the datacenter arg, e.g. 'GRA11'. */
|
|
2046
|
-
region: Scalars['String']['output'];
|
|
2047
|
-
/** Number of customer-selectable instances in this datacenter after availability, pricing, and admin visibility filters. */
|
|
2048
|
-
selectableInstanceCount: Scalars['Int']['output'];
|
|
2049
|
-
/** Provider availability status string, e.g. 'UP'. */
|
|
2050
|
-
status: Scalars['String']['output'];
|
|
2051
|
-
syncedAt: Scalars['DateTime']['output'];
|
|
2052
|
-
};
|
|
2053
|
-
/** Customer-selectable catalog instance flavor. Hidden, unavailable, or unpriced rows are omitted from environmentFlavors. */
|
|
2054
|
-
export type CksOvhFlavor = {
|
|
2055
|
-
__typename?: 'CksOvhFlavor';
|
|
2056
|
-
/** Catalog availability for this flavor, e.g. 'available'. */
|
|
2057
|
-
availabilityStatus: Scalars['String']['output'];
|
|
2058
|
-
/** ISO-4217 currency for the price fields, e.g. 'USD'. */
|
|
2059
|
-
currency: Scalars['String']['output'];
|
|
2060
|
-
/** Customer hourly price in cents. Non-null for every flavor returned from environmentFlavors. */
|
|
2061
|
-
customerHourlyPriceCents: Scalars['BigInt']['output'];
|
|
2062
|
-
/** Customer monthly reference price in cents. Display-only until monthly billing is implemented. */
|
|
2063
|
-
customerMonthlyPriceCents: Maybe<Scalars['BigInt']['output']>;
|
|
2064
|
-
/** Local disk in gigabytes. */
|
|
2065
|
-
diskGb: Maybe<Scalars['Int']['output']>;
|
|
2066
|
-
flavorName: Scalars['String']['output'];
|
|
2067
|
-
flavorType: Maybe<Scalars['String']['output']>;
|
|
2068
|
-
/** How the customer price was derived (e.g. fixed vs. markup mode). */
|
|
2069
|
-
pricingMode: Scalars['String']['output'];
|
|
2070
|
-
/** Where the customer price came from (pricing pipeline source). */
|
|
2071
|
-
pricingSource: Maybe<Scalars['String']['output']>;
|
|
2072
|
-
/** Remaining instances of this flavor the project may launch in the datacenter (OVH quota headroom). */
|
|
2073
|
-
quotaAvailable: Maybe<Scalars['Int']['output']>;
|
|
2074
|
-
/** RAM in megabytes. */
|
|
2075
|
-
ramMb: Maybe<Scalars['Int']['output']>;
|
|
2076
|
-
/** Raw OVH provider hourly cost in cents (pre-markup). Internal reference; bill against customerHourlyPriceCents. */
|
|
2077
|
-
rawHourlyCostCents: Maybe<Scalars['BigInt']['output']>;
|
|
2078
|
-
syncedAt: Scalars['DateTime']['output'];
|
|
2079
|
-
/** Virtual CPU count. */
|
|
2080
|
-
vcpus: Maybe<Scalars['Int']['output']>;
|
|
2081
|
-
};
|
|
2082
1754
|
/** Notification received when another client sends an audio packet (voice chat). Received via the udpNotifications subscription. */
|
|
2083
1755
|
export type ClientAudioNotification = {
|
|
2084
1756
|
__typename?: 'ClientAudioNotification';
|
|
@@ -2278,95 +1950,6 @@ export type ConnectionPageInfo = {
|
|
|
2278
1950
|
/** Opaque cursor of the first edge in this page. */
|
|
2279
1951
|
startCursor: Maybe<Scalars['String']['output']>;
|
|
2280
1952
|
};
|
|
2281
|
-
/** Operator-facing view of cks_environments. */
|
|
2282
|
-
export type CpAdminEnvironment = {
|
|
2283
|
-
__typename?: 'CpAdminEnvironment';
|
|
2284
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2285
|
-
/** When true, purgeEnvironment is blocked. Toggle via setEnvironmentDeletionProtection. */
|
|
2286
|
-
deletionProtectionEnabled: Scalars['Boolean']['output'];
|
|
2287
|
-
deletionProtectionSetAt: Maybe<Scalars['DateTime']['output']>;
|
|
2288
|
-
deletionProtectionSetByEmail: Maybe<Scalars['String']['output']>;
|
|
2289
|
-
displayName: Scalars['String']['output'];
|
|
2290
|
-
id: Scalars['ID']['output'];
|
|
2291
|
-
orgId: Maybe<Scalars['String']['output']>;
|
|
2292
|
-
primaryCloud: Scalars['String']['output'];
|
|
2293
|
-
primaryRegion: Scalars['String']['output'];
|
|
2294
|
-
slug: Scalars['String']['output'];
|
|
2295
|
-
/** Provisioning lifecycle: deploy_requested -> provisioning -> active; deploy_failed; destroy_requested -> destroyed (destroy_failed on error). */
|
|
2296
|
-
status: Scalars['String']['output'];
|
|
2297
|
-
subdomainHandle: Maybe<Scalars['String']['output']>;
|
|
2298
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
2299
|
-
};
|
|
2300
|
-
/** One page of operator environment rows. Paging is 1-based: page 1 is the first page. */
|
|
2301
|
-
export type CpAdminEnvironmentsPage = {
|
|
2302
|
-
__typename?: 'CpAdminEnvironmentsPage';
|
|
2303
|
-
/** Current 1-based page number. */
|
|
2304
|
-
page: Scalars['Int']['output'];
|
|
2305
|
-
/** Requested page size (max rows per page). */
|
|
2306
|
-
pageSize: Scalars['Int']['output'];
|
|
2307
|
-
/** Environment rows on this page. */
|
|
2308
|
-
rows: Array<CpAdminEnvironment>;
|
|
2309
|
-
/** Total rows across all pages (not just this page). */
|
|
2310
|
-
total: Scalars['Int']['output'];
|
|
2311
|
-
};
|
|
2312
|
-
export type CpAuditEntry = {
|
|
2313
|
-
__typename?: 'CpAuditEntry';
|
|
2314
|
-
action: Scalars['String']['output'];
|
|
2315
|
-
actorKind: Scalars['String']['output'];
|
|
2316
|
-
actorUserId: Maybe<Scalars['String']['output']>;
|
|
2317
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2318
|
-
entityId: Maybe<Scalars['String']['output']>;
|
|
2319
|
-
entityKind: Maybe<Scalars['String']['output']>;
|
|
2320
|
-
environmentId: Maybe<Scalars['String']['output']>;
|
|
2321
|
-
id: Scalars['ID']['output'];
|
|
2322
|
-
payloadJson: Maybe<Scalars['String']['output']>;
|
|
2323
|
-
};
|
|
2324
|
-
export type CpBuddyLiveRates = {
|
|
2325
|
-
__typename?: 'CpBuddyLiveRates';
|
|
2326
|
-
clientRecvMbitPerSec: Scalars['Float']['output'];
|
|
2327
|
-
clientRecvMsgsPerSec: Scalars['Float']['output'];
|
|
2328
|
-
clientSendMbitPerSec: Scalars['Float']['output'];
|
|
2329
|
-
clientSendMsgsPerSec: Scalars['Float']['output'];
|
|
2330
|
-
clients: Scalars['Float']['output'];
|
|
2331
|
-
serverId: Scalars['String']['output'];
|
|
2332
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
2333
|
-
};
|
|
2334
|
-
export type CpChangeOrder = {
|
|
2335
|
-
__typename?: 'CpChangeOrder';
|
|
2336
|
-
claimedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2337
|
-
claimedBy: Maybe<Scalars['String']['output']>;
|
|
2338
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2339
|
-
environmentId: Scalars['String']['output'];
|
|
2340
|
-
error: Maybe<Scalars['String']['output']>;
|
|
2341
|
-
finishedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2342
|
-
id: Scalars['ID']['output'];
|
|
2343
|
-
/** Pipeline kind (e.g. deploy_environment_version, *_destroy). */
|
|
2344
|
-
kind: Scalars['String']['output'];
|
|
2345
|
-
/** JSON-encoded payload */
|
|
2346
|
-
payloadJson: Maybe<Scalars['String']['output']>;
|
|
2347
|
-
/** Execution status: pending, claimed/in_progress, succeeded, failed, or cancelled. */
|
|
2348
|
-
status: Scalars['String']['output'];
|
|
2349
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
2350
|
-
};
|
|
2351
|
-
/** Change-order detail with ordered task and step progress. Durable change orders may return read-only projected rows when exact live execution details are unavailable. */
|
|
2352
|
-
export type CpChangeOrderDetail = {
|
|
2353
|
-
__typename?: 'CpChangeOrderDetail';
|
|
2354
|
-
order: CpChangeOrder;
|
|
2355
|
-
steps: Array<CpStepRow>;
|
|
2356
|
-
tasks: Array<CpTaskRow>;
|
|
2357
|
-
};
|
|
2358
|
-
/** One page of operator change-order rows. Paging is 1-based: page 1 is the first page. */
|
|
2359
|
-
export type CpChangeOrdersPage = {
|
|
2360
|
-
__typename?: 'CpChangeOrdersPage';
|
|
2361
|
-
/** Current 1-based page number. */
|
|
2362
|
-
page: Scalars['Int']['output'];
|
|
2363
|
-
/** Requested page size (max rows per page). */
|
|
2364
|
-
pageSize: Scalars['Int']['output'];
|
|
2365
|
-
/** Change-order rows on this page. */
|
|
2366
|
-
rows: Array<CpChangeOrder>;
|
|
2367
|
-
/** Total rows across all pages (not just this page). */
|
|
2368
|
-
total: Scalars['Int']['output'];
|
|
2369
|
-
};
|
|
2370
1953
|
/** Operator-set platform ceilings for the per-app WASM compute policy. Each field caps the matching wasm_module_policy knob platform-wide: game-api rejects computeSetPolicy values above the ceiling. A null field means no operator override is stored — game-api falls back to its COMPUTE_PLATFORM_MAX_* env var (bootstrap default), then to the built-in code default. Edits propagate to game-api replicas via replica sync and apply within ~30 seconds, without a game-api restart. */
|
|
2371
1954
|
export type CpComputePlatformCeilings = {
|
|
2372
1955
|
__typename?: 'CpComputePlatformCeilings';
|
|
@@ -2393,91 +1976,6 @@ export type CpComputePlatformCeilings = {
|
|
|
2393
1976
|
/** users.user_id of the operator who last updated the ceilings. Null when never edited. */
|
|
2394
1977
|
updatedByUserId: Maybe<Scalars['String']['output']>;
|
|
2395
1978
|
};
|
|
2396
|
-
export type CpEnvSecretRow = {
|
|
2397
|
-
__typename?: 'CpEnvSecretRow';
|
|
2398
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2399
|
-
environmentId: Scalars['String']['output'];
|
|
2400
|
-
id: Scalars['ID']['output'];
|
|
2401
|
-
kind: Maybe<Scalars['String']['output']>;
|
|
2402
|
-
name: Scalars['String']['output'];
|
|
2403
|
-
rotatedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2404
|
-
};
|
|
2405
|
-
/** Operator-facing view of one ingested (or git-only pending) environment release manifest. */
|
|
2406
|
-
export type CpEnvironmentVersionRow = {
|
|
2407
|
-
__typename?: 'CpEnvironmentVersionRow';
|
|
2408
|
-
buddyVersion: Maybe<Scalars['String']['output']>;
|
|
2409
|
-
gameApiGitTag: Maybe<Scalars['String']['output']>;
|
|
2410
|
-
/** True when a row exists in cks_environment_versions. */
|
|
2411
|
-
inDb: Scalars['Boolean']['output'];
|
|
2412
|
-
/** True when releases/<version>.yaml exists on the configured git ref. */
|
|
2413
|
-
inGit: Scalars['Boolean']['output'];
|
|
2414
|
-
ingestedAt: Scalars['DateTime']['output'];
|
|
2415
|
-
/** True when this ingested available release is what org redeploy targets (newest available, or ENVIRONMENT_DEFAULT_VERSION). */
|
|
2416
|
-
isLatestAvailable: Scalars['Boolean']['output'];
|
|
2417
|
-
notes: Maybe<Scalars['String']['output']>;
|
|
2418
|
-
releasedAt: Scalars['DateTime']['output'];
|
|
2419
|
-
sourceCommit: Maybe<Scalars['String']['output']>;
|
|
2420
|
-
status: Scalars['String']['output'];
|
|
2421
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
2422
|
-
version: Scalars['String']['output'];
|
|
2423
|
-
};
|
|
2424
|
-
/** Operator release manifest list merged from git and cks_environment_versions. */
|
|
2425
|
-
export type CpEnvironmentVersionsPage = {
|
|
2426
|
-
__typename?: 'CpEnvironmentVersionsPage';
|
|
2427
|
-
/** False when GitHub manifest listing failed (e.g. invalid GITHUB_PAT). Rows may still come from the database. */
|
|
2428
|
-
gitSourceAvailable: Scalars['Boolean']['output'];
|
|
2429
|
-
/** Version org redeploy resolves to when no explicit version is passed. */
|
|
2430
|
-
latestAvailableVersion: Maybe<Scalars['String']['output']>;
|
|
2431
|
-
rows: Array<CpEnvironmentVersionRow>;
|
|
2432
|
-
};
|
|
2433
|
-
/** A user with operator and/or super-admin privileges. */
|
|
2434
|
-
export type CpOperatorUser = {
|
|
2435
|
-
__typename?: 'CpOperatorUser';
|
|
2436
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2437
|
-
email: Maybe<Scalars['String']['output']>;
|
|
2438
|
-
gamertag: Maybe<Scalars['String']['output']>;
|
|
2439
|
-
/** True when users.is_operator is set (operator surface access). */
|
|
2440
|
-
isOperator: Scalars['Boolean']['output'];
|
|
2441
|
-
/** True when users.is_super_admin is set (implies operator access). */
|
|
2442
|
-
isSuperAdmin: Scalars['Boolean']['output'];
|
|
2443
|
-
userId: Scalars['ID']['output'];
|
|
2444
|
-
};
|
|
2445
|
-
export type CpOvhCatalogRow = {
|
|
2446
|
-
__typename?: 'CpOvhCatalogRow';
|
|
2447
|
-
/** Customer-facing hourly price in cents, as a string. */
|
|
2448
|
-
customerHourlyPriceCents: Maybe<Scalars['String']['output']>;
|
|
2449
|
-
/** How the customer price was derived (e.g. fixed vs. markup). */
|
|
2450
|
-
customerPricingMode: Scalars['String']['output'];
|
|
2451
|
-
diskGb: Maybe<Scalars['Int']['output']>;
|
|
2452
|
-
flavorName: Scalars['String']['output'];
|
|
2453
|
-
inboundBandwidth: Maybe<Scalars['Int']['output']>;
|
|
2454
|
-
outboundBandwidth: Maybe<Scalars['Int']['output']>;
|
|
2455
|
-
/** Raw OVH provider hourly cost in cents, as a string. Internal reference. */
|
|
2456
|
-
ovhHourlyPriceCents: Maybe<Scalars['String']['output']>;
|
|
2457
|
-
quotaAvailable: Maybe<Scalars['Int']['output']>;
|
|
2458
|
-
ramMb: Maybe<Scalars['Int']['output']>;
|
|
2459
|
-
region: Scalars['String']['output'];
|
|
2460
|
-
vcpus: Maybe<Scalars['Int']['output']>;
|
|
2461
|
-
};
|
|
2462
|
-
/** Result of publishing an environment release from a game-api tag. */
|
|
2463
|
-
export type CpPublishEnvironmentReleaseResult = {
|
|
2464
|
-
__typename?: 'CpPublishEnvironmentReleaseResult';
|
|
2465
|
-
/** True when releases/vX.Y.Z.yaml was committed to the manifest git ref. */
|
|
2466
|
-
committedToGit: Scalars['Boolean']['output'];
|
|
2467
|
-
/** Set when ingest succeeded but the GitHub manifest commit failed. */
|
|
2468
|
-
gitCommitError: Maybe<Scalars['String']['output']>;
|
|
2469
|
-
schemaChanged: Scalars['Boolean']['output'];
|
|
2470
|
-
version: CpEnvironmentVersionRow;
|
|
2471
|
-
};
|
|
2472
|
-
export type CpSecretRow = {
|
|
2473
|
-
__typename?: 'CpSecretRow';
|
|
2474
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2475
|
-
environmentId: Scalars['String']['output'];
|
|
2476
|
-
id: Scalars['ID']['output'];
|
|
2477
|
-
kind: Maybe<Scalars['String']['output']>;
|
|
2478
|
-
name: Scalars['String']['output'];
|
|
2479
|
-
rotatedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2480
|
-
};
|
|
2481
1979
|
/** Patch for cpSetComputePlatformCeilings. Omitted fields stay unchanged; a field set to an explicit null clears that override (game-api falls back to its COMPUTE_PLATFORM_MAX_* env var, then the code default); a value sets the ceiling. All values must be > 0. At least one field is required. */
|
|
2482
1980
|
export type CpSetComputePlatformCeilingsInput = {
|
|
2483
1981
|
/** Max fuel per invoke (decimal string). > 0; explicit null clears the override; omit to leave unchanged. */
|
|
@@ -2499,94 +1997,6 @@ export type CpSetComputePlatformCeilingsInput = {
|
|
|
2499
1997
|
/** Max tick rate in Hz per module. > 0; explicit null clears the override; omit to leave unchanged. */
|
|
2500
1998
|
maxTickHz?: InputMaybe<Scalars['Int']['input']>;
|
|
2501
1999
|
};
|
|
2502
|
-
/** Operator step progress. Rows may contain recorded execution progress or a read-only projection. Fields unavailable for projected progress remain null. */
|
|
2503
|
-
export type CpStepRow = {
|
|
2504
|
-
__typename?: 'CpStepRow';
|
|
2505
|
-
/** Attempt indicator. For projected progress, 0 means no attempt or outcome has been observed or inferred; 1 means an attempt or outcome has been observed or inferred. */
|
|
2506
|
-
attempt: Scalars['Int']['output'];
|
|
2507
|
-
claimedBy: Maybe<Scalars['String']['output']>;
|
|
2508
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2509
|
-
error: Maybe<Scalars['String']['output']>;
|
|
2510
|
-
finishedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2511
|
-
handleJson: Maybe<Scalars['String']['output']>;
|
|
2512
|
-
id: Scalars['ID']['output'];
|
|
2513
|
-
idempotencyKey: Maybe<Scalars['String']['output']>;
|
|
2514
|
-
intentJson: Maybe<Scalars['String']['output']>;
|
|
2515
|
-
kind: Scalars['String']['output'];
|
|
2516
|
-
ordinal: Scalars['Int']['output'];
|
|
2517
|
-
outputJson: Maybe<Scalars['String']['output']>;
|
|
2518
|
-
payloadJson: Maybe<Scalars['String']['output']>;
|
|
2519
|
-
recheckAt: Maybe<Scalars['DateTime']['output']>;
|
|
2520
|
-
startedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2521
|
-
/** Execution status. For projected progress, pending means the step is planned and no terminal outcome is available yet. */
|
|
2522
|
-
status: Scalars['String']['output'];
|
|
2523
|
-
taskId: Scalars['String']['output'];
|
|
2524
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
2525
|
-
};
|
|
2526
|
-
/** Operator task progress. Rows may contain recorded execution progress or a read-only projection for a durable change order. */
|
|
2527
|
-
export type CpTaskRow = {
|
|
2528
|
-
__typename?: 'CpTaskRow';
|
|
2529
|
-
changeOrderId: Scalars['String']['output'];
|
|
2530
|
-
/** JSON-encoded context */
|
|
2531
|
-
contextJson: Maybe<Scalars['String']['output']>;
|
|
2532
|
-
createdAt: Scalars['DateTime']['output'];
|
|
2533
|
-
dependsOn: Array<Scalars['String']['output']>;
|
|
2534
|
-
environmentId: Maybe<Scalars['String']['output']>;
|
|
2535
|
-
error: Maybe<Scalars['String']['output']>;
|
|
2536
|
-
finishedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2537
|
-
id: Scalars['ID']['output'];
|
|
2538
|
-
kind: Scalars['String']['output'];
|
|
2539
|
-
ordinal: Scalars['Int']['output'];
|
|
2540
|
-
startedAt: Maybe<Scalars['DateTime']['output']>;
|
|
2541
|
-
/** Execution status. For projected progress, pending means the task is planned and no terminal outcome is available yet. */
|
|
2542
|
-
status: Scalars['String']['output'];
|
|
2543
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
2544
|
-
};
|
|
2545
|
-
/** cks-game-api tag on GitHub that is not yet pinned by any available environment release. */
|
|
2546
|
-
export type CpUnreleasedGameApiTag = {
|
|
2547
|
-
__typename?: 'CpUnreleasedGameApiTag';
|
|
2548
|
-
/** Environment version that Publish & ingest would create (v0.1.N+1). */
|
|
2549
|
-
proposedEnvironmentVersion: Scalars['String']['output'];
|
|
2550
|
-
/** True when create-schema.sql differs between this tag and the current deploy-target game-api pin. */
|
|
2551
|
-
schemaChanged: Scalars['Boolean']['output'];
|
|
2552
|
-
tag: Scalars['String']['output'];
|
|
2553
|
-
/** ISO timestamp when the tag was created on GitHub. */
|
|
2554
|
-
taggedAt: Maybe<Scalars['String']['output']>;
|
|
2555
|
-
};
|
|
2556
|
-
/** Game-api tags eligible for one-click environment release publish. */
|
|
2557
|
-
export type CpUnreleasedGameApiTagsPage = {
|
|
2558
|
-
__typename?: 'CpUnreleasedGameApiTagsPage';
|
|
2559
|
-
/** gameApiGitTag on the current org deploy target, if any. */
|
|
2560
|
-
currentDeployTargetGameApiTag: Maybe<Scalars['String']['output']>;
|
|
2561
|
-
/** False when GitHub tag listing failed (e.g. invalid GITHUB_PAT). */
|
|
2562
|
-
gitSourceAvailable: Scalars['Boolean']['output'];
|
|
2563
|
-
tags: Array<CpUnreleasedGameApiTag>;
|
|
2564
|
-
};
|
|
2565
|
-
export type CpUsageMinuteRow = {
|
|
2566
|
-
__typename?: 'CpUsageMinuteRow';
|
|
2567
|
-
minute: Scalars['DateTime']['output'];
|
|
2568
|
-
recvBytes: Scalars['String']['output'];
|
|
2569
|
-
recvMsgs: Maybe<Scalars['String']['output']>;
|
|
2570
|
-
sendBytes: Scalars['String']['output'];
|
|
2571
|
-
sendMsgs: Maybe<Scalars['String']['output']>;
|
|
2572
|
-
};
|
|
2573
|
-
export type CpUsageRatePeaks = {
|
|
2574
|
-
__typename?: 'CpUsageRatePeaks';
|
|
2575
|
-
avgSendMbitPerSec: Scalars['Float']['output'];
|
|
2576
|
-
avgSendMsgsPerSec: Scalars['Float']['output'];
|
|
2577
|
-
peakSendMbitPerSec: Scalars['Float']['output'];
|
|
2578
|
-
peakSendMsgsPerSec: Scalars['Float']['output'];
|
|
2579
|
-
sampleMinutes: Scalars['Float']['output'];
|
|
2580
|
-
};
|
|
2581
|
-
export type CpUsageSummary = {
|
|
2582
|
-
__typename?: 'CpUsageSummary';
|
|
2583
|
-
buddyLive: Maybe<CpBuddyLiveRates>;
|
|
2584
|
-
environmentSlug: Scalars['String']['output'];
|
|
2585
|
-
graphql: Array<CpUsageMinuteRow>;
|
|
2586
|
-
orgId: Maybe<Scalars['String']['output']>;
|
|
2587
|
-
replication: Array<CpUsageMinuteRow>;
|
|
2588
|
-
replicationRates: CpUsageRatePeaks;
|
|
2589
|
-
};
|
|
2590
2000
|
/** Input for creating a new app access tier. */
|
|
2591
2001
|
export type CreateAccessTierInput = {
|
|
2592
2002
|
/** Numeric id of the app the tier belongs to. The caller must hold manage_access_tiers on this app. */
|
|
@@ -2752,51 +2162,6 @@ export type CreateCrowdyStudioProjectInput = {
|
|
|
2752
2162
|
/** Optional stable crate-style SERVER module name. Deployment rechecks current authority. */
|
|
2753
2163
|
serverModuleName?: InputMaybe<Scalars['String']['input']>;
|
|
2754
2164
|
};
|
|
2755
|
-
/** 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. */
|
|
2756
|
-
export type CreateEnvironmentInput = {
|
|
2757
|
-
/** Optional app ids to link to the new environment at creation. Each must be unique; omit or pass an empty list to link none. */
|
|
2758
|
-
appIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2759
|
-
/** Buddy billing tier level from buddyBillingTiers. Defaults to tier 1 for dedicated environments. */
|
|
2760
|
-
buddyBillingTier?: InputMaybe<Scalars['Int']['input']>;
|
|
2761
|
-
/** Flavor name from environmentFlavors(datacenter) for the Caddy LB VMs in front of the game-api fleet; must have a published hourly price. Required for dedicated. */
|
|
2762
|
-
caddyFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
2763
|
-
/** Flavor name from environmentFlavors(datacenter); must have a published hourly price. Required for dedicated. */
|
|
2764
|
-
databaseFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
2765
|
-
/** OVH datacenter/region code from environmentDatacenters (e.g. 'GRA11'). */
|
|
2766
|
-
datacenter: Scalars['String']['input'];
|
|
2767
|
-
/** Human-readable environment name (max 80 chars). */
|
|
2768
|
-
displayName: Scalars['String']['input'];
|
|
2769
|
-
/** Deployment class: 'dedicated' (default, multi-VM) or 'dev_single' (one cheap dev-only VM running Postgres + management-api + game-api + Buddy). dev_single is not for production. */
|
|
2770
|
-
environmentClass?: InputMaybe<Scalars['String']['input']>;
|
|
2771
|
-
/** Single VM flavor for environmentClass='dev_single' (e.g. b3-8); must have a published hourly price. Ignored for dedicated. */
|
|
2772
|
-
flavor?: InputMaybe<Scalars['String']['input']>;
|
|
2773
|
-
/** Flavor name from environmentFlavors(datacenter) for per-tenant game-api VMs; must have a published hourly price. Required for dedicated. */
|
|
2774
|
-
gameApiFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
2775
|
-
/** Autoscaling ceiling for game-api servers (min 1, ≥ gameApiMinServers). Required for dedicated; ignored for dev_single. */
|
|
2776
|
-
gameApiMaxServers?: InputMaybe<Scalars['Int']['input']>;
|
|
2777
|
-
/** Autoscaling floor for game-api servers (min 1). Required for dedicated; ignored for dev_single. */
|
|
2778
|
-
gameApiMinServers?: InputMaybe<Scalars['Int']['input']>;
|
|
2779
|
-
/** GraphQL billing tier level from graphqlBillingTiers. Defaults to tier 1 for dedicated environments. */
|
|
2780
|
-
graphqlBillingTier?: InputMaybe<Scalars['Int']['input']>;
|
|
2781
|
-
/** Super-admin only: designate this as the single platform-owned shared environment (slug 'shared') that hosts the shared game-api for apps with deploymentTarget='shared'. Must be a dedicated environment. Customers cannot set this; the management API rejects it for non-super-admins. */
|
|
2782
|
-
isShared?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2783
|
-
/** Number of Caddy load-balancer VMs in front of the game-api fleet (min 1). Required for dedicated; ignored for dev_single. */
|
|
2784
|
-
loadBalancerCount?: InputMaybe<Scalars['Int']['input']>;
|
|
2785
|
-
/** Organization id (BigInt) that will own and be billed for the environment. */
|
|
2786
|
-
orgId: Scalars['BigInt']['input'];
|
|
2787
|
-
/** Postgres billing tier level from postgresBillingTiers. Defaults to tier 1 for dedicated environments. */
|
|
2788
|
-
postgresBillingTier?: InputMaybe<Scalars['Int']['input']>;
|
|
2789
|
-
/** Optional explicit slug for scripts/E2E. When omitted, the API auto-assigns a short slug. Must fit Route 53 DNS limits for this tier (typically 11–16 characters when DBOS is enabled; up to 40 on legacy runner). Lowercase letters, numbers, and dashes only. */
|
|
2790
|
-
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2791
|
-
/** Flavor name from environmentFlavors(datacenter); must have a published hourly price. Required for dedicated. */
|
|
2792
|
-
udpBuddyFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
2793
|
-
/** Autoscaling ceiling for Buddy UDP servers (min 1, ≥ udpBuddyMinServers). Required for dedicated; ignored for dev_single. */
|
|
2794
|
-
udpBuddyMaxServers?: InputMaybe<Scalars['Int']['input']>;
|
|
2795
|
-
/** Autoscaling floor for Buddy UDP servers (min 1). Required for dedicated; ignored for dev_single. */
|
|
2796
|
-
udpBuddyMinServers?: InputMaybe<Scalars['Int']['input']>;
|
|
2797
|
-
/** Base64-encoded 32-byte X25519 public key used to seal this environment’s secrets. Must decode to exactly 32 bytes. */
|
|
2798
|
-
x25519PublicKeyBase64: Scalars['String']['input'];
|
|
2799
|
-
};
|
|
2800
2165
|
/** Defines a new grid by its app and two opposite corner chunks. The corners are normalized server-side into a low/high chunk box, so corner order is irrelevant and a single chunk (corner1 == corner2) is allowed. */
|
|
2801
2166
|
export type CreateGridInput = {
|
|
2802
2167
|
/** The app (tenant) the grid belongs to. */
|
|
@@ -2943,7 +2308,7 @@ export type CreateTeamInput = {
|
|
|
2943
2308
|
export type CreateUserAppStateInput = {
|
|
2944
2309
|
/** App (game) id to scope the state to. Required. BigInt sent as a decimal string. */
|
|
2945
2310
|
appId: Scalars['BigInt']['input'];
|
|
2946
|
-
/** Per-app user state as base64-encoded binary. Omit or send null to clear it. */
|
|
2311
|
+
/** Per-app user state as base64-encoded binary, at most 1,048,576 base64 characters (~768 KiB binary); larger payloads draw a structured validation error. Omit or send null to clear it. */
|
|
2947
2312
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
2948
2313
|
};
|
|
2949
2314
|
/** Single-use human decision lifecycle for one canonical argument hash. */
|
|
@@ -3066,11 +2431,11 @@ export declare enum CrowdyStudioAgentLeaseType {
|
|
|
3066
2431
|
}
|
|
3067
2432
|
/** Human-selected authority mode. The model cannot change modes or elevate itself. */
|
|
3068
2433
|
export declare enum CrowdyStudioAgentMode {
|
|
3069
|
-
/** Read
|
|
2434
|
+
/** Read bounded project, diagnostics, policy, and host context; no project or game writes. */
|
|
3070
2435
|
Ask = "ASK",
|
|
3071
|
-
/**
|
|
2436
|
+
/** Permit routine checkpointed project edits and draft tests under target write/run permissions and a workspace lease; live deployment is available only through an exact human approval. */
|
|
3072
2437
|
Build = "BUILD",
|
|
3073
|
-
/**
|
|
2438
|
+
/** Permit bounded browser-host observation and gameplay tools only through a visible, human-granted, scoped lease; human input and policy/context changes preempt control immediately. */
|
|
3074
2439
|
Play = "PLAY"
|
|
3075
2440
|
}
|
|
3076
2441
|
/** Per-player UTC-day cumulative limits plus player/app concurrency ceilings. */
|
|
@@ -3818,14 +3183,6 @@ export type DeployPlayerComputeInput = {
|
|
|
3818
3183
|
/** Optional server tick rate in Hz. Omit for invoke/event-only modules or CLIENT artifacts. Clamped by the effective player/app policy. */
|
|
3819
3184
|
tickHz?: InputMaybe<Scalars['Float']['input']>;
|
|
3820
3185
|
};
|
|
3821
|
-
export type DestroyEnvironmentInput = {
|
|
3822
|
-
/** Optional idempotency key. Recommended for retries: replaying with the same key and identical input returns the first result instead of re-applying; the same key with different input returns IDEMPOTENCY_CONFLICT. Keys expire after 24h. */
|
|
3823
|
-
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
3824
|
-
/** Organization id (BigInt) that owns the environment. */
|
|
3825
|
-
orgId: Scalars['BigInt']['input'];
|
|
3826
|
-
/** Slug of the environment to destroy (all cloud resources are torn down). */
|
|
3827
|
-
slug: Scalars['String']['input'];
|
|
3828
|
-
};
|
|
3829
3186
|
/** Dev-only bypass sign-in (active only when DEV_AUTH_BYPASS is enabled; never in production). */
|
|
3830
3187
|
export type DevLoginInput = {
|
|
3831
3188
|
/** Email of the account to sign in as (created if absent). */
|
|
@@ -3852,114 +3209,6 @@ export type EnsureContainerInput = {
|
|
|
3852
3209
|
/** The container type to resolve or instantiate. */
|
|
3853
3210
|
typeName: Scalars['String']['input'];
|
|
3854
3211
|
};
|
|
3855
|
-
/** One manifest component's change in a redeploy plan: what the environment currently runs vs what the target release pins. */
|
|
3856
|
-
export type EnvironmentComponentChange = {
|
|
3857
|
-
__typename?: 'EnvironmentComponentChange';
|
|
3858
|
-
/** True when the redeploy would change this component. */
|
|
3859
|
-
changed: Scalars['Boolean']['output'];
|
|
3860
|
-
/** Manifest component kind (e.g. 'game_api_environment', 'buddy', 'game_api_base_image'). */
|
|
3861
|
-
component: Scalars['String']['output'];
|
|
3862
|
-
/** Version the environment currently runs for this component (observed, falling back to last-desired). Null when never deployed. */
|
|
3863
|
-
fromVersion: Maybe<Scalars['String']['output']>;
|
|
3864
|
-
/** Version the target release pins for this component. Null when the target manifest omits the component. */
|
|
3865
|
-
toVersion: Maybe<Scalars['String']['output']>;
|
|
3866
|
-
};
|
|
3867
|
-
/** A task the redeploy pipeline would enqueue, with its step kinds in execution order. Enumerated from the same planner the real change order uses. */
|
|
3868
|
-
export type EnvironmentPlannedTask = {
|
|
3869
|
-
__typename?: 'EnvironmentPlannedTask';
|
|
3870
|
-
/** Task kinds this task waits on before starting. */
|
|
3871
|
-
dependsOn: Array<Scalars['String']['output']>;
|
|
3872
|
-
/** Task kind (e.g. 'apply_schema_in_place', 'update_game_api_1'). */
|
|
3873
|
-
kind: Scalars['String']['output'];
|
|
3874
|
-
/** Step kinds in order (e.g. 'pg:apply_schema', 'ssh:install_wasm_toolchain'). */
|
|
3875
|
-
steps: Array<Scalars['String']['output']>;
|
|
3876
|
-
};
|
|
3877
|
-
/** Input for environmentQuote. Mirrors CreateEnvironmentInput’s class/flavor shape: dedicated needs the four per-role flavors + counts; dev_single needs only the single flavor. */
|
|
3878
|
-
export type EnvironmentQuoteInput = {
|
|
3879
|
-
/** Flavor name from environmentFlavors(datacenter) for the Caddy LB VMs in front of the game-api fleet; must have a published hourly price. Required for dedicated. */
|
|
3880
|
-
caddyFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
3881
|
-
/** Flavor name from environmentFlavors(datacenter); must have a published hourly price. Required for dedicated. */
|
|
3882
|
-
databaseFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
3883
|
-
/** OVH datacenter/region code from environmentDatacenters (e.g. 'GRA11'). */
|
|
3884
|
-
datacenter: Scalars['String']['input'];
|
|
3885
|
-
/** Deployment class: 'dedicated' (default) or 'dev_single'. */
|
|
3886
|
-
environmentClass?: InputMaybe<Scalars['String']['input']>;
|
|
3887
|
-
/** Single VM flavor for environmentClass='dev_single'. Ignored for dedicated. */
|
|
3888
|
-
flavor?: InputMaybe<Scalars['String']['input']>;
|
|
3889
|
-
/** Flavor name from environmentFlavors(datacenter) for per-tenant game-api VMs; must have a published hourly price. Required for dedicated. */
|
|
3890
|
-
gameApiFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
3891
|
-
gameApiMaxServers?: InputMaybe<Scalars['Int']['input']>;
|
|
3892
|
-
gameApiMinServers?: InputMaybe<Scalars['Int']['input']>;
|
|
3893
|
-
loadBalancerCount?: InputMaybe<Scalars['Int']['input']>;
|
|
3894
|
-
/** Organization id (BigInt) to quote against (uses its wallet balance). */
|
|
3895
|
-
orgId: Scalars['BigInt']['input'];
|
|
3896
|
-
/** Flavor name from environmentFlavors(datacenter); must have a published hourly price. Required for dedicated. */
|
|
3897
|
-
udpBuddyFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
3898
|
-
udpBuddyMaxServers?: InputMaybe<Scalars['Int']['input']>;
|
|
3899
|
-
udpBuddyMinServers?: InputMaybe<Scalars['Int']['input']>;
|
|
3900
|
-
};
|
|
3901
|
-
/** DRY RUN preview of redeployEnvironment: exactly what moving the environment to a target release version would do — component version diffs (game-api, Buddy, base images), whether game-DB schema DDL applies, and the pipeline tasks/steps that would run — WITHOUT creating a change order or touching any VM. Blockers list everything that would make the real mutation fail. */
|
|
3902
|
-
export type EnvironmentRedeployPlan = {
|
|
3903
|
-
__typename?: 'EnvironmentRedeployPlan';
|
|
3904
|
-
/** Why the real redeployEnvironment call would be rejected right now (active change order, missing flavors, version not deployable, ...). Empty when the redeploy would proceed. */
|
|
3905
|
-
blockers: Array<Scalars['String']['output']>;
|
|
3906
|
-
/** Change-order kind the real mutation would enqueue ('redeploy_environment_services' or 'deploy_environment_version'). */
|
|
3907
|
-
changeOrderKind: Maybe<Scalars['String']['output']>;
|
|
3908
|
-
/** Per-component version diff between what the environment runs and what the target release pins. */
|
|
3909
|
-
componentChanges: Array<EnvironmentComponentChange>;
|
|
3910
|
-
/** Release version the environment currently observes (null before first deploy). */
|
|
3911
|
-
currentVersion: Maybe<Scalars['String']['output']>;
|
|
3912
|
-
/** How the redeploy would run: 'services' (in-place bump on existing VMs) or 'full' (full reprovision). Null when blocked before resolution. */
|
|
3913
|
-
deployMode: Maybe<Scalars['String']['output']>;
|
|
3914
|
-
/** Environment slug. */
|
|
3915
|
-
environmentSlug: Scalars['String']['output'];
|
|
3916
|
-
/** Human-readable highlights of what the redeploy does (game-api tag movement, Buddy artifact resolution, schema apply/skip, VM counts). */
|
|
3917
|
-
notes: Array<Scalars['String']['output']>;
|
|
3918
|
-
/** Git ref whose create-schema.sql would be applied. */
|
|
3919
|
-
schemaGitRef: Maybe<Scalars['String']['output']>;
|
|
3920
|
-
/** True when the plan applies the game schema (create-schema.sql at the target's schemaGitRef) to the tenant game DB in place. False when the observed schema ref already matches (apply skipped) or when blocked. */
|
|
3921
|
-
schemaWillApply: Scalars['Boolean']['output'];
|
|
3922
|
-
/** Release version the redeploy would move to (the requested version, or the latest available for the class when omitted). Null when no version resolves — see blockers. */
|
|
3923
|
-
targetVersion: Maybe<Scalars['String']['output']>;
|
|
3924
|
-
/** Pipeline tasks the change order would run (enumerated for 'services' mode; empty for 'full' mode and when blocked). */
|
|
3925
|
-
tasks: Array<EnvironmentPlannedTask>;
|
|
3926
|
-
};
|
|
3927
|
-
/** Aggregate byte totals for one environment over the requested window. All *Bytes fields are string counters (may exceed Int range). */
|
|
3928
|
-
export type EnvironmentUsageRollupRow = {
|
|
3929
|
-
__typename?: 'EnvironmentUsageRollupRow';
|
|
3930
|
-
/** Environment display name. */
|
|
3931
|
-
displayName: Scalars['String']['output'];
|
|
3932
|
-
/** Environment UUID (as a string). */
|
|
3933
|
-
environmentId: Scalars['String']['output'];
|
|
3934
|
-
/** Environment slug. */
|
|
3935
|
-
environmentSlug: Scalars['String']['output'];
|
|
3936
|
-
/** Total GraphQL bytes received (string counter). */
|
|
3937
|
-
graphqlRecvBytes: Scalars['String']['output'];
|
|
3938
|
-
/** Total GraphQL bytes sent (string counter). */
|
|
3939
|
-
graphqlSendBytes: Scalars['String']['output'];
|
|
3940
|
-
/** Total replication bytes received (string counter). */
|
|
3941
|
-
replicationRecvBytes: Scalars['String']['output'];
|
|
3942
|
-
/** Total replication bytes sent (string counter). */
|
|
3943
|
-
replicationSendBytes: Scalars['String']['output'];
|
|
3944
|
-
};
|
|
3945
|
-
/** Per-minute replication and GraphQL usage time series for an environment, with rate peaks and live Buddy rates. */
|
|
3946
|
-
export type EnvironmentUsageSummary = {
|
|
3947
|
-
__typename?: 'EnvironmentUsageSummary';
|
|
3948
|
-
/** Live Buddy UDP rates, or null when no live server is reporting. */
|
|
3949
|
-
buddyLive: Maybe<BuddyLiveRates>;
|
|
3950
|
-
/** Environment UUID (as a string). */
|
|
3951
|
-
environmentId: Scalars['String']['output'];
|
|
3952
|
-
/** Environment slug. */
|
|
3953
|
-
environmentSlug: Scalars['String']['output'];
|
|
3954
|
-
/** GraphQL API usage, one row per minute. */
|
|
3955
|
-
graphql: Array<UsageMinuteRow>;
|
|
3956
|
-
/** Owning organization id (as a string). */
|
|
3957
|
-
orgId: Scalars['String']['output'];
|
|
3958
|
-
/** Replication (game state sync) usage, one row per minute. */
|
|
3959
|
-
replication: Array<UsageMinuteRow>;
|
|
3960
|
-
/** Peak/average replication send rates. */
|
|
3961
|
-
replicationRates: UsageRatePeaks;
|
|
3962
|
-
};
|
|
3963
3212
|
/** Input for exchangePortalCode: the destination game (public client) trades a one-time portal code for an app-scoped gameplay token. Public (the code + PKCE verifier authorize the call). */
|
|
3964
3213
|
export type ExchangePortalCodeInput = {
|
|
3965
3214
|
/** The one-time authorization code received on the redirect. */
|
|
@@ -4003,7 +3252,6 @@ export type FreeAppQuotaApp = {
|
|
|
4003
3252
|
/** URL slug for the app. */
|
|
4004
3253
|
slug: Scalars['String']['output'];
|
|
4005
3254
|
};
|
|
4006
|
-
/** Status of the recurring free-play window during which gameplay is open without entitlement. */
|
|
4007
3255
|
export type FreePlayWindowInfo = {
|
|
4008
3256
|
__typename?: 'FreePlayWindowInfo';
|
|
4009
3257
|
/** Human-readable description of the free-play schedule. */
|
|
@@ -4907,23 +4155,6 @@ export type GraphQlServer = {
|
|
|
4907
4155
|
/** When this server row was last updated (heartbeat). Use to judge freshness. */
|
|
4908
4156
|
updatedAt: Scalars['DateTime']['output'];
|
|
4909
4157
|
};
|
|
4910
|
-
/** GraphQL (game API) billing tier: endpoint call rate + bandwidth allotments and capacity charge. */
|
|
4911
|
-
export type GraphqlBillingTier = {
|
|
4912
|
-
__typename?: 'GraphqlBillingTier';
|
|
4913
|
-
/** Maximum bandwidth allotment in megabits per second. */
|
|
4914
|
-
bandwidthMbitPerSecond: Scalars['Float']['output'];
|
|
4915
|
-
/** Capacity charge for this tier, in cents (placeholder until load tests). */
|
|
4916
|
-
chargeCents: Scalars['BigInt']['output'];
|
|
4917
|
-
/** ISO-4217 currency for chargeCents, e.g. 'usd'. */
|
|
4918
|
-
currency: Scalars['String']['output'];
|
|
4919
|
-
description: Maybe<Scalars['String']['output']>;
|
|
4920
|
-
/** Maximum endpoint calls per second allotment (per endpoint). */
|
|
4921
|
-
endpointCallsPerSecond: Scalars['Int']['output'];
|
|
4922
|
-
/** Customer-facing tier label. */
|
|
4923
|
-
label: Scalars['String']['output'];
|
|
4924
|
-
/** Tier level (1 = lowest offered tier). */
|
|
4925
|
-
tierLevel: Scalars['Int']['output'];
|
|
4926
|
-
};
|
|
4927
4158
|
/** Usage totals for a single GraphQL operation over the window. */
|
|
4928
4159
|
export type GraphqlOperationUsageRow = {
|
|
4929
4160
|
__typename?: 'GraphqlOperationUsageRow';
|
|
@@ -5057,9 +4288,9 @@ export type GridListing = {
|
|
|
5057
4288
|
/** Resale policy for the grid. */
|
|
5058
4289
|
resalePolicy: Scalars['String']['output'];
|
|
5059
4290
|
/** Catalog status: 'active' or 'delisted'. */
|
|
5060
|
-
status: Scalars['String']['output']
|
|
4291
|
+
status: Maybe<Scalars['String']['output']>;
|
|
5061
4292
|
/** Studio cut (bps) on resale, when applicable. */
|
|
5062
|
-
studioCutBps: Scalars['Int']['output']
|
|
4293
|
+
studioCutBps: Maybe<Scalars['Int']['output']>;
|
|
5063
4294
|
};
|
|
5064
4295
|
/** Kind of principal holding grid title. P1 can assign USER owners; GROUP and ORG are schema-reserved for future shared ownership. */
|
|
5065
4296
|
export declare enum GridOwnerKind {
|
|
@@ -5213,16 +4444,6 @@ export type ImportCrowdyStudioProjectFileInput = {
|
|
|
5213
4444
|
/** Private LIBRARY or app-curated COMMON source. */
|
|
5214
4445
|
source: CrowdyStudioImportSource;
|
|
5215
4446
|
};
|
|
5216
|
-
export type IngestEnvironmentVersionInput = {
|
|
5217
|
-
/** Overwrite an existing version row if one already exists (default false). */
|
|
5218
|
-
force?: Scalars['Boolean']['input'];
|
|
5219
|
-
/** Override the release notes. Defaults to the manifest value. */
|
|
5220
|
-
notes?: InputMaybe<Scalars['String']['input']>;
|
|
5221
|
-
/** Override the manifest status (e.g. 'available'). Defaults to the manifest value. */
|
|
5222
|
-
status?: InputMaybe<Scalars['String']['input']>;
|
|
5223
|
-
/** Environment release version to ingest, e.g. 'v0.1.4'. */
|
|
5224
|
-
version: Scalars['String']['input'];
|
|
5225
|
-
};
|
|
5226
4447
|
export type InviteOrgMemberInput = {
|
|
5227
4448
|
/** Organization to add the user to (BigInt as string). */
|
|
5228
4449
|
orgId: Scalars['BigInt']['input'];
|
|
@@ -5251,14 +4472,6 @@ export type JoinSessionInput = {
|
|
|
5251
4472
|
/** The session id to join. */
|
|
5252
4473
|
sessionId: Scalars['String']['input'];
|
|
5253
4474
|
};
|
|
5254
|
-
export type LinkAppToEnvironmentInput = {
|
|
5255
|
-
/** App id (BigInt) to link. Must be unlinked and not a shared app. */
|
|
5256
|
-
appId: Scalars['BigInt']['input'];
|
|
5257
|
-
/** Environment slug (cks_environments.slug) to link the app to. */
|
|
5258
|
-
environmentSlug: Scalars['String']['input'];
|
|
5259
|
-
/** Organization id (BigInt) that owns both the app and the environment. */
|
|
5260
|
-
orgId: Scalars['BigInt']['input'];
|
|
5261
|
-
};
|
|
5262
4475
|
/** Link an additional federated identity to the signed-in account. */
|
|
5263
4476
|
export type LinkIdentityInput = {
|
|
5264
4477
|
code: Scalars['String']['input'];
|
|
@@ -5401,8 +4614,6 @@ export type Mutation = {
|
|
|
5401
4614
|
createChannelRole: GroupRole;
|
|
5402
4615
|
/** Creates a Checkout row, opens a hosted payment session with the selected provider, and returns the row with `externalUrl` set — redirect the user there to pay. Status starts PENDING and is reconciled to COMPLETED/FAILED later via provider webhooks (this call does not itself capture funds). The side effect applied on completion depends on `purpose` (e.g. ORG_WALLET_TOPUP credits the org wallet, APP_ACCESS_PURCHASE grants app access). Requires an authenticated user; ORG_WALLET_TOPUP additionally requires the 'manage_billing' org permission. Purposes DONATION and PROPERTY_TOKENS are rejected. Pass `input.idempotencyKey` to make retries safe (a replay returns the first checkout instead of opening a second provider session). */
|
|
5403
4616
|
createCheckout: Checkout;
|
|
5404
|
-
/** Provisions a new environment. SIDE EFFECTS / COST: creates billable cloud infrastructure (OVH VMs + DNS) and starts hourly wallet charges; fails if the wallet's available balance is below the first-day reserve (see environmentQuote.canCreate). Each selected flavor must be available and customer-priced (use environmentFlavors / environmentDatacenters). When input.slug is omitted the slug is auto-generated as 'e-<12 chars>'. Returns immediately with status 'deploy_requested'; poll orgEnvironment for deploy progress. Requires the 'manage_environments' org permission. */
|
|
5405
|
-
createEnvironment: CksEnvironmentDetail;
|
|
5406
4617
|
/** Create a grid: a named 3D box of chunks that runtime/world (voxel) permissions are scoped to. The box must fit within one of the app's grid assignments (its buildable regions); it MAY be nested inside a broader containing grid such as the open-by-default world grid, but must not partially overlap a peer grid. Requires app-admin ('manage_apps'). Returns a hybrid response — on success `grid` is populated and `error` is NO_ERROR; on failure `grid` is null and `error` is a UDP-style error code (e.g. NO_MATCHING_GRID_ASSIGNMENT, GRID_OUTSIDE_ASSIGNMENT, GRID_OVERLAPS_EXISTING, GRID_ALREADY_EXISTS). */
|
|
5407
4618
|
createGrid: CreateGridResponse;
|
|
5408
4619
|
/** Create a studio grid listing (07 §1.1): a blueprint that stamps a fresh grid per sale, or a concrete grid. Requires 'manage_apps'. Purchase (in-game) confers grid_ownership + the listed keys + quota preset atomically. */
|
|
@@ -5485,11 +4696,9 @@ export type Mutation = {
|
|
|
5485
4696
|
deleteChannel: Scalars['Boolean']['output'];
|
|
5486
4697
|
/** Delete a non-system channel role. Requires the 'manage_roles' channel permission (app admins bypass). The system 'leader' role cannot be deleted. DESTRUCTIVE: removes the role from members. Returns true if a role was deleted. */
|
|
5487
4698
|
deleteChannelRole: Scalars['Boolean']['output'];
|
|
5488
|
-
/** Operator only (is_operator). Deletes a control-plane secret by environment + name and writes an audit entry. Returns true when a secret was removed. */
|
|
5489
|
-
deleteCpSecret: Scalars['Boolean']['output'];
|
|
5490
4699
|
/** Delete a studio-created peer grid so its chunk box no longer blocks overlapping grid creation. Requires app-admin ('manage_apps'). Returns a hybrid response — on success `gridId` is populated and `error` is NO_ERROR; on failure `gridId` is null and `error` is a UDP-style error code (e.g. GRID_NOT_FOUND, CANNOT_DELETE_DEFAULT_WORLD_GRID, GRID_HAS_NESTED_CHILDREN). The open-by-default world grid and any grid that still contains nested child grids cannot be deleted. */
|
|
5491
4700
|
deleteGrid: DeleteGridResponse;
|
|
5492
|
-
/** DESTRUCTIVE self-service: soft-deletes the authenticated caller's OWN account — anonymizes PII and revokes all sessions; wallet, voxel, and donation history stay intact via FK. Acts only on the caller (no target argument). Requires a valid game token.
|
|
4701
|
+
/** DESTRUCTIVE self-service: soft-deletes the authenticated caller's OWN account — anonymizes PII and revokes all sessions; wallet, voxel, and donation history stay intact via FK. Acts only on the caller (no target argument). Requires a valid game token. */
|
|
5493
4702
|
deleteMyAccount: Scalars['Boolean']['output'];
|
|
5494
4703
|
/** Deletes an organization role. Requires the 'manage_members' permission on the role's org (super admins bypass). DESTRUCTIVE: removes the role and unassigns it from all members. Returns false if the role does not exist. */
|
|
5495
4704
|
deleteOrgRole: Scalars['Boolean']['output'];
|
|
@@ -5503,15 +4712,13 @@ export type Mutation = {
|
|
|
5503
4712
|
deleteTeamRole: Scalars['Boolean']['output'];
|
|
5504
4713
|
/** DESTRUCTIVE: deletes the authenticated user’s per-app state row for `appId` and returns the deleted row. Requires a valid game token; acts only on the caller’s own state. Throws NotFound when no row exists. */
|
|
5505
4714
|
deleteUserAppState: UserAppState;
|
|
5506
|
-
/** DESTRUCTIVE and IRREVERSIBLE. Tears down all cloud resources for the environment (per-tenant Postgres, game-api, Buddy, and load-balancer VMs plus DNS records) and revokes its service tokens; all tenant data is lost. Sets status to 'destroy_requested' and returns the tracking change order — poll orgEnvironment.destroyProgress. Fails if a destroy is already queued. After it reaches 'destroyed', call purgeEnvironment to remove the record. Requires the 'manage_environments' org permission. */
|
|
5507
|
-
destroyEnvironment: CksEnvironmentChangeOrder;
|
|
5508
4715
|
/** DEV ONLY bypass sign-in: returns a session for the given email without email/social verification. Active only when DEV_AUTH_BYPASS is enabled; throws (FORBIDDEN) otherwise. Never enabled in production. */
|
|
5509
4716
|
devLogin: AuthResponse;
|
|
5510
4717
|
/** Close the UDP proxy session and socket for this game token. Unsubscribing from udpNotifications does not disconnect; use this mutation (or rely on server inactivity timeout). */
|
|
5511
4718
|
disconnectUdpProxy: Scalars['Boolean']['output'];
|
|
5512
4719
|
/** Exchange a one-time portal authorization code (with the matching PKCE verifier) for an app-scoped gameplay token. Public (the code + verifier authorize the call); called by the destination game at its own origin so the game never sees the player's session token. */
|
|
5513
4720
|
exchangePortalCode: AppTokenResponse;
|
|
5514
|
-
/** ADMIN/DESTRUCTIVE: revokes ALL of the target user’s sessions by deleting every game_token row, forcing re-authentication on every device. Returns true if at least one session was revoked. Requires a super-admin bearer game token (and the management API enabled).
|
|
4721
|
+
/** ADMIN/DESTRUCTIVE: revokes ALL of the target user’s sessions by deleting every game_token row, forcing re-authentication on every device. Returns true if at least one session was revoked. Requires a super-admin bearer game token (and the management API enabled). */
|
|
5515
4722
|
forceLogoutUser: Scalars['Boolean']['output'];
|
|
5516
4723
|
/** Create a directed relationship edge between two containers (the game model is a graph), with a relationship type and optional weight. Requires a valid token. */
|
|
5517
4724
|
gameModelAddEdge: GmEdge;
|
|
@@ -5575,8 +4782,6 @@ export type Mutation = {
|
|
|
5575
4782
|
grantGridPermissions: GridUserPermissions;
|
|
5576
4783
|
/** Org dashboard shortcut: the authenticated caller grants themselves access to an app using its default active tier. Requires that the caller is an active member of the app's owning org OR holds the 'manage_access_tiers' permission on the app. ENTITLEMENT CHANGE: upserts an active grant and notifies the game API. Errors if the app has no active tier, or the caller is neither a member nor a manager. */
|
|
5577
4784
|
grantMyAppAccess: AppUserAccess;
|
|
5578
|
-
/** Operator only (is_operator). Ingests a release manifest into cks_environment_versions, making the version deployable, and writes an audit entry. Use force to overwrite an existing row. */
|
|
5579
|
-
ingestEnvironmentVersion: CpEnvironmentVersionRow;
|
|
5580
4785
|
/** Install an acquired listing after consenting to its capability summary (echo the version's capabilityHash as consentCapabilityHash — a mismatch fails closed). Server halves register through the same P1 registry as instances in a grid the caller OWNS (requires run_server_code) and run as the grid owner on their quota/wallet — never as the author. Bundled client halves attach to the grid for per-visitor consent (D2); omitting gridId makes a personal client-only install. Fail-closed on entitlement, admission, consent, ownership, and run keys. */
|
|
5581
4786
|
installPlayerCode: PlayerCodeInstall;
|
|
5582
4787
|
/** Adds a user to an organization as a member. Requires the 'manage_members' permission on the target org (super admins bypass). */
|
|
@@ -5591,13 +4796,11 @@ export type Mutation = {
|
|
|
5591
4796
|
leaveChannel: Scalars['Boolean']['output'];
|
|
5592
4797
|
/** Leave a team (removes the caller's own membership). Returns true if a membership was removed. */
|
|
5593
4798
|
leaveTeam: Scalars['Boolean']['output'];
|
|
5594
|
-
/** Links an unlinked app to an existing environment for split-mode routing. Refuses shared apps and apps already linked elsewhere. Requires the 'manage_environments' org permission. */
|
|
5595
|
-
linkAppToEnvironment: App;
|
|
5596
4799
|
/** Link an additional federated identity (from a socialLoginStart callback) to the signed-in account. Requires a session token; throws if the identity is already linked to another account. */
|
|
5597
4800
|
linkIdentity: UserIdentity;
|
|
5598
4801
|
/** Authenticates with email + password and starts a new session. Returns an AuthResponse whose `token` must be sent on subsequent requests as `Authorization: Bearer <token>`. Public (no auth required); throws on invalid credentials. If the account also has another verified sign-in method, the password must first be email-confirmed. */
|
|
5599
4802
|
login: AuthResponse;
|
|
5600
|
-
/**
|
|
4803
|
+
/** Ends the current session by deleting the game_token that authenticated this request; other devices stay logged in. An identity session logout also cascades to (revokes) every app token it minted. Returns false if no token was resolved. */
|
|
5601
4804
|
logout: Scalars['Boolean']['output'];
|
|
5602
4805
|
/** Ends every active session for the authenticated user (deletes all their game_tokens and records revocations). Requires a valid session token. */
|
|
5603
4806
|
logoutAllDevices: Scalars['Boolean']['output'];
|
|
@@ -5629,22 +4832,12 @@ export type Mutation = {
|
|
|
5629
4832
|
playerModelSetProperty: PlayerModelContainer;
|
|
5630
4833
|
/** Publishes an app to the shared game-api environment. Free under the org's app-slot quota (result.free = true); beyond the quota, publish still succeeds and hourly usage is debited from the org wallet. Requires the 'manage_apps' permission on the app's org. Blocked when SHARED_GAME_API_URL is not configured. */
|
|
5631
4834
|
publishAppToShared: PublishAppResult;
|
|
5632
|
-
/** Operator only (is_operator). Cuts a new environment release from a cks-game-api git tag: ingests it as available and commits the manifest to the git ref. SIDE EFFECT: makes the version the new redeploy target and writes to GitHub. Use force to overwrite. Writes an audit entry. */
|
|
5633
|
-
publishEnvironmentReleaseFromGameApiTag: CpPublishEnvironmentReleaseResult;
|
|
5634
4835
|
/** Create a marketplace listing (free mode) for code the caller authors — personally, or org-owned via ownerOrgId (DN-9; requires manage_compute in that org). SIDE EFFECTS: the catalog row is written on cks-management-api with an ownership audit entry and replica-synced back. Publishing never uploads source; versions snapshot artifact hashes only. */
|
|
5635
4836
|
publishPlayerCode: PlayerCodeListing;
|
|
5636
4837
|
/** Publish an immutable version under a listing from the caller's successfully compiled module versions. Snapshots artifact hashes, explicit SERVER-to-required-CLIENT edges, and the derived aggregate capability summary; publishing fails if a required client version is absent from the bundle. Source never leaves the author's rows. */
|
|
5637
4838
|
publishPlayerCodeVersion: PlayerCodeListingVersion;
|
|
5638
4839
|
/** Buy a grid listing with real money (P4b). Debits the player wallet management-side (platform/org split), then assigns grid_ownership + the listed player-code keys atomically; a failure to apply ownership refunds the charge. For blueprint listings, targetChunk picks where the fresh grid is stamped. This is the ownership path for marketplace_only-policy apps. */
|
|
5639
4840
|
purchaseGrid: GridPurchaseResult;
|
|
5640
|
-
/** DESTRUCTIVE. Permanently deletes a destroyed environment's record and all cascaded metadata from the platform; returns true on success. The environment must already be in status 'destroyed' (run destroyEnvironment first) and must not have deletion protection enabled, otherwise this fails. Does not touch cloud resources. Requires the 'manage_environments' org permission. */
|
|
5641
|
-
purgeEnvironment: Scalars['Boolean']['output'];
|
|
5642
|
-
/** Operator only (is_operator). Creates or overwrites an environment-delivered secret (injected into the tenant runtime) and writes an audit entry. SENSITIVE: plaintext is write-only and never returned. */
|
|
5643
|
-
putCpEnvSecret: CpEnvSecretRow;
|
|
5644
|
-
/** Operator only (is_operator). Creates or overwrites a control-plane secret (encrypted at rest) and writes an audit entry. SENSITIVE: plaintext is write-only and never returned by cpSecrets. */
|
|
5645
|
-
putCpSecret: CpSecretRow;
|
|
5646
|
-
/** Redeploys the environment to a target release version (input.version) or, when omitted, the latest available version for its class, reusing its current flavors/scaling and linked apps. Preserves the environment URLs. No-op-safe: re-running when already at latest still redeploys. If a prior deploy failed but stayed in_progress, it is abandoned first so the redeploy can proceed. Preview first with environmentRedeployPlan (the dry run). Requires the 'manage_environments' org permission. */
|
|
5647
|
-
redeployEnvironment: CksEnvironmentChangeOrder;
|
|
5648
4841
|
/** Rotate the calling app token for a fresh one (same app, extended TTL) and revoke the old. Call before the current token expires to keep playing without bouncing back through the Overworld. Allowed for app-scoped tokens; re-checks entitlement. */
|
|
5649
4842
|
refreshAppToken: AppTokenResponse;
|
|
5650
4843
|
/** Request a refund of a paid acquisition (P4b). Allowed only within the refund window and before meaningful use (first install/fetch voids it), capped per buyer; a successful refund credits the wallet, reverses the ledger split, claws back the seller balance, revokes the acquisition, and drains installs. Returns cents refunded. */
|
|
@@ -5677,10 +4870,6 @@ export type Mutation = {
|
|
|
5677
4870
|
resendConfirmationEmail: Scalars['Boolean']['output'];
|
|
5678
4871
|
/** Completes a password reset using the reset token and a new password. Returns true on success; throws if the token is invalid or expired. Public (the token authorizes the call). Existing sessions are not revoked. */
|
|
5679
4872
|
resetPassword: Scalars['Boolean']['output'];
|
|
5680
|
-
/** SSH-restarts the Buddy systemd service on the active UDP runtime VM. Symptom relief when server_status heartbeat is stale (see CksBuddyHealth.isStale); does not replace cks-udp-api pool fixes. Requires the 'manage_environments' org permission. */
|
|
5681
|
-
restartEnvironmentServices: CksEnvironmentChangeOrder;
|
|
5682
|
-
/** Resumes a payment-suspended environment, queuing a change order and moving billingStatus to 'resume_queued' (and restarting runtime once it settles). Only valid when billingStatus is grace, suspension_queued, suspended, or resume_failed; otherwise fails. Resumes billable hourly charges. Requires the 'manage_environments' org permission. */
|
|
5683
|
-
resumeEnvironment: CksEnvironmentChangeOrder;
|
|
5684
4873
|
/** Revoke a user's access to an app by setting their app_user_access status to 'revoked', and notifies the game API so the user immediately loses runtime access in Buddy. Requires the 'manage_access_tiers' permission on the app; super admins bypass. The row is retained for audit (not deleted); REVERSIBLE via grantAppAccess. */
|
|
5685
4874
|
revokeAppAccess: AppUserAccess;
|
|
5686
4875
|
/** Revoke a previously-granted app authorization and immediately revoke the user's live app tokens for it. Requires a SESSION token. */
|
|
@@ -5733,10 +4922,8 @@ export type Mutation = {
|
|
|
5733
4922
|
setChannelPolicy: AppGroupPolicy;
|
|
5734
4923
|
/** Create or patch an app's Agentic Crowdy Studio policy. Requires 'manage_compute'. Omitted values stay unchanged; first creation starts disabled, killed, and deny-all. Model/tool/mode/risk lists are intersected with platform allowlists and every numeric/retention value is clamped down to platform limits. Locked ZDR/collection/body-retention rules and the operator app kill cannot be changed. SIDE EFFECTS: increments Management's publication revision, appends a sanitized audit event, and transactionally notifies Game API to pull crowdy.studio-agent-policy/1. Runtime enforcement changes only after Game API obtains and validates the fresh replica. Stable errors: AGENT_POLICY_INVALID, AGENT_POLICY_REVISION_CONFLICT, IDEMPOTENCY_CONFLICT. */
|
|
5735
4924
|
setCrowdyStudioAgentPolicy: CrowdyStudioAgentPolicy;
|
|
5736
|
-
/** Sets the per-user early-access override flag, forcing early access on or off regardless of the global free-play window. Requires a super-admin bearer game token (and the management API enabled).
|
|
4925
|
+
/** Sets the per-user early-access override flag, forcing early access on or off regardless of the global free-play window. Requires a super-admin bearer game token (and the management API enabled). */
|
|
5737
4926
|
setEarlyAccessOverride: User;
|
|
5738
|
-
/** Operator only (is_operator). Toggles deletion protection on an environment (when enabled, purgeEnvironment is blocked) and writes an audit entry. Returns true on success. */
|
|
5739
|
-
setEnvironmentDeletionProtection: Scalars['Boolean']['output'];
|
|
5740
4927
|
/** Replace the whitelist of permission keys allowed on a grid (writes the `grid_permission_limits` input table), then recompute the grid's materialized effective ACL so any keys no longer on the whitelist are dropped for all users. Pass an empty array to remove all limits. Requires app-admin ('manage_apps'). DESTRUCTIVE: narrowing the whitelist can strip effective permissions from existing users on the grid. */
|
|
5741
4928
|
setGridPermissionLimits: GridPermissionLimits;
|
|
5742
4929
|
/** Set (author-only) the acquisition mode and pricing for a code listing. Non-free modes require completed seller onboarding. Curation can reject a listing but never reprice it (07 §1.2). */
|
|
@@ -5757,7 +4944,7 @@ export type Mutation = {
|
|
|
5757
4944
|
setPlayerWasmPolicy: PlayerWasmPolicy;
|
|
5758
4945
|
/** Creates or updates a quota enforcement rule (idempotent upsert keyed by org/app/tier + metric + period) and returns it. Scope is inferred from the input ids: an app-scoped rule requires the 'manage_quotas' app permission, an org-scoped rule requires the 'manage_quotas' org permission, and a global rule (no org/app/tier) requires super admin. Changes which limit `effectiveQuota` resolves for the metric; does not retroactively alter past usage. */
|
|
5759
4946
|
setQuota: ServiceQuota;
|
|
5760
|
-
/** ADMIN PRIVILEGE CHANGE: grants or revokes platform super-admin on the target user, changing their privileges across the whole platform. Requires a super-admin bearer game token (and the management API enabled).
|
|
4947
|
+
/** ADMIN PRIVILEGE CHANGE: grants or revokes platform super-admin on the target user, changing their privileges across the whole platform. Requires a super-admin bearer game token (and the management API enabled). */
|
|
5761
4948
|
setSuperAdmin: User;
|
|
5762
4949
|
/** Replace a member's roles with the given set (not additive — roles not listed are removed). Requires the 'manage_roles' team permission (app admins bypass). */
|
|
5763
4950
|
setTeamMemberRoles: GroupMember;
|
|
@@ -5809,11 +4996,7 @@ export type Mutation = {
|
|
|
5809
4996
|
updateChunkLods: Maybe<Chunk>;
|
|
5810
4997
|
/** Upserts ONLY the opaque base64 chunk-level state blob for a chunk, preserving its voxels, per-voxel states and LODs; returns the updated chunk (or null if it could not be written). WRITES world state. Requires a valid bearer token AND the `manage_apps` permission on the org that owns input.appId (super admins bypass). */
|
|
5811
4998
|
updateChunkState: Maybe<Chunk>;
|
|
5812
|
-
/**
|
|
5813
|
-
updateEnvironmentBillingTiers: CksEnvironment;
|
|
5814
|
-
/** Updates a dedicated environment's autoscaling bounds (game-api / Buddy min & max server counts), load-balancer count, and optionally the Caddy flavor, queuing a change order that redeploys the affected tiers. May change the hourly cost. Rejected for 'dev_single' environments and when another change order is already active. Requires the 'manage_environments' org permission. */
|
|
5815
|
-
updateEnvironmentScaling: CksEnvironmentChangeOrder;
|
|
5816
|
-
/** Sets the authenticated user’s gamertag and disambiguation and appends a gamertag-history row. Requires a valid game token; only ever updates the caller. Fails if the gamertag+disambiguation pair is already taken. NOTE: the users table is management-owned, so in cks-game-api this throws ForbiddenException — call cks-management-api instead. */
|
|
4999
|
+
/** Sets the authenticated user’s gamertag and disambiguation and appends a gamertag-history row. Requires a valid game token; only ever updates the caller. Fails if the gamertag+disambiguation pair is already taken. */
|
|
5817
5000
|
updateGamertag: User;
|
|
5818
5001
|
/** Replaces the full set of roles assigned to an org member. Requires the 'manage_members' permission on the org (super admins bypass). Pass the complete desired role list; roles not included are removed. */
|
|
5819
5002
|
updateOrgMemberRoles: OrgMember;
|
|
@@ -5827,14 +5010,12 @@ export type Mutation = {
|
|
|
5827
5010
|
updateTeamRole: GroupRole;
|
|
5828
5011
|
/** Creates or replaces the authenticated user’s per-app state for `input.appId` (upsert keyed by appId+userId). Requires a valid game token; always writes the caller’s own state. `input.state` is base64-encoded binary. */
|
|
5829
5012
|
updateUserAppState: UserAppState;
|
|
5830
|
-
/** Replaces the authenticated user’s top-level `state` blob (base64-encoded binary; omit/null clears it). Requires a valid game token; only ever writes the caller.
|
|
5013
|
+
/** Replaces the authenticated user’s top-level `state` blob (base64-encoded binary; omit/null clears it). Requires a valid game token; only ever writes the caller. */
|
|
5831
5014
|
updateUserState: User;
|
|
5832
|
-
/** Sets the target user’s account `user_type` (e.g. "direct", "deleted"). Requires a super-admin bearer game token (and the management API enabled).
|
|
5015
|
+
/** Sets the target user’s account `user_type` (e.g. "direct", "deleted"). Requires a super-admin bearer game token (and the management API enabled). */
|
|
5833
5016
|
updateUserType: User;
|
|
5834
5017
|
/** Records (upserts) a single voxel edit in the voxel_updates log for one chunk and returns the resulting Voxel. WRITES world state; a background maintenance job later folds these edits into the chunk's packed grid. Requires a valid bearer token AND voxel-edit permission for the target region: the user must have active app access, the `update_voxel_data` tier permission, and (when grids cover the chunk) `update_voxel_data` on a covering grid. */
|
|
5835
5018
|
updateVoxel: Voxel;
|
|
5836
|
-
/** Operator only (is_operator). Yanks (withdraws) an environment version so it can no longer be deployed; existing environments are unaffected. Writes an audit entry. Returns true on success. */
|
|
5837
|
-
yankEnvironmentVersion: Scalars['Boolean']['output'];
|
|
5838
5019
|
};
|
|
5839
5020
|
export type MutationAcquirePlayerCodeArgs = {
|
|
5840
5021
|
appId: Scalars['BigInt']['input'];
|
|
@@ -5978,9 +5159,6 @@ export type MutationCreateChannelRoleArgs = {
|
|
|
5978
5159
|
export type MutationCreateCheckoutArgs = {
|
|
5979
5160
|
input: CreateCheckoutInput;
|
|
5980
5161
|
};
|
|
5981
|
-
export type MutationCreateEnvironmentArgs = {
|
|
5982
|
-
input: CreateEnvironmentInput;
|
|
5983
|
-
};
|
|
5984
5162
|
export type MutationCreateGridArgs = {
|
|
5985
5163
|
input: CreateGridInput;
|
|
5986
5164
|
};
|
|
@@ -6111,10 +5289,6 @@ export type MutationDeleteChannelArgs = {
|
|
|
6111
5289
|
export type MutationDeleteChannelRoleArgs = {
|
|
6112
5290
|
groupRoleId: Scalars['BigInt']['input'];
|
|
6113
5291
|
};
|
|
6114
|
-
export type MutationDeleteCpSecretArgs = {
|
|
6115
|
-
environmentId: Scalars['String']['input'];
|
|
6116
|
-
name: Scalars['String']['input'];
|
|
6117
|
-
};
|
|
6118
5292
|
export type MutationDeleteGridArgs = {
|
|
6119
5293
|
input: DeleteGridInput;
|
|
6120
5294
|
};
|
|
@@ -6141,9 +5315,6 @@ export type MutationDeleteTeamRoleArgs = {
|
|
|
6141
5315
|
export type MutationDeleteUserAppStateArgs = {
|
|
6142
5316
|
appId: Scalars['BigInt']['input'];
|
|
6143
5317
|
};
|
|
6144
|
-
export type MutationDestroyEnvironmentArgs = {
|
|
6145
|
-
input: DestroyEnvironmentInput;
|
|
6146
|
-
};
|
|
6147
5318
|
export type MutationDevLoginArgs = {
|
|
6148
5319
|
input: DevLoginInput;
|
|
6149
5320
|
};
|
|
@@ -6257,9 +5428,6 @@ export type MutationGrantGridPermissionsArgs = {
|
|
|
6257
5428
|
export type MutationGrantMyAppAccessArgs = {
|
|
6258
5429
|
appId: Scalars['BigInt']['input'];
|
|
6259
5430
|
};
|
|
6260
|
-
export type MutationIngestEnvironmentVersionArgs = {
|
|
6261
|
-
input: IngestEnvironmentVersionInput;
|
|
6262
|
-
};
|
|
6263
5431
|
export type MutationInstallPlayerCodeArgs = {
|
|
6264
5432
|
acquisitionId: Scalars['String']['input'];
|
|
6265
5433
|
appId: Scalars['BigInt']['input'];
|
|
@@ -6288,9 +5456,6 @@ export type MutationLeaveTeamArgs = {
|
|
|
6288
5456
|
groupId: Scalars['BigInt']['input'];
|
|
6289
5457
|
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
6290
5458
|
};
|
|
6291
|
-
export type MutationLinkAppToEnvironmentArgs = {
|
|
6292
|
-
input: LinkAppToEnvironmentInput;
|
|
6293
|
-
};
|
|
6294
5459
|
export type MutationLinkIdentityArgs = {
|
|
6295
5460
|
input: LinkIdentityInput;
|
|
6296
5461
|
};
|
|
@@ -6361,9 +5526,6 @@ export type MutationPublishAppToSharedArgs = {
|
|
|
6361
5526
|
provider?: InputMaybe<PaymentProvider>;
|
|
6362
5527
|
successUrl?: InputMaybe<Scalars['String']['input']>;
|
|
6363
5528
|
};
|
|
6364
|
-
export type MutationPublishEnvironmentReleaseFromGameApiTagArgs = {
|
|
6365
|
-
input: PublishEnvironmentReleaseFromGameApiTagInput;
|
|
6366
|
-
};
|
|
6367
5529
|
export type MutationPublishPlayerCodeArgs = {
|
|
6368
5530
|
input: PublishPlayerCodeInput;
|
|
6369
5531
|
};
|
|
@@ -6377,24 +5539,6 @@ export type MutationPurchaseGridArgs = {
|
|
|
6377
5539
|
chunkZ?: InputMaybe<Scalars['Int']['input']>;
|
|
6378
5540
|
gridListingId: Scalars['String']['input'];
|
|
6379
5541
|
};
|
|
6380
|
-
export type MutationPurgeEnvironmentArgs = {
|
|
6381
|
-
input: PurgeEnvironmentInput;
|
|
6382
|
-
};
|
|
6383
|
-
export type MutationPutCpEnvSecretArgs = {
|
|
6384
|
-
environmentId: Scalars['String']['input'];
|
|
6385
|
-
kind?: InputMaybe<Scalars['String']['input']>;
|
|
6386
|
-
name: Scalars['String']['input'];
|
|
6387
|
-
plaintext: Scalars['String']['input'];
|
|
6388
|
-
};
|
|
6389
|
-
export type MutationPutCpSecretArgs = {
|
|
6390
|
-
environmentId: Scalars['String']['input'];
|
|
6391
|
-
kind?: InputMaybe<Scalars['String']['input']>;
|
|
6392
|
-
name: Scalars['String']['input'];
|
|
6393
|
-
plaintext: Scalars['String']['input'];
|
|
6394
|
-
};
|
|
6395
|
-
export type MutationRedeployEnvironmentArgs = {
|
|
6396
|
-
input: RedeployEnvironmentInput;
|
|
6397
|
-
};
|
|
6398
5542
|
export type MutationRefundPlayerCodeAcquisitionArgs = {
|
|
6399
5543
|
acquisitionId: Scalars['String']['input'];
|
|
6400
5544
|
appId: Scalars['BigInt']['input'];
|
|
@@ -6446,12 +5590,6 @@ export type MutationResendConfirmationEmailArgs = {
|
|
|
6446
5590
|
export type MutationResetPasswordArgs = {
|
|
6447
5591
|
resetPasswordInput: ResetPasswordInput;
|
|
6448
5592
|
};
|
|
6449
|
-
export type MutationRestartEnvironmentServicesArgs = {
|
|
6450
|
-
input: RestartEnvironmentServicesInput;
|
|
6451
|
-
};
|
|
6452
|
-
export type MutationResumeEnvironmentArgs = {
|
|
6453
|
-
input: ResumeEnvironmentInput;
|
|
6454
|
-
};
|
|
6455
5593
|
export type MutationRevokeAppAccessArgs = {
|
|
6456
5594
|
appId: Scalars['BigInt']['input'];
|
|
6457
5595
|
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6554,10 +5692,6 @@ export type MutationSetEarlyAccessOverrideArgs = {
|
|
|
6554
5692
|
userId: Scalars['BigInt']['input'];
|
|
6555
5693
|
value: Scalars['Boolean']['input'];
|
|
6556
5694
|
};
|
|
6557
|
-
export type MutationSetEnvironmentDeletionProtectionArgs = {
|
|
6558
|
-
enabled: Scalars['Boolean']['input'];
|
|
6559
|
-
environmentId: Scalars['String']['input'];
|
|
6560
|
-
};
|
|
6561
5695
|
export type MutationSetGridPermissionLimitsArgs = {
|
|
6562
5696
|
input: SetGridPermissionLimitsInput;
|
|
6563
5697
|
};
|
|
@@ -6691,12 +5825,6 @@ export type MutationUpdateChunkLodsArgs = {
|
|
|
6691
5825
|
export type MutationUpdateChunkStateArgs = {
|
|
6692
5826
|
input: UpdateChunkStateInput;
|
|
6693
5827
|
};
|
|
6694
|
-
export type MutationUpdateEnvironmentBillingTiersArgs = {
|
|
6695
|
-
input: UpdateEnvironmentBillingTiersInput;
|
|
6696
|
-
};
|
|
6697
|
-
export type MutationUpdateEnvironmentScalingArgs = {
|
|
6698
|
-
input: UpdateEnvironmentScalingInput;
|
|
6699
|
-
};
|
|
6700
5828
|
export type MutationUpdateGamertagArgs = {
|
|
6701
5829
|
input: UpdateGamertagInput;
|
|
6702
5830
|
};
|
|
@@ -6732,9 +5860,6 @@ export type MutationUpdateUserTypeArgs = {
|
|
|
6732
5860
|
export type MutationUpdateVoxelArgs = {
|
|
6733
5861
|
input: UpdateVoxelInput;
|
|
6734
5862
|
};
|
|
6735
|
-
export type MutationYankEnvironmentVersionArgs = {
|
|
6736
|
-
version: Scalars['String']['input'];
|
|
6737
|
-
};
|
|
6738
5863
|
/** A grid overlapping a scanned region, plus a user's effective permission keys on it (returned by nearbyGridPermissions). */
|
|
6739
5864
|
export type NearbyGridPermissions = {
|
|
6740
5865
|
__typename?: 'NearbyGridPermissions';
|
|
@@ -6967,14 +6092,10 @@ export type Organization = {
|
|
|
6967
6092
|
/** When the organization was last updated. */
|
|
6968
6093
|
updatedAt: Scalars['DateTime']['output'];
|
|
6969
6094
|
};
|
|
6970
|
-
/** Offset/limit pagination metadata for a paginated list. */
|
|
6971
6095
|
export type PageInfo = {
|
|
6972
6096
|
__typename?: 'PageInfo';
|
|
6973
|
-
/** Maximum number of items returned in this page (the page size that was applied). */
|
|
6974
6097
|
limit: Scalars['Int']['output'];
|
|
6975
|
-
/** Number of items skipped before this page (zero-based offset). */
|
|
6976
6098
|
offset: Scalars['Int']['output'];
|
|
6977
|
-
/** Total number of records matching the query across all pages, ignoring limit and offset. */
|
|
6978
6099
|
totalCount: Scalars['Int']['output'];
|
|
6979
6100
|
};
|
|
6980
6101
|
/** A single inbound payment-provider webhook event from the reconciliation audit log. */
|
|
@@ -7156,8 +6277,8 @@ export type PlayerCodeAcquisition = {
|
|
|
7156
6277
|
__typename?: 'PlayerCodeAcquisition';
|
|
7157
6278
|
/** When acquired. */
|
|
7158
6279
|
acquiredAt: Scalars['DateTime']['output'];
|
|
7159
|
-
/** Numeric user id of the acquirer. */
|
|
7160
|
-
acquirerUserId: Scalars['BigInt']['output']
|
|
6280
|
+
/** Numeric user id of the acquirer (management catalog reads). */
|
|
6281
|
+
acquirerUserId: Maybe<Scalars['BigInt']['output']>;
|
|
7161
6282
|
/** UUID of the acquisition. */
|
|
7162
6283
|
acquisitionId: Scalars['String']['output'];
|
|
7163
6284
|
/** App of the listing. */
|
|
@@ -7235,8 +6356,8 @@ export type PlayerCodeListing = {
|
|
|
7235
6356
|
__typename?: 'PlayerCodeListing';
|
|
7236
6357
|
/** Acquisition mode: FREE, or a paid mode (BUY / RENT / TIME_LIMITED / COST_LIMITED; P4b). Free listings carry no price. */
|
|
7237
6358
|
acquisitionMode: PlayerCodeAcquisitionMode;
|
|
7238
|
-
/** The listing's admission standing in this app. In implicit_allow apps this is always ADMITTED; in allow_list apps PENDING listings can be acquired but not installed. */
|
|
7239
|
-
admissionState: PlayerCodeAdmissionState
|
|
6359
|
+
/** The listing's admission standing in this app. In implicit_allow apps this is always ADMITTED; in allow_list apps PENDING listings can be acquired but not installed. Null on management catalog reads that carry no app admission context. */
|
|
6360
|
+
admissionState: Maybe<PlayerCodeAdmissionState>;
|
|
7240
6361
|
/** App the listing belongs to. */
|
|
7241
6362
|
appId: Scalars['BigInt']['output'];
|
|
7242
6363
|
/** When the listing was created. */
|
|
@@ -7266,7 +6387,7 @@ export type PlayerCodeListing = {
|
|
|
7266
6387
|
/** Compute-unit budget per purchase (COST_LIMITED mode). */
|
|
7267
6388
|
unitBudget: Maybe<Scalars['BigInt']['output']>;
|
|
7268
6389
|
/** When the listing was last updated. */
|
|
7269
|
-
updatedAt: Scalars['DateTime']['output']
|
|
6390
|
+
updatedAt: Maybe<Scalars['DateTime']['output']>;
|
|
7270
6391
|
/** Fixed access window in days (TIME_LIMITED mode). */
|
|
7271
6392
|
windowDays: Maybe<Scalars['Int']['output']>;
|
|
7272
6393
|
};
|
|
@@ -7701,21 +6822,6 @@ export type PortalConsentState = {
|
|
|
7701
6822
|
/** True for first-party/trusted apps (consent is always skipped). */
|
|
7702
6823
|
trusted: Scalars['Boolean']['output'];
|
|
7703
6824
|
};
|
|
7704
|
-
/** Postgres billing tier: bandwidth allotment and capacity charge. Usage metering deferred. */
|
|
7705
|
-
export type PostgresBillingTier = {
|
|
7706
|
-
__typename?: 'PostgresBillingTier';
|
|
7707
|
-
/** Maximum bandwidth allotment in megabits per second. */
|
|
7708
|
-
bandwidthMbitPerSecond: Scalars['Float']['output'];
|
|
7709
|
-
/** Capacity charge for this tier, in cents (placeholder until load tests). */
|
|
7710
|
-
chargeCents: Scalars['BigInt']['output'];
|
|
7711
|
-
/** ISO-4217 currency for chargeCents, e.g. 'usd'. */
|
|
7712
|
-
currency: Scalars['String']['output'];
|
|
7713
|
-
description: Maybe<Scalars['String']['output']>;
|
|
7714
|
-
/** Customer-facing tier label. */
|
|
7715
|
-
label: Scalars['String']['output'];
|
|
7716
|
-
/** Tier level (1 = lowest offered tier). */
|
|
7717
|
-
tierLevel: Scalars['Int']['output'];
|
|
7718
|
-
};
|
|
7719
6825
|
/** Result of publishing an app to the shared environment. All paths publish immediately; usage above the free hourly allowance is wallet-billed. */
|
|
7720
6826
|
export type PublishAppResult = {
|
|
7721
6827
|
__typename?: 'PublishAppResult';
|
|
@@ -7748,12 +6854,6 @@ export type PublishCrowdyStudioCommonFileInput = {
|
|
|
7748
6854
|
/** Crowdy Studio-authored catalog title. */
|
|
7749
6855
|
title: Scalars['String']['input'];
|
|
7750
6856
|
};
|
|
7751
|
-
export type PublishEnvironmentReleaseFromGameApiTagInput = {
|
|
7752
|
-
/** Overwrite an existing environment version row if it already exists. */
|
|
7753
|
-
force?: Scalars['Boolean']['input'];
|
|
7754
|
-
/** cks-game-api semver tag (e.g. v0.6.20). */
|
|
7755
|
-
gameApiTag: Scalars['String']['input'];
|
|
7756
|
-
};
|
|
7757
6857
|
export type PublishPlayerCodeInput = {
|
|
7758
6858
|
/** App the listing belongs to. */
|
|
7759
6859
|
appId: Scalars['BigInt']['input'];
|
|
@@ -7780,14 +6880,6 @@ export type PublishPlayerCodeVersionInput = {
|
|
|
7780
6880
|
/** Open-source this published version (irreversible for the version). */
|
|
7781
6881
|
openSource?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7782
6882
|
};
|
|
7783
|
-
export type PurgeEnvironmentInput = {
|
|
7784
|
-
/** Optional idempotency key. Recommended for retries: replaying with the same key and identical input returns the first result instead of re-applying; the same key with different input returns IDEMPOTENCY_CONFLICT. Keys expire after 24h. */
|
|
7785
|
-
idempotencyKey?: InputMaybe<Scalars['String']['input']>;
|
|
7786
|
-
/** Organization id (BigInt) that owns the environment. */
|
|
7787
|
-
orgId: Scalars['BigInt']['input'];
|
|
7788
|
-
/** Slug of the already-destroyed environment whose record to permanently delete. */
|
|
7789
|
-
slug: Scalars['String']['input'];
|
|
7790
|
-
};
|
|
7791
6883
|
export type Query = {
|
|
7792
6884
|
__typename?: 'Query';
|
|
7793
6885
|
/** List only healthy GraphQL API servers (status = ReadyForClients) for client routing/discovery. No authentication required. */
|
|
@@ -7858,8 +6950,6 @@ export type Query = {
|
|
|
7858
6950
|
avatarAppStates: Array<AppAvatarState>;
|
|
7859
6951
|
/** Bulk-fetches actors by a list of 32-character ASCII uuids in one round-trip. Requires a valid game token. PUBLIC-STATE ONLY: `privateState` is stripped (null) for every result regardless of ownership. Unknown uuids are silently omitted. Use this to resolve many actors at once; use `actor` for a single owner-scoped fetch. */
|
|
7860
6952
|
batchLookupActors: Array<Actor>;
|
|
7861
|
-
/** Public read-only catalog of active Buddy (UDP replication) billing tiers. */
|
|
7862
|
-
buddyBillingTiers: Array<BuddyBillingTier>;
|
|
7863
6953
|
/** Fetch one channel by id. Errors if the id is not a channel. */
|
|
7864
6954
|
channel: Group;
|
|
7865
6955
|
/** List the members of a channel (the subscriber set, including pending requests), each with their status and roles. */
|
|
@@ -7898,32 +6988,10 @@ export type Query = {
|
|
|
7898
6988
|
computeModules: Array<WasmModule>;
|
|
7899
6989
|
/** The platform's engine-template registry: ready-made compute engines (mob/world/match/deck/instance/director/matchmaking/market/board/minigame/abilities/movement-warden/territory/racing/...) deployable by name with computeDeployTemplate. Requires the org 'manage_compute' permission. */
|
|
7900
6990
|
computeTemplates: Array<ComputeTemplateInfo>;
|
|
7901
|
-
/** Operator only (is_operator). Most recent operator audit entries, newest first, optionally filtered by environment. */
|
|
7902
|
-
cpAudit: Array<CpAuditEntry>;
|
|
7903
|
-
/** Operator only (is_operator). One change order with ordered task and step progress. Durable change orders may return read-only projected rows when exact live execution details are unavailable; planned work remains pending until an outcome is observed or inferred. Null when the id is not found. */
|
|
7904
|
-
cpChangeOrder: Maybe<CpChangeOrderDetail>;
|
|
7905
|
-
/** Operator only (is_operator). Paginated change orders, optionally filtered by environment. Returns a *Page (rows/total/page/pageSize); page is 1-based. */
|
|
7906
|
-
cpChangeOrders: CpChangeOrdersPage;
|
|
7907
6991
|
/** Operator only (is_operator). The stored platform ceilings for the per-app WASM compute policy (the nine knobs computeSetPolicy clamps against). Null fields mean no operator override: game-api uses its COMPUTE_PLATFORM_MAX_* env var, then the code default. Read-only. */
|
|
7908
6992
|
cpComputePlatformCeilings: CpComputePlatformCeilings;
|
|
7909
6993
|
/** Operator only (is_operator or is_super_admin). Read the platform Agentic Studio enablement, global emergency kill, model/tool/mode/risk allowlists, budget ceilings, retention/privacy policy, pilot funding seam, timestamps, and revision. No provider credential or request body is stored or returned. */
|
|
7910
6994
|
cpCrowdyStudioAgentPlatformPolicy: CrowdyStudioAgentPolicy;
|
|
7911
|
-
/** Operator only (is_operator). Lists environment-delivered secret metadata (names/kinds only, never plaintext) injected into the tenant runtime, optionally filtered by environment. */
|
|
7912
|
-
cpEnvSecrets: Array<CpEnvSecretRow>;
|
|
7913
|
-
/** Operator only (is_operator). Operator view of one environment by slug, across any org. Null when not found. */
|
|
7914
|
-
cpEnvironment: Maybe<CpAdminEnvironment>;
|
|
7915
|
-
/** Operator only (is_operator). Environment release manifests merged from git and the database, with the latest available version and git-source availability. Read-only. */
|
|
7916
|
-
cpEnvironmentVersions: CpEnvironmentVersionsPage;
|
|
7917
|
-
/** Operator only (is_operator). Paginated list of all environments across every org. Returns a *Page (rows/total/page/pageSize); page is 1-based. */
|
|
7918
|
-
cpEnvironments: CpAdminEnvironmentsPage;
|
|
7919
|
-
/** Operator only (is_operator). OVH flavor catalog with provider vs. customer pricing for cost analysis, optionally filtered by region. Read-only. */
|
|
7920
|
-
cpOvhCatalogSummary: Array<CpOvhCatalogRow>;
|
|
7921
|
-
/** Operator only (is_operator). Lists control-plane secret metadata (names/kinds only, never plaintext), optionally filtered by environment. */
|
|
7922
|
-
cpSecrets: Array<CpSecretRow>;
|
|
7923
|
-
/** Operator only (is_operator). cks-game-api git tags not yet pinned by any environment release, each with the version a publish would create. Read-only. */
|
|
7924
|
-
cpUnreleasedGameApiTags: CpUnreleasedGameApiTagsPage;
|
|
7925
|
-
/** Operator only (is_operator). Per-minute usage summary for any environment by slug (operator equivalent of environmentUsageSummary, not org-scoped). Read-only. */
|
|
7926
|
-
cpUsageSummary: CpUsageSummary;
|
|
7927
6995
|
/** Return every effective TURN, SESSION, and PLAYER_DAY request/token/reasoning/cost/tool-round/wall-clock/tool-call/compile dimension with reserved, consumed, and non-negative remaining values. The pilot is platform-funded and this owner/app query never debits a wallet. */
|
|
7928
6996
|
crowdyStudioAgentBudget: AgentBudget;
|
|
7929
6997
|
/** Read Management's fail-closed Agentic Crowdy Studio publication: platform enable/kill, per-app operator kill, app enable/kill, exact model/tool/mode/risk intersections, minimum budgets/retention, locked privacy, and platform-funded billing seam. Requires 'view_compute_diagnostics'. This is the source publication, not proof of current runtime enforcement: Game API must hold a fresh crowdy.studio-agent-policy/1 replica and independently enforce it; missing/stale/malformed replica or an empty model/mode intersection must disable the agent. */
|
|
@@ -7950,22 +7018,6 @@ export type Query = {
|
|
|
7950
7018
|
crowdyStudioProjects: Array<CrowdyStudioProject>;
|
|
7951
7019
|
/** 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. */
|
|
7952
7020
|
effectiveQuota: Maybe<ServiceQuota>;
|
|
7953
|
-
/** OVH datacenters that have at least one customer-priced instance flavor available for customer selection. */
|
|
7954
|
-
environmentDatacenters: Array<CksOvhDatacenter>;
|
|
7955
|
-
/** Customer-selectable instance flavors in the datacenter with current availability and customer pricing. */
|
|
7956
|
-
environmentFlavors: Array<CksOvhFlavor>;
|
|
7957
|
-
/** Release versions a specific environment may upgrade to: available, deployable by its environment class, and not older than the version it currently runs (forward-only — no rollback). Newest first; backs the version picker passed to redeployEnvironment. Requires the 'view_environments' org permission. */
|
|
7958
|
-
environmentForwardVersions: Array<CksEnvironmentVersion>;
|
|
7959
|
-
/** Pricing quote for the selected flavors plus the org wallet balance and a canCreate gate. Read-only — provisions nothing. Fails if any flavor is unavailable, hidden, or lacks customer pricing. Requires the 'view_billing' org permission. */
|
|
7960
|
-
environmentQuote: CksEnvironmentQuote;
|
|
7961
|
-
/** DRY RUN of redeployEnvironment: previews exactly what moving the environment to a target release version (input.version, or latest for its class when omitted) would do — component version diffs (game-api, Buddy, base images), whether game-DB schema DDL applies or is skipped, Buddy artifact resolution, and the pipeline tasks/steps that would run — WITHOUT creating a change order or touching any VM. Anything that would make the real mutation fail is returned in `blockers`. Read-only; requires the 'view_environments' org permission. */
|
|
7962
|
-
environmentRedeployPlan: EnvironmentRedeployPlan;
|
|
7963
|
-
/** Aggregate replication/GraphQL byte totals per app for the apps linked to an environment, over the time window. Read-only reporting. Requires the 'view_usage' org permission. */
|
|
7964
|
-
environmentUsageByApp: Array<AppUsageRollupRow>;
|
|
7965
|
-
/** Per-minute replication and GraphQL byte/message usage time series for the apps linked to an environment, plus replication rate peaks and live Buddy rates. Read-only observability. Requires the 'view_usage' org permission. */
|
|
7966
|
-
environmentUsageSummary: EnvironmentUsageSummary;
|
|
7967
|
-
/** Catalog of available environment release versions that can be deployed, newest first. Not org-scoped (any authenticated caller). For the versions a specific environment may move to, use environmentForwardVersions. */
|
|
7968
|
-
environmentVersions: Array<CksEnvironmentVersion>;
|
|
7969
7021
|
/** Reports whether a free-play window is active now, a human-readable schedule description, and the ISO-8601 start of the next window. PUBLIC: no authentication required. Takes no arguments; computed from server config and the current clock. */
|
|
7970
7022
|
freePlayWindowInfo: FreePlayWindowInfo;
|
|
7971
7023
|
/** Single startup payload for browser game clients: the authenticated user, server/min-client version requirements, current UDP proxy status, realtime protocol details (subprotocol + subscription name), and the spatial send limits/constants (maxReplicationDistance, maxDecayRate, sequenceNumberModulo). Requires a bearer game token. Read-only: does not open a UDP proxy session. Call this once after login to initialize a play session. */
|
|
@@ -8030,8 +7082,6 @@ export type Query = {
|
|
|
8030
7082
|
getChunksByDistance: ChunksByDistanceResponse;
|
|
8031
7083
|
/** Returns all recorded voxel edits (the voxel_updates log) for a single chunk, newest first, as a ChunkVoxelResponse. Use getChunk instead when you want the packed voxel grid rather than the individual edit log. Requires a valid bearer token; app-scoped tokens are limited to their own app. Read-only. */
|
|
8032
7084
|
getVoxelList: ChunkVoxelResponse;
|
|
8033
|
-
/** Public read-only catalog of active GraphQL (game API) billing tiers. */
|
|
8034
|
-
graphqlBillingTiers: Array<GraphqlBillingTier>;
|
|
8035
7085
|
/** List every registered GraphQL API server (both management-api and game-api kinds), regardless of health/state. No authentication required. For service discovery; to route clients, prefer activeGraphQLServers (filters to healthy servers). */
|
|
8036
7086
|
graphqlServers: Array<GraphQlServer>;
|
|
8037
7087
|
/** The app's grid claim policy (D4): how a player claim confers grid ownership. */
|
|
@@ -8054,7 +7104,7 @@ export type Query = {
|
|
|
8054
7104
|
listVoxelUpdatesByDistance: VoxelUpdatesByDistanceResponse;
|
|
8055
7105
|
/** Lists recorded voxel edits for a single chunk (optionally only those at/after `since`), newest first. Requires a valid bearer token; app-scoped tokens are limited to their own app. Read-only. */
|
|
8056
7106
|
listVoxels: Array<Voxel>;
|
|
8057
|
-
/** Returns the authenticated user
|
|
7107
|
+
/** Returns the authenticated user resolved from the token (sent as `Authorization: Bearer <token>`), or null if missing/invalid. Readable with either an identity session token or an app-scoped gameplay token. */
|
|
8058
7108
|
me: Maybe<User>;
|
|
8059
7109
|
/** Lists the roles assigned to a single org member. Requires a valid session token. */
|
|
8060
7110
|
memberRoles: Array<OrgRole>;
|
|
@@ -8073,7 +7123,7 @@ export type Query = {
|
|
|
8073
7123
|
/** Lists the authenticated caller's own checkouts (newest first), across every org and app. Use this for a self-service payment history; use `checkoutsConnection` for the cross-tenant super-admin view. Requires an authenticated user. Relay cursor connection; prefer this over the offset-based myCheckouts. */
|
|
8074
7124
|
myCheckoutsConnection: CheckoutsConnection;
|
|
8075
7125
|
/**
|
|
8076
|
-
* Lifetime donation totals for the authenticated user, summed across every app. Requires a valid game token.
|
|
7126
|
+
* Lifetime donation totals for the authenticated user, summed across every app. Requires a valid game token.
|
|
8077
7127
|
* @deprecated Legacy donation/property-token data; these products are no longer purchasable. Retained for historical records.
|
|
8078
7128
|
*/
|
|
8079
7129
|
myDonationData: UserDonationData;
|
|
@@ -8086,7 +7136,7 @@ export type Query = {
|
|
|
8086
7136
|
/** The caller's active installs in this app: pinned versions, consent hashes, and target grids. */
|
|
8087
7137
|
myPlayerCodeInstalls: Array<PlayerCodeInstall>;
|
|
8088
7138
|
/**
|
|
8089
|
-
* The authenticated user’s property-token balances (available, in use, total). Requires a valid game token.
|
|
7139
|
+
* The authenticated user’s property-token balances (available, in use, total). Requires a valid game token.
|
|
8090
7140
|
* @deprecated Legacy donation/property-token data; these products are no longer purchasable. Retained for historical records.
|
|
8091
7141
|
*/
|
|
8092
7142
|
myPropertyTokens: UserPropertyTokenData;
|
|
@@ -8096,14 +7146,8 @@ export type Query = {
|
|
|
8096
7146
|
myTeams: Array<GroupMembership>;
|
|
8097
7147
|
/** List every grid overlapping a chunk-coordinate bounding box, each with the given user's effective permission keys on it. Useful for previewing what a user can do across a region (e.g. around their current position). Requires app-admin ('manage_apps'). */
|
|
8098
7148
|
nearbyGridPermissions: Array<NearbyGridPermissions>;
|
|
8099
|
-
/** Operator only (is_operator). Lists users with is_operator or is_super_admin set, ordered by user id. Read-only. */
|
|
8100
|
-
operatorUsers: Array<CpOperatorUser>;
|
|
8101
7149
|
/** An org's off-session auto-billing configuration (enabled flag, recharge amount, low-water threshold, per-period cap, and last error). Requires the 'view_billing' org permission. */
|
|
8102
7150
|
orgAutoBilling: OrgAutoBilling;
|
|
8103
|
-
/** Full detail for one environment: the environment row plus components, change orders, audit log, secrets, outputs, billing resources, live deploy/destroy progress, and Buddy UDP health. Returns null when no environment with that slug exists for the org. Requires the 'view_environments' org permission. */
|
|
8104
|
-
orgEnvironment: Maybe<CksEnvironmentDetail>;
|
|
8105
|
-
/** Lists every environment owned by an organization, in any lifecycle state (including destroyed). Summary rows only — use orgEnvironment(slug) for full detail. Requires the 'view_environments' org permission. */
|
|
8106
|
-
orgEnvironments: Array<CksEnvironment>;
|
|
8107
7151
|
/** An org's free shared-app slot quota and how much of it is used. Apps beyond the quota still publish; metered usage is billed from the org wallet. Caller must be a member of the org. */
|
|
8108
7152
|
orgFreeAppQuota: FreeAppQuota;
|
|
8109
7153
|
/** Lists the members of an organization. Requires the 'manage_members' permission on the org (super admins bypass). */
|
|
@@ -8116,8 +7160,6 @@ export type Query = {
|
|
|
8116
7160
|
orgRoles: Array<OrgRole>;
|
|
8117
7161
|
/** Lists an organization's API tokens (metadata only; secret values are never returned here). Requires the 'manage_tokens' permission on the org (super admins bypass). */
|
|
8118
7162
|
orgTokens: Array<OrgToken>;
|
|
8119
|
-
/** Aggregate replication/GraphQL byte totals per environment across the org for the time window. Read-only reporting. Requires the 'view_usage' org permission. */
|
|
8120
|
-
orgUsageByEnvironment: Array<EnvironmentUsageRollupRow>;
|
|
8121
7163
|
/** Org rollup of per-app monthly egress projections for all shared apps, with upgrade prompts when on track to exceed free tier. Requires the 'view_usage' org permission. */
|
|
8122
7164
|
orgUsageProjection: OrgUsageProjection;
|
|
8123
7165
|
/** Org-level rollup of replication/GraphQL byte totals and GraphQL op counts across all apps in the organization for the time window. Read-only reporting. Requires the 'view_usage' org permission. */
|
|
@@ -8178,8 +7220,6 @@ export type Query = {
|
|
|
8178
7220
|
playerWasmPolicies: Array<PlayerWasmPolicy>;
|
|
8179
7221
|
/** Whether portaling the calling user into an app needs a consent prompt. Trusted (first-party) apps and already-granted apps return consentRequired=false. The Overworld calls this before createPortalAuthorizationCode. Requires a SESSION token. */
|
|
8180
7222
|
portalConsent: PortalConsentState;
|
|
8181
|
-
/** Public read-only catalog of active Postgres billing tiers. Usage metering deferred. */
|
|
8182
|
-
postgresBillingTiers: Array<PostgresBillingTier>;
|
|
8183
7223
|
/** Lists the app-scoped quota rules explicitly configured for an app (excludes org-, tier-, and free-tier-default quotas). Use `effectiveQuota` to resolve the limit actually applied for a given metric. Requires the 'view_usage' app permission. */
|
|
8184
7224
|
quotasForApp: Array<ServiceQuota>;
|
|
8185
7225
|
/** Lists the org-scoped quota rules explicitly configured for an organization (excludes app-, tier-, and free-tier-default quotas). Use `effectiveQuota` to resolve the limit actually applied for a given metric. Requires the 'view_usage' org permission. */
|
|
@@ -8202,7 +7242,7 @@ export type Query = {
|
|
|
8202
7242
|
teams: Array<Group>;
|
|
8203
7243
|
/** UDP proxy session status for the game token on this request. Without a game token, returns connected: false. Does not open a session—use udpNotifications or connectUdpProxy. */
|
|
8204
7244
|
udpProxyConnectionStatus: UdpProxyConnectionStatus;
|
|
8205
|
-
/** Looks up a single user by id. Requires a valid game token.
|
|
7245
|
+
/** Looks up a single user by id. Requires a valid game token. */
|
|
8206
7246
|
user: Maybe<User>;
|
|
8207
7247
|
/** Reads the authenticated user’s per-app state for `appId` (keyed by appId+userId). Requires a valid game token; only the caller’s own state is returned. Returns null when no row exists. `state` is base64-encoded binary. */
|
|
8208
7248
|
userAppState: Maybe<UserAppState>;
|
|
@@ -8212,7 +7252,7 @@ export type Query = {
|
|
|
8212
7252
|
userAvatars: Array<Avatar>;
|
|
8213
7253
|
/** Super admin only. Paginated user search across email, gamertag, disambiguation, and exact user_id. Relay cursor connection; prefer this over the offset-based usersPaginated. */
|
|
8214
7254
|
usersConnection: UsersConnection;
|
|
8215
|
-
/** SUPER-ADMIN ONLY paginated user search; replaces the legacy `users`/`usersByGamertag`/`usersByEmail` queries. `query` is ILIKE-prefix matched against email, gamertag, and disambiguation, plus an exact user_id match. Requires a super-admin bearer game token.
|
|
7255
|
+
/** SUPER-ADMIN ONLY paginated user search; replaces the legacy `users`/`usersByGamertag`/`usersByEmail` queries. `query` is ILIKE-prefix matched against email, gamertag, and disambiguation, plus an exact user_id match. Requires a super-admin bearer game token. */
|
|
8216
7256
|
usersPaginated: UsersPage;
|
|
8217
7257
|
/** Current server version and the minimum client version the server accepts. No authentication required. Compare your client build against minimumClientVersion before connecting and prompt an update if it is too old. */
|
|
8218
7258
|
versionInfo: ServerVersionInfo;
|
|
@@ -8422,38 +7462,6 @@ export type QueryComputeModulesArgs = {
|
|
|
8422
7462
|
export type QueryComputeTemplatesArgs = {
|
|
8423
7463
|
appId: Scalars['BigInt']['input'];
|
|
8424
7464
|
};
|
|
8425
|
-
export type QueryCpAuditArgs = {
|
|
8426
|
-
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
8427
|
-
limit?: Scalars['Int']['input'];
|
|
8428
|
-
};
|
|
8429
|
-
export type QueryCpChangeOrderArgs = {
|
|
8430
|
-
id: Scalars['String']['input'];
|
|
8431
|
-
};
|
|
8432
|
-
export type QueryCpChangeOrdersArgs = {
|
|
8433
|
-
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
8434
|
-
page?: Scalars['Int']['input'];
|
|
8435
|
-
pageSize?: Scalars['Int']['input'];
|
|
8436
|
-
};
|
|
8437
|
-
export type QueryCpEnvSecretsArgs = {
|
|
8438
|
-
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
8439
|
-
};
|
|
8440
|
-
export type QueryCpEnvironmentArgs = {
|
|
8441
|
-
slug: Scalars['String']['input'];
|
|
8442
|
-
};
|
|
8443
|
-
export type QueryCpEnvironmentsArgs = {
|
|
8444
|
-
page?: Scalars['Int']['input'];
|
|
8445
|
-
pageSize?: Scalars['Int']['input'];
|
|
8446
|
-
};
|
|
8447
|
-
export type QueryCpOvhCatalogSummaryArgs = {
|
|
8448
|
-
region?: InputMaybe<Scalars['String']['input']>;
|
|
8449
|
-
};
|
|
8450
|
-
export type QueryCpSecretsArgs = {
|
|
8451
|
-
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
8452
|
-
};
|
|
8453
|
-
export type QueryCpUsageSummaryArgs = {
|
|
8454
|
-
environmentSlug: Scalars['String']['input'];
|
|
8455
|
-
since: Scalars['DateTime']['input'];
|
|
8456
|
-
};
|
|
8457
7465
|
export type QueryCrowdyStudioAgentBudgetArgs = {
|
|
8458
7466
|
sessionId: Scalars['String']['input'];
|
|
8459
7467
|
};
|
|
@@ -8513,29 +7521,6 @@ export type QueryEffectiveQuotaArgs = {
|
|
|
8513
7521
|
orgId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8514
7522
|
tierId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8515
7523
|
};
|
|
8516
|
-
export type QueryEnvironmentFlavorsArgs = {
|
|
8517
|
-
datacenter: Scalars['String']['input'];
|
|
8518
|
-
};
|
|
8519
|
-
export type QueryEnvironmentForwardVersionsArgs = {
|
|
8520
|
-
orgId: Scalars['BigInt']['input'];
|
|
8521
|
-
slug: Scalars['String']['input'];
|
|
8522
|
-
};
|
|
8523
|
-
export type QueryEnvironmentQuoteArgs = {
|
|
8524
|
-
input: EnvironmentQuoteInput;
|
|
8525
|
-
};
|
|
8526
|
-
export type QueryEnvironmentRedeployPlanArgs = {
|
|
8527
|
-
input: RedeployEnvironmentInput;
|
|
8528
|
-
};
|
|
8529
|
-
export type QueryEnvironmentUsageByAppArgs = {
|
|
8530
|
-
environmentSlug: Scalars['String']['input'];
|
|
8531
|
-
orgId: Scalars['BigInt']['input'];
|
|
8532
|
-
since: Scalars['DateTime']['input'];
|
|
8533
|
-
};
|
|
8534
|
-
export type QueryEnvironmentUsageSummaryArgs = {
|
|
8535
|
-
environmentSlug: Scalars['String']['input'];
|
|
8536
|
-
orgId: Scalars['BigInt']['input'];
|
|
8537
|
-
since: Scalars['DateTime']['input'];
|
|
8538
|
-
};
|
|
8539
7524
|
export type QueryGameClientBootstrapArgs = {
|
|
8540
7525
|
appId: Scalars['BigInt']['input'];
|
|
8541
7526
|
};
|
|
@@ -8736,13 +7721,6 @@ export type QueryNearbyGridPermissionsArgs = {
|
|
|
8736
7721
|
export type QueryOrgAutoBillingArgs = {
|
|
8737
7722
|
orgId: Scalars['BigInt']['input'];
|
|
8738
7723
|
};
|
|
8739
|
-
export type QueryOrgEnvironmentArgs = {
|
|
8740
|
-
orgId: Scalars['BigInt']['input'];
|
|
8741
|
-
slug: Scalars['String']['input'];
|
|
8742
|
-
};
|
|
8743
|
-
export type QueryOrgEnvironmentsArgs = {
|
|
8744
|
-
orgId: Scalars['BigInt']['input'];
|
|
8745
|
-
};
|
|
8746
7724
|
export type QueryOrgFreeAppQuotaArgs = {
|
|
8747
7725
|
orgId: Scalars['BigInt']['input'];
|
|
8748
7726
|
};
|
|
@@ -8758,10 +7736,6 @@ export type QueryOrgRolesArgs = {
|
|
|
8758
7736
|
export type QueryOrgTokensArgs = {
|
|
8759
7737
|
orgId: Scalars['BigInt']['input'];
|
|
8760
7738
|
};
|
|
8761
|
-
export type QueryOrgUsageByEnvironmentArgs = {
|
|
8762
|
-
orgId: Scalars['BigInt']['input'];
|
|
8763
|
-
since: Scalars['DateTime']['input'];
|
|
8764
|
-
};
|
|
8765
7739
|
export type QueryOrgUsageProjectionArgs = {
|
|
8766
7740
|
orgId: Scalars['BigInt']['input'];
|
|
8767
7741
|
};
|
|
@@ -8944,21 +7918,6 @@ export type RealtimeConnectionEvent = {
|
|
|
8944
7918
|
/** Lifecycle status of the session attempt. Currently always "failed" — this event is only emitted when udpNotifications could not establish (or had to tear down) the underlying UDP proxy session. */
|
|
8945
7919
|
status: Scalars['String']['output'];
|
|
8946
7920
|
};
|
|
8947
|
-
/** How redeployEnvironment rolls out a new version. Omit for automatic routing (services-only when active runtime VMs exist, otherwise full). */
|
|
8948
|
-
export declare enum RedeployDeployMode {
|
|
8949
|
-
/** Replace the runtime VMs (reprovision game-api / Buddy instances). Slower; use when the box image or infra must change. */
|
|
8950
|
-
Full = "FULL",
|
|
8951
|
-
/** Update services in place on the existing runtime VMs (no VM replacement). Faster; only valid when active runtime VMs exist. */
|
|
8952
|
-
Services = "SERVICES"
|
|
8953
|
-
}
|
|
8954
|
-
export type RedeployEnvironmentInput = {
|
|
8955
|
-
/** How to roll out the version. When omitted, routes to services-only when active runtime VMs exist, otherwise full. */
|
|
8956
|
-
deployMode?: InputMaybe<RedeployDeployMode>;
|
|
8957
|
-
orgId: Scalars['BigInt']['input'];
|
|
8958
|
-
slug: Scalars['String']['input'];
|
|
8959
|
-
/** Target environment version. When omitted, redeploys to the latest available version for the class. Must be available, deployable by this class, and not older than the current version (forward-only — no rollback). */
|
|
8960
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
8961
|
-
};
|
|
8962
7921
|
export type RegisterUserInput = {
|
|
8963
7922
|
/** Email for the new account; the confirmation email is sent here. */
|
|
8964
7923
|
email: Scalars['String']['input'];
|
|
@@ -9002,18 +7961,6 @@ export type ResetPasswordInput = {
|
|
|
9002
7961
|
/** Password-reset token from the emailed reset link. */
|
|
9003
7962
|
token: Scalars['String']['input'];
|
|
9004
7963
|
};
|
|
9005
|
-
export type RestartEnvironmentServicesInput = {
|
|
9006
|
-
/** Organization id (BigInt) that owns the environment. */
|
|
9007
|
-
orgId: Scalars['BigInt']['input'];
|
|
9008
|
-
/** Slug of the environment whose Buddy service should be SSH-restarted. */
|
|
9009
|
-
slug: Scalars['String']['input'];
|
|
9010
|
-
};
|
|
9011
|
-
export type ResumeEnvironmentInput = {
|
|
9012
|
-
/** Organization id (BigInt) that owns the environment. */
|
|
9013
|
-
orgId: Scalars['BigInt']['input'];
|
|
9014
|
-
/** Slug of the suspended/grace environment to resume (billingStatus must be grace, suspension_queued, suspended, or resume_failed). */
|
|
9015
|
-
slug: Scalars['String']['input'];
|
|
9016
|
-
};
|
|
9017
7964
|
/** Immediately revoke one visible lease. */
|
|
9018
7965
|
export type RevokeAgentLeaseInput = {
|
|
9019
7966
|
/** Current attached client epoch. */
|
|
@@ -9401,17 +8348,17 @@ export type ServerEventNotification = {
|
|
|
9401
8348
|
};
|
|
9402
8349
|
/** Lifecycle/capacity state of a game/GraphQL server in the fleet. Only ReadyForClients servers should receive new client connections; serverWithLeastClients and activeGraphQLServers already filter to healthy, non-overloaded servers. */
|
|
9403
8350
|
export declare enum ServerState {
|
|
9404
|
-
/**
|
|
8351
|
+
/** Hard resource overload. Like NearCapacity (excluded from new-client selection), and the server is also actively shedding clients: it sends each affected client a reconnect command and drops their session after a short grace period so they migrate to another server. */
|
|
9405
8352
|
Full = "Full",
|
|
9406
|
-
/**
|
|
8353
|
+
/** Soft resource overload (a CPU core or system memory has been high for several seconds). Existing sessions continue, but the server is excluded from serverWithLeastClients so no new clients are routed here until it recovers. */
|
|
9407
8354
|
NearCapacity = "NearCapacity",
|
|
9408
|
-
/**
|
|
8355
|
+
/** The server is down or unreachable (failed health checks). Do not route any traffic here. */
|
|
9409
8356
|
Offline = "Offline",
|
|
9410
|
-
/**
|
|
8357
|
+
/** The server is healthy and accepting clients. This is the only state safe to route new connections to. */
|
|
9411
8358
|
ReadyForClients = "ReadyForClients",
|
|
9412
|
-
/**
|
|
8359
|
+
/** The server is booting and not yet accepting clients. Do not route new connections here; wait for ReadyForClients. */
|
|
9413
8360
|
Starting = "Starting",
|
|
9414
|
-
/**
|
|
8361
|
+
/** The server is draining and shutting down: existing sessions may continue briefly but no new clients should be routed here. */
|
|
9415
8362
|
Stopping = "Stopping"
|
|
9416
8363
|
}
|
|
9417
8364
|
/** Live status and load/telemetry for one UDP game server (Buddy) in the fleet. Returned by serverWithLeastClients (which picks a low-load ReadyForClients server). Throughput metrics are per-second samples from the last reporting window and are null until first reported. */
|
|
@@ -9449,7 +8396,7 @@ export type ServerStatus = {
|
|
|
9449
8396
|
peerSendMsgsPerSec: Maybe<Scalars['Float']['output']>;
|
|
9450
8397
|
/** Number of peer (server-to-server P2P) connections this server currently holds. */
|
|
9451
8398
|
peers: Scalars['Int']['output'];
|
|
9452
|
-
/** Unique id of this game-server row in the fleet registry. */
|
|
8399
|
+
/** Unique id of this game-server row in the fleet registry (the Buddy instance uuid). */
|
|
9453
8400
|
serverId: Scalars['ID']['output'];
|
|
9454
8401
|
/** Current lifecycle state of this server (see ServerState). Only ReadyForClients servers accept new clients. */
|
|
9455
8402
|
status: ServerState;
|
|
@@ -10161,36 +9108,6 @@ export type UpdateChunkStateInput = {
|
|
|
10161
9108
|
/** Address of the chunk whose chunk-level state to set. */
|
|
10162
9109
|
coordinates: ChunkCoordinatesInput;
|
|
10163
9110
|
};
|
|
10164
|
-
export type UpdateEnvironmentBillingTiersInput = {
|
|
10165
|
-
/** Buddy billing tier level from buddyBillingTiers. */
|
|
10166
|
-
buddyBillingTier?: InputMaybe<Scalars['Int']['input']>;
|
|
10167
|
-
/** GraphQL billing tier level from graphqlBillingTiers. */
|
|
10168
|
-
graphqlBillingTier?: InputMaybe<Scalars['Int']['input']>;
|
|
10169
|
-
/** Organization id (BigInt) that owns the environment. */
|
|
10170
|
-
orgId: Scalars['BigInt']['input'];
|
|
10171
|
-
/** Postgres billing tier level from postgresBillingTiers. */
|
|
10172
|
-
postgresBillingTier?: InputMaybe<Scalars['Int']['input']>;
|
|
10173
|
-
/** Slug of the environment whose billing tiers to update. */
|
|
10174
|
-
slug: Scalars['String']['input'];
|
|
10175
|
-
};
|
|
10176
|
-
export type UpdateEnvironmentScalingInput = {
|
|
10177
|
-
/** Caddy LB flavor (in front of the game-api fleet). When omitted the existing value is preserved. */
|
|
10178
|
-
caddyFlavor?: InputMaybe<Scalars['String']['input']>;
|
|
10179
|
-
/** Maximum game-api servers (autoscaling ceiling). Min 1; ≥ gameApiMinServers. */
|
|
10180
|
-
gameApiMaxServers: Scalars['Int']['input'];
|
|
10181
|
-
/** Minimum game-api servers (autoscaling floor). Min 1; ≤ gameApiMaxServers. */
|
|
10182
|
-
gameApiMinServers: Scalars['Int']['input'];
|
|
10183
|
-
/** Number of Caddy load-balancer VMs in front of the game-api fleet. Min 1. */
|
|
10184
|
-
loadBalancerCount: Scalars['Int']['input'];
|
|
10185
|
-
/** Organization id (BigInt) that owns the environment. */
|
|
10186
|
-
orgId: Scalars['BigInt']['input'];
|
|
10187
|
-
/** Slug of the dedicated environment to rescale (rejected for 'dev_single'). */
|
|
10188
|
-
slug: Scalars['String']['input'];
|
|
10189
|
-
/** Maximum Buddy UDP servers (autoscaling ceiling). Min 1; ≥ udpBuddyMinServers. */
|
|
10190
|
-
udpBuddyMaxServers: Scalars['Int']['input'];
|
|
10191
|
-
/** Minimum Buddy UDP servers (autoscaling floor). Min 1; ≤ udpBuddyMaxServers. */
|
|
10192
|
-
udpBuddyMinServers: Scalars['Int']['input'];
|
|
10193
|
-
};
|
|
10194
9111
|
export type UpdateGamertagInput = {
|
|
10195
9112
|
/** Discriminator paired with `gamertag` (max 128 characters) to form a unique handle. */
|
|
10196
9113
|
disambiguation: Scalars['String']['input'];
|
|
@@ -10236,7 +9153,7 @@ export type UpdateTeamInput = {
|
|
|
10236
9153
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10237
9154
|
};
|
|
10238
9155
|
export type UpdateUserStateInput = {
|
|
10239
|
-
/** New user-level state blob, base64-encoded binary. Omit or send null to clear it. */
|
|
9156
|
+
/** New user-level state blob, base64-encoded binary, at most 1,048,576 base64 characters (~768 KiB binary); larger payloads draw a structured validation error. Omit or send null to clear it. */
|
|
10240
9157
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
10241
9158
|
};
|
|
10242
9159
|
/** Payload for updateVoxel: records (upserts) a single voxel edit in the voxel_updates log for one chunk. */
|
|
@@ -10481,7 +9398,7 @@ export type User = {
|
|
|
10481
9398
|
isSuperAdmin: Scalars['Boolean']['output'];
|
|
10482
9399
|
/** Organization the user belongs to, or null. BigInt serialized as a decimal string. */
|
|
10483
9400
|
orgId: Maybe<Scalars['BigInt']['output']>;
|
|
10484
|
-
/** The user's effective permission keys on the given org (empty if not a member; full set if super admin). Requires a valid bearer game token.
|
|
9401
|
+
/** The user's effective permission keys on the given org (empty if not a member; full set if super admin). Requires a valid bearer game token. */
|
|
10485
9402
|
permissionsForOrg: Array<Scalars['String']['output']>;
|
|
10486
9403
|
/** User-level state blob, base64-encoded binary (management-owned). Null when cleared. */
|
|
10487
9404
|
state: Maybe<Scalars['String']['output']>;
|
|
@@ -10506,7 +9423,6 @@ export type UserAppState = {
|
|
|
10506
9423
|
/** Owner user id. BigInt serialized as a decimal string. */
|
|
10507
9424
|
userId: Scalars['BigInt']['output'];
|
|
10508
9425
|
};
|
|
10509
|
-
/** Aggregated lifetime donation totals for a user. LEGACY: donations are no longer purchasable. Returned by the deprecated myDonationData query. */
|
|
10510
9426
|
export type UserDonationData = {
|
|
10511
9427
|
__typename?: 'UserDonationData';
|
|
10512
9428
|
/** ISO currency code for the total, e.g. "usd". */
|
|
@@ -10536,7 +9452,6 @@ export type UserIdentity = {
|
|
|
10536
9452
|
subject: Scalars['String']['output'];
|
|
10537
9453
|
userId: Scalars['ID']['output'];
|
|
10538
9454
|
};
|
|
10539
|
-
/** Aggregated property-token balances for a user. LEGACY: property tokens are no longer purchasable. Returned by the deprecated myPropertyTokens query. */
|
|
10540
9455
|
export type UserPropertyTokenData = {
|
|
10541
9456
|
__typename?: 'UserPropertyTokenData';
|
|
10542
9457
|
/** Property tokens currently available, as a decimal string. */
|
|
@@ -10556,7 +9471,6 @@ export type UsersConnection = {
|
|
|
10556
9471
|
/** Total matching records across all pages, when known (null for sources that do not compute a total). */
|
|
10557
9472
|
totalCount: Maybe<Scalars['Int']['output']>;
|
|
10558
9473
|
};
|
|
10559
|
-
/** One page of users from usersPaginated, plus pagination metadata. */
|
|
10560
9474
|
export type UsersPage = {
|
|
10561
9475
|
__typename?: 'UsersPage';
|
|
10562
9476
|
/** Users on the current page, ordered by ascending user id. */
|
|
@@ -12009,53 +10923,6 @@ export type AppBudgetsQuery = {
|
|
|
12009
10923
|
updatedAt: string;
|
|
12010
10924
|
}>;
|
|
12011
10925
|
};
|
|
12012
|
-
export type BuddyBillingTiersQueryVariables = Exact<{
|
|
12013
|
-
[key: string]: never;
|
|
12014
|
-
}>;
|
|
12015
|
-
export type BuddyBillingTiersQuery = {
|
|
12016
|
-
__typename?: 'Query';
|
|
12017
|
-
buddyBillingTiers: Array<{
|
|
12018
|
-
__typename?: 'BuddyBillingTier';
|
|
12019
|
-
tierLevel: number;
|
|
12020
|
-
messagesPerSecond: number;
|
|
12021
|
-
bandwidthMbitPerSecond: number;
|
|
12022
|
-
chargeCents: string;
|
|
12023
|
-
currency: string;
|
|
12024
|
-
label: string;
|
|
12025
|
-
description: string | null;
|
|
12026
|
-
}>;
|
|
12027
|
-
};
|
|
12028
|
-
export type GraphqlBillingTiersQueryVariables = Exact<{
|
|
12029
|
-
[key: string]: never;
|
|
12030
|
-
}>;
|
|
12031
|
-
export type GraphqlBillingTiersQuery = {
|
|
12032
|
-
__typename?: 'Query';
|
|
12033
|
-
graphqlBillingTiers: Array<{
|
|
12034
|
-
__typename?: 'GraphqlBillingTier';
|
|
12035
|
-
tierLevel: number;
|
|
12036
|
-
endpointCallsPerSecond: number;
|
|
12037
|
-
bandwidthMbitPerSecond: number;
|
|
12038
|
-
chargeCents: string;
|
|
12039
|
-
currency: string;
|
|
12040
|
-
label: string;
|
|
12041
|
-
description: string | null;
|
|
12042
|
-
}>;
|
|
12043
|
-
};
|
|
12044
|
-
export type PostgresBillingTiersQueryVariables = Exact<{
|
|
12045
|
-
[key: string]: never;
|
|
12046
|
-
}>;
|
|
12047
|
-
export type PostgresBillingTiersQuery = {
|
|
12048
|
-
__typename?: 'Query';
|
|
12049
|
-
postgresBillingTiers: Array<{
|
|
12050
|
-
__typename?: 'PostgresBillingTier';
|
|
12051
|
-
tierLevel: number;
|
|
12052
|
-
bandwidthMbitPerSecond: number;
|
|
12053
|
-
chargeCents: string;
|
|
12054
|
-
currency: string;
|
|
12055
|
-
label: string;
|
|
12056
|
-
description: string | null;
|
|
12057
|
-
}>;
|
|
12058
|
-
};
|
|
12059
10926
|
export type SetAppBudgetMutationVariables = Exact<{
|
|
12060
10927
|
orgId: Scalars['BigInt']['input'];
|
|
12061
10928
|
appId: Scalars['BigInt']['input'];
|
|
@@ -13144,387 +12011,6 @@ export type ComputeDeployTemplateMutation = {
|
|
|
13144
12011
|
updatedAt: string;
|
|
13145
12012
|
};
|
|
13146
12013
|
};
|
|
13147
|
-
export type CpEnvironmentsQueryVariables = Exact<{
|
|
13148
|
-
page?: InputMaybe<Scalars['Int']['input']>;
|
|
13149
|
-
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
13150
|
-
}>;
|
|
13151
|
-
export type CpEnvironmentsQuery = {
|
|
13152
|
-
__typename?: 'Query';
|
|
13153
|
-
cpEnvironments: {
|
|
13154
|
-
__typename?: 'CpAdminEnvironmentsPage';
|
|
13155
|
-
total: number;
|
|
13156
|
-
page: number;
|
|
13157
|
-
pageSize: number;
|
|
13158
|
-
rows: Array<{
|
|
13159
|
-
__typename?: 'CpAdminEnvironment';
|
|
13160
|
-
id: string;
|
|
13161
|
-
orgId: string | null;
|
|
13162
|
-
slug: string;
|
|
13163
|
-
displayName: string;
|
|
13164
|
-
primaryCloud: string;
|
|
13165
|
-
primaryRegion: string;
|
|
13166
|
-
status: string;
|
|
13167
|
-
deletionProtectionEnabled: boolean;
|
|
13168
|
-
subdomainHandle: string | null;
|
|
13169
|
-
createdAt: string;
|
|
13170
|
-
updatedAt: string;
|
|
13171
|
-
}>;
|
|
13172
|
-
};
|
|
13173
|
-
};
|
|
13174
|
-
export type CpEnvironmentQueryVariables = Exact<{
|
|
13175
|
-
slug: Scalars['String']['input'];
|
|
13176
|
-
}>;
|
|
13177
|
-
export type CpEnvironmentQuery = {
|
|
13178
|
-
__typename?: 'Query';
|
|
13179
|
-
cpEnvironment: {
|
|
13180
|
-
__typename?: 'CpAdminEnvironment';
|
|
13181
|
-
id: string;
|
|
13182
|
-
orgId: string | null;
|
|
13183
|
-
slug: string;
|
|
13184
|
-
displayName: string;
|
|
13185
|
-
primaryCloud: string;
|
|
13186
|
-
primaryRegion: string;
|
|
13187
|
-
status: string;
|
|
13188
|
-
deletionProtectionEnabled: boolean;
|
|
13189
|
-
deletionProtectionSetAt: string | null;
|
|
13190
|
-
deletionProtectionSetByEmail: string | null;
|
|
13191
|
-
subdomainHandle: string | null;
|
|
13192
|
-
createdAt: string;
|
|
13193
|
-
updatedAt: string;
|
|
13194
|
-
} | null;
|
|
13195
|
-
};
|
|
13196
|
-
export type CpChangeOrdersQueryVariables = Exact<{
|
|
13197
|
-
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
13198
|
-
page?: InputMaybe<Scalars['Int']['input']>;
|
|
13199
|
-
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
13200
|
-
}>;
|
|
13201
|
-
export type CpChangeOrdersQuery = {
|
|
13202
|
-
__typename?: 'Query';
|
|
13203
|
-
cpChangeOrders: {
|
|
13204
|
-
__typename?: 'CpChangeOrdersPage';
|
|
13205
|
-
total: number;
|
|
13206
|
-
page: number;
|
|
13207
|
-
pageSize: number;
|
|
13208
|
-
rows: Array<{
|
|
13209
|
-
__typename?: 'CpChangeOrder';
|
|
13210
|
-
id: string;
|
|
13211
|
-
environmentId: string;
|
|
13212
|
-
kind: string;
|
|
13213
|
-
status: string;
|
|
13214
|
-
claimedBy: string | null;
|
|
13215
|
-
claimedAt: string | null;
|
|
13216
|
-
finishedAt: string | null;
|
|
13217
|
-
error: string | null;
|
|
13218
|
-
createdAt: string;
|
|
13219
|
-
updatedAt: string;
|
|
13220
|
-
}>;
|
|
13221
|
-
};
|
|
13222
|
-
};
|
|
13223
|
-
export type CpChangeOrderQueryVariables = Exact<{
|
|
13224
|
-
id: Scalars['String']['input'];
|
|
13225
|
-
}>;
|
|
13226
|
-
export type CpChangeOrderQuery = {
|
|
13227
|
-
__typename?: 'Query';
|
|
13228
|
-
cpChangeOrder: {
|
|
13229
|
-
__typename?: 'CpChangeOrderDetail';
|
|
13230
|
-
order: {
|
|
13231
|
-
__typename?: 'CpChangeOrder';
|
|
13232
|
-
id: string;
|
|
13233
|
-
environmentId: string;
|
|
13234
|
-
kind: string;
|
|
13235
|
-
status: string;
|
|
13236
|
-
error: string | null;
|
|
13237
|
-
createdAt: string;
|
|
13238
|
-
updatedAt: string;
|
|
13239
|
-
finishedAt: string | null;
|
|
13240
|
-
};
|
|
13241
|
-
tasks: Array<{
|
|
13242
|
-
__typename?: 'CpTaskRow';
|
|
13243
|
-
id: string;
|
|
13244
|
-
changeOrderId: string;
|
|
13245
|
-
kind: string;
|
|
13246
|
-
ordinal: number;
|
|
13247
|
-
status: string;
|
|
13248
|
-
error: string | null;
|
|
13249
|
-
createdAt: string;
|
|
13250
|
-
finishedAt: string | null;
|
|
13251
|
-
}>;
|
|
13252
|
-
steps: Array<{
|
|
13253
|
-
__typename?: 'CpStepRow';
|
|
13254
|
-
id: string;
|
|
13255
|
-
taskId: string;
|
|
13256
|
-
ordinal: number;
|
|
13257
|
-
kind: string;
|
|
13258
|
-
status: string;
|
|
13259
|
-
attempt: number;
|
|
13260
|
-
error: string | null;
|
|
13261
|
-
createdAt: string;
|
|
13262
|
-
finishedAt: string | null;
|
|
13263
|
-
}>;
|
|
13264
|
-
} | null;
|
|
13265
|
-
};
|
|
13266
|
-
export type CpAuditQueryVariables = Exact<{
|
|
13267
|
-
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
13268
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
13269
|
-
}>;
|
|
13270
|
-
export type CpAuditQuery = {
|
|
13271
|
-
__typename?: 'Query';
|
|
13272
|
-
cpAudit: Array<{
|
|
13273
|
-
__typename?: 'CpAuditEntry';
|
|
13274
|
-
id: string;
|
|
13275
|
-
actorUserId: string | null;
|
|
13276
|
-
actorKind: string;
|
|
13277
|
-
action: string;
|
|
13278
|
-
entityKind: string | null;
|
|
13279
|
-
entityId: string | null;
|
|
13280
|
-
environmentId: string | null;
|
|
13281
|
-
payloadJson: string | null;
|
|
13282
|
-
createdAt: string;
|
|
13283
|
-
}>;
|
|
13284
|
-
};
|
|
13285
|
-
export type CpSecretsQueryVariables = Exact<{
|
|
13286
|
-
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
13287
|
-
}>;
|
|
13288
|
-
export type CpSecretsQuery = {
|
|
13289
|
-
__typename?: 'Query';
|
|
13290
|
-
cpSecrets: Array<{
|
|
13291
|
-
__typename?: 'CpSecretRow';
|
|
13292
|
-
id: string;
|
|
13293
|
-
environmentId: string;
|
|
13294
|
-
name: string;
|
|
13295
|
-
kind: string | null;
|
|
13296
|
-
createdAt: string;
|
|
13297
|
-
rotatedAt: string | null;
|
|
13298
|
-
}>;
|
|
13299
|
-
};
|
|
13300
|
-
export type CpEnvSecretsQueryVariables = Exact<{
|
|
13301
|
-
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
13302
|
-
}>;
|
|
13303
|
-
export type CpEnvSecretsQuery = {
|
|
13304
|
-
__typename?: 'Query';
|
|
13305
|
-
cpEnvSecrets: Array<{
|
|
13306
|
-
__typename?: 'CpEnvSecretRow';
|
|
13307
|
-
id: string;
|
|
13308
|
-
environmentId: string;
|
|
13309
|
-
name: string;
|
|
13310
|
-
kind: string | null;
|
|
13311
|
-
createdAt: string;
|
|
13312
|
-
rotatedAt: string | null;
|
|
13313
|
-
}>;
|
|
13314
|
-
};
|
|
13315
|
-
export type CpOvhCatalogSummaryQueryVariables = Exact<{
|
|
13316
|
-
region?: InputMaybe<Scalars['String']['input']>;
|
|
13317
|
-
}>;
|
|
13318
|
-
export type CpOvhCatalogSummaryQuery = {
|
|
13319
|
-
__typename?: 'Query';
|
|
13320
|
-
cpOvhCatalogSummary: Array<{
|
|
13321
|
-
__typename?: 'CpOvhCatalogRow';
|
|
13322
|
-
region: string;
|
|
13323
|
-
flavorName: string;
|
|
13324
|
-
vcpus: number | null;
|
|
13325
|
-
ramMb: number | null;
|
|
13326
|
-
diskGb: number | null;
|
|
13327
|
-
ovhHourlyPriceCents: string | null;
|
|
13328
|
-
customerHourlyPriceCents: string | null;
|
|
13329
|
-
customerPricingMode: string;
|
|
13330
|
-
quotaAvailable: number | null;
|
|
13331
|
-
}>;
|
|
13332
|
-
};
|
|
13333
|
-
export type CpUsageSummaryQueryVariables = Exact<{
|
|
13334
|
-
environmentSlug: Scalars['String']['input'];
|
|
13335
|
-
since: Scalars['DateTime']['input'];
|
|
13336
|
-
}>;
|
|
13337
|
-
export type CpUsageSummaryQuery = {
|
|
13338
|
-
__typename?: 'Query';
|
|
13339
|
-
cpUsageSummary: {
|
|
13340
|
-
__typename?: 'CpUsageSummary';
|
|
13341
|
-
environmentSlug: string;
|
|
13342
|
-
orgId: string | null;
|
|
13343
|
-
replication: Array<{
|
|
13344
|
-
__typename?: 'CpUsageMinuteRow';
|
|
13345
|
-
minute: string;
|
|
13346
|
-
recvBytes: string;
|
|
13347
|
-
sendBytes: string;
|
|
13348
|
-
recvMsgs: string | null;
|
|
13349
|
-
sendMsgs: string | null;
|
|
13350
|
-
}>;
|
|
13351
|
-
graphql: Array<{
|
|
13352
|
-
__typename?: 'CpUsageMinuteRow';
|
|
13353
|
-
minute: string;
|
|
13354
|
-
recvBytes: string;
|
|
13355
|
-
sendBytes: string;
|
|
13356
|
-
}>;
|
|
13357
|
-
replicationRates: {
|
|
13358
|
-
__typename?: 'CpUsageRatePeaks';
|
|
13359
|
-
peakSendMsgsPerSec: number;
|
|
13360
|
-
peakSendMbitPerSec: number;
|
|
13361
|
-
avgSendMsgsPerSec: number;
|
|
13362
|
-
avgSendMbitPerSec: number;
|
|
13363
|
-
sampleMinutes: number;
|
|
13364
|
-
};
|
|
13365
|
-
buddyLive: {
|
|
13366
|
-
__typename?: 'CpBuddyLiveRates';
|
|
13367
|
-
serverId: string;
|
|
13368
|
-
clientSendMsgsPerSec: number;
|
|
13369
|
-
clientRecvMsgsPerSec: number;
|
|
13370
|
-
clients: number;
|
|
13371
|
-
updatedAt: string;
|
|
13372
|
-
} | null;
|
|
13373
|
-
};
|
|
13374
|
-
};
|
|
13375
|
-
export type CpUnreleasedGameApiTagsQueryVariables = Exact<{
|
|
13376
|
-
[key: string]: never;
|
|
13377
|
-
}>;
|
|
13378
|
-
export type CpUnreleasedGameApiTagsQuery = {
|
|
13379
|
-
__typename?: 'Query';
|
|
13380
|
-
cpUnreleasedGameApiTags: {
|
|
13381
|
-
__typename?: 'CpUnreleasedGameApiTagsPage';
|
|
13382
|
-
currentDeployTargetGameApiTag: string | null;
|
|
13383
|
-
gitSourceAvailable: boolean;
|
|
13384
|
-
tags: Array<{
|
|
13385
|
-
__typename?: 'CpUnreleasedGameApiTag';
|
|
13386
|
-
tag: string;
|
|
13387
|
-
taggedAt: string | null;
|
|
13388
|
-
proposedEnvironmentVersion: string;
|
|
13389
|
-
schemaChanged: boolean;
|
|
13390
|
-
}>;
|
|
13391
|
-
};
|
|
13392
|
-
};
|
|
13393
|
-
export type CpEnvironmentVersionsQueryVariables = Exact<{
|
|
13394
|
-
[key: string]: never;
|
|
13395
|
-
}>;
|
|
13396
|
-
export type CpEnvironmentVersionsQuery = {
|
|
13397
|
-
__typename?: 'Query';
|
|
13398
|
-
cpEnvironmentVersions: {
|
|
13399
|
-
__typename?: 'CpEnvironmentVersionsPage';
|
|
13400
|
-
latestAvailableVersion: string | null;
|
|
13401
|
-
gitSourceAvailable: boolean;
|
|
13402
|
-
rows: Array<{
|
|
13403
|
-
__typename?: 'CpEnvironmentVersionRow';
|
|
13404
|
-
version: string;
|
|
13405
|
-
releasedAt: string;
|
|
13406
|
-
status: string;
|
|
13407
|
-
notes: string | null;
|
|
13408
|
-
sourceCommit: string | null;
|
|
13409
|
-
gameApiGitTag: string | null;
|
|
13410
|
-
buddyVersion: string | null;
|
|
13411
|
-
ingestedAt: string;
|
|
13412
|
-
updatedAt: string;
|
|
13413
|
-
inGit: boolean;
|
|
13414
|
-
inDb: boolean;
|
|
13415
|
-
isLatestAvailable: boolean;
|
|
13416
|
-
}>;
|
|
13417
|
-
};
|
|
13418
|
-
};
|
|
13419
|
-
export type OperatorUsersQueryVariables = Exact<{
|
|
13420
|
-
[key: string]: never;
|
|
13421
|
-
}>;
|
|
13422
|
-
export type OperatorUsersQuery = {
|
|
13423
|
-
__typename?: 'Query';
|
|
13424
|
-
operatorUsers: Array<{
|
|
13425
|
-
__typename?: 'CpOperatorUser';
|
|
13426
|
-
userId: string;
|
|
13427
|
-
email: string | null;
|
|
13428
|
-
gamertag: string | null;
|
|
13429
|
-
isOperator: boolean;
|
|
13430
|
-
isSuperAdmin: boolean;
|
|
13431
|
-
createdAt: string;
|
|
13432
|
-
}>;
|
|
13433
|
-
};
|
|
13434
|
-
export type SetEnvironmentDeletionProtectionMutationVariables = Exact<{
|
|
13435
|
-
environmentId: Scalars['String']['input'];
|
|
13436
|
-
enabled: Scalars['Boolean']['input'];
|
|
13437
|
-
}>;
|
|
13438
|
-
export type SetEnvironmentDeletionProtectionMutation = {
|
|
13439
|
-
__typename?: 'Mutation';
|
|
13440
|
-
setEnvironmentDeletionProtection: boolean;
|
|
13441
|
-
};
|
|
13442
|
-
export type PutCpSecretMutationVariables = Exact<{
|
|
13443
|
-
environmentId: Scalars['String']['input'];
|
|
13444
|
-
name: Scalars['String']['input'];
|
|
13445
|
-
plaintext: Scalars['String']['input'];
|
|
13446
|
-
kind?: InputMaybe<Scalars['String']['input']>;
|
|
13447
|
-
}>;
|
|
13448
|
-
export type PutCpSecretMutation = {
|
|
13449
|
-
__typename?: 'Mutation';
|
|
13450
|
-
putCpSecret: {
|
|
13451
|
-
__typename?: 'CpSecretRow';
|
|
13452
|
-
id: string;
|
|
13453
|
-
environmentId: string;
|
|
13454
|
-
name: string;
|
|
13455
|
-
kind: string | null;
|
|
13456
|
-
createdAt: string;
|
|
13457
|
-
rotatedAt: string | null;
|
|
13458
|
-
};
|
|
13459
|
-
};
|
|
13460
|
-
export type DeleteCpSecretMutationVariables = Exact<{
|
|
13461
|
-
environmentId: Scalars['String']['input'];
|
|
13462
|
-
name: Scalars['String']['input'];
|
|
13463
|
-
}>;
|
|
13464
|
-
export type DeleteCpSecretMutation = {
|
|
13465
|
-
__typename?: 'Mutation';
|
|
13466
|
-
deleteCpSecret: boolean;
|
|
13467
|
-
};
|
|
13468
|
-
export type PutCpEnvSecretMutationVariables = Exact<{
|
|
13469
|
-
environmentId: Scalars['String']['input'];
|
|
13470
|
-
name: Scalars['String']['input'];
|
|
13471
|
-
plaintext: Scalars['String']['input'];
|
|
13472
|
-
kind?: InputMaybe<Scalars['String']['input']>;
|
|
13473
|
-
}>;
|
|
13474
|
-
export type PutCpEnvSecretMutation = {
|
|
13475
|
-
__typename?: 'Mutation';
|
|
13476
|
-
putCpEnvSecret: {
|
|
13477
|
-
__typename?: 'CpEnvSecretRow';
|
|
13478
|
-
id: string;
|
|
13479
|
-
environmentId: string;
|
|
13480
|
-
name: string;
|
|
13481
|
-
kind: string | null;
|
|
13482
|
-
createdAt: string;
|
|
13483
|
-
rotatedAt: string | null;
|
|
13484
|
-
};
|
|
13485
|
-
};
|
|
13486
|
-
export type IngestEnvironmentVersionMutationVariables = Exact<{
|
|
13487
|
-
input: IngestEnvironmentVersionInput;
|
|
13488
|
-
}>;
|
|
13489
|
-
export type IngestEnvironmentVersionMutation = {
|
|
13490
|
-
__typename?: 'Mutation';
|
|
13491
|
-
ingestEnvironmentVersion: {
|
|
13492
|
-
__typename?: 'CpEnvironmentVersionRow';
|
|
13493
|
-
version: string;
|
|
13494
|
-
releasedAt: string;
|
|
13495
|
-
status: string;
|
|
13496
|
-
notes: string | null;
|
|
13497
|
-
gameApiGitTag: string | null;
|
|
13498
|
-
inGit: boolean;
|
|
13499
|
-
inDb: boolean;
|
|
13500
|
-
isLatestAvailable: boolean;
|
|
13501
|
-
};
|
|
13502
|
-
};
|
|
13503
|
-
export type PublishEnvironmentReleaseFromGameApiTagMutationVariables = Exact<{
|
|
13504
|
-
input: PublishEnvironmentReleaseFromGameApiTagInput;
|
|
13505
|
-
}>;
|
|
13506
|
-
export type PublishEnvironmentReleaseFromGameApiTagMutation = {
|
|
13507
|
-
__typename?: 'Mutation';
|
|
13508
|
-
publishEnvironmentReleaseFromGameApiTag: {
|
|
13509
|
-
__typename?: 'CpPublishEnvironmentReleaseResult';
|
|
13510
|
-
schemaChanged: boolean;
|
|
13511
|
-
committedToGit: boolean;
|
|
13512
|
-
gitCommitError: string | null;
|
|
13513
|
-
version: {
|
|
13514
|
-
__typename?: 'CpEnvironmentVersionRow';
|
|
13515
|
-
version: string;
|
|
13516
|
-
status: string;
|
|
13517
|
-
gameApiGitTag: string | null;
|
|
13518
|
-
};
|
|
13519
|
-
};
|
|
13520
|
-
};
|
|
13521
|
-
export type YankEnvironmentVersionMutationVariables = Exact<{
|
|
13522
|
-
version: Scalars['String']['input'];
|
|
13523
|
-
}>;
|
|
13524
|
-
export type YankEnvironmentVersionMutation = {
|
|
13525
|
-
__typename?: 'Mutation';
|
|
13526
|
-
yankEnvironmentVersion: boolean;
|
|
13527
|
-
};
|
|
13528
12014
|
export type CpComputePlatformCeilingsQueryVariables = Exact<{
|
|
13529
12015
|
[key: string]: never;
|
|
13530
12016
|
}>;
|
|
@@ -15878,388 +14364,6 @@ export type CrowdyStudioAgentEventsSubscription = {
|
|
|
15878
14364
|
} | null;
|
|
15879
14365
|
};
|
|
15880
14366
|
};
|
|
15881
|
-
export type CreateEnvironmentMutationVariables = Exact<{
|
|
15882
|
-
input: CreateEnvironmentInput;
|
|
15883
|
-
}>;
|
|
15884
|
-
export type CreateEnvironmentMutation = {
|
|
15885
|
-
__typename?: 'Mutation';
|
|
15886
|
-
createEnvironment: {
|
|
15887
|
-
__typename?: 'CksEnvironmentDetail';
|
|
15888
|
-
environment: {
|
|
15889
|
-
__typename?: 'CksEnvironment';
|
|
15890
|
-
id: string;
|
|
15891
|
-
orgId: string;
|
|
15892
|
-
slug: string;
|
|
15893
|
-
displayName: string;
|
|
15894
|
-
status: string;
|
|
15895
|
-
billingStatus: string;
|
|
15896
|
-
environmentClass: string;
|
|
15897
|
-
primaryRegion: string;
|
|
15898
|
-
desiredEnvironmentVersion: string | null;
|
|
15899
|
-
observedEnvironmentVersion: string | null;
|
|
15900
|
-
createdAt: string;
|
|
15901
|
-
updatedAt: string;
|
|
15902
|
-
};
|
|
15903
|
-
changeOrders: Array<{
|
|
15904
|
-
__typename?: 'CksEnvironmentChangeOrder';
|
|
15905
|
-
id: string;
|
|
15906
|
-
kind: string;
|
|
15907
|
-
status: string;
|
|
15908
|
-
error: string | null;
|
|
15909
|
-
createdAt: string;
|
|
15910
|
-
}>;
|
|
15911
|
-
};
|
|
15912
|
-
};
|
|
15913
|
-
export type DestroyEnvironmentMutationVariables = Exact<{
|
|
15914
|
-
input: DestroyEnvironmentInput;
|
|
15915
|
-
}>;
|
|
15916
|
-
export type DestroyEnvironmentMutation = {
|
|
15917
|
-
__typename?: 'Mutation';
|
|
15918
|
-
destroyEnvironment: {
|
|
15919
|
-
__typename?: 'CksEnvironmentChangeOrder';
|
|
15920
|
-
id: string;
|
|
15921
|
-
environmentId: string;
|
|
15922
|
-
kind: string;
|
|
15923
|
-
status: string;
|
|
15924
|
-
requestedBy: string | null;
|
|
15925
|
-
error: string | null;
|
|
15926
|
-
createdAt: string;
|
|
15927
|
-
updatedAt: string;
|
|
15928
|
-
finishedAt: string | null;
|
|
15929
|
-
};
|
|
15930
|
-
};
|
|
15931
|
-
export type EnvironmentDatacentersQueryVariables = Exact<{
|
|
15932
|
-
[key: string]: never;
|
|
15933
|
-
}>;
|
|
15934
|
-
export type EnvironmentDatacentersQuery = {
|
|
15935
|
-
__typename?: 'Query';
|
|
15936
|
-
environmentDatacenters: Array<{
|
|
15937
|
-
__typename?: 'CksOvhDatacenter';
|
|
15938
|
-
region: string;
|
|
15939
|
-
name: string | null;
|
|
15940
|
-
city: string | null;
|
|
15941
|
-
continent: string | null;
|
|
15942
|
-
status: string;
|
|
15943
|
-
isAvailable: boolean;
|
|
15944
|
-
selectableInstanceCount: number;
|
|
15945
|
-
syncedAt: string;
|
|
15946
|
-
}>;
|
|
15947
|
-
};
|
|
15948
|
-
export type EnvironmentFlavorsQueryVariables = Exact<{
|
|
15949
|
-
datacenter: Scalars['String']['input'];
|
|
15950
|
-
}>;
|
|
15951
|
-
export type EnvironmentFlavorsQuery = {
|
|
15952
|
-
__typename?: 'Query';
|
|
15953
|
-
environmentFlavors: Array<{
|
|
15954
|
-
__typename?: 'CksOvhFlavor';
|
|
15955
|
-
flavorName: string;
|
|
15956
|
-
flavorType: string | null;
|
|
15957
|
-
vcpus: number | null;
|
|
15958
|
-
ramMb: number | null;
|
|
15959
|
-
diskGb: number | null;
|
|
15960
|
-
quotaAvailable: number | null;
|
|
15961
|
-
customerHourlyPriceCents: string;
|
|
15962
|
-
customerMonthlyPriceCents: string | null;
|
|
15963
|
-
currency: string;
|
|
15964
|
-
availabilityStatus: string;
|
|
15965
|
-
pricingMode: string;
|
|
15966
|
-
syncedAt: string;
|
|
15967
|
-
}>;
|
|
15968
|
-
};
|
|
15969
|
-
export type EnvironmentForwardVersionsQueryVariables = Exact<{
|
|
15970
|
-
orgId: Scalars['BigInt']['input'];
|
|
15971
|
-
slug: Scalars['String']['input'];
|
|
15972
|
-
}>;
|
|
15973
|
-
export type EnvironmentForwardVersionsQuery = {
|
|
15974
|
-
__typename?: 'Query';
|
|
15975
|
-
environmentForwardVersions: Array<{
|
|
15976
|
-
__typename?: 'CksEnvironmentVersion';
|
|
15977
|
-
version: string;
|
|
15978
|
-
releasedAt: string;
|
|
15979
|
-
status: string;
|
|
15980
|
-
notes: string | null;
|
|
15981
|
-
gameApiGitTag: string | null;
|
|
15982
|
-
}>;
|
|
15983
|
-
};
|
|
15984
|
-
export type EnvironmentQuoteQueryVariables = Exact<{
|
|
15985
|
-
input: EnvironmentQuoteInput;
|
|
15986
|
-
}>;
|
|
15987
|
-
export type EnvironmentQuoteQuery = {
|
|
15988
|
-
__typename?: 'Query';
|
|
15989
|
-
environmentQuote: {
|
|
15990
|
-
__typename?: 'CksEnvironmentQuote';
|
|
15991
|
-
datacenter: string;
|
|
15992
|
-
databaseFlavor: string;
|
|
15993
|
-
gameApiFlavor: string;
|
|
15994
|
-
udpBuddyFlavor: string;
|
|
15995
|
-
caddyFlavor: string;
|
|
15996
|
-
gameApiMinServers: number;
|
|
15997
|
-
gameApiMaxServers: number;
|
|
15998
|
-
udpBuddyMinServers: number;
|
|
15999
|
-
udpBuddyMaxServers: number;
|
|
16000
|
-
loadBalancerCount: number;
|
|
16001
|
-
environmentClass: string;
|
|
16002
|
-
singleBoxFlavor: string | null;
|
|
16003
|
-
hourlyCostCents: string;
|
|
16004
|
-
firstDayReserveCents: string;
|
|
16005
|
-
walletBalanceCents: string;
|
|
16006
|
-
availableBalanceCents: string;
|
|
16007
|
-
currency: string;
|
|
16008
|
-
canCreate: boolean;
|
|
16009
|
-
};
|
|
16010
|
-
};
|
|
16011
|
-
export type EnvironmentRedeployPlanQueryVariables = Exact<{
|
|
16012
|
-
input: RedeployEnvironmentInput;
|
|
16013
|
-
}>;
|
|
16014
|
-
export type EnvironmentRedeployPlanQuery = {
|
|
16015
|
-
__typename?: 'Query';
|
|
16016
|
-
environmentRedeployPlan: {
|
|
16017
|
-
__typename?: 'EnvironmentRedeployPlan';
|
|
16018
|
-
environmentSlug: string;
|
|
16019
|
-
currentVersion: string | null;
|
|
16020
|
-
targetVersion: string | null;
|
|
16021
|
-
deployMode: string | null;
|
|
16022
|
-
changeOrderKind: string | null;
|
|
16023
|
-
schemaWillApply: boolean;
|
|
16024
|
-
schemaGitRef: string | null;
|
|
16025
|
-
blockers: Array<string>;
|
|
16026
|
-
notes: Array<string>;
|
|
16027
|
-
componentChanges: Array<{
|
|
16028
|
-
__typename?: 'EnvironmentComponentChange';
|
|
16029
|
-
component: string;
|
|
16030
|
-
fromVersion: string | null;
|
|
16031
|
-
toVersion: string | null;
|
|
16032
|
-
changed: boolean;
|
|
16033
|
-
}>;
|
|
16034
|
-
tasks: Array<{
|
|
16035
|
-
__typename?: 'EnvironmentPlannedTask';
|
|
16036
|
-
kind: string;
|
|
16037
|
-
dependsOn: Array<string>;
|
|
16038
|
-
steps: Array<string>;
|
|
16039
|
-
}>;
|
|
16040
|
-
};
|
|
16041
|
-
};
|
|
16042
|
-
export type EnvironmentVersionsQueryVariables = Exact<{
|
|
16043
|
-
[key: string]: never;
|
|
16044
|
-
}>;
|
|
16045
|
-
export type EnvironmentVersionsQuery = {
|
|
16046
|
-
__typename?: 'Query';
|
|
16047
|
-
environmentVersions: Array<{
|
|
16048
|
-
__typename?: 'CksEnvironmentVersion';
|
|
16049
|
-
version: string;
|
|
16050
|
-
releasedAt: string;
|
|
16051
|
-
status: string;
|
|
16052
|
-
notes: string | null;
|
|
16053
|
-
gameApiGitTag: string | null;
|
|
16054
|
-
}>;
|
|
16055
|
-
};
|
|
16056
|
-
export type LinkAppToEnvironmentMutationVariables = Exact<{
|
|
16057
|
-
input: LinkAppToEnvironmentInput;
|
|
16058
|
-
}>;
|
|
16059
|
-
export type LinkAppToEnvironmentMutation = {
|
|
16060
|
-
__typename?: 'Mutation';
|
|
16061
|
-
linkAppToEnvironment: {
|
|
16062
|
-
__typename?: 'App';
|
|
16063
|
-
appId: string;
|
|
16064
|
-
orgId: string;
|
|
16065
|
-
slug: string | null;
|
|
16066
|
-
name: string;
|
|
16067
|
-
splitMode: boolean;
|
|
16068
|
-
deploymentTarget: string;
|
|
16069
|
-
gameApiUrl: string | null;
|
|
16070
|
-
status: AppStatus;
|
|
16071
|
-
};
|
|
16072
|
-
};
|
|
16073
|
-
export type OrgEnvironmentQueryVariables = Exact<{
|
|
16074
|
-
orgId: Scalars['BigInt']['input'];
|
|
16075
|
-
slug: Scalars['String']['input'];
|
|
16076
|
-
}>;
|
|
16077
|
-
export type OrgEnvironmentQuery = {
|
|
16078
|
-
__typename?: 'Query';
|
|
16079
|
-
orgEnvironment: {
|
|
16080
|
-
__typename?: 'CksEnvironmentDetail';
|
|
16081
|
-
environment: {
|
|
16082
|
-
__typename?: 'CksEnvironment';
|
|
16083
|
-
id: string;
|
|
16084
|
-
orgId: string;
|
|
16085
|
-
slug: string;
|
|
16086
|
-
displayName: string;
|
|
16087
|
-
status: string;
|
|
16088
|
-
billingStatus: string;
|
|
16089
|
-
environmentClass: string;
|
|
16090
|
-
singleBoxFlavor: string | null;
|
|
16091
|
-
primaryRegion: string;
|
|
16092
|
-
desiredEnvironmentVersion: string | null;
|
|
16093
|
-
observedEnvironmentVersion: string | null;
|
|
16094
|
-
gameApiMinServers: number;
|
|
16095
|
-
gameApiMaxServers: number;
|
|
16096
|
-
udpBuddyMinServers: number;
|
|
16097
|
-
udpBuddyMaxServers: number;
|
|
16098
|
-
loadBalancerCount: number;
|
|
16099
|
-
createdAt: string;
|
|
16100
|
-
updatedAt: string;
|
|
16101
|
-
};
|
|
16102
|
-
components: Array<{
|
|
16103
|
-
__typename?: 'CksEnvironmentComponent';
|
|
16104
|
-
id: string;
|
|
16105
|
-
kind: string;
|
|
16106
|
-
status: string | null;
|
|
16107
|
-
desiredVersion: string | null;
|
|
16108
|
-
observedVersion: string | null;
|
|
16109
|
-
}>;
|
|
16110
|
-
changeOrders: Array<{
|
|
16111
|
-
__typename?: 'CksEnvironmentChangeOrder';
|
|
16112
|
-
id: string;
|
|
16113
|
-
kind: string;
|
|
16114
|
-
status: string;
|
|
16115
|
-
error: string | null;
|
|
16116
|
-
createdAt: string;
|
|
16117
|
-
finishedAt: string | null;
|
|
16118
|
-
}>;
|
|
16119
|
-
outputs: Array<{
|
|
16120
|
-
__typename?: 'CksEnvironmentOutput';
|
|
16121
|
-
name: string;
|
|
16122
|
-
label: string;
|
|
16123
|
-
value: string;
|
|
16124
|
-
valueKind: string;
|
|
16125
|
-
}>;
|
|
16126
|
-
} | null;
|
|
16127
|
-
};
|
|
16128
|
-
export type OrgEnvironmentsQueryVariables = Exact<{
|
|
16129
|
-
orgId: Scalars['BigInt']['input'];
|
|
16130
|
-
}>;
|
|
16131
|
-
export type OrgEnvironmentsQuery = {
|
|
16132
|
-
__typename?: 'Query';
|
|
16133
|
-
orgEnvironments: Array<{
|
|
16134
|
-
__typename?: 'CksEnvironment';
|
|
16135
|
-
id: string;
|
|
16136
|
-
orgId: string;
|
|
16137
|
-
slug: string;
|
|
16138
|
-
displayName: string;
|
|
16139
|
-
status: string;
|
|
16140
|
-
billingStatus: string;
|
|
16141
|
-
environmentClass: string;
|
|
16142
|
-
singleBoxFlavor: string | null;
|
|
16143
|
-
primaryCloud: string;
|
|
16144
|
-
primaryRegion: string;
|
|
16145
|
-
desiredEnvironmentVersion: string | null;
|
|
16146
|
-
observedEnvironmentVersion: string | null;
|
|
16147
|
-
gameApiMinServers: number;
|
|
16148
|
-
gameApiMaxServers: number;
|
|
16149
|
-
udpBuddyMinServers: number;
|
|
16150
|
-
udpBuddyMaxServers: number;
|
|
16151
|
-
loadBalancerCount: number;
|
|
16152
|
-
createdAt: string;
|
|
16153
|
-
updatedAt: string;
|
|
16154
|
-
}>;
|
|
16155
|
-
};
|
|
16156
|
-
export type PurgeEnvironmentMutationVariables = Exact<{
|
|
16157
|
-
input: PurgeEnvironmentInput;
|
|
16158
|
-
}>;
|
|
16159
|
-
export type PurgeEnvironmentMutation = {
|
|
16160
|
-
__typename?: 'Mutation';
|
|
16161
|
-
purgeEnvironment: boolean;
|
|
16162
|
-
};
|
|
16163
|
-
export type RedeployEnvironmentMutationVariables = Exact<{
|
|
16164
|
-
input: RedeployEnvironmentInput;
|
|
16165
|
-
}>;
|
|
16166
|
-
export type RedeployEnvironmentMutation = {
|
|
16167
|
-
__typename?: 'Mutation';
|
|
16168
|
-
redeployEnvironment: {
|
|
16169
|
-
__typename?: 'CksEnvironmentChangeOrder';
|
|
16170
|
-
id: string;
|
|
16171
|
-
environmentId: string;
|
|
16172
|
-
kind: string;
|
|
16173
|
-
status: string;
|
|
16174
|
-
requestedBy: string | null;
|
|
16175
|
-
error: string | null;
|
|
16176
|
-
createdAt: string;
|
|
16177
|
-
updatedAt: string;
|
|
16178
|
-
finishedAt: string | null;
|
|
16179
|
-
};
|
|
16180
|
-
};
|
|
16181
|
-
export type RestartEnvironmentServicesMutationVariables = Exact<{
|
|
16182
|
-
input: RestartEnvironmentServicesInput;
|
|
16183
|
-
}>;
|
|
16184
|
-
export type RestartEnvironmentServicesMutation = {
|
|
16185
|
-
__typename?: 'Mutation';
|
|
16186
|
-
restartEnvironmentServices: {
|
|
16187
|
-
__typename?: 'CksEnvironmentChangeOrder';
|
|
16188
|
-
id: string;
|
|
16189
|
-
environmentId: string;
|
|
16190
|
-
kind: string;
|
|
16191
|
-
status: string;
|
|
16192
|
-
requestedBy: string | null;
|
|
16193
|
-
error: string | null;
|
|
16194
|
-
createdAt: string;
|
|
16195
|
-
updatedAt: string;
|
|
16196
|
-
finishedAt: string | null;
|
|
16197
|
-
};
|
|
16198
|
-
};
|
|
16199
|
-
export type ResumeEnvironmentMutationVariables = Exact<{
|
|
16200
|
-
input: ResumeEnvironmentInput;
|
|
16201
|
-
}>;
|
|
16202
|
-
export type ResumeEnvironmentMutation = {
|
|
16203
|
-
__typename?: 'Mutation';
|
|
16204
|
-
resumeEnvironment: {
|
|
16205
|
-
__typename?: 'CksEnvironmentChangeOrder';
|
|
16206
|
-
id: string;
|
|
16207
|
-
environmentId: string;
|
|
16208
|
-
kind: string;
|
|
16209
|
-
status: string;
|
|
16210
|
-
requestedBy: string | null;
|
|
16211
|
-
error: string | null;
|
|
16212
|
-
createdAt: string;
|
|
16213
|
-
updatedAt: string;
|
|
16214
|
-
finishedAt: string | null;
|
|
16215
|
-
};
|
|
16216
|
-
};
|
|
16217
|
-
export type UpdateEnvironmentBillingTiersMutationVariables = Exact<{
|
|
16218
|
-
input: UpdateEnvironmentBillingTiersInput;
|
|
16219
|
-
}>;
|
|
16220
|
-
export type UpdateEnvironmentBillingTiersMutation = {
|
|
16221
|
-
__typename?: 'Mutation';
|
|
16222
|
-
updateEnvironmentBillingTiers: {
|
|
16223
|
-
__typename?: 'CksEnvironment';
|
|
16224
|
-
id: string;
|
|
16225
|
-
orgId: string;
|
|
16226
|
-
slug: string;
|
|
16227
|
-
displayName: string;
|
|
16228
|
-
status: string;
|
|
16229
|
-
billingStatus: string;
|
|
16230
|
-
environmentClass: string;
|
|
16231
|
-
singleBoxFlavor: string | null;
|
|
16232
|
-
primaryCloud: string;
|
|
16233
|
-
primaryRegion: string;
|
|
16234
|
-
desiredEnvironmentVersion: string | null;
|
|
16235
|
-
observedEnvironmentVersion: string | null;
|
|
16236
|
-
gameApiMinServers: number;
|
|
16237
|
-
gameApiMaxServers: number;
|
|
16238
|
-
udpBuddyMinServers: number;
|
|
16239
|
-
udpBuddyMaxServers: number;
|
|
16240
|
-
loadBalancerCount: number;
|
|
16241
|
-
createdAt: string;
|
|
16242
|
-
updatedAt: string;
|
|
16243
|
-
};
|
|
16244
|
-
};
|
|
16245
|
-
export type UpdateEnvironmentScalingMutationVariables = Exact<{
|
|
16246
|
-
input: UpdateEnvironmentScalingInput;
|
|
16247
|
-
}>;
|
|
16248
|
-
export type UpdateEnvironmentScalingMutation = {
|
|
16249
|
-
__typename?: 'Mutation';
|
|
16250
|
-
updateEnvironmentScaling: {
|
|
16251
|
-
__typename?: 'CksEnvironmentChangeOrder';
|
|
16252
|
-
id: string;
|
|
16253
|
-
environmentId: string;
|
|
16254
|
-
kind: string;
|
|
16255
|
-
status: string;
|
|
16256
|
-
requestedBy: string | null;
|
|
16257
|
-
error: string | null;
|
|
16258
|
-
createdAt: string;
|
|
16259
|
-
updatedAt: string;
|
|
16260
|
-
finishedAt: string | null;
|
|
16261
|
-
};
|
|
16262
|
-
};
|
|
16263
14367
|
export type GridOwnershipFieldsFragment = {
|
|
16264
14368
|
__typename?: 'GridOwnership';
|
|
16265
14369
|
gridOwnershipId: string;
|
|
@@ -18023,7 +16127,7 @@ export type MarketplaceListingsQuery = {
|
|
|
18023
16127
|
__typename?: 'Query';
|
|
18024
16128
|
playerCodeListings: Array<{
|
|
18025
16129
|
__typename?: 'PlayerCodeListing';
|
|
18026
|
-
admissionState: PlayerCodeAdmissionState;
|
|
16130
|
+
admissionState: PlayerCodeAdmissionState | null;
|
|
18027
16131
|
latestVersionId: string | null;
|
|
18028
16132
|
listingId: string;
|
|
18029
16133
|
appId: string;
|
|
@@ -18167,7 +16271,7 @@ export type MarketplacePublishListingMutation = {
|
|
|
18167
16271
|
__typename?: 'Mutation';
|
|
18168
16272
|
publishPlayerCode: {
|
|
18169
16273
|
__typename?: 'PlayerCodeListing';
|
|
18170
|
-
admissionState: PlayerCodeAdmissionState;
|
|
16274
|
+
admissionState: PlayerCodeAdmissionState | null;
|
|
18171
16275
|
latestVersionId: string | null;
|
|
18172
16276
|
listingId: string;
|
|
18173
16277
|
appId: string;
|
|
@@ -18428,7 +16532,7 @@ export type MarketplaceAppListingsQuery = {
|
|
|
18428
16532
|
__typename?: 'Query';
|
|
18429
16533
|
appPlayerCodeListings: Array<{
|
|
18430
16534
|
__typename?: 'PlayerCodeListing';
|
|
18431
|
-
updatedAt: string;
|
|
16535
|
+
updatedAt: string | null;
|
|
18432
16536
|
listingId: string;
|
|
18433
16537
|
appId: string;
|
|
18434
16538
|
ownerKind: PlayerCodeOwnerKind;
|
|
@@ -18453,7 +16557,7 @@ export type MarketplaceAppAcquisitionsQuery = {
|
|
|
18453
16557
|
__typename?: 'Query';
|
|
18454
16558
|
appPlayerCodeAcquisitions: Array<{
|
|
18455
16559
|
__typename?: 'PlayerCodeAcquisition';
|
|
18456
|
-
acquirerUserId: string;
|
|
16560
|
+
acquirerUserId: string | null;
|
|
18457
16561
|
revokedAt: string | null;
|
|
18458
16562
|
acquisitionId: string;
|
|
18459
16563
|
listingId: string;
|
|
@@ -18473,7 +16577,7 @@ export type MarketplaceTransferListingMutation = {
|
|
|
18473
16577
|
__typename?: 'Mutation';
|
|
18474
16578
|
transferPlayerCodeListing: {
|
|
18475
16579
|
__typename?: 'PlayerCodeListing';
|
|
18476
|
-
updatedAt: string;
|
|
16580
|
+
updatedAt: string | null;
|
|
18477
16581
|
listingId: string;
|
|
18478
16582
|
appId: string;
|
|
18479
16583
|
ownerKind: PlayerCodeOwnerKind;
|
|
@@ -18500,7 +16604,7 @@ export type MarketplaceSetListingStatusMutation = {
|
|
|
18500
16604
|
__typename?: 'Mutation';
|
|
18501
16605
|
setPlayerCodeListingStatus: {
|
|
18502
16606
|
__typename?: 'PlayerCodeListing';
|
|
18503
|
-
updatedAt: string;
|
|
16607
|
+
updatedAt: string | null;
|
|
18504
16608
|
listingId: string;
|
|
18505
16609
|
appId: string;
|
|
18506
16610
|
ownerKind: PlayerCodeOwnerKind;
|
|
@@ -18744,7 +16848,7 @@ export type MarketplaceCreateGridListingMutation = {
|
|
|
18744
16848
|
name: string;
|
|
18745
16849
|
priceCents: number;
|
|
18746
16850
|
resalePolicy: string;
|
|
18747
|
-
status: string;
|
|
16851
|
+
status: string | null;
|
|
18748
16852
|
};
|
|
18749
16853
|
};
|
|
18750
16854
|
export type CreateOrgRoleMutationVariables = Exact<{
|
|
@@ -21170,87 +19274,6 @@ export type AppUsageSummaryQuery = {
|
|
|
21170
19274
|
}>;
|
|
21171
19275
|
};
|
|
21172
19276
|
};
|
|
21173
|
-
export type EnvironmentUsageByAppQueryVariables = Exact<{
|
|
21174
|
-
orgId: Scalars['BigInt']['input'];
|
|
21175
|
-
environmentSlug: Scalars['String']['input'];
|
|
21176
|
-
since: Scalars['DateTime']['input'];
|
|
21177
|
-
}>;
|
|
21178
|
-
export type EnvironmentUsageByAppQuery = {
|
|
21179
|
-
__typename?: 'Query';
|
|
21180
|
-
environmentUsageByApp: Array<{
|
|
21181
|
-
__typename?: 'AppUsageRollupRow';
|
|
21182
|
-
appId: string;
|
|
21183
|
-
appSlug: string;
|
|
21184
|
-
appName: string;
|
|
21185
|
-
replicationSendBytes: string;
|
|
21186
|
-
replicationRecvBytes: string;
|
|
21187
|
-
graphqlSendBytes: string;
|
|
21188
|
-
graphqlRecvBytes: string;
|
|
21189
|
-
}>;
|
|
21190
|
-
};
|
|
21191
|
-
export type EnvironmentUsageSummaryQueryVariables = Exact<{
|
|
21192
|
-
orgId: Scalars['BigInt']['input'];
|
|
21193
|
-
environmentSlug: Scalars['String']['input'];
|
|
21194
|
-
since: Scalars['DateTime']['input'];
|
|
21195
|
-
}>;
|
|
21196
|
-
export type EnvironmentUsageSummaryQuery = {
|
|
21197
|
-
__typename?: 'Query';
|
|
21198
|
-
environmentUsageSummary: {
|
|
21199
|
-
__typename?: 'EnvironmentUsageSummary';
|
|
21200
|
-
environmentSlug: string;
|
|
21201
|
-
environmentId: string;
|
|
21202
|
-
orgId: string;
|
|
21203
|
-
replication: Array<{
|
|
21204
|
-
__typename?: 'UsageMinuteRow';
|
|
21205
|
-
minute: string;
|
|
21206
|
-
recvBytes: string;
|
|
21207
|
-
sendBytes: string;
|
|
21208
|
-
recvMsgs: string | null;
|
|
21209
|
-
sendMsgs: string | null;
|
|
21210
|
-
}>;
|
|
21211
|
-
graphql: Array<{
|
|
21212
|
-
__typename?: 'UsageMinuteRow';
|
|
21213
|
-
minute: string;
|
|
21214
|
-
recvBytes: string;
|
|
21215
|
-
sendBytes: string;
|
|
21216
|
-
}>;
|
|
21217
|
-
replicationRates: {
|
|
21218
|
-
__typename?: 'UsageRatePeaks';
|
|
21219
|
-
peakSendMsgsPerSec: number;
|
|
21220
|
-
peakSendMbitPerSec: number;
|
|
21221
|
-
avgSendMsgsPerSec: number;
|
|
21222
|
-
avgSendMbitPerSec: number;
|
|
21223
|
-
sampleMinutes: number;
|
|
21224
|
-
};
|
|
21225
|
-
buddyLive: {
|
|
21226
|
-
__typename?: 'BuddyLiveRates';
|
|
21227
|
-
serverId: string;
|
|
21228
|
-
clientSendMsgsPerSec: number;
|
|
21229
|
-
clientSendMbitPerSec: number;
|
|
21230
|
-
clientRecvMsgsPerSec: number;
|
|
21231
|
-
clientRecvMbitPerSec: number;
|
|
21232
|
-
clients: number;
|
|
21233
|
-
updatedAt: string;
|
|
21234
|
-
} | null;
|
|
21235
|
-
};
|
|
21236
|
-
};
|
|
21237
|
-
export type OrgUsageByEnvironmentQueryVariables = Exact<{
|
|
21238
|
-
orgId: Scalars['BigInt']['input'];
|
|
21239
|
-
since: Scalars['DateTime']['input'];
|
|
21240
|
-
}>;
|
|
21241
|
-
export type OrgUsageByEnvironmentQuery = {
|
|
21242
|
-
__typename?: 'Query';
|
|
21243
|
-
orgUsageByEnvironment: Array<{
|
|
21244
|
-
__typename?: 'EnvironmentUsageRollupRow';
|
|
21245
|
-
environmentId: string;
|
|
21246
|
-
environmentSlug: string;
|
|
21247
|
-
displayName: string;
|
|
21248
|
-
replicationSendBytes: string;
|
|
21249
|
-
replicationRecvBytes: string;
|
|
21250
|
-
graphqlSendBytes: string;
|
|
21251
|
-
graphqlRecvBytes: string;
|
|
21252
|
-
}>;
|
|
21253
|
-
};
|
|
21254
19277
|
export type PlayerPulseQueryVariables = Exact<{
|
|
21255
19278
|
orgId: Scalars['BigInt']['input'];
|
|
21256
19279
|
}>;
|
|
@@ -21771,9 +19794,6 @@ export declare const UpdateAvatarStateDocument: DocumentNode<UpdateAvatarStateMu
|
|
|
21771
19794
|
export declare const UpdateAvatarAppStateDocument: DocumentNode<UpdateAvatarAppStateMutation, UpdateAvatarAppStateMutationVariables>;
|
|
21772
19795
|
export declare const AppBudgetDocument: DocumentNode<AppBudgetQuery, AppBudgetQueryVariables>;
|
|
21773
19796
|
export declare const AppBudgetsDocument: DocumentNode<AppBudgetsQuery, AppBudgetsQueryVariables>;
|
|
21774
|
-
export declare const BuddyBillingTiersDocument: DocumentNode<BuddyBillingTiersQuery, BuddyBillingTiersQueryVariables>;
|
|
21775
|
-
export declare const GraphqlBillingTiersDocument: DocumentNode<GraphqlBillingTiersQuery, GraphqlBillingTiersQueryVariables>;
|
|
21776
|
-
export declare const PostgresBillingTiersDocument: DocumentNode<PostgresBillingTiersQuery, PostgresBillingTiersQueryVariables>;
|
|
21777
19797
|
export declare const SetAppBudgetDocument: DocumentNode<SetAppBudgetMutation, SetAppBudgetMutationVariables>;
|
|
21778
19798
|
export declare const WalletBalanceDocument: DocumentNode<WalletBalanceQuery, WalletBalanceQueryVariables>;
|
|
21779
19799
|
export declare const WalletTransactionsDocument: DocumentNode<WalletTransactionsQuery, WalletTransactionsQueryVariables>;
|
|
@@ -21823,25 +19843,6 @@ export declare const ComputeModuleLogsDocument: DocumentNode<ComputeModuleLogsQu
|
|
|
21823
19843
|
export declare const ComputeAppDiagnosticsDocument: DocumentNode<ComputeAppDiagnosticsQuery, ComputeAppDiagnosticsQueryVariables>;
|
|
21824
19844
|
export declare const ComputeTemplatesDocument: DocumentNode<ComputeTemplatesQuery, ComputeTemplatesQueryVariables>;
|
|
21825
19845
|
export declare const ComputeDeployTemplateDocument: DocumentNode<ComputeDeployTemplateMutation, ComputeDeployTemplateMutationVariables>;
|
|
21826
|
-
export declare const CpEnvironmentsDocument: DocumentNode<CpEnvironmentsQuery, CpEnvironmentsQueryVariables>;
|
|
21827
|
-
export declare const CpEnvironmentDocument: DocumentNode<CpEnvironmentQuery, CpEnvironmentQueryVariables>;
|
|
21828
|
-
export declare const CpChangeOrdersDocument: DocumentNode<CpChangeOrdersQuery, CpChangeOrdersQueryVariables>;
|
|
21829
|
-
export declare const CpChangeOrderDocument: DocumentNode<CpChangeOrderQuery, CpChangeOrderQueryVariables>;
|
|
21830
|
-
export declare const CpAuditDocument: DocumentNode<CpAuditQuery, CpAuditQueryVariables>;
|
|
21831
|
-
export declare const CpSecretsDocument: DocumentNode<CpSecretsQuery, CpSecretsQueryVariables>;
|
|
21832
|
-
export declare const CpEnvSecretsDocument: DocumentNode<CpEnvSecretsQuery, CpEnvSecretsQueryVariables>;
|
|
21833
|
-
export declare const CpOvhCatalogSummaryDocument: DocumentNode<CpOvhCatalogSummaryQuery, CpOvhCatalogSummaryQueryVariables>;
|
|
21834
|
-
export declare const CpUsageSummaryDocument: DocumentNode<CpUsageSummaryQuery, CpUsageSummaryQueryVariables>;
|
|
21835
|
-
export declare const CpUnreleasedGameApiTagsDocument: DocumentNode<CpUnreleasedGameApiTagsQuery, CpUnreleasedGameApiTagsQueryVariables>;
|
|
21836
|
-
export declare const CpEnvironmentVersionsDocument: DocumentNode<CpEnvironmentVersionsQuery, CpEnvironmentVersionsQueryVariables>;
|
|
21837
|
-
export declare const OperatorUsersDocument: DocumentNode<OperatorUsersQuery, OperatorUsersQueryVariables>;
|
|
21838
|
-
export declare const SetEnvironmentDeletionProtectionDocument: DocumentNode<SetEnvironmentDeletionProtectionMutation, SetEnvironmentDeletionProtectionMutationVariables>;
|
|
21839
|
-
export declare const PutCpSecretDocument: DocumentNode<PutCpSecretMutation, PutCpSecretMutationVariables>;
|
|
21840
|
-
export declare const DeleteCpSecretDocument: DocumentNode<DeleteCpSecretMutation, DeleteCpSecretMutationVariables>;
|
|
21841
|
-
export declare const PutCpEnvSecretDocument: DocumentNode<PutCpEnvSecretMutation, PutCpEnvSecretMutationVariables>;
|
|
21842
|
-
export declare const IngestEnvironmentVersionDocument: DocumentNode<IngestEnvironmentVersionMutation, IngestEnvironmentVersionMutationVariables>;
|
|
21843
|
-
export declare const PublishEnvironmentReleaseFromGameApiTagDocument: DocumentNode<PublishEnvironmentReleaseFromGameApiTagMutation, PublishEnvironmentReleaseFromGameApiTagMutationVariables>;
|
|
21844
|
-
export declare const YankEnvironmentVersionDocument: DocumentNode<YankEnvironmentVersionMutation, YankEnvironmentVersionMutationVariables>;
|
|
21845
19846
|
export declare const CpComputePlatformCeilingsDocument: DocumentNode<CpComputePlatformCeilingsQuery, CpComputePlatformCeilingsQueryVariables>;
|
|
21846
19847
|
export declare const CpSetComputePlatformCeilingsDocument: DocumentNode<CpSetComputePlatformCeilingsMutation, CpSetComputePlatformCeilingsMutationVariables>;
|
|
21847
19848
|
export declare const CrowdyStudioProjectsDocument: DocumentNode<CrowdyStudioProjectsQuery, CrowdyStudioProjectsQueryVariables>;
|
|
@@ -21873,23 +19874,6 @@ export declare const CrowdyStudioAgentResumeDocument: DocumentNode<CrowdyStudioA
|
|
|
21873
19874
|
export declare const CrowdyStudioAgentCancelRunDocument: DocumentNode<CrowdyStudioAgentCancelRunMutation, CrowdyStudioAgentCancelRunMutationVariables>;
|
|
21874
19875
|
export declare const CrowdyStudioAgentCloseSessionDocument: DocumentNode<CrowdyStudioAgentCloseSessionMutation, CrowdyStudioAgentCloseSessionMutationVariables>;
|
|
21875
19876
|
export declare const CrowdyStudioAgentEventsDocument: DocumentNode<CrowdyStudioAgentEventsSubscription, CrowdyStudioAgentEventsSubscriptionVariables>;
|
|
21876
|
-
export declare const CreateEnvironmentDocument: DocumentNode<CreateEnvironmentMutation, CreateEnvironmentMutationVariables>;
|
|
21877
|
-
export declare const DestroyEnvironmentDocument: DocumentNode<DestroyEnvironmentMutation, DestroyEnvironmentMutationVariables>;
|
|
21878
|
-
export declare const EnvironmentDatacentersDocument: DocumentNode<EnvironmentDatacentersQuery, EnvironmentDatacentersQueryVariables>;
|
|
21879
|
-
export declare const EnvironmentFlavorsDocument: DocumentNode<EnvironmentFlavorsQuery, EnvironmentFlavorsQueryVariables>;
|
|
21880
|
-
export declare const EnvironmentForwardVersionsDocument: DocumentNode<EnvironmentForwardVersionsQuery, EnvironmentForwardVersionsQueryVariables>;
|
|
21881
|
-
export declare const EnvironmentQuoteDocument: DocumentNode<EnvironmentQuoteQuery, EnvironmentQuoteQueryVariables>;
|
|
21882
|
-
export declare const EnvironmentRedeployPlanDocument: DocumentNode<EnvironmentRedeployPlanQuery, EnvironmentRedeployPlanQueryVariables>;
|
|
21883
|
-
export declare const EnvironmentVersionsDocument: DocumentNode<EnvironmentVersionsQuery, EnvironmentVersionsQueryVariables>;
|
|
21884
|
-
export declare const LinkAppToEnvironmentDocument: DocumentNode<LinkAppToEnvironmentMutation, LinkAppToEnvironmentMutationVariables>;
|
|
21885
|
-
export declare const OrgEnvironmentDocument: DocumentNode<OrgEnvironmentQuery, OrgEnvironmentQueryVariables>;
|
|
21886
|
-
export declare const OrgEnvironmentsDocument: DocumentNode<OrgEnvironmentsQuery, OrgEnvironmentsQueryVariables>;
|
|
21887
|
-
export declare const PurgeEnvironmentDocument: DocumentNode<PurgeEnvironmentMutation, PurgeEnvironmentMutationVariables>;
|
|
21888
|
-
export declare const RedeployEnvironmentDocument: DocumentNode<RedeployEnvironmentMutation, RedeployEnvironmentMutationVariables>;
|
|
21889
|
-
export declare const RestartEnvironmentServicesDocument: DocumentNode<RestartEnvironmentServicesMutation, RestartEnvironmentServicesMutationVariables>;
|
|
21890
|
-
export declare const ResumeEnvironmentDocument: DocumentNode<ResumeEnvironmentMutation, ResumeEnvironmentMutationVariables>;
|
|
21891
|
-
export declare const UpdateEnvironmentBillingTiersDocument: DocumentNode<UpdateEnvironmentBillingTiersMutation, UpdateEnvironmentBillingTiersMutationVariables>;
|
|
21892
|
-
export declare const UpdateEnvironmentScalingDocument: DocumentNode<UpdateEnvironmentScalingMutation, UpdateEnvironmentScalingMutationVariables>;
|
|
21893
19877
|
export declare const GridOwnershipDocument: DocumentNode<GridOwnershipQuery, GridOwnershipQueryVariables>;
|
|
21894
19878
|
export declare const AssignGridOwnershipDocument: DocumentNode<AssignGridOwnershipMutation, AssignGridOwnershipMutationVariables>;
|
|
21895
19879
|
export declare const TransferGridOwnershipDocument: DocumentNode<TransferGridOwnershipMutation, TransferGridOwnershipMutationVariables>;
|
|
@@ -22129,9 +20113,6 @@ export declare const UdpNotificationsDocument: DocumentNode<UdpNotificationsSubs
|
|
|
22129
20113
|
export declare const UdpProxyConnectionStatusDocument: DocumentNode<UdpProxyConnectionStatusQuery, UdpProxyConnectionStatusQueryVariables>;
|
|
22130
20114
|
export declare const AppGraphqlOperationsDocument: DocumentNode<AppGraphqlOperationsQuery, AppGraphqlOperationsQueryVariables>;
|
|
22131
20115
|
export declare const AppUsageSummaryDocument: DocumentNode<AppUsageSummaryQuery, AppUsageSummaryQueryVariables>;
|
|
22132
|
-
export declare const EnvironmentUsageByAppDocument: DocumentNode<EnvironmentUsageByAppQuery, EnvironmentUsageByAppQueryVariables>;
|
|
22133
|
-
export declare const EnvironmentUsageSummaryDocument: DocumentNode<EnvironmentUsageSummaryQuery, EnvironmentUsageSummaryQueryVariables>;
|
|
22134
|
-
export declare const OrgUsageByEnvironmentDocument: DocumentNode<OrgUsageByEnvironmentQuery, OrgUsageByEnvironmentQueryVariables>;
|
|
22135
20116
|
export declare const PlayerPulseDocument: DocumentNode<PlayerPulseQuery, PlayerPulseQueryVariables>;
|
|
22136
20117
|
export declare const DeleteMyAccountDocument: DocumentNode<DeleteMyAccountMutation, DeleteMyAccountMutationVariables>;
|
|
22137
20118
|
export declare const ForceLogoutUserDocument: DocumentNode<ForceLogoutUserMutation, ForceLogoutUserMutationVariables>;
|