@crowdedkingdomstudios/crowdyjs 2.0.0 → 2.1.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/README.md +433 -6
- package/dist/auth-state.d.ts +21 -0
- package/dist/auth-state.d.ts.map +1 -0
- package/dist/auth-state.js +30 -0
- package/dist/client.d.ts +27 -21
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +27 -196
- package/dist/crowdy-client.d.ts +44 -24
- package/dist/crowdy-client.d.ts.map +1 -1
- package/dist/crowdy-client.js +42 -81
- package/dist/domains/actors.d.ts +22 -0
- package/dist/domains/actors.d.ts.map +1 -0
- package/dist/domains/actors.js +42 -0
- package/dist/domains/appAccess.d.ts +23 -0
- package/dist/domains/appAccess.d.ts.map +1 -0
- package/dist/domains/appAccess.js +42 -0
- package/dist/domains/apps.d.ts +27 -0
- package/dist/domains/apps.d.ts.map +1 -0
- package/dist/domains/apps.js +49 -0
- package/dist/domains/auth.d.ts +32 -0
- package/dist/domains/auth.d.ts.map +1 -0
- package/dist/domains/auth.js +70 -0
- package/dist/domains/billing.d.ts +17 -0
- package/dist/domains/billing.d.ts.map +1 -0
- package/dist/domains/billing.js +31 -0
- package/dist/domains/chunks.d.ts +20 -0
- package/dist/domains/chunks.d.ts.map +1 -0
- package/dist/domains/chunks.js +40 -0
- package/dist/domains/organizations.d.ts +33 -0
- package/dist/domains/organizations.d.ts.map +1 -0
- package/dist/domains/organizations.js +90 -0
- package/dist/domains/payments.d.ts +20 -0
- package/dist/domains/payments.d.ts.map +1 -0
- package/dist/domains/payments.js +28 -0
- package/dist/domains/quotas.d.ts +20 -0
- package/dist/domains/quotas.d.ts.map +1 -0
- package/dist/domains/quotas.js +34 -0
- package/dist/domains/serverStatus.d.ts +21 -0
- package/dist/domains/serverStatus.d.ts.map +1 -0
- package/dist/domains/serverStatus.js +32 -0
- package/dist/domains/state.d.ts +16 -0
- package/dist/domains/state.d.ts.map +1 -0
- package/dist/domains/state.js +27 -0
- package/dist/domains/teleport.d.ts +13 -0
- package/dist/domains/teleport.d.ts.map +1 -0
- package/dist/domains/teleport.js +15 -0
- package/dist/domains/udp.d.ts +32 -0
- package/dist/domains/udp.d.ts.map +1 -0
- package/dist/domains/udp.js +55 -0
- package/dist/domains/users.d.ts +24 -0
- package/dist/domains/users.d.ts.map +1 -0
- package/dist/domains/users.js +53 -0
- package/dist/domains/voxels.d.ts +17 -0
- package/dist/domains/voxels.d.ts.map +1 -0
- package/dist/domains/voxels.js +31 -0
- package/dist/generated/graphql.d.ts +3571 -0
- package/dist/generated/graphql.d.ts.map +1 -0
- package/dist/generated/graphql.js +181 -0
- package/dist/index.d.ts +33 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +34 -1
- package/dist/subscriptions.d.ts +36 -18
- package/dist/subscriptions.d.ts.map +1 -1
- package/dist/subscriptions.js +95 -181
- package/package.json +20 -1
|
@@ -0,0 +1,3571 @@
|
|
|
1
|
+
import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
2
|
+
export type Maybe<T> = T | null;
|
|
3
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
4
|
+
export type Exact<T extends {
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
}> = {
|
|
7
|
+
[K in keyof T]: T[K];
|
|
8
|
+
};
|
|
9
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
10
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
11
|
+
};
|
|
12
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
13
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
14
|
+
};
|
|
15
|
+
export type MakeEmpty<T extends {
|
|
16
|
+
[key: string]: unknown;
|
|
17
|
+
}, K extends keyof T> = {
|
|
18
|
+
[_ in K]?: never;
|
|
19
|
+
};
|
|
20
|
+
export type Incremental<T> = T | {
|
|
21
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
22
|
+
};
|
|
23
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
24
|
+
export type Scalars = {
|
|
25
|
+
ID: {
|
|
26
|
+
input: string;
|
|
27
|
+
output: string;
|
|
28
|
+
};
|
|
29
|
+
String: {
|
|
30
|
+
input: string;
|
|
31
|
+
output: string;
|
|
32
|
+
};
|
|
33
|
+
Boolean: {
|
|
34
|
+
input: boolean;
|
|
35
|
+
output: boolean;
|
|
36
|
+
};
|
|
37
|
+
Int: {
|
|
38
|
+
input: number;
|
|
39
|
+
output: number;
|
|
40
|
+
};
|
|
41
|
+
Float: {
|
|
42
|
+
input: number;
|
|
43
|
+
output: number;
|
|
44
|
+
};
|
|
45
|
+
/** BigInt custom scalar type. Input should be a string representation of a BigInt. */
|
|
46
|
+
BigInt: {
|
|
47
|
+
input: string;
|
|
48
|
+
output: string;
|
|
49
|
+
};
|
|
50
|
+
/** A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format. */
|
|
51
|
+
DateTime: {
|
|
52
|
+
input: string;
|
|
53
|
+
output: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export type Actor = {
|
|
57
|
+
__typename?: 'Actor';
|
|
58
|
+
appId: Scalars['BigInt']['output'];
|
|
59
|
+
avatarId: Maybe<Scalars['BigInt']['output']>;
|
|
60
|
+
chunk: ChunkCoordinates;
|
|
61
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62
|
+
privateState: Maybe<Scalars['String']['output']>;
|
|
63
|
+
publicState: Maybe<Scalars['String']['output']>;
|
|
64
|
+
userId: Scalars['BigInt']['output'];
|
|
65
|
+
uuid: Scalars['ID']['output'];
|
|
66
|
+
};
|
|
67
|
+
export type ActorFilterInput = {
|
|
68
|
+
appId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
69
|
+
avatarId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
70
|
+
chunk?: InputMaybe<ChunkCoordinatesInput>;
|
|
71
|
+
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
72
|
+
};
|
|
73
|
+
/** Notification received when an actor (player or NPC) state is updated by another client or the server. Received via the udpNotifications subscription. */
|
|
74
|
+
export type ActorUpdateNotification = {
|
|
75
|
+
__typename?: 'ActorUpdateNotification';
|
|
76
|
+
/** The ID of the app where the actor is located. */
|
|
77
|
+
appId: Scalars['BigInt']['output'];
|
|
78
|
+
/** The X coordinate of the chunk where the actor is located. */
|
|
79
|
+
chunkX: Scalars['BigInt']['output'];
|
|
80
|
+
/** The Y coordinate of the chunk where the actor is located. */
|
|
81
|
+
chunkY: Scalars['BigInt']['output'];
|
|
82
|
+
/** The Z coordinate of the chunk where the actor is located. */
|
|
83
|
+
chunkZ: Scalars['BigInt']['output'];
|
|
84
|
+
/** Decay algorithm (0-5) from the original message. */
|
|
85
|
+
decayRate: Scalars['Int']['output'];
|
|
86
|
+
/** Chunk replication distance (0-8) from the original message. */
|
|
87
|
+
distance: Scalars['Int']['output'];
|
|
88
|
+
/** Server-generated epoch milliseconds timestamp. */
|
|
89
|
+
epochMillis: Scalars['BigInt']['output'];
|
|
90
|
+
/** The sender's sequence number for this message (0-255). */
|
|
91
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
92
|
+
/** The actor state data, base64-encoded. Decode this to get the full ActorState containing position, rotation, velocity, animation flags, etc. */
|
|
93
|
+
state: Scalars['String']['output'];
|
|
94
|
+
/** The unique identifier of the actor that was updated. */
|
|
95
|
+
uuid: Scalars['String']['output'];
|
|
96
|
+
};
|
|
97
|
+
/** Input for sending an actor update request to the UDP game server. This updates the state of an actor (player character or NPC) in a specific chunk. */
|
|
98
|
+
export type ActorUpdateRequestInput = {
|
|
99
|
+
/** The ID of the app where the actor is located. */
|
|
100
|
+
appId: Scalars['BigInt']['input'];
|
|
101
|
+
/** The chunk coordinates where the actor is located. A chunk is a 16x16x16 voxel cube. */
|
|
102
|
+
chunk: ChunkCoordinatesInput;
|
|
103
|
+
/** Decay algorithm for replication: 0 = none, 1 = exponential, 2 = linear 50%, 3 = linear 25%, 4 = linear 10%, 5 = linear 5%. Defaults to 1 (exponential) for actor updates. */
|
|
104
|
+
decayRate?: InputMaybe<Scalars['Int']['input']>;
|
|
105
|
+
/** Chunk replication distance (0-8). Defaults to 8 for actor updates. Clamped to 0-8. */
|
|
106
|
+
distance?: InputMaybe<Scalars['Int']['input']>;
|
|
107
|
+
/** Client's sequence number for this message (0-255, wraps). Used to match error responses. */
|
|
108
|
+
sequenceNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
109
|
+
/** The actor state data, base64-encoded. May be an empty string for registration-only updates (no state payload). */
|
|
110
|
+
state: Scalars['String']['input'];
|
|
111
|
+
/** A unique identifier for the actor. Must be exactly 32 bytes when encoded as UTF-8. This is typically a client-generated UUID. */
|
|
112
|
+
uuid: Scalars['String']['input'];
|
|
113
|
+
};
|
|
114
|
+
/** Response from the UDP game server for an actor update request. Received via the udpNotifications subscription. */
|
|
115
|
+
export type ActorUpdateResponse = {
|
|
116
|
+
__typename?: 'ActorUpdateResponse';
|
|
117
|
+
/** The ID of the app where the actor update was processed. */
|
|
118
|
+
appId: Scalars['BigInt']['output'];
|
|
119
|
+
/** The X coordinate of the chunk where the actor is located. */
|
|
120
|
+
chunkX: Scalars['BigInt']['output'];
|
|
121
|
+
/** The Y coordinate of the chunk where the actor is located. */
|
|
122
|
+
chunkY: Scalars['BigInt']['output'];
|
|
123
|
+
/** The Z coordinate of the chunk where the actor is located. */
|
|
124
|
+
chunkZ: Scalars['BigInt']['output'];
|
|
125
|
+
/** Decay algorithm (0-5) from the original message. */
|
|
126
|
+
decayRate: Scalars['Int']['output'];
|
|
127
|
+
/** Chunk replication distance (0-8) from the original message. */
|
|
128
|
+
distance: Scalars['Int']['output'];
|
|
129
|
+
/** Server-generated epoch milliseconds timestamp. */
|
|
130
|
+
epochMillis: Scalars['BigInt']['output'];
|
|
131
|
+
/** The sequence number echoed back from the request, used to correlate responses. */
|
|
132
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
133
|
+
/** The unique identifier of the actor that was updated. */
|
|
134
|
+
uuid: Scalars['String']['output'];
|
|
135
|
+
};
|
|
136
|
+
export type App = {
|
|
137
|
+
__typename?: 'App';
|
|
138
|
+
appId: Scalars['BigInt']['output'];
|
|
139
|
+
createdAt: Scalars['DateTime']['output'];
|
|
140
|
+
createdBy: Scalars['BigInt']['output'];
|
|
141
|
+
description: Maybe<Scalars['String']['output']>;
|
|
142
|
+
metadata: Maybe<Scalars['String']['output']>;
|
|
143
|
+
name: Scalars['String']['output'];
|
|
144
|
+
org: Maybe<Organization>;
|
|
145
|
+
orgId: Scalars['BigInt']['output'];
|
|
146
|
+
slug: Maybe<Scalars['String']['output']>;
|
|
147
|
+
state: Maybe<Scalars['String']['output']>;
|
|
148
|
+
status: AppStatus;
|
|
149
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
150
|
+
visibility: AppVisibility;
|
|
151
|
+
};
|
|
152
|
+
export type AppAccessTier = {
|
|
153
|
+
__typename?: 'AppAccessTier';
|
|
154
|
+
appId: Scalars['BigInt']['output'];
|
|
155
|
+
billingPeriod: Maybe<Scalars['String']['output']>;
|
|
156
|
+
createdAt: Scalars['DateTime']['output'];
|
|
157
|
+
currency: Maybe<Scalars['String']['output']>;
|
|
158
|
+
description: Maybe<Scalars['String']['output']>;
|
|
159
|
+
isDefault: Scalars['Boolean']['output'];
|
|
160
|
+
isFree: Scalars['Boolean']['output'];
|
|
161
|
+
name: Scalars['String']['output'];
|
|
162
|
+
priceCents: Maybe<Scalars['BigInt']['output']>;
|
|
163
|
+
status: Scalars['String']['output'];
|
|
164
|
+
tierId: Scalars['BigInt']['output'];
|
|
165
|
+
tierOrder: Scalars['Float']['output'];
|
|
166
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
167
|
+
};
|
|
168
|
+
export type AppBudget = {
|
|
169
|
+
__typename?: 'AppBudget';
|
|
170
|
+
appBudgetId: Scalars['BigInt']['output'];
|
|
171
|
+
appId: Scalars['BigInt']['output'];
|
|
172
|
+
createdAt: Scalars['DateTime']['output'];
|
|
173
|
+
currentMonthUsageCents: Scalars['BigInt']['output'];
|
|
174
|
+
monthlyLimitCents: Maybe<Scalars['BigInt']['output']>;
|
|
175
|
+
orgId: Scalars['BigInt']['output'];
|
|
176
|
+
periodStart: Scalars['DateTime']['output'];
|
|
177
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
178
|
+
};
|
|
179
|
+
export type AppMarketplaceFilterInput = {
|
|
180
|
+
orgSlug?: InputMaybe<Scalars['String']['input']>;
|
|
181
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
182
|
+
};
|
|
183
|
+
/** DRAFT = invisible to non-members, LIVE = purchasable/playable, ARCHIVED = read-only */
|
|
184
|
+
export declare enum AppStatus {
|
|
185
|
+
Archived = "ARCHIVED",
|
|
186
|
+
Draft = "DRAFT",
|
|
187
|
+
Live = "LIVE"
|
|
188
|
+
}
|
|
189
|
+
export type AppUserAccess = {
|
|
190
|
+
__typename?: 'AppUserAccess';
|
|
191
|
+
appId: Scalars['BigInt']['output'];
|
|
192
|
+
appUserAccessId: Scalars['BigInt']['output'];
|
|
193
|
+
createdAt: Scalars['DateTime']['output'];
|
|
194
|
+
expiresAt: Maybe<Scalars['DateTime']['output']>;
|
|
195
|
+
grantedBy: Scalars['String']['output'];
|
|
196
|
+
status: Scalars['String']['output'];
|
|
197
|
+
subscriptionId: Maybe<Scalars['String']['output']>;
|
|
198
|
+
tierId: Maybe<Scalars['BigInt']['output']>;
|
|
199
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
200
|
+
userId: Scalars['BigInt']['output'];
|
|
201
|
+
};
|
|
202
|
+
/** PUBLIC = listed in marketplace, UNLISTED = direct link only, PRIVATE = members only */
|
|
203
|
+
export declare enum AppVisibility {
|
|
204
|
+
Private = "PRIVATE",
|
|
205
|
+
Public = "PUBLIC",
|
|
206
|
+
Unlisted = "UNLISTED"
|
|
207
|
+
}
|
|
208
|
+
export type AppsPage = {
|
|
209
|
+
__typename?: 'AppsPage';
|
|
210
|
+
items: Array<App>;
|
|
211
|
+
pageInfo: PageInfo;
|
|
212
|
+
};
|
|
213
|
+
export type AuthResponse = {
|
|
214
|
+
__typename?: 'AuthResponse';
|
|
215
|
+
gameTokenId: Scalars['String']['output'];
|
|
216
|
+
token: Scalars['String']['output'];
|
|
217
|
+
user: User;
|
|
218
|
+
};
|
|
219
|
+
export type Avatar = {
|
|
220
|
+
__typename?: 'Avatar';
|
|
221
|
+
avatarId: Scalars['ID']['output'];
|
|
222
|
+
createdAt: Scalars['DateTime']['output'];
|
|
223
|
+
name: Scalars['String']['output'];
|
|
224
|
+
privateState: Maybe<Scalars['String']['output']>;
|
|
225
|
+
publicState: Maybe<Scalars['String']['output']>;
|
|
226
|
+
userId: Scalars['BigInt']['output'];
|
|
227
|
+
};
|
|
228
|
+
export type AvatarDto = {
|
|
229
|
+
__typename?: 'AvatarDTO';
|
|
230
|
+
avatarId: Scalars['ID']['output'];
|
|
231
|
+
createdAt: Scalars['DateTime']['output'];
|
|
232
|
+
name: Scalars['String']['output'];
|
|
233
|
+
privateState: Maybe<Scalars['String']['output']>;
|
|
234
|
+
publicState: Maybe<Scalars['String']['output']>;
|
|
235
|
+
userId: Scalars['ID']['output'];
|
|
236
|
+
};
|
|
237
|
+
export type BatchActorLookupInput = {
|
|
238
|
+
uuids: Array<Scalars['String']['input']>;
|
|
239
|
+
};
|
|
240
|
+
export type Checkout = {
|
|
241
|
+
__typename?: 'Checkout';
|
|
242
|
+
amountCents: Maybe<Scalars['BigInt']['output']>;
|
|
243
|
+
appId: Maybe<Scalars['BigInt']['output']>;
|
|
244
|
+
checkoutId: Scalars['BigInt']['output'];
|
|
245
|
+
completedAt: Maybe<Scalars['DateTime']['output']>;
|
|
246
|
+
createdAt: Scalars['DateTime']['output'];
|
|
247
|
+
currency: Maybe<Scalars['String']['output']>;
|
|
248
|
+
error: Maybe<Scalars['String']['output']>;
|
|
249
|
+
expiresAt: Maybe<Scalars['DateTime']['output']>;
|
|
250
|
+
/** Stripe Checkout Session id, PayPal Order id, etc. */
|
|
251
|
+
externalId: Scalars['String']['output'];
|
|
252
|
+
/** URL to redirect the user to. */
|
|
253
|
+
externalUrl: Scalars['String']['output'];
|
|
254
|
+
orgId: Maybe<Scalars['BigInt']['output']>;
|
|
255
|
+
provider: PaymentProvider;
|
|
256
|
+
purpose: CheckoutPurpose;
|
|
257
|
+
status: CheckoutStatus;
|
|
258
|
+
tierId: Maybe<Scalars['BigInt']['output']>;
|
|
259
|
+
userId: Scalars['BigInt']['output'];
|
|
260
|
+
};
|
|
261
|
+
export type CheckoutFilterInput = {
|
|
262
|
+
appId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
263
|
+
orgId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
264
|
+
provider?: InputMaybe<PaymentProvider>;
|
|
265
|
+
purpose?: InputMaybe<CheckoutPurpose>;
|
|
266
|
+
status?: InputMaybe<CheckoutStatus>;
|
|
267
|
+
userId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
268
|
+
};
|
|
269
|
+
/** Why the checkout exists. Drives which side effect runs on webhook completion: ORG_WALLET_TOPUP credits an org_wallet; APP_ACCESS_PURCHASE upserts app_user_access; DONATION inserts donations; PROPERTY_TOKENS credits property_tokens. */
|
|
270
|
+
export declare enum CheckoutPurpose {
|
|
271
|
+
AppAccessPurchase = "APP_ACCESS_PURCHASE",
|
|
272
|
+
Donation = "DONATION",
|
|
273
|
+
OrgWalletTopup = "ORG_WALLET_TOPUP",
|
|
274
|
+
PropertyTokens = "PROPERTY_TOKENS"
|
|
275
|
+
}
|
|
276
|
+
/** Lifecycle state of a Checkout. Updated by webhook reconciliation, not by the redirect URL. */
|
|
277
|
+
export declare enum CheckoutStatus {
|
|
278
|
+
Canceled = "CANCELED",
|
|
279
|
+
Completed = "COMPLETED",
|
|
280
|
+
Expired = "EXPIRED",
|
|
281
|
+
Failed = "FAILED",
|
|
282
|
+
Pending = "PENDING"
|
|
283
|
+
}
|
|
284
|
+
export type CheckoutsPage = {
|
|
285
|
+
__typename?: 'CheckoutsPage';
|
|
286
|
+
items: Array<Checkout>;
|
|
287
|
+
pageInfo: PageInfo;
|
|
288
|
+
};
|
|
289
|
+
export type Chunk = {
|
|
290
|
+
__typename?: 'Chunk';
|
|
291
|
+
appId: Scalars['ID']['output'];
|
|
292
|
+
cdnUploadedAt: Maybe<Scalars['DateTime']['output']>;
|
|
293
|
+
chunkId: Scalars['ID']['output'];
|
|
294
|
+
chunkState: Maybe<Scalars['String']['output']>;
|
|
295
|
+
coordinates: ChunkCoordinates;
|
|
296
|
+
createdAt: Scalars['DateTime']['output'];
|
|
297
|
+
lods: Maybe<Array<LodData>>;
|
|
298
|
+
owner: Maybe<Scalars['ID']['output']>;
|
|
299
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
300
|
+
voxelStates: Array<VoxelState>;
|
|
301
|
+
voxels: Maybe<Scalars['String']['output']>;
|
|
302
|
+
};
|
|
303
|
+
export type ChunkCoordinates = {
|
|
304
|
+
__typename?: 'ChunkCoordinates';
|
|
305
|
+
x: Scalars['BigInt']['output'];
|
|
306
|
+
y: Scalars['BigInt']['output'];
|
|
307
|
+
z: Scalars['BigInt']['output'];
|
|
308
|
+
};
|
|
309
|
+
export type ChunkCoordinatesInput = {
|
|
310
|
+
x: Scalars['BigInt']['input'];
|
|
311
|
+
y: Scalars['BigInt']['input'];
|
|
312
|
+
z: Scalars['BigInt']['input'];
|
|
313
|
+
};
|
|
314
|
+
export type ChunkLodsResponse = {
|
|
315
|
+
__typename?: 'ChunkLodsResponse';
|
|
316
|
+
appId: Scalars['ID']['output'];
|
|
317
|
+
chunkId: Scalars['ID']['output'];
|
|
318
|
+
coordinates: ChunkCoordinates;
|
|
319
|
+
lods: Array<LodData>;
|
|
320
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
321
|
+
};
|
|
322
|
+
export type ChunkUpdateInput = {
|
|
323
|
+
appId: Scalars['BigInt']['input'];
|
|
324
|
+
coordinates: ChunkCoordinatesInput;
|
|
325
|
+
voxelStates?: InputMaybe<Array<VoxelStateInput>>;
|
|
326
|
+
voxels?: InputMaybe<Scalars['String']['input']>;
|
|
327
|
+
};
|
|
328
|
+
export type ChunkVoxelResponse = {
|
|
329
|
+
__typename?: 'ChunkVoxelResponse';
|
|
330
|
+
coordinates: ChunkCoordinates;
|
|
331
|
+
voxels: Array<Voxel>;
|
|
332
|
+
};
|
|
333
|
+
export type ChunkVoxelUpdatesResponse = {
|
|
334
|
+
__typename?: 'ChunkVoxelUpdatesResponse';
|
|
335
|
+
coordinates: ChunkCoordinates;
|
|
336
|
+
voxels: Array<Voxel>;
|
|
337
|
+
};
|
|
338
|
+
export type ChunksByDistanceResponse = {
|
|
339
|
+
__typename?: 'ChunksByDistanceResponse';
|
|
340
|
+
chunks: Array<Chunk>;
|
|
341
|
+
limit: Maybe<Scalars['Int']['output']>;
|
|
342
|
+
skip: Maybe<Scalars['Int']['output']>;
|
|
343
|
+
};
|
|
344
|
+
/** Notification received when another client sends an audio packet (voice chat). Received via the udpNotifications subscription. */
|
|
345
|
+
export type ClientAudioNotification = {
|
|
346
|
+
__typename?: 'ClientAudioNotification';
|
|
347
|
+
/** The ID of the app where the audio is coming from. */
|
|
348
|
+
appId: Scalars['BigInt']['output'];
|
|
349
|
+
/** The compressed audio data, base64-encoded. */
|
|
350
|
+
audioData: Scalars['String']['output'];
|
|
351
|
+
/** The X coordinate of the chunk where the audio source is located. */
|
|
352
|
+
chunkX: Scalars['BigInt']['output'];
|
|
353
|
+
/** The Y coordinate of the chunk where the audio source is located. */
|
|
354
|
+
chunkY: Scalars['BigInt']['output'];
|
|
355
|
+
/** The Z coordinate of the chunk where the audio source is located. */
|
|
356
|
+
chunkZ: Scalars['BigInt']['output'];
|
|
357
|
+
/** Decay algorithm (0-5) from the original message. */
|
|
358
|
+
decayRate: Scalars['Int']['output'];
|
|
359
|
+
/** Chunk replication distance (0-8) from the original message. */
|
|
360
|
+
distance: Scalars['Int']['output'];
|
|
361
|
+
/** Server-generated epoch milliseconds timestamp. */
|
|
362
|
+
epochMillis: Scalars['BigInt']['output'];
|
|
363
|
+
/** The sender's sequence number for this message (0-255). */
|
|
364
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
365
|
+
/** The unique identifier of the audio source (typically the player UUID sending the audio). */
|
|
366
|
+
uuid: Scalars['String']['output'];
|
|
367
|
+
};
|
|
368
|
+
/** Input for sending a client audio packet (voice chat) to the UDP game server. The audio data is compressed and will be broadcast to nearby players. */
|
|
369
|
+
export type ClientAudioPacketInput = {
|
|
370
|
+
/** The ID of the app where the audio is being sent from. */
|
|
371
|
+
appId: Scalars['BigInt']['input'];
|
|
372
|
+
/** The compressed audio data, base64-encoded. */
|
|
373
|
+
audioData: Scalars['String']['input'];
|
|
374
|
+
/** The chunk coordinates where the audio source is located. */
|
|
375
|
+
chunk: ChunkCoordinatesInput;
|
|
376
|
+
/** Decay algorithm for replication: 0 = none, 1 = exponential, 2 = linear 50%, 3 = linear 25%, 4 = linear 10%, 5 = linear 5%. Defaults to 0 (none) for audio packets. */
|
|
377
|
+
decayRate?: InputMaybe<Scalars['Int']['input']>;
|
|
378
|
+
/** Chunk replication distance (0-8). Defaults to 1 for audio packets. Clamped to 0-8. */
|
|
379
|
+
distance?: InputMaybe<Scalars['Int']['input']>;
|
|
380
|
+
/** Client's sequence number for this message (0-255, wraps). Used to match error responses. */
|
|
381
|
+
sequenceNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
382
|
+
/** A unique identifier for the audio source (typically the player UUID). Must be exactly 32 bytes when encoded as UTF-8. */
|
|
383
|
+
uuid: Scalars['String']['input'];
|
|
384
|
+
};
|
|
385
|
+
/** Notification received when another client sends a custom event. Received via the udpNotifications subscription. */
|
|
386
|
+
export type ClientEventNotification = {
|
|
387
|
+
__typename?: 'ClientEventNotification';
|
|
388
|
+
/** The ID of the app where the event is occurring. */
|
|
389
|
+
appId: Scalars['BigInt']['output'];
|
|
390
|
+
/** The X coordinate of the chunk where the event is located. */
|
|
391
|
+
chunkX: Scalars['BigInt']['output'];
|
|
392
|
+
/** The Y coordinate of the chunk where the event is located. */
|
|
393
|
+
chunkY: Scalars['BigInt']['output'];
|
|
394
|
+
/** The Z coordinate of the chunk where the event is located. */
|
|
395
|
+
chunkZ: Scalars['BigInt']['output'];
|
|
396
|
+
/** Decay algorithm (0-5) from the original message. */
|
|
397
|
+
decayRate: Scalars['Int']['output'];
|
|
398
|
+
/** Chunk replication distance (0-8) from the original message. */
|
|
399
|
+
distance: Scalars['Int']['output'];
|
|
400
|
+
/** Server-generated epoch milliseconds timestamp. */
|
|
401
|
+
epochMillis: Scalars['BigInt']['output'];
|
|
402
|
+
/** The event type ID (uint16). This determines how the event should be processed. */
|
|
403
|
+
eventType: Scalars['Int']['output'];
|
|
404
|
+
/** The sender's sequence number for this message (0-255). */
|
|
405
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
406
|
+
/** The event state data, base64-encoded. The format is defined by the event type. */
|
|
407
|
+
state: Scalars['String']['output'];
|
|
408
|
+
/** The unique identifier of the object controlling this event. */
|
|
409
|
+
uuid: Scalars['String']['output'];
|
|
410
|
+
};
|
|
411
|
+
/** Input for sending a client event notification to the UDP game server. Events are custom game events that can be used for various gameplay mechanics. The event type and state format are defined by the client/mod. */
|
|
412
|
+
export type ClientEventNotificationInput = {
|
|
413
|
+
/** The ID of the app where the event is occurring. */
|
|
414
|
+
appId: Scalars['BigInt']['input'];
|
|
415
|
+
/** The chunk coordinates where the event is located. */
|
|
416
|
+
chunk: ChunkCoordinatesInput;
|
|
417
|
+
/** Decay algorithm for replication: 0 = none, 1 = exponential, 2 = linear 50%, 3 = linear 25%, 4 = linear 10%, 5 = linear 5%. Defaults to 0 (none) for events. */
|
|
418
|
+
decayRate?: InputMaybe<Scalars['Int']['input']>;
|
|
419
|
+
/** Chunk replication distance (0-8). Defaults to 8 for events. Clamped to 0-8. */
|
|
420
|
+
distance?: InputMaybe<Scalars['Int']['input']>;
|
|
421
|
+
/** The event type ID (uint16, 0-65535). This is a client-defined enum that determines how the event should be processed. */
|
|
422
|
+
eventType: Scalars['Int']['input'];
|
|
423
|
+
/** Client's sequence number for this message (0-255, wraps). Used to match error responses. */
|
|
424
|
+
sequenceNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
425
|
+
/** The event state data, base64-encoded. The format is defined by the event type and is currently only processed by clients. */
|
|
426
|
+
state: Scalars['String']['input'];
|
|
427
|
+
/** A unique identifier for the object controlling this event. Must be exactly 32 bytes when encoded as UTF-8. */
|
|
428
|
+
uuid: Scalars['String']['input'];
|
|
429
|
+
};
|
|
430
|
+
/** Notification received when another client sends a text message (chat). Received via the udpNotifications subscription. */
|
|
431
|
+
export type ClientTextNotification = {
|
|
432
|
+
__typename?: 'ClientTextNotification';
|
|
433
|
+
/** The ID of the app where the text message is coming from. */
|
|
434
|
+
appId: Scalars['BigInt']['output'];
|
|
435
|
+
/** The X coordinate of the chunk where the text source is located. */
|
|
436
|
+
chunkX: Scalars['BigInt']['output'];
|
|
437
|
+
/** The Y coordinate of the chunk where the text source is located. */
|
|
438
|
+
chunkY: Scalars['BigInt']['output'];
|
|
439
|
+
/** The Z coordinate of the chunk where the text source is located. */
|
|
440
|
+
chunkZ: Scalars['BigInt']['output'];
|
|
441
|
+
/** Decay algorithm (0-5) from the original message. */
|
|
442
|
+
decayRate: Scalars['Int']['output'];
|
|
443
|
+
/** Chunk replication distance (0-8) from the original message. */
|
|
444
|
+
distance: Scalars['Int']['output'];
|
|
445
|
+
/** Server-generated epoch milliseconds timestamp. */
|
|
446
|
+
epochMillis: Scalars['BigInt']['output'];
|
|
447
|
+
/** The sender's sequence number for this message (0-255). */
|
|
448
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
449
|
+
/** The text message content, UTF-8 encoded. Display this to the user. */
|
|
450
|
+
text: Scalars['String']['output'];
|
|
451
|
+
/** The unique identifier of the text source (typically the player UUID sending the message). */
|
|
452
|
+
uuid: Scalars['String']['output'];
|
|
453
|
+
};
|
|
454
|
+
/** Input for sending a text message (chat) to the UDP game server. The text will be broadcast to nearby players in the same chunk. */
|
|
455
|
+
export type ClientTextPacketInput = {
|
|
456
|
+
/** The ID of the app where the text message is being sent from. */
|
|
457
|
+
appId: Scalars['BigInt']['input'];
|
|
458
|
+
/** The chunk coordinates where the text message source is located. */
|
|
459
|
+
chunk: ChunkCoordinatesInput;
|
|
460
|
+
/** Decay algorithm for replication: 0 = none, 1 = exponential, 2 = linear 50%, 3 = linear 25%, 4 = linear 10%, 5 = linear 5%. Defaults to 0 (none) for text packets. */
|
|
461
|
+
decayRate?: InputMaybe<Scalars['Int']['input']>;
|
|
462
|
+
/** Chunk replication distance (0-8). Defaults to 8 for text packets. Clamped to 0-8. */
|
|
463
|
+
distance?: InputMaybe<Scalars['Int']['input']>;
|
|
464
|
+
/** Client's sequence number for this message (0-255, wraps). Used to match error responses. */
|
|
465
|
+
sequenceNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
466
|
+
/** The text message content, encoded as UTF-8. This will be displayed to nearby players. */
|
|
467
|
+
text: Scalars['String']['input'];
|
|
468
|
+
/** A unique identifier for the text source (typically the player UUID). Must be exactly 32 bytes when encoded as UTF-8. */
|
|
469
|
+
uuid: Scalars['String']['input'];
|
|
470
|
+
};
|
|
471
|
+
/** Input for connecting to the UDP proxy. The server automatically selects the UDP game server with the least number of clients. This input type exists only because GraphQL requires input types to have at least one field - the _placeholder field can be ignored. */
|
|
472
|
+
export type ConnectUdpProxyInput = {
|
|
473
|
+
/** Placeholder field (can be ignored). GraphQL requires input types to have at least one field. */
|
|
474
|
+
_placeholder?: InputMaybe<Scalars['Boolean']['input']>;
|
|
475
|
+
};
|
|
476
|
+
export type CreateAccessTierInput = {
|
|
477
|
+
appId: Scalars['BigInt']['input'];
|
|
478
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
479
|
+
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
480
|
+
isFree?: InputMaybe<Scalars['Boolean']['input']>;
|
|
481
|
+
name: Scalars['String']['input'];
|
|
482
|
+
tierOrder?: InputMaybe<Scalars['Int']['input']>;
|
|
483
|
+
};
|
|
484
|
+
export type CreateActorInput = {
|
|
485
|
+
appId: Scalars['BigInt']['input'];
|
|
486
|
+
avatarId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
487
|
+
chunk: ChunkCoordinatesInput;
|
|
488
|
+
privateState?: InputMaybe<Scalars['String']['input']>;
|
|
489
|
+
publicState?: InputMaybe<Scalars['String']['input']>;
|
|
490
|
+
uuid: Scalars['String']['input'];
|
|
491
|
+
};
|
|
492
|
+
export type CreateAppInput = {
|
|
493
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
494
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
495
|
+
name: Scalars['String']['input'];
|
|
496
|
+
orgId: Scalars['BigInt']['input'];
|
|
497
|
+
slug: Scalars['String']['input'];
|
|
498
|
+
status?: InputMaybe<AppStatus>;
|
|
499
|
+
visibility?: InputMaybe<AppVisibility>;
|
|
500
|
+
};
|
|
501
|
+
export type CreateAvatarInput = {
|
|
502
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
503
|
+
};
|
|
504
|
+
export type CreateCheckoutInput = {
|
|
505
|
+
amountCents?: InputMaybe<Scalars['BigInt']['input']>;
|
|
506
|
+
appId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
507
|
+
cancelUrl?: InputMaybe<Scalars['String']['input']>;
|
|
508
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
509
|
+
orgId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
510
|
+
provider: PaymentProvider;
|
|
511
|
+
purpose: CheckoutPurpose;
|
|
512
|
+
successUrl?: InputMaybe<Scalars['String']['input']>;
|
|
513
|
+
tierId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
514
|
+
};
|
|
515
|
+
export type CreateGridInput = {
|
|
516
|
+
app_id: Scalars['BigInt']['input'];
|
|
517
|
+
corner1: ChunkCoordinatesInput;
|
|
518
|
+
corner2: ChunkCoordinatesInput;
|
|
519
|
+
};
|
|
520
|
+
export type CreateGridResponse = {
|
|
521
|
+
__typename?: 'CreateGridResponse';
|
|
522
|
+
error: UdpErrorCode;
|
|
523
|
+
grid: Maybe<Grid>;
|
|
524
|
+
};
|
|
525
|
+
export type CreateOrgRoleInput = {
|
|
526
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
527
|
+
orgId: Scalars['BigInt']['input'];
|
|
528
|
+
permissions: Array<Scalars['String']['input']>;
|
|
529
|
+
roleName: Scalars['String']['input'];
|
|
530
|
+
};
|
|
531
|
+
export type CreateOrgTokenInput = {
|
|
532
|
+
expiresAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
533
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
534
|
+
orgId: Scalars['BigInt']['input'];
|
|
535
|
+
};
|
|
536
|
+
export type CreateOrganizationInput = {
|
|
537
|
+
name: Scalars['String']['input'];
|
|
538
|
+
slug: Scalars['String']['input'];
|
|
539
|
+
};
|
|
540
|
+
export type CreateUserAppStateInput = {
|
|
541
|
+
appId: Scalars['BigInt']['input'];
|
|
542
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
543
|
+
};
|
|
544
|
+
export type FreePlayWindowInfo = {
|
|
545
|
+
__typename?: 'FreePlayWindowInfo';
|
|
546
|
+
description: Scalars['String']['output'];
|
|
547
|
+
isCurrentlyActive: Scalars['Boolean']['output'];
|
|
548
|
+
nextWindowStart: Maybe<Scalars['String']['output']>;
|
|
549
|
+
};
|
|
550
|
+
/** Generic error response from the UDP game server. Uses the sequence number to match the original request that failed. */
|
|
551
|
+
export type GenericErrorResponse = {
|
|
552
|
+
__typename?: 'GenericErrorResponse';
|
|
553
|
+
/** Error code indicating the reason for the failure. */
|
|
554
|
+
errorCode: UdpErrorCode;
|
|
555
|
+
/** The sequence number from the original request, used to correlate this error with the request that caused it. */
|
|
556
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
557
|
+
};
|
|
558
|
+
export type GetChunkInput = {
|
|
559
|
+
appId: Scalars['BigInt']['input'];
|
|
560
|
+
coordinates: ChunkCoordinatesInput;
|
|
561
|
+
includeAllLods?: InputMaybe<Scalars['Boolean']['input']>;
|
|
562
|
+
requestedLodLevels?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
563
|
+
};
|
|
564
|
+
export type GetChunkLodsInput = {
|
|
565
|
+
appId: Scalars['BigInt']['input'];
|
|
566
|
+
coordinates: ChunkCoordinatesInput;
|
|
567
|
+
lodLevels: Array<Scalars['Int']['input']>;
|
|
568
|
+
};
|
|
569
|
+
export type GetChunksByDistanceInput = {
|
|
570
|
+
appId: Scalars['BigInt']['input'];
|
|
571
|
+
centerCoordinate: ChunkCoordinatesInput;
|
|
572
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
573
|
+
maxDistance: Scalars['Int']['input'];
|
|
574
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
575
|
+
};
|
|
576
|
+
export type GetVoxelListInput = {
|
|
577
|
+
appId: Scalars['BigInt']['input'];
|
|
578
|
+
coordinates: ChunkCoordinatesInput;
|
|
579
|
+
};
|
|
580
|
+
export type GrantAppAccessInput = {
|
|
581
|
+
appId: Scalars['BigInt']['input'];
|
|
582
|
+
grantedBy?: InputMaybe<Scalars['String']['input']>;
|
|
583
|
+
tierId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
584
|
+
userId: Scalars['BigInt']['input'];
|
|
585
|
+
};
|
|
586
|
+
export type GraphQlServer = {
|
|
587
|
+
__typename?: 'GraphQLServer';
|
|
588
|
+
createdAt: Scalars['DateTime']['output'];
|
|
589
|
+
graphqlServerId: Scalars['ID']['output'];
|
|
590
|
+
ip4: Maybe<Scalars['String']['output']>;
|
|
591
|
+
ip6: Maybe<Scalars['String']['output']>;
|
|
592
|
+
status: ServerState;
|
|
593
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
594
|
+
};
|
|
595
|
+
export type Grid = {
|
|
596
|
+
__typename?: 'Grid';
|
|
597
|
+
app_id: Scalars['BigInt']['output'];
|
|
598
|
+
created_at: Scalars['DateTime']['output'];
|
|
599
|
+
grid_id: Scalars['BigInt']['output'];
|
|
600
|
+
high_chunk: ChunkCoordinates;
|
|
601
|
+
low_chunk: ChunkCoordinates;
|
|
602
|
+
};
|
|
603
|
+
export type InviteOrgMemberInput = {
|
|
604
|
+
orgId: Scalars['BigInt']['input'];
|
|
605
|
+
userId: Scalars['BigInt']['input'];
|
|
606
|
+
};
|
|
607
|
+
export type ListVoxelUpdatesByDistanceInput = {
|
|
608
|
+
appId: Scalars['BigInt']['input'];
|
|
609
|
+
centerCoordinate: ChunkCoordinatesInput;
|
|
610
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
611
|
+
maxDistance: Scalars['Int']['input'];
|
|
612
|
+
since?: InputMaybe<Scalars['DateTime']['input']>;
|
|
613
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
614
|
+
};
|
|
615
|
+
export type ListVoxelsInput = {
|
|
616
|
+
appId: Scalars['BigInt']['input'];
|
|
617
|
+
coordinates: ChunkCoordinatesInput;
|
|
618
|
+
since?: InputMaybe<Scalars['DateTime']['input']>;
|
|
619
|
+
};
|
|
620
|
+
export type LodData = {
|
|
621
|
+
__typename?: 'LodData';
|
|
622
|
+
data: Scalars['String']['output'];
|
|
623
|
+
level: Scalars['Int']['output'];
|
|
624
|
+
};
|
|
625
|
+
export type LodDataInput = {
|
|
626
|
+
data: Scalars['String']['input'];
|
|
627
|
+
level: Scalars['Int']['input'];
|
|
628
|
+
};
|
|
629
|
+
export type LoginUserInput = {
|
|
630
|
+
email: Scalars['String']['input'];
|
|
631
|
+
password: Scalars['String']['input'];
|
|
632
|
+
};
|
|
633
|
+
export type Mutation = {
|
|
634
|
+
__typename?: 'Mutation';
|
|
635
|
+
archiveAccessTier: AppAccessTier;
|
|
636
|
+
archiveApp: App;
|
|
637
|
+
changePassword: Scalars['Boolean']['output'];
|
|
638
|
+
confirmEmail: Scalars['Boolean']['output'];
|
|
639
|
+
/** Open the UDP proxy session for this game token (idempotent: returns the existing status if one is already open). Binds a socket and selects the game server with the fewest clients on first open. Optional: send mutations and udpNotifications also create a session lazily when none exists. To force a fresh socket, call disconnectUdpProxy first. */
|
|
640
|
+
connectUdpProxy: UdpProxyConnectionStatus;
|
|
641
|
+
createAccessTier: AppAccessTier;
|
|
642
|
+
createActor: Actor;
|
|
643
|
+
createApp: App;
|
|
644
|
+
createAvatar: Avatar;
|
|
645
|
+
/** Creates a Checkout row, opens the provider session, and returns the row with externalUrl set. Redirect the user to externalUrl. Status starts PENDING and updates via webhook. */
|
|
646
|
+
createCheckout: Checkout;
|
|
647
|
+
createGrid: CreateGridResponse;
|
|
648
|
+
createOrgRole: OrgRole;
|
|
649
|
+
/** Returns the plaintext token exactly once. Save it; subsequent queries only show metadata. */
|
|
650
|
+
createOrgToken: OrgTokenWithSecret;
|
|
651
|
+
createOrganization: Organization;
|
|
652
|
+
deleteActor: Actor;
|
|
653
|
+
deleteAvatar: Avatar;
|
|
654
|
+
/** Soft-deletes the caller's account: anonymizes PII, revokes sessions. Wallet, voxel, and donation history stays intact via FK. */
|
|
655
|
+
deleteMyAccount: Scalars['Boolean']['output'];
|
|
656
|
+
deleteOrgRole: Scalars['Boolean']['output'];
|
|
657
|
+
deleteQuota: Scalars['Boolean']['output'];
|
|
658
|
+
deleteUserAppState: UserAppState;
|
|
659
|
+
/** 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). */
|
|
660
|
+
disconnectUdpProxy: Scalars['Boolean']['output'];
|
|
661
|
+
forceLogoutUser: Scalars['Boolean']['output'];
|
|
662
|
+
grantAppAccess: AppUserAccess;
|
|
663
|
+
inviteOrgMember: OrgMember;
|
|
664
|
+
login: AuthResponse;
|
|
665
|
+
logout: Scalars['Boolean']['output'];
|
|
666
|
+
logoutAllDevices: Scalars['Boolean']['output'];
|
|
667
|
+
register: AuthResponse;
|
|
668
|
+
removeOrgMember: Scalars['Boolean']['output'];
|
|
669
|
+
requestPasswordReset: Scalars['Boolean']['output'];
|
|
670
|
+
resendConfirmationEmail: Scalars['Boolean']['output'];
|
|
671
|
+
resetPassword: Scalars['Boolean']['output'];
|
|
672
|
+
revokeAppAccess: AppUserAccess;
|
|
673
|
+
revokeOrgToken: Scalars['Boolean']['output'];
|
|
674
|
+
/** Reverts every voxel edit by `userId` in `appId` between `from` and `to`. Gated by the org permission `manage_apps`. Defaults to dryRun=true; pass dryRun=false to apply. */
|
|
675
|
+
rollbackVoxelUpdates: Array<RollbackVoxelEventResult>;
|
|
676
|
+
/** Send an actor update to the game server. Opens a UDP proxy session automatically if none exists. Responses and GenericErrorResponse are delivered on udpNotifications. */
|
|
677
|
+
sendActorUpdate: Scalars['Boolean']['output'];
|
|
678
|
+
/** Send a voice audio packet to the game server. Opens a UDP proxy session automatically if none exists; notifications arrive on udpNotifications. */
|
|
679
|
+
sendAudioPacket: Scalars['Boolean']['output'];
|
|
680
|
+
/** Send a client event to the game server. Opens a UDP proxy session automatically if none exists; related notifications arrive on udpNotifications. */
|
|
681
|
+
sendClientEvent: Scalars['Boolean']['output'];
|
|
682
|
+
/** Send a text (chat) packet to the game server. Opens a UDP proxy session automatically if none exists; notifications arrive on udpNotifications. */
|
|
683
|
+
sendTextPacket: Scalars['Boolean']['output'];
|
|
684
|
+
/** Send a voxel update to the game server. Opens a UDP proxy session automatically if none exists; responses arrive on udpNotifications. */
|
|
685
|
+
sendVoxelUpdate: Scalars['Boolean']['output'];
|
|
686
|
+
setAppBudget: AppBudget;
|
|
687
|
+
/** Super admin only. Used to take down or relist apps platform-wide. */
|
|
688
|
+
setAppVisibility: App;
|
|
689
|
+
setEarlyAccessOverride: User;
|
|
690
|
+
/** Super admin only. Used to freeze/unfreeze orgs platform-wide. */
|
|
691
|
+
setOrgStatus: Organization;
|
|
692
|
+
setQuota: ServiceQuota;
|
|
693
|
+
setSuperAdmin: User;
|
|
694
|
+
teleportRequest: TeleportResponse;
|
|
695
|
+
updateAccessTier: AppAccessTier;
|
|
696
|
+
updateActor: Actor;
|
|
697
|
+
updateActorState: Actor;
|
|
698
|
+
updateApp: App;
|
|
699
|
+
updateAvatar: Avatar;
|
|
700
|
+
updateAvatarState: Avatar;
|
|
701
|
+
updateChunk: Chunk;
|
|
702
|
+
updateChunkLods: Maybe<Chunk>;
|
|
703
|
+
updateChunkState: Maybe<Chunk>;
|
|
704
|
+
updateGamertag: User;
|
|
705
|
+
updateOrgMemberRoles: OrgMember;
|
|
706
|
+
updateOrgRole: OrgRole;
|
|
707
|
+
updateOrgToken: OrgToken;
|
|
708
|
+
updateUserAppState: UserAppState;
|
|
709
|
+
updateUserState: User;
|
|
710
|
+
updateUserType: User;
|
|
711
|
+
updateVoxel: Voxel;
|
|
712
|
+
};
|
|
713
|
+
export type MutationArchiveAccessTierArgs = {
|
|
714
|
+
tierId: Scalars['BigInt']['input'];
|
|
715
|
+
};
|
|
716
|
+
export type MutationArchiveAppArgs = {
|
|
717
|
+
appId: Scalars['BigInt']['input'];
|
|
718
|
+
};
|
|
719
|
+
export type MutationChangePasswordArgs = {
|
|
720
|
+
currentPassword: Scalars['String']['input'];
|
|
721
|
+
newPassword: Scalars['String']['input'];
|
|
722
|
+
};
|
|
723
|
+
export type MutationConfirmEmailArgs = {
|
|
724
|
+
token: Scalars['String']['input'];
|
|
725
|
+
};
|
|
726
|
+
export type MutationConnectUdpProxyArgs = {
|
|
727
|
+
input?: InputMaybe<ConnectUdpProxyInput>;
|
|
728
|
+
};
|
|
729
|
+
export type MutationCreateAccessTierArgs = {
|
|
730
|
+
input: CreateAccessTierInput;
|
|
731
|
+
};
|
|
732
|
+
export type MutationCreateActorArgs = {
|
|
733
|
+
input: CreateActorInput;
|
|
734
|
+
};
|
|
735
|
+
export type MutationCreateAppArgs = {
|
|
736
|
+
input: CreateAppInput;
|
|
737
|
+
};
|
|
738
|
+
export type MutationCreateAvatarArgs = {
|
|
739
|
+
input: CreateAvatarInput;
|
|
740
|
+
};
|
|
741
|
+
export type MutationCreateCheckoutArgs = {
|
|
742
|
+
input: CreateCheckoutInput;
|
|
743
|
+
};
|
|
744
|
+
export type MutationCreateGridArgs = {
|
|
745
|
+
input: CreateGridInput;
|
|
746
|
+
};
|
|
747
|
+
export type MutationCreateOrgRoleArgs = {
|
|
748
|
+
input: CreateOrgRoleInput;
|
|
749
|
+
};
|
|
750
|
+
export type MutationCreateOrgTokenArgs = {
|
|
751
|
+
input: CreateOrgTokenInput;
|
|
752
|
+
};
|
|
753
|
+
export type MutationCreateOrganizationArgs = {
|
|
754
|
+
input: CreateOrganizationInput;
|
|
755
|
+
};
|
|
756
|
+
export type MutationDeleteActorArgs = {
|
|
757
|
+
uuid: Scalars['String']['input'];
|
|
758
|
+
};
|
|
759
|
+
export type MutationDeleteAvatarArgs = {
|
|
760
|
+
id: Scalars['BigInt']['input'];
|
|
761
|
+
};
|
|
762
|
+
export type MutationDeleteOrgRoleArgs = {
|
|
763
|
+
orgRoleId: Scalars['BigInt']['input'];
|
|
764
|
+
};
|
|
765
|
+
export type MutationDeleteQuotaArgs = {
|
|
766
|
+
quotaId: Scalars['BigInt']['input'];
|
|
767
|
+
};
|
|
768
|
+
export type MutationDeleteUserAppStateArgs = {
|
|
769
|
+
appId: Scalars['BigInt']['input'];
|
|
770
|
+
};
|
|
771
|
+
export type MutationForceLogoutUserArgs = {
|
|
772
|
+
userId: Scalars['BigInt']['input'];
|
|
773
|
+
};
|
|
774
|
+
export type MutationGrantAppAccessArgs = {
|
|
775
|
+
input: GrantAppAccessInput;
|
|
776
|
+
};
|
|
777
|
+
export type MutationInviteOrgMemberArgs = {
|
|
778
|
+
input: InviteOrgMemberInput;
|
|
779
|
+
};
|
|
780
|
+
export type MutationLoginArgs = {
|
|
781
|
+
loginUserInput: LoginUserInput;
|
|
782
|
+
};
|
|
783
|
+
export type MutationRegisterArgs = {
|
|
784
|
+
registerUserInput: RegisterUserInput;
|
|
785
|
+
};
|
|
786
|
+
export type MutationRemoveOrgMemberArgs = {
|
|
787
|
+
orgId: Scalars['BigInt']['input'];
|
|
788
|
+
userId: Scalars['BigInt']['input'];
|
|
789
|
+
};
|
|
790
|
+
export type MutationRequestPasswordResetArgs = {
|
|
791
|
+
email: Scalars['String']['input'];
|
|
792
|
+
};
|
|
793
|
+
export type MutationResendConfirmationEmailArgs = {
|
|
794
|
+
email: Scalars['String']['input'];
|
|
795
|
+
};
|
|
796
|
+
export type MutationResetPasswordArgs = {
|
|
797
|
+
resetPasswordInput: ResetPasswordInput;
|
|
798
|
+
};
|
|
799
|
+
export type MutationRevokeAppAccessArgs = {
|
|
800
|
+
appId: Scalars['BigInt']['input'];
|
|
801
|
+
userId: Scalars['BigInt']['input'];
|
|
802
|
+
};
|
|
803
|
+
export type MutationRevokeOrgTokenArgs = {
|
|
804
|
+
orgTokenId: Scalars['BigInt']['input'];
|
|
805
|
+
};
|
|
806
|
+
export type MutationRollbackVoxelUpdatesArgs = {
|
|
807
|
+
input: RollbackVoxelUpdatesInput;
|
|
808
|
+
};
|
|
809
|
+
export type MutationSendActorUpdateArgs = {
|
|
810
|
+
input: ActorUpdateRequestInput;
|
|
811
|
+
};
|
|
812
|
+
export type MutationSendAudioPacketArgs = {
|
|
813
|
+
input: ClientAudioPacketInput;
|
|
814
|
+
};
|
|
815
|
+
export type MutationSendClientEventArgs = {
|
|
816
|
+
input: ClientEventNotificationInput;
|
|
817
|
+
};
|
|
818
|
+
export type MutationSendTextPacketArgs = {
|
|
819
|
+
input: ClientTextPacketInput;
|
|
820
|
+
};
|
|
821
|
+
export type MutationSendVoxelUpdateArgs = {
|
|
822
|
+
input: VoxelUpdateRequestInput;
|
|
823
|
+
};
|
|
824
|
+
export type MutationSetAppBudgetArgs = {
|
|
825
|
+
appId: Scalars['BigInt']['input'];
|
|
826
|
+
monthlyLimitCents: Scalars['BigInt']['input'];
|
|
827
|
+
orgId: Scalars['BigInt']['input'];
|
|
828
|
+
};
|
|
829
|
+
export type MutationSetAppVisibilityArgs = {
|
|
830
|
+
appId: Scalars['BigInt']['input'];
|
|
831
|
+
visibility: AppVisibility;
|
|
832
|
+
};
|
|
833
|
+
export type MutationSetEarlyAccessOverrideArgs = {
|
|
834
|
+
userId: Scalars['BigInt']['input'];
|
|
835
|
+
value: Scalars['Boolean']['input'];
|
|
836
|
+
};
|
|
837
|
+
export type MutationSetOrgStatusArgs = {
|
|
838
|
+
orgId: Scalars['BigInt']['input'];
|
|
839
|
+
status: Scalars['String']['input'];
|
|
840
|
+
};
|
|
841
|
+
export type MutationSetQuotaArgs = {
|
|
842
|
+
input: SetQuotaInput;
|
|
843
|
+
};
|
|
844
|
+
export type MutationSetSuperAdminArgs = {
|
|
845
|
+
userId: Scalars['BigInt']['input'];
|
|
846
|
+
value: Scalars['Boolean']['input'];
|
|
847
|
+
};
|
|
848
|
+
export type MutationTeleportRequestArgs = {
|
|
849
|
+
input: TeleportRequestInput;
|
|
850
|
+
};
|
|
851
|
+
export type MutationUpdateAccessTierArgs = {
|
|
852
|
+
input: UpdateAccessTierInput;
|
|
853
|
+
tierId: Scalars['BigInt']['input'];
|
|
854
|
+
};
|
|
855
|
+
export type MutationUpdateActorArgs = {
|
|
856
|
+
input: UpdateActorInput;
|
|
857
|
+
uuid: Scalars['String']['input'];
|
|
858
|
+
};
|
|
859
|
+
export type MutationUpdateActorStateArgs = {
|
|
860
|
+
input: UpdateActorStateInput;
|
|
861
|
+
uuid: Scalars['String']['input'];
|
|
862
|
+
};
|
|
863
|
+
export type MutationUpdateAppArgs = {
|
|
864
|
+
appId: Scalars['BigInt']['input'];
|
|
865
|
+
input: UpdateAppInput;
|
|
866
|
+
};
|
|
867
|
+
export type MutationUpdateAvatarArgs = {
|
|
868
|
+
id: Scalars['BigInt']['input'];
|
|
869
|
+
input: UpdateAvatarInput;
|
|
870
|
+
};
|
|
871
|
+
export type MutationUpdateAvatarStateArgs = {
|
|
872
|
+
id: Scalars['BigInt']['input'];
|
|
873
|
+
input: UpdateAvatarStateInput;
|
|
874
|
+
};
|
|
875
|
+
export type MutationUpdateChunkArgs = {
|
|
876
|
+
input: ChunkUpdateInput;
|
|
877
|
+
};
|
|
878
|
+
export type MutationUpdateChunkLodsArgs = {
|
|
879
|
+
input: UpdateChunkLodsInput;
|
|
880
|
+
};
|
|
881
|
+
export type MutationUpdateChunkStateArgs = {
|
|
882
|
+
input: UpdateChunkStateInput;
|
|
883
|
+
};
|
|
884
|
+
export type MutationUpdateGamertagArgs = {
|
|
885
|
+
input: UpdateGamertagInput;
|
|
886
|
+
};
|
|
887
|
+
export type MutationUpdateOrgMemberRolesArgs = {
|
|
888
|
+
orgId: Scalars['BigInt']['input'];
|
|
889
|
+
roleIds: Array<Scalars['BigInt']['input']>;
|
|
890
|
+
userId: Scalars['BigInt']['input'];
|
|
891
|
+
};
|
|
892
|
+
export type MutationUpdateOrgRoleArgs = {
|
|
893
|
+
input: UpdateOrgRoleInput;
|
|
894
|
+
orgRoleId: Scalars['BigInt']['input'];
|
|
895
|
+
};
|
|
896
|
+
export type MutationUpdateOrgTokenArgs = {
|
|
897
|
+
input: UpdateOrgTokenInput;
|
|
898
|
+
orgTokenId: Scalars['BigInt']['input'];
|
|
899
|
+
};
|
|
900
|
+
export type MutationUpdateUserAppStateArgs = {
|
|
901
|
+
input: CreateUserAppStateInput;
|
|
902
|
+
};
|
|
903
|
+
export type MutationUpdateUserStateArgs = {
|
|
904
|
+
input: UpdateUserStateInput;
|
|
905
|
+
};
|
|
906
|
+
export type MutationUpdateUserTypeArgs = {
|
|
907
|
+
userId: Scalars['BigInt']['input'];
|
|
908
|
+
value: Scalars['String']['input'];
|
|
909
|
+
};
|
|
910
|
+
export type MutationUpdateVoxelArgs = {
|
|
911
|
+
input: UpdateVoxelInput;
|
|
912
|
+
};
|
|
913
|
+
export type OrgMember = {
|
|
914
|
+
__typename?: 'OrgMember';
|
|
915
|
+
createdAt: Scalars['DateTime']['output'];
|
|
916
|
+
orgId: Scalars['BigInt']['output'];
|
|
917
|
+
orgMemberId: Scalars['BigInt']['output'];
|
|
918
|
+
status: Scalars['String']['output'];
|
|
919
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
920
|
+
userId: Scalars['BigInt']['output'];
|
|
921
|
+
};
|
|
922
|
+
/** Represents one user's membership in one organization. Bundles the org, the union of permissions across the user's assigned roles, and the role list itself - so the UI can render an org dashboard without a follow-up round trip. */
|
|
923
|
+
export type OrgMembership = {
|
|
924
|
+
__typename?: 'OrgMembership';
|
|
925
|
+
joinedAt: Scalars['DateTime']['output'];
|
|
926
|
+
org: Organization;
|
|
927
|
+
permissions: Array<Scalars['String']['output']>;
|
|
928
|
+
roles: Array<OrgRole>;
|
|
929
|
+
};
|
|
930
|
+
export type OrgPermission = {
|
|
931
|
+
__typename?: 'OrgPermission';
|
|
932
|
+
category: Maybe<Scalars['String']['output']>;
|
|
933
|
+
description: Maybe<Scalars['String']['output']>;
|
|
934
|
+
permissionKey: Scalars['ID']['output'];
|
|
935
|
+
};
|
|
936
|
+
export type OrgRole = {
|
|
937
|
+
__typename?: 'OrgRole';
|
|
938
|
+
createdAt: Scalars['DateTime']['output'];
|
|
939
|
+
description: Maybe<Scalars['String']['output']>;
|
|
940
|
+
isSystem: Scalars['Boolean']['output'];
|
|
941
|
+
orgId: Scalars['BigInt']['output'];
|
|
942
|
+
orgRoleId: Scalars['BigInt']['output'];
|
|
943
|
+
permissions: Array<Scalars['String']['output']>;
|
|
944
|
+
roleName: Scalars['String']['output'];
|
|
945
|
+
};
|
|
946
|
+
export type OrgToken = {
|
|
947
|
+
__typename?: 'OrgToken';
|
|
948
|
+
createdAt: Scalars['DateTime']['output'];
|
|
949
|
+
expiresAt: Maybe<Scalars['DateTime']['output']>;
|
|
950
|
+
isActive: Scalars['Boolean']['output'];
|
|
951
|
+
label: Maybe<Scalars['String']['output']>;
|
|
952
|
+
lastUsedAt: Maybe<Scalars['DateTime']['output']>;
|
|
953
|
+
orgId: Scalars['BigInt']['output'];
|
|
954
|
+
orgTokenId: Scalars['BigInt']['output'];
|
|
955
|
+
revokedAt: Maybe<Scalars['DateTime']['output']>;
|
|
956
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
957
|
+
};
|
|
958
|
+
/** Returned exactly once - on org token creation. The plaintext `token` field is never re-emitted. Future listings show metadata only via the `OrgToken` type. */
|
|
959
|
+
export type OrgTokenWithSecret = {
|
|
960
|
+
__typename?: 'OrgTokenWithSecret';
|
|
961
|
+
createdAt: Scalars['DateTime']['output'];
|
|
962
|
+
expiresAt: Maybe<Scalars['DateTime']['output']>;
|
|
963
|
+
isActive: Scalars['Boolean']['output'];
|
|
964
|
+
label: Maybe<Scalars['String']['output']>;
|
|
965
|
+
orgId: Scalars['BigInt']['output'];
|
|
966
|
+
orgTokenId: Scalars['BigInt']['output'];
|
|
967
|
+
/** The plaintext token. Save it now; it is not stored. */
|
|
968
|
+
token: Scalars['String']['output'];
|
|
969
|
+
};
|
|
970
|
+
export type OrgWallet = {
|
|
971
|
+
__typename?: 'OrgWallet';
|
|
972
|
+
balanceCents: Scalars['BigInt']['output'];
|
|
973
|
+
createdAt: Scalars['DateTime']['output'];
|
|
974
|
+
currency: Scalars['String']['output'];
|
|
975
|
+
orgId: Scalars['BigInt']['output'];
|
|
976
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
977
|
+
walletId: Scalars['BigInt']['output'];
|
|
978
|
+
};
|
|
979
|
+
export type Organization = {
|
|
980
|
+
__typename?: 'Organization';
|
|
981
|
+
createdAt: Scalars['DateTime']['output'];
|
|
982
|
+
name: Scalars['String']['output'];
|
|
983
|
+
orgId: Scalars['BigInt']['output'];
|
|
984
|
+
ownerUserId: Scalars['BigInt']['output'];
|
|
985
|
+
slug: Scalars['String']['output'];
|
|
986
|
+
status: Scalars['String']['output'];
|
|
987
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
988
|
+
};
|
|
989
|
+
export type PageInfo = {
|
|
990
|
+
__typename?: 'PageInfo';
|
|
991
|
+
limit: Scalars['Int']['output'];
|
|
992
|
+
offset: Scalars['Int']['output'];
|
|
993
|
+
totalCount: Scalars['Int']['output'];
|
|
994
|
+
};
|
|
995
|
+
/** External payment processor for a checkout. */
|
|
996
|
+
export declare enum PaymentProvider {
|
|
997
|
+
Paypal = "PAYPAL",
|
|
998
|
+
Stripe = "STRIPE"
|
|
999
|
+
}
|
|
1000
|
+
export type Query = {
|
|
1001
|
+
__typename?: 'Query';
|
|
1002
|
+
/** Returns only active (ReadyForClients) GraphQL servers */
|
|
1003
|
+
activeGraphQLServers: Array<GraphQlServer>;
|
|
1004
|
+
actor: Actor;
|
|
1005
|
+
actors: Array<Actor>;
|
|
1006
|
+
app: Maybe<App>;
|
|
1007
|
+
/** Public listing of access tiers for an app. Used by the marketplace app detail page. */
|
|
1008
|
+
appAccessTiers: Array<AppAccessTier>;
|
|
1009
|
+
appBudget: Maybe<AppBudget>;
|
|
1010
|
+
appBudgets: Array<AppBudget>;
|
|
1011
|
+
appBySlug: Maybe<App>;
|
|
1012
|
+
appUserAccessByApp: Array<AppUserAccess>;
|
|
1013
|
+
/** Public marketplace listing. Returns visibility=PUBLIC + status=LIVE only. No auth required. */
|
|
1014
|
+
apps: AppsPage;
|
|
1015
|
+
appsForOrg: Array<App>;
|
|
1016
|
+
avatar: Avatar;
|
|
1017
|
+
batchLookupActors: Array<Actor>;
|
|
1018
|
+
/** Super admin only. Cross-tenant payments audit. */
|
|
1019
|
+
checkouts: CheckoutsPage;
|
|
1020
|
+
/** The most-specific quota that applies to (orgId, appId, tierId, metric). Walks tier -> app -> org -> free_tier_defaults. Returns null if nothing matches. */
|
|
1021
|
+
effectiveQuota: Maybe<ServiceQuota>;
|
|
1022
|
+
freePlayWindowInfo: FreePlayWindowInfo;
|
|
1023
|
+
getChunk: Maybe<Chunk>;
|
|
1024
|
+
getChunkLods: Maybe<ChunkLodsResponse>;
|
|
1025
|
+
getChunksByDistance: ChunksByDistanceResponse;
|
|
1026
|
+
getVoxelList: ChunkVoxelResponse;
|
|
1027
|
+
/** Returns all registered GraphQL servers */
|
|
1028
|
+
graphqlServers: Array<GraphQlServer>;
|
|
1029
|
+
listVoxelUpdatesByDistance: VoxelUpdatesByDistanceResponse;
|
|
1030
|
+
listVoxels: Array<Voxel>;
|
|
1031
|
+
me: Maybe<User>;
|
|
1032
|
+
memberRoles: Array<OrgRole>;
|
|
1033
|
+
myAppAccess: Maybe<AppUserAccess>;
|
|
1034
|
+
/** Apps the caller can see: org member OR active app_user_access. */
|
|
1035
|
+
myApps: Array<App>;
|
|
1036
|
+
myAvatars: Array<AvatarDto>;
|
|
1037
|
+
myCheckouts: CheckoutsPage;
|
|
1038
|
+
myDonationData: UserDonationData;
|
|
1039
|
+
myOrganizations: Array<OrgMembership>;
|
|
1040
|
+
myPropertyTokens: UserPropertyTokenData;
|
|
1041
|
+
orgMembers: Array<OrgMember>;
|
|
1042
|
+
/** The full seed list of permission keys. Used by the UI to render role editors. */
|
|
1043
|
+
orgPermissions: Array<OrgPermission>;
|
|
1044
|
+
orgRoles: Array<OrgRole>;
|
|
1045
|
+
orgTokens: Array<OrgToken>;
|
|
1046
|
+
organization: Maybe<Organization>;
|
|
1047
|
+
organizationBySlug: Maybe<Organization>;
|
|
1048
|
+
quotasForApp: Array<ServiceQuota>;
|
|
1049
|
+
quotasForOrg: Array<ServiceQuota>;
|
|
1050
|
+
/** Returns a random server from the lowest 20% of servers by client count to distribute load evenly */
|
|
1051
|
+
serverWithLeastClients: ServerStatus;
|
|
1052
|
+
/** 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. */
|
|
1053
|
+
udpProxyConnectionStatus: UdpProxyConnectionStatus;
|
|
1054
|
+
user: Maybe<User>;
|
|
1055
|
+
userAppState: Maybe<UserAppState>;
|
|
1056
|
+
userAppStates: Array<UserAppState>;
|
|
1057
|
+
userAvatars: Array<Avatar>;
|
|
1058
|
+
/** Super admin only. Paginated user search; replaces the old `users`/`usersByGamertag`/`usersByEmail` triple. `query` is matched ILIKE-prefix against email, gamertag, disambiguation, and exact user_id. */
|
|
1059
|
+
usersPaginated: UsersPage;
|
|
1060
|
+
/** Returns version information for the server and minimum client version requirements */
|
|
1061
|
+
versionInfo: ServerVersionInfo;
|
|
1062
|
+
voxelUpdateHistory: Array<VoxelUpdateHistoryEvent>;
|
|
1063
|
+
walletBalance: OrgWallet;
|
|
1064
|
+
walletTransactions: Array<WalletTransaction>;
|
|
1065
|
+
};
|
|
1066
|
+
export type QueryActorArgs = {
|
|
1067
|
+
uuid: Scalars['String']['input'];
|
|
1068
|
+
};
|
|
1069
|
+
export type QueryActorsArgs = {
|
|
1070
|
+
filter?: InputMaybe<ActorFilterInput>;
|
|
1071
|
+
};
|
|
1072
|
+
export type QueryAppArgs = {
|
|
1073
|
+
appId: Scalars['BigInt']['input'];
|
|
1074
|
+
};
|
|
1075
|
+
export type QueryAppAccessTiersArgs = {
|
|
1076
|
+
appId: Scalars['BigInt']['input'];
|
|
1077
|
+
};
|
|
1078
|
+
export type QueryAppBudgetArgs = {
|
|
1079
|
+
appId: Scalars['BigInt']['input'];
|
|
1080
|
+
orgId: Scalars['BigInt']['input'];
|
|
1081
|
+
};
|
|
1082
|
+
export type QueryAppBudgetsArgs = {
|
|
1083
|
+
orgId: Scalars['BigInt']['input'];
|
|
1084
|
+
};
|
|
1085
|
+
export type QueryAppBySlugArgs = {
|
|
1086
|
+
appSlug: Scalars['String']['input'];
|
|
1087
|
+
orgSlug: Scalars['String']['input'];
|
|
1088
|
+
};
|
|
1089
|
+
export type QueryAppUserAccessByAppArgs = {
|
|
1090
|
+
appId: Scalars['BigInt']['input'];
|
|
1091
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1092
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1093
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1094
|
+
};
|
|
1095
|
+
export type QueryAppsArgs = {
|
|
1096
|
+
filter?: InputMaybe<AppMarketplaceFilterInput>;
|
|
1097
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1098
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1099
|
+
};
|
|
1100
|
+
export type QueryAppsForOrgArgs = {
|
|
1101
|
+
orgSlug: Scalars['String']['input'];
|
|
1102
|
+
};
|
|
1103
|
+
export type QueryAvatarArgs = {
|
|
1104
|
+
id: Scalars['BigInt']['input'];
|
|
1105
|
+
};
|
|
1106
|
+
export type QueryBatchLookupActorsArgs = {
|
|
1107
|
+
input: BatchActorLookupInput;
|
|
1108
|
+
};
|
|
1109
|
+
export type QueryCheckoutsArgs = {
|
|
1110
|
+
filter?: InputMaybe<CheckoutFilterInput>;
|
|
1111
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1112
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1113
|
+
};
|
|
1114
|
+
export type QueryEffectiveQuotaArgs = {
|
|
1115
|
+
appId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1116
|
+
metric: Scalars['String']['input'];
|
|
1117
|
+
orgId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1118
|
+
tierId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1119
|
+
};
|
|
1120
|
+
export type QueryGetChunkArgs = {
|
|
1121
|
+
input: GetChunkInput;
|
|
1122
|
+
};
|
|
1123
|
+
export type QueryGetChunkLodsArgs = {
|
|
1124
|
+
input: GetChunkLodsInput;
|
|
1125
|
+
};
|
|
1126
|
+
export type QueryGetChunksByDistanceArgs = {
|
|
1127
|
+
input: GetChunksByDistanceInput;
|
|
1128
|
+
};
|
|
1129
|
+
export type QueryGetVoxelListArgs = {
|
|
1130
|
+
input: GetVoxelListInput;
|
|
1131
|
+
};
|
|
1132
|
+
export type QueryListVoxelUpdatesByDistanceArgs = {
|
|
1133
|
+
input: ListVoxelUpdatesByDistanceInput;
|
|
1134
|
+
};
|
|
1135
|
+
export type QueryListVoxelsArgs = {
|
|
1136
|
+
input: ListVoxelsInput;
|
|
1137
|
+
};
|
|
1138
|
+
export type QueryMemberRolesArgs = {
|
|
1139
|
+
orgMemberId: Scalars['BigInt']['input'];
|
|
1140
|
+
};
|
|
1141
|
+
export type QueryMyAppAccessArgs = {
|
|
1142
|
+
appId: Scalars['BigInt']['input'];
|
|
1143
|
+
};
|
|
1144
|
+
export type QueryMyCheckoutsArgs = {
|
|
1145
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1146
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1147
|
+
};
|
|
1148
|
+
export type QueryOrgMembersArgs = {
|
|
1149
|
+
orgId: Scalars['BigInt']['input'];
|
|
1150
|
+
};
|
|
1151
|
+
export type QueryOrgRolesArgs = {
|
|
1152
|
+
orgId: Scalars['BigInt']['input'];
|
|
1153
|
+
};
|
|
1154
|
+
export type QueryOrgTokensArgs = {
|
|
1155
|
+
orgId: Scalars['BigInt']['input'];
|
|
1156
|
+
};
|
|
1157
|
+
export type QueryOrganizationArgs = {
|
|
1158
|
+
id: Scalars['BigInt']['input'];
|
|
1159
|
+
};
|
|
1160
|
+
export type QueryOrganizationBySlugArgs = {
|
|
1161
|
+
slug: Scalars['String']['input'];
|
|
1162
|
+
};
|
|
1163
|
+
export type QueryQuotasForAppArgs = {
|
|
1164
|
+
appId: Scalars['BigInt']['input'];
|
|
1165
|
+
};
|
|
1166
|
+
export type QueryQuotasForOrgArgs = {
|
|
1167
|
+
orgId: Scalars['BigInt']['input'];
|
|
1168
|
+
};
|
|
1169
|
+
export type QueryUserArgs = {
|
|
1170
|
+
id: Scalars['BigInt']['input'];
|
|
1171
|
+
};
|
|
1172
|
+
export type QueryUserAppStateArgs = {
|
|
1173
|
+
appId: Scalars['BigInt']['input'];
|
|
1174
|
+
};
|
|
1175
|
+
export type QueryUserAvatarsArgs = {
|
|
1176
|
+
userId: Scalars['BigInt']['input'];
|
|
1177
|
+
};
|
|
1178
|
+
export type QueryUsersPaginatedArgs = {
|
|
1179
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1180
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1181
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
1182
|
+
};
|
|
1183
|
+
export type QueryVoxelUpdateHistoryArgs = {
|
|
1184
|
+
appId: Scalars['BigInt']['input'];
|
|
1185
|
+
from?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1186
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1187
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1188
|
+
to?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1189
|
+
userId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1190
|
+
};
|
|
1191
|
+
export type QueryWalletBalanceArgs = {
|
|
1192
|
+
orgId: Scalars['BigInt']['input'];
|
|
1193
|
+
};
|
|
1194
|
+
export type QueryWalletTransactionsArgs = {
|
|
1195
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1196
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1197
|
+
orgId: Scalars['BigInt']['input'];
|
|
1198
|
+
};
|
|
1199
|
+
export type RegisterUserInput = {
|
|
1200
|
+
email: Scalars['String']['input'];
|
|
1201
|
+
gamertag?: InputMaybe<Scalars['String']['input']>;
|
|
1202
|
+
password: Scalars['String']['input'];
|
|
1203
|
+
};
|
|
1204
|
+
export type ResetPasswordInput = {
|
|
1205
|
+
newPassword: Scalars['String']['input'];
|
|
1206
|
+
token: Scalars['String']['input'];
|
|
1207
|
+
};
|
|
1208
|
+
export type RollbackVoxelEventResult = {
|
|
1209
|
+
__typename?: 'RollbackVoxelEventResult';
|
|
1210
|
+
appId: Scalars['BigInt']['output'];
|
|
1211
|
+
applied: Scalars['Boolean']['output'];
|
|
1212
|
+
coordinates: ChunkCoordinates;
|
|
1213
|
+
fromVoxelType: Maybe<Scalars['Int']['output']>;
|
|
1214
|
+
location: VoxelCoordinates;
|
|
1215
|
+
plannedAction: Scalars['String']['output'];
|
|
1216
|
+
reason: Maybe<Scalars['String']['output']>;
|
|
1217
|
+
toVoxelType: Maybe<Scalars['Int']['output']>;
|
|
1218
|
+
};
|
|
1219
|
+
export type RollbackVoxelUpdatesInput = {
|
|
1220
|
+
appId: Scalars['BigInt']['input'];
|
|
1221
|
+
dryRun?: Scalars['Boolean']['input'];
|
|
1222
|
+
from: Scalars['DateTime']['input'];
|
|
1223
|
+
to: Scalars['DateTime']['input'];
|
|
1224
|
+
userId: Scalars['BigInt']['input'];
|
|
1225
|
+
};
|
|
1226
|
+
/** Notification received when the server sends a custom event. Received via the udpNotifications subscription. */
|
|
1227
|
+
export type ServerEventNotification = {
|
|
1228
|
+
__typename?: 'ServerEventNotification';
|
|
1229
|
+
/** The ID of the app where the event is occurring. */
|
|
1230
|
+
appId: Scalars['BigInt']['output'];
|
|
1231
|
+
/** The X coordinate of the chunk where the event is located. */
|
|
1232
|
+
chunkX: Scalars['BigInt']['output'];
|
|
1233
|
+
/** The Y coordinate of the chunk where the event is located. */
|
|
1234
|
+
chunkY: Scalars['BigInt']['output'];
|
|
1235
|
+
/** The Z coordinate of the chunk where the event is located. */
|
|
1236
|
+
chunkZ: Scalars['BigInt']['output'];
|
|
1237
|
+
/** Decay algorithm (0-5) from the original message. */
|
|
1238
|
+
decayRate: Scalars['Int']['output'];
|
|
1239
|
+
/** Chunk replication distance (0-8) from the original message. */
|
|
1240
|
+
distance: Scalars['Int']['output'];
|
|
1241
|
+
/** Server-generated epoch milliseconds timestamp. */
|
|
1242
|
+
epochMillis: Scalars['BigInt']['output'];
|
|
1243
|
+
/** The event type ID (uint16). This determines how the event should be processed. */
|
|
1244
|
+
eventType: Scalars['Int']['output'];
|
|
1245
|
+
/** The sender's sequence number for this message (0-255). */
|
|
1246
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
1247
|
+
/** The event state data, base64-encoded. The format is defined by the event type. */
|
|
1248
|
+
state: Scalars['String']['output'];
|
|
1249
|
+
/** The unique identifier of the object controlling this event. */
|
|
1250
|
+
uuid: Scalars['String']['output'];
|
|
1251
|
+
};
|
|
1252
|
+
/** The current state of the server */
|
|
1253
|
+
export declare enum ServerState {
|
|
1254
|
+
Offline = "Offline",
|
|
1255
|
+
ReadyForClients = "ReadyForClients",
|
|
1256
|
+
Starting = "Starting",
|
|
1257
|
+
Stopping = "Stopping"
|
|
1258
|
+
}
|
|
1259
|
+
export type ServerStatus = {
|
|
1260
|
+
__typename?: 'ServerStatus';
|
|
1261
|
+
clientPort: Scalars['Int']['output'];
|
|
1262
|
+
clientRecvBytesPerSec: Maybe<Scalars['Float']['output']>;
|
|
1263
|
+
clientRecvMsgsPerSec: Maybe<Scalars['Float']['output']>;
|
|
1264
|
+
clientSendBytesPerSec: Maybe<Scalars['Float']['output']>;
|
|
1265
|
+
clientSendIndividualMsgsPerSec: Maybe<Scalars['Float']['output']>;
|
|
1266
|
+
clientSendMsgsPerSec: Maybe<Scalars['Float']['output']>;
|
|
1267
|
+
clients: Scalars['Int']['output'];
|
|
1268
|
+
cpuPeakPct: Maybe<Scalars['Float']['output']>;
|
|
1269
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1270
|
+
ip4: Scalars['String']['output'];
|
|
1271
|
+
ip6: Scalars['String']['output'];
|
|
1272
|
+
peerRecvBytesPerSec: Maybe<Scalars['Float']['output']>;
|
|
1273
|
+
peerRecvMsgsPerSec: Maybe<Scalars['Float']['output']>;
|
|
1274
|
+
peerSendBytesPerSec: Maybe<Scalars['Float']['output']>;
|
|
1275
|
+
peerSendMsgsPerSec: Maybe<Scalars['Float']['output']>;
|
|
1276
|
+
peers: Scalars['Int']['output'];
|
|
1277
|
+
serverId: Scalars['ID']['output'];
|
|
1278
|
+
status: ServerState;
|
|
1279
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1280
|
+
};
|
|
1281
|
+
export type ServerVersionInfo = {
|
|
1282
|
+
__typename?: 'ServerVersionInfo';
|
|
1283
|
+
/** Minimum accepted client version */
|
|
1284
|
+
minimumClientVersion: VersionInfo;
|
|
1285
|
+
/** Current server version */
|
|
1286
|
+
serverVersion: VersionInfo;
|
|
1287
|
+
};
|
|
1288
|
+
export type ServiceQuota = {
|
|
1289
|
+
__typename?: 'ServiceQuota';
|
|
1290
|
+
actionOnExceed: Scalars['String']['output'];
|
|
1291
|
+
appId: Maybe<Scalars['BigInt']['output']>;
|
|
1292
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1293
|
+
limitValue: Scalars['BigInt']['output'];
|
|
1294
|
+
metric: Scalars['String']['output'];
|
|
1295
|
+
orgId: Maybe<Scalars['BigInt']['output']>;
|
|
1296
|
+
period: Scalars['String']['output'];
|
|
1297
|
+
quotaId: Scalars['BigInt']['output'];
|
|
1298
|
+
tierId: Maybe<Scalars['BigInt']['output']>;
|
|
1299
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1300
|
+
};
|
|
1301
|
+
export type SetQuotaInput = {
|
|
1302
|
+
actionOnExceed?: InputMaybe<Scalars['String']['input']>;
|
|
1303
|
+
appId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1304
|
+
limitValue: Scalars['BigInt']['input'];
|
|
1305
|
+
metric: Scalars['String']['input'];
|
|
1306
|
+
orgId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1307
|
+
period?: InputMaybe<Scalars['String']['input']>;
|
|
1308
|
+
tierId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1309
|
+
};
|
|
1310
|
+
export type Subscription = {
|
|
1311
|
+
__typename?: 'Subscription';
|
|
1312
|
+
/** Downlink from the game server (responses, notifications, GenericErrorResponse). On subscribe, opens a UDP proxy session if none exists (least-loaded server). Requires a game token—without one, yields a single null then ends. Connection failures may yield null. Unsubscribing stops delivery only; call disconnectUdpProxy to release the session. */
|
|
1313
|
+
udpNotifications: Maybe<UdpNotification>;
|
|
1314
|
+
};
|
|
1315
|
+
export type TeleportRequestInput = {
|
|
1316
|
+
UUID: Scalars['String']['input'];
|
|
1317
|
+
appId: Scalars['BigInt']['input'];
|
|
1318
|
+
chunkAddress: ChunkCoordinatesInput;
|
|
1319
|
+
voxelAddress: VoxelCoordinatesInput;
|
|
1320
|
+
};
|
|
1321
|
+
export type TeleportResponse = {
|
|
1322
|
+
__typename?: 'TeleportResponse';
|
|
1323
|
+
errorCode: UdpErrorCode;
|
|
1324
|
+
success: Scalars['Boolean']['output'];
|
|
1325
|
+
};
|
|
1326
|
+
/** Error codes returned by UDP game servers in response messages. NO_ERROR (0) indicates success, all other values indicate various error conditions. */
|
|
1327
|
+
export declare enum UdpErrorCode {
|
|
1328
|
+
AppNotFound = "APP_NOT_FOUND",
|
|
1329
|
+
AppNotLoaded = "APP_NOT_LOADED",
|
|
1330
|
+
BadPassword = "BAD_PASSWORD",
|
|
1331
|
+
ChunkNotFound = "CHUNK_NOT_FOUND",
|
|
1332
|
+
EmailAlreadyExists = "EMAIL_ALREADY_EXISTS",
|
|
1333
|
+
EmailInvalid = "EMAIL_INVALID",
|
|
1334
|
+
EmailNotFound = "EMAIL_NOT_FOUND",
|
|
1335
|
+
EmailTooLong = "EMAIL_TOO_LONG",
|
|
1336
|
+
EmailTooShort = "EMAIL_TOO_SHORT",
|
|
1337
|
+
GamertagAlreadyExists = "GAMERTAG_ALREADY_EXISTS",
|
|
1338
|
+
GameTokenWrongSize = "GAME_TOKEN_WRONG_SIZE",
|
|
1339
|
+
GridAlreadyExists = "GRID_ALREADY_EXISTS",
|
|
1340
|
+
GridOutsideAssignment = "GRID_OUTSIDE_ASSIGNMENT",
|
|
1341
|
+
GridOverlapsExisting = "GRID_OVERLAPS_EXISTING",
|
|
1342
|
+
InvalidAppId = "INVALID_APP_ID",
|
|
1343
|
+
InvalidGridCoordinates = "INVALID_GRID_COORDINATES",
|
|
1344
|
+
InvalidRequest = "INVALID_REQUEST",
|
|
1345
|
+
InvalidStateData = "INVALID_STATE_DATA",
|
|
1346
|
+
InvalidToken = "INVALID_TOKEN",
|
|
1347
|
+
InvalidTokenLength = "INVALID_TOKEN_LENGTH",
|
|
1348
|
+
NameTooLong = "NAME_TOO_LONG",
|
|
1349
|
+
NoError = "NO_ERROR",
|
|
1350
|
+
NoMatchingGridAssignment = "NO_MATCHING_GRID_ASSIGNMENT",
|
|
1351
|
+
PasswordTooLong = "PASSWORD_TOO_LONG",
|
|
1352
|
+
PasswordTooShort = "PASSWORD_TOO_SHORT",
|
|
1353
|
+
Unauthorized = "UNAUTHORIZED",
|
|
1354
|
+
UnknownError = "UNKNOWN_ERROR",
|
|
1355
|
+
UserNotAppAdmin = "USER_NOT_APP_ADMIN",
|
|
1356
|
+
UserNotAuthenticated = "USER_NOT_AUTHENTICATED"
|
|
1357
|
+
}
|
|
1358
|
+
/** All game-server messages delivered over the UDP proxy as GraphQL payloads. Subscribe to udpNotifications before or with sending mutations so responses and GenericErrorResponse (correlate via sequenceNumber) are not missed. */
|
|
1359
|
+
export type UdpNotification = ActorUpdateNotification | ActorUpdateResponse | ClientAudioNotification | ClientEventNotification | ClientTextNotification | GenericErrorResponse | ServerEventNotification | VoxelUpdateNotification | VoxelUpdateResponse;
|
|
1360
|
+
/** UDP proxy session for the game token on the request. Returned by udpProxyConnectionStatus and connectUdpProxy. Binary UDP layouts are documented in database/client-wire-formats.md. */
|
|
1361
|
+
export type UdpProxyConnectionStatus = {
|
|
1362
|
+
__typename?: 'UdpProxyConnectionStatus';
|
|
1363
|
+
/** Whether the user is currently connected to a UDP game server through the proxy. */
|
|
1364
|
+
connected: Scalars['Boolean']['output'];
|
|
1365
|
+
/** Timestamp of the last message received from the UDP server (only present when connected). Used to detect connection health. */
|
|
1366
|
+
lastMessageTime: Maybe<Scalars['DateTime']['output']>;
|
|
1367
|
+
/** The client port of the UDP game server (only present when connected). This is the port that native clients would connect to directly. */
|
|
1368
|
+
serverClientPort: Maybe<Scalars['Int']['output']>;
|
|
1369
|
+
/** The IPv6 address of the UDP game server (only present when connected). */
|
|
1370
|
+
serverIp6: Maybe<Scalars['String']['output']>;
|
|
1371
|
+
};
|
|
1372
|
+
export type UpdateAccessTierInput = {
|
|
1373
|
+
billingPeriod?: InputMaybe<Scalars['String']['input']>;
|
|
1374
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1375
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1376
|
+
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1377
|
+
isFree?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1378
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1379
|
+
paypalPlanId?: InputMaybe<Scalars['String']['input']>;
|
|
1380
|
+
priceCents?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1381
|
+
stripePriceId?: InputMaybe<Scalars['String']['input']>;
|
|
1382
|
+
tierOrder?: InputMaybe<Scalars['Int']['input']>;
|
|
1383
|
+
};
|
|
1384
|
+
export type UpdateActorInput = {
|
|
1385
|
+
appId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1386
|
+
avatarId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1387
|
+
chunk?: InputMaybe<ChunkCoordinatesInput>;
|
|
1388
|
+
privateState?: InputMaybe<Scalars['String']['input']>;
|
|
1389
|
+
publicState?: InputMaybe<Scalars['String']['input']>;
|
|
1390
|
+
};
|
|
1391
|
+
export type UpdateActorStateInput = {
|
|
1392
|
+
privateState?: InputMaybe<Scalars['String']['input']>;
|
|
1393
|
+
publicState?: InputMaybe<Scalars['String']['input']>;
|
|
1394
|
+
};
|
|
1395
|
+
export type UpdateAppInput = {
|
|
1396
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1397
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
1398
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1399
|
+
status?: InputMaybe<AppStatus>;
|
|
1400
|
+
visibility?: InputMaybe<AppVisibility>;
|
|
1401
|
+
};
|
|
1402
|
+
export type UpdateAvatarInput = {
|
|
1403
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1404
|
+
};
|
|
1405
|
+
export type UpdateAvatarStateInput = {
|
|
1406
|
+
privateState?: InputMaybe<Scalars['String']['input']>;
|
|
1407
|
+
publicState?: InputMaybe<Scalars['String']['input']>;
|
|
1408
|
+
};
|
|
1409
|
+
export type UpdateChunkLodsInput = {
|
|
1410
|
+
appId: Scalars['BigInt']['input'];
|
|
1411
|
+
coordinates: ChunkCoordinatesInput;
|
|
1412
|
+
lods: Array<LodDataInput>;
|
|
1413
|
+
};
|
|
1414
|
+
export type UpdateChunkStateInput = {
|
|
1415
|
+
appId: Scalars['BigInt']['input'];
|
|
1416
|
+
chunkState?: InputMaybe<Scalars['String']['input']>;
|
|
1417
|
+
coordinates: ChunkCoordinatesInput;
|
|
1418
|
+
};
|
|
1419
|
+
export type UpdateGamertagInput = {
|
|
1420
|
+
disambiguation: Scalars['String']['input'];
|
|
1421
|
+
gamertag: Scalars['String']['input'];
|
|
1422
|
+
};
|
|
1423
|
+
export type UpdateOrgRoleInput = {
|
|
1424
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1425
|
+
permissions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1426
|
+
roleName?: InputMaybe<Scalars['String']['input']>;
|
|
1427
|
+
};
|
|
1428
|
+
export type UpdateOrgTokenInput = {
|
|
1429
|
+
expiresAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1430
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1431
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
1432
|
+
};
|
|
1433
|
+
export type UpdateUserStateInput = {
|
|
1434
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
1435
|
+
};
|
|
1436
|
+
export type UpdateVoxelInput = {
|
|
1437
|
+
appId: Scalars['BigInt']['input'];
|
|
1438
|
+
coordinates: ChunkCoordinatesInput;
|
|
1439
|
+
location: VoxelCoordinatesInput;
|
|
1440
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
1441
|
+
voxelType: Scalars['Float']['input'];
|
|
1442
|
+
};
|
|
1443
|
+
export type User = {
|
|
1444
|
+
__typename?: 'User';
|
|
1445
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1446
|
+
disambiguation: Maybe<Scalars['String']['output']>;
|
|
1447
|
+
email: Maybe<Scalars['String']['output']>;
|
|
1448
|
+
externalId: Maybe<Scalars['String']['output']>;
|
|
1449
|
+
gamertag: Maybe<Scalars['String']['output']>;
|
|
1450
|
+
grantEarlyAccess: Scalars['Boolean']['output'];
|
|
1451
|
+
grantEarlyAccessOverride: Scalars['Boolean']['output'];
|
|
1452
|
+
isConfirmed: Scalars['Boolean']['output'];
|
|
1453
|
+
isSuperAdmin: Scalars['Boolean']['output'];
|
|
1454
|
+
orgId: Maybe<Scalars['BigInt']['output']>;
|
|
1455
|
+
/** The current user's effective permission keys on the given org. Empty if not a member. Always full set if super admin. */
|
|
1456
|
+
permissionsForOrg: Array<Scalars['String']['output']>;
|
|
1457
|
+
state: Maybe<Scalars['String']['output']>;
|
|
1458
|
+
userId: Scalars['BigInt']['output'];
|
|
1459
|
+
userType: Scalars['String']['output'];
|
|
1460
|
+
};
|
|
1461
|
+
export type UserPermissionsForOrgArgs = {
|
|
1462
|
+
orgId: Scalars['BigInt']['input'];
|
|
1463
|
+
};
|
|
1464
|
+
export type UserAppState = {
|
|
1465
|
+
__typename?: 'UserAppState';
|
|
1466
|
+
appId: Scalars['BigInt']['output'];
|
|
1467
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1468
|
+
state: Maybe<Scalars['String']['output']>;
|
|
1469
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1470
|
+
userId: Scalars['BigInt']['output'];
|
|
1471
|
+
};
|
|
1472
|
+
export type UserDonationData = {
|
|
1473
|
+
__typename?: 'UserDonationData';
|
|
1474
|
+
currency: Scalars['String']['output'];
|
|
1475
|
+
totalAmountCents: Scalars['String']['output'];
|
|
1476
|
+
};
|
|
1477
|
+
export type UserPropertyTokenData = {
|
|
1478
|
+
__typename?: 'UserPropertyTokenData';
|
|
1479
|
+
available: Scalars['String']['output'];
|
|
1480
|
+
inUse: Scalars['String']['output'];
|
|
1481
|
+
total: Scalars['String']['output'];
|
|
1482
|
+
};
|
|
1483
|
+
export type UsersPage = {
|
|
1484
|
+
__typename?: 'UsersPage';
|
|
1485
|
+
items: Array<User>;
|
|
1486
|
+
pageInfo: PageInfo;
|
|
1487
|
+
};
|
|
1488
|
+
export type VersionInfo = {
|
|
1489
|
+
__typename?: 'VersionInfo';
|
|
1490
|
+
/** Build number */
|
|
1491
|
+
build: Scalars['Int']['output'];
|
|
1492
|
+
/** Major version number */
|
|
1493
|
+
major: Scalars['Int']['output'];
|
|
1494
|
+
/** Minor version number */
|
|
1495
|
+
minor: Scalars['Int']['output'];
|
|
1496
|
+
/** Patch version number */
|
|
1497
|
+
patch: Scalars['Int']['output'];
|
|
1498
|
+
};
|
|
1499
|
+
export type Voxel = {
|
|
1500
|
+
__typename?: 'Voxel';
|
|
1501
|
+
appId: Scalars['BigInt']['output'];
|
|
1502
|
+
coordinates: ChunkCoordinates;
|
|
1503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1504
|
+
createdBy: Scalars['BigInt']['output'];
|
|
1505
|
+
location: VoxelCoordinates;
|
|
1506
|
+
state: Maybe<Scalars['String']['output']>;
|
|
1507
|
+
voxelType: Scalars['Int']['output'];
|
|
1508
|
+
voxelUpdateId: Scalars['BigInt']['output'];
|
|
1509
|
+
};
|
|
1510
|
+
export type VoxelCoordinates = {
|
|
1511
|
+
__typename?: 'VoxelCoordinates';
|
|
1512
|
+
x: Scalars['Int']['output'];
|
|
1513
|
+
y: Scalars['Int']['output'];
|
|
1514
|
+
z: Scalars['Int']['output'];
|
|
1515
|
+
};
|
|
1516
|
+
export type VoxelCoordinatesInput = {
|
|
1517
|
+
x: Scalars['Int']['input'];
|
|
1518
|
+
y: Scalars['Int']['input'];
|
|
1519
|
+
z: Scalars['Int']['input'];
|
|
1520
|
+
};
|
|
1521
|
+
export type VoxelState = {
|
|
1522
|
+
__typename?: 'VoxelState';
|
|
1523
|
+
state: Maybe<Scalars['String']['output']>;
|
|
1524
|
+
voxelCoord: VoxelCoordinates;
|
|
1525
|
+
voxelType: Scalars['Int']['output'];
|
|
1526
|
+
};
|
|
1527
|
+
export type VoxelStateInput = {
|
|
1528
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
1529
|
+
voxelCoord: VoxelCoordinatesInput;
|
|
1530
|
+
voxelType: Scalars['Int']['input'];
|
|
1531
|
+
};
|
|
1532
|
+
export type VoxelUpdateHistoryEvent = {
|
|
1533
|
+
__typename?: 'VoxelUpdateHistoryEvent';
|
|
1534
|
+
appId: Scalars['BigInt']['output'];
|
|
1535
|
+
changedAt: Scalars['DateTime']['output'];
|
|
1536
|
+
changedBy: Maybe<Scalars['BigInt']['output']>;
|
|
1537
|
+
coordinates: ChunkCoordinates;
|
|
1538
|
+
id: Scalars['BigInt']['output'];
|
|
1539
|
+
location: VoxelCoordinates;
|
|
1540
|
+
newVoxelType: Maybe<Scalars['Int']['output']>;
|
|
1541
|
+
oldVoxelType: Maybe<Scalars['Int']['output']>;
|
|
1542
|
+
};
|
|
1543
|
+
/** Notification received when a voxel (block) is updated by another client or the server. Received via the udpNotifications subscription. */
|
|
1544
|
+
export type VoxelUpdateNotification = {
|
|
1545
|
+
__typename?: 'VoxelUpdateNotification';
|
|
1546
|
+
/** The ID of the app where the voxel is located. */
|
|
1547
|
+
appId: Scalars['BigInt']['output'];
|
|
1548
|
+
/** The X coordinate of the chunk containing the voxel. */
|
|
1549
|
+
chunkX: Scalars['BigInt']['output'];
|
|
1550
|
+
/** The Y coordinate of the chunk containing the voxel. */
|
|
1551
|
+
chunkY: Scalars['BigInt']['output'];
|
|
1552
|
+
/** The Z coordinate of the chunk containing the voxel. */
|
|
1553
|
+
chunkZ: Scalars['BigInt']['output'];
|
|
1554
|
+
/** Decay algorithm (0-5) from the original message. */
|
|
1555
|
+
decayRate: Scalars['Int']['output'];
|
|
1556
|
+
/** Chunk replication distance (0-8) from the original message. */
|
|
1557
|
+
distance: Scalars['Int']['output'];
|
|
1558
|
+
/** Server-generated epoch milliseconds timestamp. */
|
|
1559
|
+
epochMillis: Scalars['BigInt']['output'];
|
|
1560
|
+
/** The sender's sequence number for this message (0-255). */
|
|
1561
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
1562
|
+
/** The unique identifier for this voxel update. */
|
|
1563
|
+
uuid: Scalars['String']['output'];
|
|
1564
|
+
/** The voxel state data, base64-encoded. */
|
|
1565
|
+
voxelState: Scalars['String']['output'];
|
|
1566
|
+
/** The voxel type ID that was set. */
|
|
1567
|
+
voxelType: Scalars['Int']['output'];
|
|
1568
|
+
/** The X coordinate of the voxel within the chunk. */
|
|
1569
|
+
voxelX: Scalars['Int']['output'];
|
|
1570
|
+
/** The Y coordinate of the voxel within the chunk. */
|
|
1571
|
+
voxelY: Scalars['Int']['output'];
|
|
1572
|
+
/** The Z coordinate of the voxel within the chunk. */
|
|
1573
|
+
voxelZ: Scalars['Int']['output'];
|
|
1574
|
+
};
|
|
1575
|
+
/** Input for sending a voxel update request to the UDP game server. This updates a single voxel (block) in a specific chunk. Voxel coordinates are relative to the chunk. */
|
|
1576
|
+
export type VoxelUpdateRequestInput = {
|
|
1577
|
+
/** The ID of the app where the voxel is located. */
|
|
1578
|
+
appId: Scalars['BigInt']['input'];
|
|
1579
|
+
/** The chunk coordinates containing the voxel. A chunk is a 16x16x16 voxel cube. */
|
|
1580
|
+
chunk: ChunkCoordinatesInput;
|
|
1581
|
+
/** Decay algorithm for replication: 0 = none, 1 = exponential, 2 = linear 50%, 3 = linear 25%, 4 = linear 10%, 5 = linear 5%. Defaults to 0 (none) for voxel updates. */
|
|
1582
|
+
decayRate?: InputMaybe<Scalars['Int']['input']>;
|
|
1583
|
+
/** Chunk replication distance (0-8). Defaults to 8 for voxel updates. Clamped to 0-8. */
|
|
1584
|
+
distance?: InputMaybe<Scalars['Int']['input']>;
|
|
1585
|
+
/** Client's sequence number for this message (0-255, wraps). Used to match error responses. */
|
|
1586
|
+
sequenceNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
1587
|
+
/** A unique identifier for this voxel update. Must be exactly 32 bytes when encoded as UTF-8. */
|
|
1588
|
+
uuid: Scalars['String']['input'];
|
|
1589
|
+
/** The voxel coordinates within the chunk. Values must be between -32768 and 32767 (int16 range). */
|
|
1590
|
+
voxel: VoxelCoordinatesInput;
|
|
1591
|
+
/** The voxel state data, base64-encoded. */
|
|
1592
|
+
voxelState: Scalars['String']['input'];
|
|
1593
|
+
/** The new voxel type ID. This determines the appearance and properties of the voxel. */
|
|
1594
|
+
voxelType: Scalars['Int']['input'];
|
|
1595
|
+
};
|
|
1596
|
+
/** Response from the UDP game server for a voxel update request. Received via the udpNotifications subscription. */
|
|
1597
|
+
export type VoxelUpdateResponse = {
|
|
1598
|
+
__typename?: 'VoxelUpdateResponse';
|
|
1599
|
+
/** The ID of the app where the voxel update was processed. */
|
|
1600
|
+
appId: Scalars['BigInt']['output'];
|
|
1601
|
+
/** The X coordinate of the chunk containing the voxel. */
|
|
1602
|
+
chunkX: Scalars['BigInt']['output'];
|
|
1603
|
+
/** The Y coordinate of the chunk containing the voxel. */
|
|
1604
|
+
chunkY: Scalars['BigInt']['output'];
|
|
1605
|
+
/** The Z coordinate of the chunk containing the voxel. */
|
|
1606
|
+
chunkZ: Scalars['BigInt']['output'];
|
|
1607
|
+
/** Decay algorithm (0-5) from the original message. */
|
|
1608
|
+
decayRate: Scalars['Int']['output'];
|
|
1609
|
+
/** Chunk replication distance (0-8) from the original message. */
|
|
1610
|
+
distance: Scalars['Int']['output'];
|
|
1611
|
+
/** Server-generated epoch milliseconds timestamp. */
|
|
1612
|
+
epochMillis: Scalars['BigInt']['output'];
|
|
1613
|
+
/** The sequence number echoed back from the request, used to correlate responses. */
|
|
1614
|
+
sequenceNumber: Scalars['Int']['output'];
|
|
1615
|
+
/** The unique identifier for this voxel update. */
|
|
1616
|
+
uuid: Scalars['String']['output'];
|
|
1617
|
+
};
|
|
1618
|
+
export type VoxelUpdatesByDistanceResponse = {
|
|
1619
|
+
__typename?: 'VoxelUpdatesByDistanceResponse';
|
|
1620
|
+
centerCoordinate: ChunkCoordinates;
|
|
1621
|
+
chunks: Array<ChunkVoxelUpdatesResponse>;
|
|
1622
|
+
limit: Maybe<Scalars['Int']['output']>;
|
|
1623
|
+
skip: Maybe<Scalars['Int']['output']>;
|
|
1624
|
+
};
|
|
1625
|
+
export type WalletTransaction = {
|
|
1626
|
+
__typename?: 'WalletTransaction';
|
|
1627
|
+
amountCents: Scalars['BigInt']['output'];
|
|
1628
|
+
appId: Maybe<Scalars['BigInt']['output']>;
|
|
1629
|
+
balanceAfter: Scalars['BigInt']['output'];
|
|
1630
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1631
|
+
description: Maybe<Scalars['String']['output']>;
|
|
1632
|
+
orgId: Scalars['BigInt']['output'];
|
|
1633
|
+
referenceId: Maybe<Scalars['String']['output']>;
|
|
1634
|
+
transactionId: Scalars['BigInt']['output'];
|
|
1635
|
+
transactionType: Scalars['String']['output'];
|
|
1636
|
+
walletId: Scalars['BigInt']['output'];
|
|
1637
|
+
};
|
|
1638
|
+
export type ActorQueryVariables = Exact<{
|
|
1639
|
+
uuid: Scalars['String']['input'];
|
|
1640
|
+
}>;
|
|
1641
|
+
export type ActorQuery = {
|
|
1642
|
+
__typename?: 'Query';
|
|
1643
|
+
actor: {
|
|
1644
|
+
__typename?: 'Actor';
|
|
1645
|
+
uuid: string;
|
|
1646
|
+
appId: string;
|
|
1647
|
+
userId: string;
|
|
1648
|
+
avatarId: string | null;
|
|
1649
|
+
privateState: string | null;
|
|
1650
|
+
publicState: string | null;
|
|
1651
|
+
createdAt: string;
|
|
1652
|
+
chunk: {
|
|
1653
|
+
__typename?: 'ChunkCoordinates';
|
|
1654
|
+
x: string;
|
|
1655
|
+
y: string;
|
|
1656
|
+
z: string;
|
|
1657
|
+
};
|
|
1658
|
+
};
|
|
1659
|
+
};
|
|
1660
|
+
export type ActorsQueryVariables = Exact<{
|
|
1661
|
+
filter?: InputMaybe<ActorFilterInput>;
|
|
1662
|
+
}>;
|
|
1663
|
+
export type ActorsQuery = {
|
|
1664
|
+
__typename?: 'Query';
|
|
1665
|
+
actors: Array<{
|
|
1666
|
+
__typename?: 'Actor';
|
|
1667
|
+
uuid: string;
|
|
1668
|
+
appId: string;
|
|
1669
|
+
userId: string;
|
|
1670
|
+
avatarId: string | null;
|
|
1671
|
+
privateState: string | null;
|
|
1672
|
+
publicState: string | null;
|
|
1673
|
+
createdAt: string;
|
|
1674
|
+
chunk: {
|
|
1675
|
+
__typename?: 'ChunkCoordinates';
|
|
1676
|
+
x: string;
|
|
1677
|
+
y: string;
|
|
1678
|
+
z: string;
|
|
1679
|
+
};
|
|
1680
|
+
}>;
|
|
1681
|
+
};
|
|
1682
|
+
export type BatchLookupActorsQueryVariables = Exact<{
|
|
1683
|
+
input: BatchActorLookupInput;
|
|
1684
|
+
}>;
|
|
1685
|
+
export type BatchLookupActorsQuery = {
|
|
1686
|
+
__typename?: 'Query';
|
|
1687
|
+
batchLookupActors: Array<{
|
|
1688
|
+
__typename?: 'Actor';
|
|
1689
|
+
uuid: string;
|
|
1690
|
+
appId: string;
|
|
1691
|
+
userId: string;
|
|
1692
|
+
avatarId: string | null;
|
|
1693
|
+
privateState: string | null;
|
|
1694
|
+
publicState: string | null;
|
|
1695
|
+
createdAt: string;
|
|
1696
|
+
chunk: {
|
|
1697
|
+
__typename?: 'ChunkCoordinates';
|
|
1698
|
+
x: string;
|
|
1699
|
+
y: string;
|
|
1700
|
+
z: string;
|
|
1701
|
+
};
|
|
1702
|
+
}>;
|
|
1703
|
+
};
|
|
1704
|
+
export type CreateActorMutationVariables = Exact<{
|
|
1705
|
+
input: CreateActorInput;
|
|
1706
|
+
}>;
|
|
1707
|
+
export type CreateActorMutation = {
|
|
1708
|
+
__typename?: 'Mutation';
|
|
1709
|
+
createActor: {
|
|
1710
|
+
__typename?: 'Actor';
|
|
1711
|
+
uuid: string;
|
|
1712
|
+
appId: string;
|
|
1713
|
+
userId: string;
|
|
1714
|
+
avatarId: string | null;
|
|
1715
|
+
privateState: string | null;
|
|
1716
|
+
publicState: string | null;
|
|
1717
|
+
createdAt: string;
|
|
1718
|
+
chunk: {
|
|
1719
|
+
__typename?: 'ChunkCoordinates';
|
|
1720
|
+
x: string;
|
|
1721
|
+
y: string;
|
|
1722
|
+
z: string;
|
|
1723
|
+
};
|
|
1724
|
+
};
|
|
1725
|
+
};
|
|
1726
|
+
export type DeleteActorMutationVariables = Exact<{
|
|
1727
|
+
uuid: Scalars['String']['input'];
|
|
1728
|
+
}>;
|
|
1729
|
+
export type DeleteActorMutation = {
|
|
1730
|
+
__typename?: 'Mutation';
|
|
1731
|
+
deleteActor: {
|
|
1732
|
+
__typename?: 'Actor';
|
|
1733
|
+
uuid: string;
|
|
1734
|
+
appId: string;
|
|
1735
|
+
userId: string;
|
|
1736
|
+
};
|
|
1737
|
+
};
|
|
1738
|
+
export type UpdateActorMutationVariables = Exact<{
|
|
1739
|
+
uuid: Scalars['String']['input'];
|
|
1740
|
+
input: UpdateActorInput;
|
|
1741
|
+
}>;
|
|
1742
|
+
export type UpdateActorMutation = {
|
|
1743
|
+
__typename?: 'Mutation';
|
|
1744
|
+
updateActor: {
|
|
1745
|
+
__typename?: 'Actor';
|
|
1746
|
+
uuid: string;
|
|
1747
|
+
appId: string;
|
|
1748
|
+
userId: string;
|
|
1749
|
+
avatarId: string | null;
|
|
1750
|
+
privateState: string | null;
|
|
1751
|
+
publicState: string | null;
|
|
1752
|
+
createdAt: string;
|
|
1753
|
+
chunk: {
|
|
1754
|
+
__typename?: 'ChunkCoordinates';
|
|
1755
|
+
x: string;
|
|
1756
|
+
y: string;
|
|
1757
|
+
z: string;
|
|
1758
|
+
};
|
|
1759
|
+
};
|
|
1760
|
+
};
|
|
1761
|
+
export type UpdateActorStateMutationVariables = Exact<{
|
|
1762
|
+
uuid: Scalars['String']['input'];
|
|
1763
|
+
input: UpdateActorStateInput;
|
|
1764
|
+
}>;
|
|
1765
|
+
export type UpdateActorStateMutation = {
|
|
1766
|
+
__typename?: 'Mutation';
|
|
1767
|
+
updateActorState: {
|
|
1768
|
+
__typename?: 'Actor';
|
|
1769
|
+
uuid: string;
|
|
1770
|
+
appId: string;
|
|
1771
|
+
userId: string;
|
|
1772
|
+
privateState: string | null;
|
|
1773
|
+
publicState: string | null;
|
|
1774
|
+
};
|
|
1775
|
+
};
|
|
1776
|
+
export type AppAccessTiersQueryVariables = Exact<{
|
|
1777
|
+
appId: Scalars['BigInt']['input'];
|
|
1778
|
+
}>;
|
|
1779
|
+
export type AppAccessTiersQuery = {
|
|
1780
|
+
__typename?: 'Query';
|
|
1781
|
+
appAccessTiers: Array<{
|
|
1782
|
+
__typename?: 'AppAccessTier';
|
|
1783
|
+
tierId: string;
|
|
1784
|
+
appId: string;
|
|
1785
|
+
name: string;
|
|
1786
|
+
tierOrder: number;
|
|
1787
|
+
isFree: boolean;
|
|
1788
|
+
isDefault: boolean;
|
|
1789
|
+
priceCents: string | null;
|
|
1790
|
+
currency: string | null;
|
|
1791
|
+
billingPeriod: string | null;
|
|
1792
|
+
description: string | null;
|
|
1793
|
+
status: string;
|
|
1794
|
+
createdAt: string;
|
|
1795
|
+
updatedAt: string;
|
|
1796
|
+
}>;
|
|
1797
|
+
};
|
|
1798
|
+
export type AppUserAccessByAppQueryVariables = Exact<{
|
|
1799
|
+
appId: Scalars['BigInt']['input'];
|
|
1800
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1801
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1802
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1803
|
+
}>;
|
|
1804
|
+
export type AppUserAccessByAppQuery = {
|
|
1805
|
+
__typename?: 'Query';
|
|
1806
|
+
appUserAccessByApp: Array<{
|
|
1807
|
+
__typename?: 'AppUserAccess';
|
|
1808
|
+
appUserAccessId: string;
|
|
1809
|
+
appId: string;
|
|
1810
|
+
userId: string;
|
|
1811
|
+
tierId: string | null;
|
|
1812
|
+
status: string;
|
|
1813
|
+
grantedBy: string;
|
|
1814
|
+
subscriptionId: string | null;
|
|
1815
|
+
expiresAt: string | null;
|
|
1816
|
+
createdAt: string;
|
|
1817
|
+
updatedAt: string;
|
|
1818
|
+
}>;
|
|
1819
|
+
};
|
|
1820
|
+
export type ArchiveAccessTierMutationVariables = Exact<{
|
|
1821
|
+
tierId: Scalars['BigInt']['input'];
|
|
1822
|
+
}>;
|
|
1823
|
+
export type ArchiveAccessTierMutation = {
|
|
1824
|
+
__typename?: 'Mutation';
|
|
1825
|
+
archiveAccessTier: {
|
|
1826
|
+
__typename?: 'AppAccessTier';
|
|
1827
|
+
tierId: string;
|
|
1828
|
+
status: string;
|
|
1829
|
+
updatedAt: string;
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1832
|
+
export type CreateAccessTierMutationVariables = Exact<{
|
|
1833
|
+
input: CreateAccessTierInput;
|
|
1834
|
+
}>;
|
|
1835
|
+
export type CreateAccessTierMutation = {
|
|
1836
|
+
__typename?: 'Mutation';
|
|
1837
|
+
createAccessTier: {
|
|
1838
|
+
__typename?: 'AppAccessTier';
|
|
1839
|
+
tierId: string;
|
|
1840
|
+
appId: string;
|
|
1841
|
+
name: string;
|
|
1842
|
+
tierOrder: number;
|
|
1843
|
+
isFree: boolean;
|
|
1844
|
+
isDefault: boolean;
|
|
1845
|
+
priceCents: string | null;
|
|
1846
|
+
currency: string | null;
|
|
1847
|
+
billingPeriod: string | null;
|
|
1848
|
+
description: string | null;
|
|
1849
|
+
status: string;
|
|
1850
|
+
createdAt: string;
|
|
1851
|
+
updatedAt: string;
|
|
1852
|
+
};
|
|
1853
|
+
};
|
|
1854
|
+
export type GrantAppAccessMutationVariables = Exact<{
|
|
1855
|
+
input: GrantAppAccessInput;
|
|
1856
|
+
}>;
|
|
1857
|
+
export type GrantAppAccessMutation = {
|
|
1858
|
+
__typename?: 'Mutation';
|
|
1859
|
+
grantAppAccess: {
|
|
1860
|
+
__typename?: 'AppUserAccess';
|
|
1861
|
+
appUserAccessId: string;
|
|
1862
|
+
appId: string;
|
|
1863
|
+
userId: string;
|
|
1864
|
+
tierId: string | null;
|
|
1865
|
+
status: string;
|
|
1866
|
+
grantedBy: string;
|
|
1867
|
+
subscriptionId: string | null;
|
|
1868
|
+
expiresAt: string | null;
|
|
1869
|
+
createdAt: string;
|
|
1870
|
+
updatedAt: string;
|
|
1871
|
+
};
|
|
1872
|
+
};
|
|
1873
|
+
export type MyAppAccessQueryVariables = Exact<{
|
|
1874
|
+
appId: Scalars['BigInt']['input'];
|
|
1875
|
+
}>;
|
|
1876
|
+
export type MyAppAccessQuery = {
|
|
1877
|
+
__typename?: 'Query';
|
|
1878
|
+
myAppAccess: {
|
|
1879
|
+
__typename?: 'AppUserAccess';
|
|
1880
|
+
appUserAccessId: string;
|
|
1881
|
+
appId: string;
|
|
1882
|
+
userId: string;
|
|
1883
|
+
tierId: string | null;
|
|
1884
|
+
status: string;
|
|
1885
|
+
grantedBy: string;
|
|
1886
|
+
subscriptionId: string | null;
|
|
1887
|
+
expiresAt: string | null;
|
|
1888
|
+
createdAt: string;
|
|
1889
|
+
updatedAt: string;
|
|
1890
|
+
} | null;
|
|
1891
|
+
};
|
|
1892
|
+
export type RevokeAppAccessMutationVariables = Exact<{
|
|
1893
|
+
appId: Scalars['BigInt']['input'];
|
|
1894
|
+
userId: Scalars['BigInt']['input'];
|
|
1895
|
+
}>;
|
|
1896
|
+
export type RevokeAppAccessMutation = {
|
|
1897
|
+
__typename?: 'Mutation';
|
|
1898
|
+
revokeAppAccess: {
|
|
1899
|
+
__typename?: 'AppUserAccess';
|
|
1900
|
+
appUserAccessId: string;
|
|
1901
|
+
appId: string;
|
|
1902
|
+
userId: string;
|
|
1903
|
+
tierId: string | null;
|
|
1904
|
+
status: string;
|
|
1905
|
+
grantedBy: string;
|
|
1906
|
+
subscriptionId: string | null;
|
|
1907
|
+
expiresAt: string | null;
|
|
1908
|
+
createdAt: string;
|
|
1909
|
+
updatedAt: string;
|
|
1910
|
+
};
|
|
1911
|
+
};
|
|
1912
|
+
export type UpdateAccessTierMutationVariables = Exact<{
|
|
1913
|
+
tierId: Scalars['BigInt']['input'];
|
|
1914
|
+
input: UpdateAccessTierInput;
|
|
1915
|
+
}>;
|
|
1916
|
+
export type UpdateAccessTierMutation = {
|
|
1917
|
+
__typename?: 'Mutation';
|
|
1918
|
+
updateAccessTier: {
|
|
1919
|
+
__typename?: 'AppAccessTier';
|
|
1920
|
+
tierId: string;
|
|
1921
|
+
appId: string;
|
|
1922
|
+
name: string;
|
|
1923
|
+
tierOrder: number;
|
|
1924
|
+
isFree: boolean;
|
|
1925
|
+
isDefault: boolean;
|
|
1926
|
+
priceCents: string | null;
|
|
1927
|
+
currency: string | null;
|
|
1928
|
+
billingPeriod: string | null;
|
|
1929
|
+
description: string | null;
|
|
1930
|
+
status: string;
|
|
1931
|
+
updatedAt: string;
|
|
1932
|
+
};
|
|
1933
|
+
};
|
|
1934
|
+
export type AppQueryVariables = Exact<{
|
|
1935
|
+
appId: Scalars['BigInt']['input'];
|
|
1936
|
+
}>;
|
|
1937
|
+
export type AppQuery = {
|
|
1938
|
+
__typename?: 'Query';
|
|
1939
|
+
app: {
|
|
1940
|
+
__typename?: 'App';
|
|
1941
|
+
appId: string;
|
|
1942
|
+
orgId: string;
|
|
1943
|
+
name: string;
|
|
1944
|
+
slug: string | null;
|
|
1945
|
+
description: string | null;
|
|
1946
|
+
visibility: AppVisibility;
|
|
1947
|
+
status: AppStatus;
|
|
1948
|
+
metadata: string | null;
|
|
1949
|
+
createdAt: string;
|
|
1950
|
+
updatedAt: string;
|
|
1951
|
+
org: {
|
|
1952
|
+
__typename?: 'Organization';
|
|
1953
|
+
orgId: string;
|
|
1954
|
+
slug: string;
|
|
1955
|
+
name: string;
|
|
1956
|
+
} | null;
|
|
1957
|
+
} | null;
|
|
1958
|
+
};
|
|
1959
|
+
export type AppBySlugQueryVariables = Exact<{
|
|
1960
|
+
orgSlug: Scalars['String']['input'];
|
|
1961
|
+
appSlug: Scalars['String']['input'];
|
|
1962
|
+
}>;
|
|
1963
|
+
export type AppBySlugQuery = {
|
|
1964
|
+
__typename?: 'Query';
|
|
1965
|
+
appBySlug: {
|
|
1966
|
+
__typename?: 'App';
|
|
1967
|
+
appId: string;
|
|
1968
|
+
orgId: string;
|
|
1969
|
+
name: string;
|
|
1970
|
+
slug: string | null;
|
|
1971
|
+
description: string | null;
|
|
1972
|
+
visibility: AppVisibility;
|
|
1973
|
+
status: AppStatus;
|
|
1974
|
+
metadata: string | null;
|
|
1975
|
+
createdAt: string;
|
|
1976
|
+
updatedAt: string;
|
|
1977
|
+
org: {
|
|
1978
|
+
__typename?: 'Organization';
|
|
1979
|
+
orgId: string;
|
|
1980
|
+
slug: string;
|
|
1981
|
+
name: string;
|
|
1982
|
+
} | null;
|
|
1983
|
+
} | null;
|
|
1984
|
+
};
|
|
1985
|
+
export type AppsForOrgQueryVariables = Exact<{
|
|
1986
|
+
orgSlug: Scalars['String']['input'];
|
|
1987
|
+
}>;
|
|
1988
|
+
export type AppsForOrgQuery = {
|
|
1989
|
+
__typename?: 'Query';
|
|
1990
|
+
appsForOrg: Array<{
|
|
1991
|
+
__typename?: 'App';
|
|
1992
|
+
appId: string;
|
|
1993
|
+
orgId: string;
|
|
1994
|
+
name: string;
|
|
1995
|
+
slug: string | null;
|
|
1996
|
+
description: string | null;
|
|
1997
|
+
visibility: AppVisibility;
|
|
1998
|
+
status: AppStatus;
|
|
1999
|
+
metadata: string | null;
|
|
2000
|
+
createdAt: string;
|
|
2001
|
+
updatedAt: string;
|
|
2002
|
+
}>;
|
|
2003
|
+
};
|
|
2004
|
+
export type ArchiveAppMutationVariables = Exact<{
|
|
2005
|
+
appId: Scalars['BigInt']['input'];
|
|
2006
|
+
}>;
|
|
2007
|
+
export type ArchiveAppMutation = {
|
|
2008
|
+
__typename?: 'Mutation';
|
|
2009
|
+
archiveApp: {
|
|
2010
|
+
__typename?: 'App';
|
|
2011
|
+
appId: string;
|
|
2012
|
+
status: AppStatus;
|
|
2013
|
+
updatedAt: string;
|
|
2014
|
+
};
|
|
2015
|
+
};
|
|
2016
|
+
export type CreateAppMutationVariables = Exact<{
|
|
2017
|
+
input: CreateAppInput;
|
|
2018
|
+
}>;
|
|
2019
|
+
export type CreateAppMutation = {
|
|
2020
|
+
__typename?: 'Mutation';
|
|
2021
|
+
createApp: {
|
|
2022
|
+
__typename?: 'App';
|
|
2023
|
+
appId: string;
|
|
2024
|
+
orgId: string;
|
|
2025
|
+
name: string;
|
|
2026
|
+
slug: string | null;
|
|
2027
|
+
description: string | null;
|
|
2028
|
+
visibility: AppVisibility;
|
|
2029
|
+
status: AppStatus;
|
|
2030
|
+
metadata: string | null;
|
|
2031
|
+
createdAt: string;
|
|
2032
|
+
};
|
|
2033
|
+
};
|
|
2034
|
+
export type MarketplaceAppsQueryVariables = Exact<{
|
|
2035
|
+
filter?: InputMaybe<AppMarketplaceFilterInput>;
|
|
2036
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2037
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2038
|
+
}>;
|
|
2039
|
+
export type MarketplaceAppsQuery = {
|
|
2040
|
+
__typename?: 'Query';
|
|
2041
|
+
apps: {
|
|
2042
|
+
__typename?: 'AppsPage';
|
|
2043
|
+
items: Array<{
|
|
2044
|
+
__typename?: 'App';
|
|
2045
|
+
appId: string;
|
|
2046
|
+
orgId: string;
|
|
2047
|
+
name: string;
|
|
2048
|
+
slug: string | null;
|
|
2049
|
+
description: string | null;
|
|
2050
|
+
visibility: AppVisibility;
|
|
2051
|
+
status: AppStatus;
|
|
2052
|
+
metadata: string | null;
|
|
2053
|
+
createdAt: string;
|
|
2054
|
+
updatedAt: string;
|
|
2055
|
+
org: {
|
|
2056
|
+
__typename?: 'Organization';
|
|
2057
|
+
orgId: string;
|
|
2058
|
+
slug: string;
|
|
2059
|
+
name: string;
|
|
2060
|
+
} | null;
|
|
2061
|
+
}>;
|
|
2062
|
+
pageInfo: {
|
|
2063
|
+
__typename?: 'PageInfo';
|
|
2064
|
+
totalCount: number;
|
|
2065
|
+
limit: number;
|
|
2066
|
+
offset: number;
|
|
2067
|
+
};
|
|
2068
|
+
};
|
|
2069
|
+
};
|
|
2070
|
+
export type MyAppsQueryVariables = Exact<{
|
|
2071
|
+
[key: string]: never;
|
|
2072
|
+
}>;
|
|
2073
|
+
export type MyAppsQuery = {
|
|
2074
|
+
__typename?: 'Query';
|
|
2075
|
+
myApps: Array<{
|
|
2076
|
+
__typename?: 'App';
|
|
2077
|
+
appId: string;
|
|
2078
|
+
orgId: string;
|
|
2079
|
+
name: string;
|
|
2080
|
+
slug: string | null;
|
|
2081
|
+
description: string | null;
|
|
2082
|
+
visibility: AppVisibility;
|
|
2083
|
+
status: AppStatus;
|
|
2084
|
+
metadata: string | null;
|
|
2085
|
+
createdAt: string;
|
|
2086
|
+
updatedAt: string;
|
|
2087
|
+
org: {
|
|
2088
|
+
__typename?: 'Organization';
|
|
2089
|
+
orgId: string;
|
|
2090
|
+
slug: string;
|
|
2091
|
+
name: string;
|
|
2092
|
+
} | null;
|
|
2093
|
+
}>;
|
|
2094
|
+
};
|
|
2095
|
+
export type SetAppVisibilityMutationVariables = Exact<{
|
|
2096
|
+
appId: Scalars['BigInt']['input'];
|
|
2097
|
+
visibility: AppVisibility;
|
|
2098
|
+
}>;
|
|
2099
|
+
export type SetAppVisibilityMutation = {
|
|
2100
|
+
__typename?: 'Mutation';
|
|
2101
|
+
setAppVisibility: {
|
|
2102
|
+
__typename?: 'App';
|
|
2103
|
+
appId: string;
|
|
2104
|
+
visibility: AppVisibility;
|
|
2105
|
+
updatedAt: string;
|
|
2106
|
+
};
|
|
2107
|
+
};
|
|
2108
|
+
export type UpdateAppMutationVariables = Exact<{
|
|
2109
|
+
appId: Scalars['BigInt']['input'];
|
|
2110
|
+
input: UpdateAppInput;
|
|
2111
|
+
}>;
|
|
2112
|
+
export type UpdateAppMutation = {
|
|
2113
|
+
__typename?: 'Mutation';
|
|
2114
|
+
updateApp: {
|
|
2115
|
+
__typename?: 'App';
|
|
2116
|
+
appId: string;
|
|
2117
|
+
orgId: string;
|
|
2118
|
+
name: string;
|
|
2119
|
+
slug: string | null;
|
|
2120
|
+
description: string | null;
|
|
2121
|
+
visibility: AppVisibility;
|
|
2122
|
+
status: AppStatus;
|
|
2123
|
+
metadata: string | null;
|
|
2124
|
+
updatedAt: string;
|
|
2125
|
+
};
|
|
2126
|
+
};
|
|
2127
|
+
export type ChangePasswordMutationVariables = Exact<{
|
|
2128
|
+
currentPassword: Scalars['String']['input'];
|
|
2129
|
+
newPassword: Scalars['String']['input'];
|
|
2130
|
+
}>;
|
|
2131
|
+
export type ChangePasswordMutation = {
|
|
2132
|
+
__typename?: 'Mutation';
|
|
2133
|
+
changePassword: boolean;
|
|
2134
|
+
};
|
|
2135
|
+
export type ConfirmEmailMutationVariables = Exact<{
|
|
2136
|
+
token: Scalars['String']['input'];
|
|
2137
|
+
}>;
|
|
2138
|
+
export type ConfirmEmailMutation = {
|
|
2139
|
+
__typename?: 'Mutation';
|
|
2140
|
+
confirmEmail: boolean;
|
|
2141
|
+
};
|
|
2142
|
+
export type LoginMutationVariables = Exact<{
|
|
2143
|
+
input: LoginUserInput;
|
|
2144
|
+
}>;
|
|
2145
|
+
export type LoginMutation = {
|
|
2146
|
+
__typename?: 'Mutation';
|
|
2147
|
+
login: {
|
|
2148
|
+
__typename?: 'AuthResponse';
|
|
2149
|
+
token: string;
|
|
2150
|
+
gameTokenId: string;
|
|
2151
|
+
user: {
|
|
2152
|
+
__typename?: 'User';
|
|
2153
|
+
userId: string;
|
|
2154
|
+
email: string | null;
|
|
2155
|
+
gamertag: string | null;
|
|
2156
|
+
disambiguation: string | null;
|
|
2157
|
+
isConfirmed: boolean;
|
|
2158
|
+
createdAt: string;
|
|
2159
|
+
grantEarlyAccess: boolean;
|
|
2160
|
+
grantEarlyAccessOverride: boolean;
|
|
2161
|
+
orgId: string | null;
|
|
2162
|
+
externalId: string | null;
|
|
2163
|
+
userType: string;
|
|
2164
|
+
isSuperAdmin: boolean;
|
|
2165
|
+
};
|
|
2166
|
+
};
|
|
2167
|
+
};
|
|
2168
|
+
export type LogoutMutationVariables = Exact<{
|
|
2169
|
+
[key: string]: never;
|
|
2170
|
+
}>;
|
|
2171
|
+
export type LogoutMutation = {
|
|
2172
|
+
__typename?: 'Mutation';
|
|
2173
|
+
logout: boolean;
|
|
2174
|
+
};
|
|
2175
|
+
export type LogoutAllDevicesMutationVariables = Exact<{
|
|
2176
|
+
[key: string]: never;
|
|
2177
|
+
}>;
|
|
2178
|
+
export type LogoutAllDevicesMutation = {
|
|
2179
|
+
__typename?: 'Mutation';
|
|
2180
|
+
logoutAllDevices: boolean;
|
|
2181
|
+
};
|
|
2182
|
+
export type RegisterMutationVariables = Exact<{
|
|
2183
|
+
input: RegisterUserInput;
|
|
2184
|
+
}>;
|
|
2185
|
+
export type RegisterMutation = {
|
|
2186
|
+
__typename?: 'Mutation';
|
|
2187
|
+
register: {
|
|
2188
|
+
__typename?: 'AuthResponse';
|
|
2189
|
+
token: string;
|
|
2190
|
+
gameTokenId: string;
|
|
2191
|
+
user: {
|
|
2192
|
+
__typename?: 'User';
|
|
2193
|
+
userId: string;
|
|
2194
|
+
email: string | null;
|
|
2195
|
+
gamertag: string | null;
|
|
2196
|
+
disambiguation: string | null;
|
|
2197
|
+
isConfirmed: boolean;
|
|
2198
|
+
createdAt: string;
|
|
2199
|
+
grantEarlyAccess: boolean;
|
|
2200
|
+
grantEarlyAccessOverride: boolean;
|
|
2201
|
+
orgId: string | null;
|
|
2202
|
+
externalId: string | null;
|
|
2203
|
+
userType: string;
|
|
2204
|
+
isSuperAdmin: boolean;
|
|
2205
|
+
};
|
|
2206
|
+
};
|
|
2207
|
+
};
|
|
2208
|
+
export type RequestPasswordResetMutationVariables = Exact<{
|
|
2209
|
+
email: Scalars['String']['input'];
|
|
2210
|
+
}>;
|
|
2211
|
+
export type RequestPasswordResetMutation = {
|
|
2212
|
+
__typename?: 'Mutation';
|
|
2213
|
+
requestPasswordReset: boolean;
|
|
2214
|
+
};
|
|
2215
|
+
export type ResendConfirmationEmailMutationVariables = Exact<{
|
|
2216
|
+
email: Scalars['String']['input'];
|
|
2217
|
+
}>;
|
|
2218
|
+
export type ResendConfirmationEmailMutation = {
|
|
2219
|
+
__typename?: 'Mutation';
|
|
2220
|
+
resendConfirmationEmail: boolean;
|
|
2221
|
+
};
|
|
2222
|
+
export type ResetPasswordMutationVariables = Exact<{
|
|
2223
|
+
input: ResetPasswordInput;
|
|
2224
|
+
}>;
|
|
2225
|
+
export type ResetPasswordMutation = {
|
|
2226
|
+
__typename?: 'Mutation';
|
|
2227
|
+
resetPassword: boolean;
|
|
2228
|
+
};
|
|
2229
|
+
export type AppBudgetQueryVariables = Exact<{
|
|
2230
|
+
orgId: Scalars['BigInt']['input'];
|
|
2231
|
+
appId: Scalars['BigInt']['input'];
|
|
2232
|
+
}>;
|
|
2233
|
+
export type AppBudgetQuery = {
|
|
2234
|
+
__typename?: 'Query';
|
|
2235
|
+
appBudget: {
|
|
2236
|
+
__typename?: 'AppBudget';
|
|
2237
|
+
appBudgetId: string;
|
|
2238
|
+
orgId: string;
|
|
2239
|
+
appId: string;
|
|
2240
|
+
monthlyLimitCents: string | null;
|
|
2241
|
+
currentMonthUsageCents: string;
|
|
2242
|
+
periodStart: string;
|
|
2243
|
+
createdAt: string;
|
|
2244
|
+
updatedAt: string;
|
|
2245
|
+
} | null;
|
|
2246
|
+
};
|
|
2247
|
+
export type AppBudgetsQueryVariables = Exact<{
|
|
2248
|
+
orgId: Scalars['BigInt']['input'];
|
|
2249
|
+
}>;
|
|
2250
|
+
export type AppBudgetsQuery = {
|
|
2251
|
+
__typename?: 'Query';
|
|
2252
|
+
appBudgets: Array<{
|
|
2253
|
+
__typename?: 'AppBudget';
|
|
2254
|
+
appBudgetId: string;
|
|
2255
|
+
orgId: string;
|
|
2256
|
+
appId: string;
|
|
2257
|
+
monthlyLimitCents: string | null;
|
|
2258
|
+
currentMonthUsageCents: string;
|
|
2259
|
+
periodStart: string;
|
|
2260
|
+
createdAt: string;
|
|
2261
|
+
updatedAt: string;
|
|
2262
|
+
}>;
|
|
2263
|
+
};
|
|
2264
|
+
export type SetAppBudgetMutationVariables = Exact<{
|
|
2265
|
+
orgId: Scalars['BigInt']['input'];
|
|
2266
|
+
appId: Scalars['BigInt']['input'];
|
|
2267
|
+
monthlyLimitCents: Scalars['BigInt']['input'];
|
|
2268
|
+
}>;
|
|
2269
|
+
export type SetAppBudgetMutation = {
|
|
2270
|
+
__typename?: 'Mutation';
|
|
2271
|
+
setAppBudget: {
|
|
2272
|
+
__typename?: 'AppBudget';
|
|
2273
|
+
appBudgetId: string;
|
|
2274
|
+
orgId: string;
|
|
2275
|
+
appId: string;
|
|
2276
|
+
monthlyLimitCents: string | null;
|
|
2277
|
+
currentMonthUsageCents: string;
|
|
2278
|
+
periodStart: string;
|
|
2279
|
+
createdAt: string;
|
|
2280
|
+
updatedAt: string;
|
|
2281
|
+
};
|
|
2282
|
+
};
|
|
2283
|
+
export type WalletBalanceQueryVariables = Exact<{
|
|
2284
|
+
orgId: Scalars['BigInt']['input'];
|
|
2285
|
+
}>;
|
|
2286
|
+
export type WalletBalanceQuery = {
|
|
2287
|
+
__typename?: 'Query';
|
|
2288
|
+
walletBalance: {
|
|
2289
|
+
__typename?: 'OrgWallet';
|
|
2290
|
+
walletId: string;
|
|
2291
|
+
orgId: string;
|
|
2292
|
+
balanceCents: string;
|
|
2293
|
+
currency: string;
|
|
2294
|
+
createdAt: string;
|
|
2295
|
+
updatedAt: string;
|
|
2296
|
+
};
|
|
2297
|
+
};
|
|
2298
|
+
export type WalletTransactionsQueryVariables = Exact<{
|
|
2299
|
+
orgId: Scalars['BigInt']['input'];
|
|
2300
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2301
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2302
|
+
}>;
|
|
2303
|
+
export type WalletTransactionsQuery = {
|
|
2304
|
+
__typename?: 'Query';
|
|
2305
|
+
walletTransactions: Array<{
|
|
2306
|
+
__typename?: 'WalletTransaction';
|
|
2307
|
+
transactionId: string;
|
|
2308
|
+
walletId: string;
|
|
2309
|
+
orgId: string;
|
|
2310
|
+
amountCents: string;
|
|
2311
|
+
balanceAfter: string;
|
|
2312
|
+
transactionType: string;
|
|
2313
|
+
description: string | null;
|
|
2314
|
+
referenceId: string | null;
|
|
2315
|
+
appId: string | null;
|
|
2316
|
+
createdAt: string;
|
|
2317
|
+
}>;
|
|
2318
|
+
};
|
|
2319
|
+
export type GetChunkQueryVariables = Exact<{
|
|
2320
|
+
input: GetChunkInput;
|
|
2321
|
+
}>;
|
|
2322
|
+
export type GetChunkQuery = {
|
|
2323
|
+
__typename?: 'Query';
|
|
2324
|
+
getChunk: {
|
|
2325
|
+
__typename?: 'Chunk';
|
|
2326
|
+
chunkId: string;
|
|
2327
|
+
appId: string;
|
|
2328
|
+
voxels: string | null;
|
|
2329
|
+
owner: string | null;
|
|
2330
|
+
createdAt: string;
|
|
2331
|
+
updatedAt: string;
|
|
2332
|
+
chunkState: string | null;
|
|
2333
|
+
cdnUploadedAt: string | null;
|
|
2334
|
+
coordinates: {
|
|
2335
|
+
__typename?: 'ChunkCoordinates';
|
|
2336
|
+
x: string;
|
|
2337
|
+
y: string;
|
|
2338
|
+
z: string;
|
|
2339
|
+
};
|
|
2340
|
+
voxelStates: Array<{
|
|
2341
|
+
__typename?: 'VoxelState';
|
|
2342
|
+
voxelType: number;
|
|
2343
|
+
state: string | null;
|
|
2344
|
+
voxelCoord: {
|
|
2345
|
+
__typename?: 'VoxelCoordinates';
|
|
2346
|
+
x: number;
|
|
2347
|
+
y: number;
|
|
2348
|
+
z: number;
|
|
2349
|
+
};
|
|
2350
|
+
}>;
|
|
2351
|
+
lods: Array<{
|
|
2352
|
+
__typename?: 'LodData';
|
|
2353
|
+
level: number;
|
|
2354
|
+
data: string;
|
|
2355
|
+
}> | null;
|
|
2356
|
+
} | null;
|
|
2357
|
+
};
|
|
2358
|
+
export type GetChunkLodsQueryVariables = Exact<{
|
|
2359
|
+
input: GetChunkLodsInput;
|
|
2360
|
+
}>;
|
|
2361
|
+
export type GetChunkLodsQuery = {
|
|
2362
|
+
__typename?: 'Query';
|
|
2363
|
+
getChunkLods: {
|
|
2364
|
+
__typename?: 'ChunkLodsResponse';
|
|
2365
|
+
chunkId: string;
|
|
2366
|
+
appId: string;
|
|
2367
|
+
updatedAt: string;
|
|
2368
|
+
coordinates: {
|
|
2369
|
+
__typename?: 'ChunkCoordinates';
|
|
2370
|
+
x: string;
|
|
2371
|
+
y: string;
|
|
2372
|
+
z: string;
|
|
2373
|
+
};
|
|
2374
|
+
lods: Array<{
|
|
2375
|
+
__typename?: 'LodData';
|
|
2376
|
+
level: number;
|
|
2377
|
+
data: string;
|
|
2378
|
+
}>;
|
|
2379
|
+
} | null;
|
|
2380
|
+
};
|
|
2381
|
+
export type GetChunksByDistanceQueryVariables = Exact<{
|
|
2382
|
+
input: GetChunksByDistanceInput;
|
|
2383
|
+
}>;
|
|
2384
|
+
export type GetChunksByDistanceQuery = {
|
|
2385
|
+
__typename?: 'Query';
|
|
2386
|
+
getChunksByDistance: {
|
|
2387
|
+
__typename?: 'ChunksByDistanceResponse';
|
|
2388
|
+
limit: number | null;
|
|
2389
|
+
skip: number | null;
|
|
2390
|
+
chunks: Array<{
|
|
2391
|
+
__typename?: 'Chunk';
|
|
2392
|
+
chunkId: string;
|
|
2393
|
+
appId: string;
|
|
2394
|
+
voxels: string | null;
|
|
2395
|
+
owner: string | null;
|
|
2396
|
+
createdAt: string;
|
|
2397
|
+
updatedAt: string;
|
|
2398
|
+
chunkState: string | null;
|
|
2399
|
+
cdnUploadedAt: string | null;
|
|
2400
|
+
coordinates: {
|
|
2401
|
+
__typename?: 'ChunkCoordinates';
|
|
2402
|
+
x: string;
|
|
2403
|
+
y: string;
|
|
2404
|
+
z: string;
|
|
2405
|
+
};
|
|
2406
|
+
lods: Array<{
|
|
2407
|
+
__typename?: 'LodData';
|
|
2408
|
+
level: number;
|
|
2409
|
+
data: string;
|
|
2410
|
+
}> | null;
|
|
2411
|
+
}>;
|
|
2412
|
+
};
|
|
2413
|
+
};
|
|
2414
|
+
export type GetVoxelListQueryVariables = Exact<{
|
|
2415
|
+
input: GetVoxelListInput;
|
|
2416
|
+
}>;
|
|
2417
|
+
export type GetVoxelListQuery = {
|
|
2418
|
+
__typename?: 'Query';
|
|
2419
|
+
getVoxelList: {
|
|
2420
|
+
__typename?: 'ChunkVoxelResponse';
|
|
2421
|
+
coordinates: {
|
|
2422
|
+
__typename?: 'ChunkCoordinates';
|
|
2423
|
+
x: string;
|
|
2424
|
+
y: string;
|
|
2425
|
+
z: string;
|
|
2426
|
+
};
|
|
2427
|
+
voxels: Array<{
|
|
2428
|
+
__typename?: 'Voxel';
|
|
2429
|
+
voxelUpdateId: string;
|
|
2430
|
+
appId: string;
|
|
2431
|
+
voxelType: number;
|
|
2432
|
+
state: string | null;
|
|
2433
|
+
createdBy: string;
|
|
2434
|
+
createdAt: string;
|
|
2435
|
+
coordinates: {
|
|
2436
|
+
__typename?: 'ChunkCoordinates';
|
|
2437
|
+
x: string;
|
|
2438
|
+
y: string;
|
|
2439
|
+
z: string;
|
|
2440
|
+
};
|
|
2441
|
+
location: {
|
|
2442
|
+
__typename?: 'VoxelCoordinates';
|
|
2443
|
+
x: number;
|
|
2444
|
+
y: number;
|
|
2445
|
+
z: number;
|
|
2446
|
+
};
|
|
2447
|
+
}>;
|
|
2448
|
+
};
|
|
2449
|
+
};
|
|
2450
|
+
export type UpdateChunkMutationVariables = Exact<{
|
|
2451
|
+
input: ChunkUpdateInput;
|
|
2452
|
+
}>;
|
|
2453
|
+
export type UpdateChunkMutation = {
|
|
2454
|
+
__typename?: 'Mutation';
|
|
2455
|
+
updateChunk: {
|
|
2456
|
+
__typename?: 'Chunk';
|
|
2457
|
+
chunkId: string;
|
|
2458
|
+
appId: string;
|
|
2459
|
+
voxels: string | null;
|
|
2460
|
+
chunkState: string | null;
|
|
2461
|
+
updatedAt: string;
|
|
2462
|
+
coordinates: {
|
|
2463
|
+
__typename?: 'ChunkCoordinates';
|
|
2464
|
+
x: string;
|
|
2465
|
+
y: string;
|
|
2466
|
+
z: string;
|
|
2467
|
+
};
|
|
2468
|
+
};
|
|
2469
|
+
};
|
|
2470
|
+
export type UpdateChunkLodsMutationVariables = Exact<{
|
|
2471
|
+
input: UpdateChunkLodsInput;
|
|
2472
|
+
}>;
|
|
2473
|
+
export type UpdateChunkLodsMutation = {
|
|
2474
|
+
__typename?: 'Mutation';
|
|
2475
|
+
updateChunkLods: {
|
|
2476
|
+
__typename?: 'Chunk';
|
|
2477
|
+
chunkId: string;
|
|
2478
|
+
appId: string;
|
|
2479
|
+
updatedAt: string;
|
|
2480
|
+
coordinates: {
|
|
2481
|
+
__typename?: 'ChunkCoordinates';
|
|
2482
|
+
x: string;
|
|
2483
|
+
y: string;
|
|
2484
|
+
z: string;
|
|
2485
|
+
};
|
|
2486
|
+
lods: Array<{
|
|
2487
|
+
__typename?: 'LodData';
|
|
2488
|
+
level: number;
|
|
2489
|
+
data: string;
|
|
2490
|
+
}> | null;
|
|
2491
|
+
} | null;
|
|
2492
|
+
};
|
|
2493
|
+
export type UpdateChunkStateMutationVariables = Exact<{
|
|
2494
|
+
input: UpdateChunkStateInput;
|
|
2495
|
+
}>;
|
|
2496
|
+
export type UpdateChunkStateMutation = {
|
|
2497
|
+
__typename?: 'Mutation';
|
|
2498
|
+
updateChunkState: {
|
|
2499
|
+
__typename?: 'Chunk';
|
|
2500
|
+
chunkId: string;
|
|
2501
|
+
appId: string;
|
|
2502
|
+
chunkState: string | null;
|
|
2503
|
+
updatedAt: string;
|
|
2504
|
+
coordinates: {
|
|
2505
|
+
__typename?: 'ChunkCoordinates';
|
|
2506
|
+
x: string;
|
|
2507
|
+
y: string;
|
|
2508
|
+
z: string;
|
|
2509
|
+
};
|
|
2510
|
+
} | null;
|
|
2511
|
+
};
|
|
2512
|
+
export type CreateOrgRoleMutationVariables = Exact<{
|
|
2513
|
+
input: CreateOrgRoleInput;
|
|
2514
|
+
}>;
|
|
2515
|
+
export type CreateOrgRoleMutation = {
|
|
2516
|
+
__typename?: 'Mutation';
|
|
2517
|
+
createOrgRole: {
|
|
2518
|
+
__typename?: 'OrgRole';
|
|
2519
|
+
orgRoleId: string;
|
|
2520
|
+
orgId: string;
|
|
2521
|
+
roleName: string;
|
|
2522
|
+
isSystem: boolean;
|
|
2523
|
+
permissions: Array<string>;
|
|
2524
|
+
description: string | null;
|
|
2525
|
+
};
|
|
2526
|
+
};
|
|
2527
|
+
export type CreateOrgTokenMutationVariables = Exact<{
|
|
2528
|
+
input: CreateOrgTokenInput;
|
|
2529
|
+
}>;
|
|
2530
|
+
export type CreateOrgTokenMutation = {
|
|
2531
|
+
__typename?: 'Mutation';
|
|
2532
|
+
createOrgToken: {
|
|
2533
|
+
__typename?: 'OrgTokenWithSecret';
|
|
2534
|
+
orgTokenId: string;
|
|
2535
|
+
orgId: string;
|
|
2536
|
+
token: string;
|
|
2537
|
+
label: string | null;
|
|
2538
|
+
isActive: boolean;
|
|
2539
|
+
expiresAt: string | null;
|
|
2540
|
+
createdAt: string;
|
|
2541
|
+
};
|
|
2542
|
+
};
|
|
2543
|
+
export type CreateOrganizationMutationVariables = Exact<{
|
|
2544
|
+
input: CreateOrganizationInput;
|
|
2545
|
+
}>;
|
|
2546
|
+
export type CreateOrganizationMutation = {
|
|
2547
|
+
__typename?: 'Mutation';
|
|
2548
|
+
createOrganization: {
|
|
2549
|
+
__typename?: 'Organization';
|
|
2550
|
+
orgId: string;
|
|
2551
|
+
name: string;
|
|
2552
|
+
slug: string;
|
|
2553
|
+
ownerUserId: string;
|
|
2554
|
+
status: string;
|
|
2555
|
+
createdAt: string;
|
|
2556
|
+
updatedAt: string;
|
|
2557
|
+
};
|
|
2558
|
+
};
|
|
2559
|
+
export type DeleteOrgRoleMutationVariables = Exact<{
|
|
2560
|
+
orgRoleId: Scalars['BigInt']['input'];
|
|
2561
|
+
}>;
|
|
2562
|
+
export type DeleteOrgRoleMutation = {
|
|
2563
|
+
__typename?: 'Mutation';
|
|
2564
|
+
deleteOrgRole: boolean;
|
|
2565
|
+
};
|
|
2566
|
+
export type InviteOrgMemberMutationVariables = Exact<{
|
|
2567
|
+
input: InviteOrgMemberInput;
|
|
2568
|
+
}>;
|
|
2569
|
+
export type InviteOrgMemberMutation = {
|
|
2570
|
+
__typename?: 'Mutation';
|
|
2571
|
+
inviteOrgMember: {
|
|
2572
|
+
__typename?: 'OrgMember';
|
|
2573
|
+
orgMemberId: string;
|
|
2574
|
+
orgId: string;
|
|
2575
|
+
userId: string;
|
|
2576
|
+
status: string;
|
|
2577
|
+
createdAt: string;
|
|
2578
|
+
updatedAt: string;
|
|
2579
|
+
};
|
|
2580
|
+
};
|
|
2581
|
+
export type MyOrganizationsQueryVariables = Exact<{
|
|
2582
|
+
[key: string]: never;
|
|
2583
|
+
}>;
|
|
2584
|
+
export type MyOrganizationsQuery = {
|
|
2585
|
+
__typename?: 'Query';
|
|
2586
|
+
myOrganizations: Array<{
|
|
2587
|
+
__typename?: 'OrgMembership';
|
|
2588
|
+
permissions: Array<string>;
|
|
2589
|
+
joinedAt: string;
|
|
2590
|
+
org: {
|
|
2591
|
+
__typename?: 'Organization';
|
|
2592
|
+
orgId: string;
|
|
2593
|
+
slug: string;
|
|
2594
|
+
name: string;
|
|
2595
|
+
ownerUserId: string;
|
|
2596
|
+
status: string;
|
|
2597
|
+
createdAt: string;
|
|
2598
|
+
updatedAt: string;
|
|
2599
|
+
};
|
|
2600
|
+
roles: Array<{
|
|
2601
|
+
__typename?: 'OrgRole';
|
|
2602
|
+
orgRoleId: string;
|
|
2603
|
+
orgId: string;
|
|
2604
|
+
roleName: string;
|
|
2605
|
+
isSystem: boolean;
|
|
2606
|
+
permissions: Array<string>;
|
|
2607
|
+
}>;
|
|
2608
|
+
}>;
|
|
2609
|
+
};
|
|
2610
|
+
export type OrgMembersQueryVariables = Exact<{
|
|
2611
|
+
orgId: Scalars['BigInt']['input'];
|
|
2612
|
+
}>;
|
|
2613
|
+
export type OrgMembersQuery = {
|
|
2614
|
+
__typename?: 'Query';
|
|
2615
|
+
orgMembers: Array<{
|
|
2616
|
+
__typename?: 'OrgMember';
|
|
2617
|
+
orgMemberId: string;
|
|
2618
|
+
orgId: string;
|
|
2619
|
+
userId: string;
|
|
2620
|
+
status: string;
|
|
2621
|
+
createdAt: string;
|
|
2622
|
+
updatedAt: string;
|
|
2623
|
+
}>;
|
|
2624
|
+
};
|
|
2625
|
+
export type OrgPermissionsQueryVariables = Exact<{
|
|
2626
|
+
[key: string]: never;
|
|
2627
|
+
}>;
|
|
2628
|
+
export type OrgPermissionsQuery = {
|
|
2629
|
+
__typename?: 'Query';
|
|
2630
|
+
orgPermissions: Array<{
|
|
2631
|
+
__typename?: 'OrgPermission';
|
|
2632
|
+
permissionKey: string;
|
|
2633
|
+
description: string | null;
|
|
2634
|
+
category: string | null;
|
|
2635
|
+
}>;
|
|
2636
|
+
};
|
|
2637
|
+
export type OrgRolesQueryVariables = Exact<{
|
|
2638
|
+
orgId: Scalars['BigInt']['input'];
|
|
2639
|
+
}>;
|
|
2640
|
+
export type OrgRolesQuery = {
|
|
2641
|
+
__typename?: 'Query';
|
|
2642
|
+
orgRoles: Array<{
|
|
2643
|
+
__typename?: 'OrgRole';
|
|
2644
|
+
orgRoleId: string;
|
|
2645
|
+
orgId: string;
|
|
2646
|
+
roleName: string;
|
|
2647
|
+
isSystem: boolean;
|
|
2648
|
+
permissions: Array<string>;
|
|
2649
|
+
description: string | null;
|
|
2650
|
+
}>;
|
|
2651
|
+
};
|
|
2652
|
+
export type OrgTokensQueryVariables = Exact<{
|
|
2653
|
+
orgId: Scalars['BigInt']['input'];
|
|
2654
|
+
}>;
|
|
2655
|
+
export type OrgTokensQuery = {
|
|
2656
|
+
__typename?: 'Query';
|
|
2657
|
+
orgTokens: Array<{
|
|
2658
|
+
__typename?: 'OrgToken';
|
|
2659
|
+
orgTokenId: string;
|
|
2660
|
+
orgId: string;
|
|
2661
|
+
label: string | null;
|
|
2662
|
+
isActive: boolean;
|
|
2663
|
+
lastUsedAt: string | null;
|
|
2664
|
+
revokedAt: string | null;
|
|
2665
|
+
expiresAt: string | null;
|
|
2666
|
+
createdAt: string;
|
|
2667
|
+
updatedAt: string;
|
|
2668
|
+
}>;
|
|
2669
|
+
};
|
|
2670
|
+
export type OrganizationQueryVariables = Exact<{
|
|
2671
|
+
id: Scalars['BigInt']['input'];
|
|
2672
|
+
}>;
|
|
2673
|
+
export type OrganizationQuery = {
|
|
2674
|
+
__typename?: 'Query';
|
|
2675
|
+
organization: {
|
|
2676
|
+
__typename?: 'Organization';
|
|
2677
|
+
orgId: string;
|
|
2678
|
+
name: string;
|
|
2679
|
+
slug: string;
|
|
2680
|
+
ownerUserId: string;
|
|
2681
|
+
status: string;
|
|
2682
|
+
createdAt: string;
|
|
2683
|
+
updatedAt: string;
|
|
2684
|
+
} | null;
|
|
2685
|
+
};
|
|
2686
|
+
export type OrganizationBySlugQueryVariables = Exact<{
|
|
2687
|
+
slug: Scalars['String']['input'];
|
|
2688
|
+
}>;
|
|
2689
|
+
export type OrganizationBySlugQuery = {
|
|
2690
|
+
__typename?: 'Query';
|
|
2691
|
+
organizationBySlug: {
|
|
2692
|
+
__typename?: 'Organization';
|
|
2693
|
+
orgId: string;
|
|
2694
|
+
name: string;
|
|
2695
|
+
slug: string;
|
|
2696
|
+
ownerUserId: string;
|
|
2697
|
+
status: string;
|
|
2698
|
+
createdAt: string;
|
|
2699
|
+
updatedAt: string;
|
|
2700
|
+
} | null;
|
|
2701
|
+
};
|
|
2702
|
+
export type RemoveOrgMemberMutationVariables = Exact<{
|
|
2703
|
+
orgId: Scalars['BigInt']['input'];
|
|
2704
|
+
userId: Scalars['BigInt']['input'];
|
|
2705
|
+
}>;
|
|
2706
|
+
export type RemoveOrgMemberMutation = {
|
|
2707
|
+
__typename?: 'Mutation';
|
|
2708
|
+
removeOrgMember: boolean;
|
|
2709
|
+
};
|
|
2710
|
+
export type RevokeOrgTokenMutationVariables = Exact<{
|
|
2711
|
+
orgTokenId: Scalars['BigInt']['input'];
|
|
2712
|
+
}>;
|
|
2713
|
+
export type RevokeOrgTokenMutation = {
|
|
2714
|
+
__typename?: 'Mutation';
|
|
2715
|
+
revokeOrgToken: boolean;
|
|
2716
|
+
};
|
|
2717
|
+
export type SetOrgStatusMutationVariables = Exact<{
|
|
2718
|
+
orgId: Scalars['BigInt']['input'];
|
|
2719
|
+
status: Scalars['String']['input'];
|
|
2720
|
+
}>;
|
|
2721
|
+
export type SetOrgStatusMutation = {
|
|
2722
|
+
__typename?: 'Mutation';
|
|
2723
|
+
setOrgStatus: {
|
|
2724
|
+
__typename?: 'Organization';
|
|
2725
|
+
orgId: string;
|
|
2726
|
+
status: string;
|
|
2727
|
+
updatedAt: string;
|
|
2728
|
+
};
|
|
2729
|
+
};
|
|
2730
|
+
export type UpdateOrgMemberRolesMutationVariables = Exact<{
|
|
2731
|
+
orgId: Scalars['BigInt']['input'];
|
|
2732
|
+
userId: Scalars['BigInt']['input'];
|
|
2733
|
+
roleIds: Array<Scalars['BigInt']['input']> | Scalars['BigInt']['input'];
|
|
2734
|
+
}>;
|
|
2735
|
+
export type UpdateOrgMemberRolesMutation = {
|
|
2736
|
+
__typename?: 'Mutation';
|
|
2737
|
+
updateOrgMemberRoles: {
|
|
2738
|
+
__typename?: 'OrgMember';
|
|
2739
|
+
orgMemberId: string;
|
|
2740
|
+
orgId: string;
|
|
2741
|
+
userId: string;
|
|
2742
|
+
status: string;
|
|
2743
|
+
};
|
|
2744
|
+
};
|
|
2745
|
+
export type UpdateOrgRoleMutationVariables = Exact<{
|
|
2746
|
+
orgRoleId: Scalars['BigInt']['input'];
|
|
2747
|
+
input: UpdateOrgRoleInput;
|
|
2748
|
+
}>;
|
|
2749
|
+
export type UpdateOrgRoleMutation = {
|
|
2750
|
+
__typename?: 'Mutation';
|
|
2751
|
+
updateOrgRole: {
|
|
2752
|
+
__typename?: 'OrgRole';
|
|
2753
|
+
orgRoleId: string;
|
|
2754
|
+
orgId: string;
|
|
2755
|
+
roleName: string;
|
|
2756
|
+
isSystem: boolean;
|
|
2757
|
+
permissions: Array<string>;
|
|
2758
|
+
description: string | null;
|
|
2759
|
+
};
|
|
2760
|
+
};
|
|
2761
|
+
export type UpdateOrgTokenMutationVariables = Exact<{
|
|
2762
|
+
orgTokenId: Scalars['BigInt']['input'];
|
|
2763
|
+
input: UpdateOrgTokenInput;
|
|
2764
|
+
}>;
|
|
2765
|
+
export type UpdateOrgTokenMutation = {
|
|
2766
|
+
__typename?: 'Mutation';
|
|
2767
|
+
updateOrgToken: {
|
|
2768
|
+
__typename?: 'OrgToken';
|
|
2769
|
+
orgTokenId: string;
|
|
2770
|
+
label: string | null;
|
|
2771
|
+
isActive: boolean;
|
|
2772
|
+
expiresAt: string | null;
|
|
2773
|
+
revokedAt: string | null;
|
|
2774
|
+
updatedAt: string;
|
|
2775
|
+
};
|
|
2776
|
+
};
|
|
2777
|
+
export type CheckoutsQueryVariables = Exact<{
|
|
2778
|
+
filter?: InputMaybe<CheckoutFilterInput>;
|
|
2779
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2780
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2781
|
+
}>;
|
|
2782
|
+
export type CheckoutsQuery = {
|
|
2783
|
+
__typename?: 'Query';
|
|
2784
|
+
checkouts: {
|
|
2785
|
+
__typename?: 'CheckoutsPage';
|
|
2786
|
+
items: Array<{
|
|
2787
|
+
__typename?: 'Checkout';
|
|
2788
|
+
checkoutId: string;
|
|
2789
|
+
userId: string;
|
|
2790
|
+
provider: PaymentProvider;
|
|
2791
|
+
purpose: CheckoutPurpose;
|
|
2792
|
+
status: CheckoutStatus;
|
|
2793
|
+
amountCents: string | null;
|
|
2794
|
+
currency: string | null;
|
|
2795
|
+
externalId: string;
|
|
2796
|
+
externalUrl: string;
|
|
2797
|
+
orgId: string | null;
|
|
2798
|
+
appId: string | null;
|
|
2799
|
+
tierId: string | null;
|
|
2800
|
+
createdAt: string;
|
|
2801
|
+
completedAt: string | null;
|
|
2802
|
+
expiresAt: string | null;
|
|
2803
|
+
}>;
|
|
2804
|
+
pageInfo: {
|
|
2805
|
+
__typename?: 'PageInfo';
|
|
2806
|
+
totalCount: number;
|
|
2807
|
+
limit: number;
|
|
2808
|
+
offset: number;
|
|
2809
|
+
};
|
|
2810
|
+
};
|
|
2811
|
+
};
|
|
2812
|
+
export type CreateCheckoutMutationVariables = Exact<{
|
|
2813
|
+
input: CreateCheckoutInput;
|
|
2814
|
+
}>;
|
|
2815
|
+
export type CreateCheckoutMutation = {
|
|
2816
|
+
__typename?: 'Mutation';
|
|
2817
|
+
createCheckout: {
|
|
2818
|
+
__typename?: 'Checkout';
|
|
2819
|
+
checkoutId: string;
|
|
2820
|
+
userId: string;
|
|
2821
|
+
provider: PaymentProvider;
|
|
2822
|
+
purpose: CheckoutPurpose;
|
|
2823
|
+
status: CheckoutStatus;
|
|
2824
|
+
amountCents: string | null;
|
|
2825
|
+
currency: string | null;
|
|
2826
|
+
externalId: string;
|
|
2827
|
+
externalUrl: string;
|
|
2828
|
+
orgId: string | null;
|
|
2829
|
+
appId: string | null;
|
|
2830
|
+
tierId: string | null;
|
|
2831
|
+
error: string | null;
|
|
2832
|
+
createdAt: string;
|
|
2833
|
+
completedAt: string | null;
|
|
2834
|
+
expiresAt: string | null;
|
|
2835
|
+
};
|
|
2836
|
+
};
|
|
2837
|
+
export type MyCheckoutsQueryVariables = Exact<{
|
|
2838
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2839
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2840
|
+
}>;
|
|
2841
|
+
export type MyCheckoutsQuery = {
|
|
2842
|
+
__typename?: 'Query';
|
|
2843
|
+
myCheckouts: {
|
|
2844
|
+
__typename?: 'CheckoutsPage';
|
|
2845
|
+
items: Array<{
|
|
2846
|
+
__typename?: 'Checkout';
|
|
2847
|
+
checkoutId: string;
|
|
2848
|
+
userId: string;
|
|
2849
|
+
provider: PaymentProvider;
|
|
2850
|
+
purpose: CheckoutPurpose;
|
|
2851
|
+
status: CheckoutStatus;
|
|
2852
|
+
amountCents: string | null;
|
|
2853
|
+
currency: string | null;
|
|
2854
|
+
externalId: string;
|
|
2855
|
+
externalUrl: string;
|
|
2856
|
+
orgId: string | null;
|
|
2857
|
+
appId: string | null;
|
|
2858
|
+
tierId: string | null;
|
|
2859
|
+
error: string | null;
|
|
2860
|
+
createdAt: string;
|
|
2861
|
+
completedAt: string | null;
|
|
2862
|
+
expiresAt: string | null;
|
|
2863
|
+
}>;
|
|
2864
|
+
pageInfo: {
|
|
2865
|
+
__typename?: 'PageInfo';
|
|
2866
|
+
totalCount: number;
|
|
2867
|
+
limit: number;
|
|
2868
|
+
offset: number;
|
|
2869
|
+
};
|
|
2870
|
+
};
|
|
2871
|
+
};
|
|
2872
|
+
export type DeleteQuotaMutationVariables = Exact<{
|
|
2873
|
+
quotaId: Scalars['BigInt']['input'];
|
|
2874
|
+
}>;
|
|
2875
|
+
export type DeleteQuotaMutation = {
|
|
2876
|
+
__typename?: 'Mutation';
|
|
2877
|
+
deleteQuota: boolean;
|
|
2878
|
+
};
|
|
2879
|
+
export type EffectiveQuotaQueryVariables = Exact<{
|
|
2880
|
+
metric: Scalars['String']['input'];
|
|
2881
|
+
orgId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2882
|
+
appId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2883
|
+
tierId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2884
|
+
}>;
|
|
2885
|
+
export type EffectiveQuotaQuery = {
|
|
2886
|
+
__typename?: 'Query';
|
|
2887
|
+
effectiveQuota: {
|
|
2888
|
+
__typename?: 'ServiceQuota';
|
|
2889
|
+
quotaId: string;
|
|
2890
|
+
orgId: string | null;
|
|
2891
|
+
appId: string | null;
|
|
2892
|
+
tierId: string | null;
|
|
2893
|
+
metric: string;
|
|
2894
|
+
limitValue: string;
|
|
2895
|
+
period: string;
|
|
2896
|
+
actionOnExceed: string;
|
|
2897
|
+
} | null;
|
|
2898
|
+
};
|
|
2899
|
+
export type QuotasForAppQueryVariables = Exact<{
|
|
2900
|
+
appId: Scalars['BigInt']['input'];
|
|
2901
|
+
}>;
|
|
2902
|
+
export type QuotasForAppQuery = {
|
|
2903
|
+
__typename?: 'Query';
|
|
2904
|
+
quotasForApp: Array<{
|
|
2905
|
+
__typename?: 'ServiceQuota';
|
|
2906
|
+
quotaId: string;
|
|
2907
|
+
orgId: string | null;
|
|
2908
|
+
appId: string | null;
|
|
2909
|
+
tierId: string | null;
|
|
2910
|
+
metric: string;
|
|
2911
|
+
limitValue: string;
|
|
2912
|
+
period: string;
|
|
2913
|
+
actionOnExceed: string;
|
|
2914
|
+
createdAt: string;
|
|
2915
|
+
updatedAt: string;
|
|
2916
|
+
}>;
|
|
2917
|
+
};
|
|
2918
|
+
export type QuotasForOrgQueryVariables = Exact<{
|
|
2919
|
+
orgId: Scalars['BigInt']['input'];
|
|
2920
|
+
}>;
|
|
2921
|
+
export type QuotasForOrgQuery = {
|
|
2922
|
+
__typename?: 'Query';
|
|
2923
|
+
quotasForOrg: Array<{
|
|
2924
|
+
__typename?: 'ServiceQuota';
|
|
2925
|
+
quotaId: string;
|
|
2926
|
+
orgId: string | null;
|
|
2927
|
+
appId: string | null;
|
|
2928
|
+
tierId: string | null;
|
|
2929
|
+
metric: string;
|
|
2930
|
+
limitValue: string;
|
|
2931
|
+
period: string;
|
|
2932
|
+
actionOnExceed: string;
|
|
2933
|
+
createdAt: string;
|
|
2934
|
+
updatedAt: string;
|
|
2935
|
+
}>;
|
|
2936
|
+
};
|
|
2937
|
+
export type SetQuotaMutationVariables = Exact<{
|
|
2938
|
+
input: SetQuotaInput;
|
|
2939
|
+
}>;
|
|
2940
|
+
export type SetQuotaMutation = {
|
|
2941
|
+
__typename?: 'Mutation';
|
|
2942
|
+
setQuota: {
|
|
2943
|
+
__typename?: 'ServiceQuota';
|
|
2944
|
+
quotaId: string;
|
|
2945
|
+
orgId: string | null;
|
|
2946
|
+
appId: string | null;
|
|
2947
|
+
tierId: string | null;
|
|
2948
|
+
metric: string;
|
|
2949
|
+
limitValue: string;
|
|
2950
|
+
period: string;
|
|
2951
|
+
actionOnExceed: string;
|
|
2952
|
+
createdAt: string;
|
|
2953
|
+
updatedAt: string;
|
|
2954
|
+
};
|
|
2955
|
+
};
|
|
2956
|
+
export type ActiveGraphQlServersQueryVariables = Exact<{
|
|
2957
|
+
[key: string]: never;
|
|
2958
|
+
}>;
|
|
2959
|
+
export type ActiveGraphQlServersQuery = {
|
|
2960
|
+
__typename?: 'Query';
|
|
2961
|
+
activeGraphQLServers: Array<{
|
|
2962
|
+
__typename?: 'GraphQLServer';
|
|
2963
|
+
graphqlServerId: string;
|
|
2964
|
+
ip4: string | null;
|
|
2965
|
+
ip6: string | null;
|
|
2966
|
+
status: ServerState;
|
|
2967
|
+
createdAt: string;
|
|
2968
|
+
updatedAt: string;
|
|
2969
|
+
}>;
|
|
2970
|
+
};
|
|
2971
|
+
export type GraphqlServersQueryVariables = Exact<{
|
|
2972
|
+
[key: string]: never;
|
|
2973
|
+
}>;
|
|
2974
|
+
export type GraphqlServersQuery = {
|
|
2975
|
+
__typename?: 'Query';
|
|
2976
|
+
graphqlServers: Array<{
|
|
2977
|
+
__typename?: 'GraphQLServer';
|
|
2978
|
+
graphqlServerId: string;
|
|
2979
|
+
ip4: string | null;
|
|
2980
|
+
ip6: string | null;
|
|
2981
|
+
status: ServerState;
|
|
2982
|
+
createdAt: string;
|
|
2983
|
+
updatedAt: string;
|
|
2984
|
+
}>;
|
|
2985
|
+
};
|
|
2986
|
+
export type ServerWithLeastClientsQueryVariables = Exact<{
|
|
2987
|
+
[key: string]: never;
|
|
2988
|
+
}>;
|
|
2989
|
+
export type ServerWithLeastClientsQuery = {
|
|
2990
|
+
__typename?: 'Query';
|
|
2991
|
+
serverWithLeastClients: {
|
|
2992
|
+
__typename?: 'ServerStatus';
|
|
2993
|
+
serverId: string;
|
|
2994
|
+
ip4: string;
|
|
2995
|
+
ip6: string;
|
|
2996
|
+
clientPort: number;
|
|
2997
|
+
status: ServerState;
|
|
2998
|
+
peers: number;
|
|
2999
|
+
clients: number;
|
|
3000
|
+
cpuPeakPct: number | null;
|
|
3001
|
+
updatedAt: string;
|
|
3002
|
+
createdAt: string;
|
|
3003
|
+
};
|
|
3004
|
+
};
|
|
3005
|
+
export type VersionInfoQueryVariables = Exact<{
|
|
3006
|
+
[key: string]: never;
|
|
3007
|
+
}>;
|
|
3008
|
+
export type VersionInfoQuery = {
|
|
3009
|
+
__typename?: 'Query';
|
|
3010
|
+
versionInfo: {
|
|
3011
|
+
__typename?: 'ServerVersionInfo';
|
|
3012
|
+
serverVersion: {
|
|
3013
|
+
__typename?: 'VersionInfo';
|
|
3014
|
+
major: number;
|
|
3015
|
+
minor: number;
|
|
3016
|
+
patch: number;
|
|
3017
|
+
build: number;
|
|
3018
|
+
};
|
|
3019
|
+
minimumClientVersion: {
|
|
3020
|
+
__typename?: 'VersionInfo';
|
|
3021
|
+
major: number;
|
|
3022
|
+
minor: number;
|
|
3023
|
+
patch: number;
|
|
3024
|
+
build: number;
|
|
3025
|
+
};
|
|
3026
|
+
};
|
|
3027
|
+
};
|
|
3028
|
+
export type DeleteUserAppStateMutationVariables = Exact<{
|
|
3029
|
+
appId: Scalars['BigInt']['input'];
|
|
3030
|
+
}>;
|
|
3031
|
+
export type DeleteUserAppStateMutation = {
|
|
3032
|
+
__typename?: 'Mutation';
|
|
3033
|
+
deleteUserAppState: {
|
|
3034
|
+
__typename?: 'UserAppState';
|
|
3035
|
+
userId: string;
|
|
3036
|
+
appId: string;
|
|
3037
|
+
state: string | null;
|
|
3038
|
+
createdAt: string;
|
|
3039
|
+
updatedAt: string;
|
|
3040
|
+
};
|
|
3041
|
+
};
|
|
3042
|
+
export type UpdateUserAppStateMutationVariables = Exact<{
|
|
3043
|
+
input: CreateUserAppStateInput;
|
|
3044
|
+
}>;
|
|
3045
|
+
export type UpdateUserAppStateMutation = {
|
|
3046
|
+
__typename?: 'Mutation';
|
|
3047
|
+
updateUserAppState: {
|
|
3048
|
+
__typename?: 'UserAppState';
|
|
3049
|
+
userId: string;
|
|
3050
|
+
appId: string;
|
|
3051
|
+
state: string | null;
|
|
3052
|
+
createdAt: string;
|
|
3053
|
+
updatedAt: string;
|
|
3054
|
+
};
|
|
3055
|
+
};
|
|
3056
|
+
export type UserAppStateQueryVariables = Exact<{
|
|
3057
|
+
appId: Scalars['BigInt']['input'];
|
|
3058
|
+
}>;
|
|
3059
|
+
export type UserAppStateQuery = {
|
|
3060
|
+
__typename?: 'Query';
|
|
3061
|
+
userAppState: {
|
|
3062
|
+
__typename?: 'UserAppState';
|
|
3063
|
+
userId: string;
|
|
3064
|
+
appId: string;
|
|
3065
|
+
state: string | null;
|
|
3066
|
+
createdAt: string;
|
|
3067
|
+
updatedAt: string;
|
|
3068
|
+
} | null;
|
|
3069
|
+
};
|
|
3070
|
+
export type UserAppStatesQueryVariables = Exact<{
|
|
3071
|
+
[key: string]: never;
|
|
3072
|
+
}>;
|
|
3073
|
+
export type UserAppStatesQuery = {
|
|
3074
|
+
__typename?: 'Query';
|
|
3075
|
+
userAppStates: Array<{
|
|
3076
|
+
__typename?: 'UserAppState';
|
|
3077
|
+
userId: string;
|
|
3078
|
+
appId: string;
|
|
3079
|
+
state: string | null;
|
|
3080
|
+
createdAt: string;
|
|
3081
|
+
updatedAt: string;
|
|
3082
|
+
}>;
|
|
3083
|
+
};
|
|
3084
|
+
export type TeleportRequestMutationVariables = Exact<{
|
|
3085
|
+
input: TeleportRequestInput;
|
|
3086
|
+
}>;
|
|
3087
|
+
export type TeleportRequestMutation = {
|
|
3088
|
+
__typename?: 'Mutation';
|
|
3089
|
+
teleportRequest: {
|
|
3090
|
+
__typename?: 'TeleportResponse';
|
|
3091
|
+
success: boolean;
|
|
3092
|
+
errorCode: UdpErrorCode;
|
|
3093
|
+
};
|
|
3094
|
+
};
|
|
3095
|
+
export type ConnectUdpProxyMutationVariables = Exact<{
|
|
3096
|
+
[key: string]: never;
|
|
3097
|
+
}>;
|
|
3098
|
+
export type ConnectUdpProxyMutation = {
|
|
3099
|
+
__typename?: 'Mutation';
|
|
3100
|
+
connectUdpProxy: {
|
|
3101
|
+
__typename?: 'UdpProxyConnectionStatus';
|
|
3102
|
+
connected: boolean;
|
|
3103
|
+
serverIp6: string | null;
|
|
3104
|
+
serverClientPort: number | null;
|
|
3105
|
+
lastMessageTime: string | null;
|
|
3106
|
+
};
|
|
3107
|
+
};
|
|
3108
|
+
export type DisconnectUdpProxyMutationVariables = Exact<{
|
|
3109
|
+
[key: string]: never;
|
|
3110
|
+
}>;
|
|
3111
|
+
export type DisconnectUdpProxyMutation = {
|
|
3112
|
+
__typename?: 'Mutation';
|
|
3113
|
+
disconnectUdpProxy: boolean;
|
|
3114
|
+
};
|
|
3115
|
+
export type SendActorUpdateMutationVariables = Exact<{
|
|
3116
|
+
input: ActorUpdateRequestInput;
|
|
3117
|
+
}>;
|
|
3118
|
+
export type SendActorUpdateMutation = {
|
|
3119
|
+
__typename?: 'Mutation';
|
|
3120
|
+
sendActorUpdate: boolean;
|
|
3121
|
+
};
|
|
3122
|
+
export type SendAudioPacketMutationVariables = Exact<{
|
|
3123
|
+
input: ClientAudioPacketInput;
|
|
3124
|
+
}>;
|
|
3125
|
+
export type SendAudioPacketMutation = {
|
|
3126
|
+
__typename?: 'Mutation';
|
|
3127
|
+
sendAudioPacket: boolean;
|
|
3128
|
+
};
|
|
3129
|
+
export type SendClientEventMutationVariables = Exact<{
|
|
3130
|
+
input: ClientEventNotificationInput;
|
|
3131
|
+
}>;
|
|
3132
|
+
export type SendClientEventMutation = {
|
|
3133
|
+
__typename?: 'Mutation';
|
|
3134
|
+
sendClientEvent: boolean;
|
|
3135
|
+
};
|
|
3136
|
+
export type SendTextPacketMutationVariables = Exact<{
|
|
3137
|
+
input: ClientTextPacketInput;
|
|
3138
|
+
}>;
|
|
3139
|
+
export type SendTextPacketMutation = {
|
|
3140
|
+
__typename?: 'Mutation';
|
|
3141
|
+
sendTextPacket: boolean;
|
|
3142
|
+
};
|
|
3143
|
+
export type SendVoxelUpdateMutationVariables = Exact<{
|
|
3144
|
+
input: VoxelUpdateRequestInput;
|
|
3145
|
+
}>;
|
|
3146
|
+
export type SendVoxelUpdateMutation = {
|
|
3147
|
+
__typename?: 'Mutation';
|
|
3148
|
+
sendVoxelUpdate: boolean;
|
|
3149
|
+
};
|
|
3150
|
+
export type UdpProxyConnectionStatusQueryVariables = Exact<{
|
|
3151
|
+
[key: string]: never;
|
|
3152
|
+
}>;
|
|
3153
|
+
export type UdpProxyConnectionStatusQuery = {
|
|
3154
|
+
__typename?: 'Query';
|
|
3155
|
+
udpProxyConnectionStatus: {
|
|
3156
|
+
__typename?: 'UdpProxyConnectionStatus';
|
|
3157
|
+
connected: boolean;
|
|
3158
|
+
serverIp6: string | null;
|
|
3159
|
+
serverClientPort: number | null;
|
|
3160
|
+
lastMessageTime: string | null;
|
|
3161
|
+
};
|
|
3162
|
+
};
|
|
3163
|
+
export type DeleteMyAccountMutationVariables = Exact<{
|
|
3164
|
+
[key: string]: never;
|
|
3165
|
+
}>;
|
|
3166
|
+
export type DeleteMyAccountMutation = {
|
|
3167
|
+
__typename?: 'Mutation';
|
|
3168
|
+
deleteMyAccount: boolean;
|
|
3169
|
+
};
|
|
3170
|
+
export type ForceLogoutUserMutationVariables = Exact<{
|
|
3171
|
+
userId: Scalars['BigInt']['input'];
|
|
3172
|
+
}>;
|
|
3173
|
+
export type ForceLogoutUserMutation = {
|
|
3174
|
+
__typename?: 'Mutation';
|
|
3175
|
+
forceLogoutUser: boolean;
|
|
3176
|
+
};
|
|
3177
|
+
export type MeQueryVariables = Exact<{
|
|
3178
|
+
[key: string]: never;
|
|
3179
|
+
}>;
|
|
3180
|
+
export type MeQuery = {
|
|
3181
|
+
__typename?: 'Query';
|
|
3182
|
+
me: {
|
|
3183
|
+
__typename?: 'User';
|
|
3184
|
+
userId: string;
|
|
3185
|
+
email: string | null;
|
|
3186
|
+
gamertag: string | null;
|
|
3187
|
+
disambiguation: string | null;
|
|
3188
|
+
state: string | null;
|
|
3189
|
+
isConfirmed: boolean;
|
|
3190
|
+
createdAt: string;
|
|
3191
|
+
grantEarlyAccess: boolean;
|
|
3192
|
+
grantEarlyAccessOverride: boolean;
|
|
3193
|
+
orgId: string | null;
|
|
3194
|
+
externalId: string | null;
|
|
3195
|
+
userType: string;
|
|
3196
|
+
isSuperAdmin: boolean;
|
|
3197
|
+
} | null;
|
|
3198
|
+
};
|
|
3199
|
+
export type SetEarlyAccessOverrideMutationVariables = Exact<{
|
|
3200
|
+
userId: Scalars['BigInt']['input'];
|
|
3201
|
+
value: Scalars['Boolean']['input'];
|
|
3202
|
+
}>;
|
|
3203
|
+
export type SetEarlyAccessOverrideMutation = {
|
|
3204
|
+
__typename?: 'Mutation';
|
|
3205
|
+
setEarlyAccessOverride: {
|
|
3206
|
+
__typename?: 'User';
|
|
3207
|
+
userId: string;
|
|
3208
|
+
grantEarlyAccessOverride: boolean;
|
|
3209
|
+
};
|
|
3210
|
+
};
|
|
3211
|
+
export type SetSuperAdminMutationVariables = Exact<{
|
|
3212
|
+
userId: Scalars['BigInt']['input'];
|
|
3213
|
+
value: Scalars['Boolean']['input'];
|
|
3214
|
+
}>;
|
|
3215
|
+
export type SetSuperAdminMutation = {
|
|
3216
|
+
__typename?: 'Mutation';
|
|
3217
|
+
setSuperAdmin: {
|
|
3218
|
+
__typename?: 'User';
|
|
3219
|
+
userId: string;
|
|
3220
|
+
isSuperAdmin: boolean;
|
|
3221
|
+
};
|
|
3222
|
+
};
|
|
3223
|
+
export type UpdateGamertagMutationVariables = Exact<{
|
|
3224
|
+
input: UpdateGamertagInput;
|
|
3225
|
+
}>;
|
|
3226
|
+
export type UpdateGamertagMutation = {
|
|
3227
|
+
__typename?: 'Mutation';
|
|
3228
|
+
updateGamertag: {
|
|
3229
|
+
__typename?: 'User';
|
|
3230
|
+
userId: string;
|
|
3231
|
+
gamertag: string | null;
|
|
3232
|
+
disambiguation: string | null;
|
|
3233
|
+
userType: string;
|
|
3234
|
+
};
|
|
3235
|
+
};
|
|
3236
|
+
export type UpdateUserStateMutationVariables = Exact<{
|
|
3237
|
+
input: UpdateUserStateInput;
|
|
3238
|
+
}>;
|
|
3239
|
+
export type UpdateUserStateMutation = {
|
|
3240
|
+
__typename?: 'Mutation';
|
|
3241
|
+
updateUserState: {
|
|
3242
|
+
__typename?: 'User';
|
|
3243
|
+
userId: string;
|
|
3244
|
+
state: string | null;
|
|
3245
|
+
userType: string;
|
|
3246
|
+
};
|
|
3247
|
+
};
|
|
3248
|
+
export type UpdateUserTypeMutationVariables = Exact<{
|
|
3249
|
+
userId: Scalars['BigInt']['input'];
|
|
3250
|
+
value: Scalars['String']['input'];
|
|
3251
|
+
}>;
|
|
3252
|
+
export type UpdateUserTypeMutation = {
|
|
3253
|
+
__typename?: 'Mutation';
|
|
3254
|
+
updateUserType: {
|
|
3255
|
+
__typename?: 'User';
|
|
3256
|
+
userId: string;
|
|
3257
|
+
userType: string;
|
|
3258
|
+
};
|
|
3259
|
+
};
|
|
3260
|
+
export type UserQueryVariables = Exact<{
|
|
3261
|
+
id: Scalars['BigInt']['input'];
|
|
3262
|
+
}>;
|
|
3263
|
+
export type UserQuery = {
|
|
3264
|
+
__typename?: 'Query';
|
|
3265
|
+
user: {
|
|
3266
|
+
__typename?: 'User';
|
|
3267
|
+
userId: string;
|
|
3268
|
+
email: string | null;
|
|
3269
|
+
gamertag: string | null;
|
|
3270
|
+
disambiguation: string | null;
|
|
3271
|
+
state: string | null;
|
|
3272
|
+
isConfirmed: boolean;
|
|
3273
|
+
createdAt: string;
|
|
3274
|
+
grantEarlyAccess: boolean;
|
|
3275
|
+
grantEarlyAccessOverride: boolean;
|
|
3276
|
+
orgId: string | null;
|
|
3277
|
+
externalId: string | null;
|
|
3278
|
+
userType: string;
|
|
3279
|
+
isSuperAdmin: boolean;
|
|
3280
|
+
} | null;
|
|
3281
|
+
};
|
|
3282
|
+
export type UsersPaginatedQueryVariables = Exact<{
|
|
3283
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
3284
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3285
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3286
|
+
}>;
|
|
3287
|
+
export type UsersPaginatedQuery = {
|
|
3288
|
+
__typename?: 'Query';
|
|
3289
|
+
usersPaginated: {
|
|
3290
|
+
__typename?: 'UsersPage';
|
|
3291
|
+
items: Array<{
|
|
3292
|
+
__typename?: 'User';
|
|
3293
|
+
userId: string;
|
|
3294
|
+
email: string | null;
|
|
3295
|
+
gamertag: string | null;
|
|
3296
|
+
disambiguation: string | null;
|
|
3297
|
+
isConfirmed: boolean;
|
|
3298
|
+
createdAt: string;
|
|
3299
|
+
grantEarlyAccess: boolean;
|
|
3300
|
+
grantEarlyAccessOverride: boolean;
|
|
3301
|
+
orgId: string | null;
|
|
3302
|
+
externalId: string | null;
|
|
3303
|
+
userType: string;
|
|
3304
|
+
isSuperAdmin: boolean;
|
|
3305
|
+
}>;
|
|
3306
|
+
pageInfo: {
|
|
3307
|
+
__typename?: 'PageInfo';
|
|
3308
|
+
totalCount: number;
|
|
3309
|
+
limit: number;
|
|
3310
|
+
offset: number;
|
|
3311
|
+
};
|
|
3312
|
+
};
|
|
3313
|
+
};
|
|
3314
|
+
export type ListVoxelUpdatesByDistanceQueryVariables = Exact<{
|
|
3315
|
+
input: ListVoxelUpdatesByDistanceInput;
|
|
3316
|
+
}>;
|
|
3317
|
+
export type ListVoxelUpdatesByDistanceQuery = {
|
|
3318
|
+
__typename?: 'Query';
|
|
3319
|
+
listVoxelUpdatesByDistance: {
|
|
3320
|
+
__typename?: 'VoxelUpdatesByDistanceResponse';
|
|
3321
|
+
limit: number | null;
|
|
3322
|
+
skip: number | null;
|
|
3323
|
+
centerCoordinate: {
|
|
3324
|
+
__typename?: 'ChunkCoordinates';
|
|
3325
|
+
x: string;
|
|
3326
|
+
y: string;
|
|
3327
|
+
z: string;
|
|
3328
|
+
};
|
|
3329
|
+
chunks: Array<{
|
|
3330
|
+
__typename?: 'ChunkVoxelUpdatesResponse';
|
|
3331
|
+
coordinates: {
|
|
3332
|
+
__typename?: 'ChunkCoordinates';
|
|
3333
|
+
x: string;
|
|
3334
|
+
y: string;
|
|
3335
|
+
z: string;
|
|
3336
|
+
};
|
|
3337
|
+
voxels: Array<{
|
|
3338
|
+
__typename?: 'Voxel';
|
|
3339
|
+
voxelUpdateId: string;
|
|
3340
|
+
appId: string;
|
|
3341
|
+
voxelType: number;
|
|
3342
|
+
state: string | null;
|
|
3343
|
+
createdBy: string;
|
|
3344
|
+
createdAt: string;
|
|
3345
|
+
location: {
|
|
3346
|
+
__typename?: 'VoxelCoordinates';
|
|
3347
|
+
x: number;
|
|
3348
|
+
y: number;
|
|
3349
|
+
z: number;
|
|
3350
|
+
};
|
|
3351
|
+
}>;
|
|
3352
|
+
}>;
|
|
3353
|
+
};
|
|
3354
|
+
};
|
|
3355
|
+
export type ListVoxelsQueryVariables = Exact<{
|
|
3356
|
+
input: ListVoxelsInput;
|
|
3357
|
+
}>;
|
|
3358
|
+
export type ListVoxelsQuery = {
|
|
3359
|
+
__typename?: 'Query';
|
|
3360
|
+
listVoxels: Array<{
|
|
3361
|
+
__typename?: 'Voxel';
|
|
3362
|
+
voxelUpdateId: string;
|
|
3363
|
+
appId: string;
|
|
3364
|
+
voxelType: number;
|
|
3365
|
+
state: string | null;
|
|
3366
|
+
createdBy: string;
|
|
3367
|
+
createdAt: string;
|
|
3368
|
+
coordinates: {
|
|
3369
|
+
__typename?: 'ChunkCoordinates';
|
|
3370
|
+
x: string;
|
|
3371
|
+
y: string;
|
|
3372
|
+
z: string;
|
|
3373
|
+
};
|
|
3374
|
+
location: {
|
|
3375
|
+
__typename?: 'VoxelCoordinates';
|
|
3376
|
+
x: number;
|
|
3377
|
+
y: number;
|
|
3378
|
+
z: number;
|
|
3379
|
+
};
|
|
3380
|
+
}>;
|
|
3381
|
+
};
|
|
3382
|
+
export type RollbackVoxelUpdatesMutationVariables = Exact<{
|
|
3383
|
+
input: RollbackVoxelUpdatesInput;
|
|
3384
|
+
}>;
|
|
3385
|
+
export type RollbackVoxelUpdatesMutation = {
|
|
3386
|
+
__typename?: 'Mutation';
|
|
3387
|
+
rollbackVoxelUpdates: Array<{
|
|
3388
|
+
__typename?: 'RollbackVoxelEventResult';
|
|
3389
|
+
appId: string;
|
|
3390
|
+
fromVoxelType: number | null;
|
|
3391
|
+
toVoxelType: number | null;
|
|
3392
|
+
plannedAction: string;
|
|
3393
|
+
applied: boolean;
|
|
3394
|
+
reason: string | null;
|
|
3395
|
+
coordinates: {
|
|
3396
|
+
__typename?: 'ChunkCoordinates';
|
|
3397
|
+
x: string;
|
|
3398
|
+
y: string;
|
|
3399
|
+
z: string;
|
|
3400
|
+
};
|
|
3401
|
+
location: {
|
|
3402
|
+
__typename?: 'VoxelCoordinates';
|
|
3403
|
+
x: number;
|
|
3404
|
+
y: number;
|
|
3405
|
+
z: number;
|
|
3406
|
+
};
|
|
3407
|
+
}>;
|
|
3408
|
+
};
|
|
3409
|
+
export type UpdateVoxelMutationVariables = Exact<{
|
|
3410
|
+
input: UpdateVoxelInput;
|
|
3411
|
+
}>;
|
|
3412
|
+
export type UpdateVoxelMutation = {
|
|
3413
|
+
__typename?: 'Mutation';
|
|
3414
|
+
updateVoxel: {
|
|
3415
|
+
__typename?: 'Voxel';
|
|
3416
|
+
voxelUpdateId: string;
|
|
3417
|
+
appId: string;
|
|
3418
|
+
voxelType: number;
|
|
3419
|
+
state: string | null;
|
|
3420
|
+
createdBy: string;
|
|
3421
|
+
createdAt: string;
|
|
3422
|
+
coordinates: {
|
|
3423
|
+
__typename?: 'ChunkCoordinates';
|
|
3424
|
+
x: string;
|
|
3425
|
+
y: string;
|
|
3426
|
+
z: string;
|
|
3427
|
+
};
|
|
3428
|
+
location: {
|
|
3429
|
+
__typename?: 'VoxelCoordinates';
|
|
3430
|
+
x: number;
|
|
3431
|
+
y: number;
|
|
3432
|
+
z: number;
|
|
3433
|
+
};
|
|
3434
|
+
};
|
|
3435
|
+
};
|
|
3436
|
+
export type VoxelUpdateHistoryQueryVariables = Exact<{
|
|
3437
|
+
appId: Scalars['BigInt']['input'];
|
|
3438
|
+
userId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3439
|
+
from?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3440
|
+
to?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3441
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3442
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3443
|
+
}>;
|
|
3444
|
+
export type VoxelUpdateHistoryQuery = {
|
|
3445
|
+
__typename?: 'Query';
|
|
3446
|
+
voxelUpdateHistory: Array<{
|
|
3447
|
+
__typename?: 'VoxelUpdateHistoryEvent';
|
|
3448
|
+
id: string;
|
|
3449
|
+
appId: string;
|
|
3450
|
+
oldVoxelType: number | null;
|
|
3451
|
+
newVoxelType: number | null;
|
|
3452
|
+
changedBy: string | null;
|
|
3453
|
+
changedAt: string;
|
|
3454
|
+
coordinates: {
|
|
3455
|
+
__typename?: 'ChunkCoordinates';
|
|
3456
|
+
x: string;
|
|
3457
|
+
y: string;
|
|
3458
|
+
z: string;
|
|
3459
|
+
};
|
|
3460
|
+
location: {
|
|
3461
|
+
__typename?: 'VoxelCoordinates';
|
|
3462
|
+
x: number;
|
|
3463
|
+
y: number;
|
|
3464
|
+
z: number;
|
|
3465
|
+
};
|
|
3466
|
+
}>;
|
|
3467
|
+
};
|
|
3468
|
+
export declare const ActorDocument: DocumentNode<ActorQuery, ActorQueryVariables>;
|
|
3469
|
+
export declare const ActorsDocument: DocumentNode<ActorsQuery, ActorsQueryVariables>;
|
|
3470
|
+
export declare const BatchLookupActorsDocument: DocumentNode<BatchLookupActorsQuery, BatchLookupActorsQueryVariables>;
|
|
3471
|
+
export declare const CreateActorDocument: DocumentNode<CreateActorMutation, CreateActorMutationVariables>;
|
|
3472
|
+
export declare const DeleteActorDocument: DocumentNode<DeleteActorMutation, DeleteActorMutationVariables>;
|
|
3473
|
+
export declare const UpdateActorDocument: DocumentNode<UpdateActorMutation, UpdateActorMutationVariables>;
|
|
3474
|
+
export declare const UpdateActorStateDocument: DocumentNode<UpdateActorStateMutation, UpdateActorStateMutationVariables>;
|
|
3475
|
+
export declare const AppAccessTiersDocument: DocumentNode<AppAccessTiersQuery, AppAccessTiersQueryVariables>;
|
|
3476
|
+
export declare const AppUserAccessByAppDocument: DocumentNode<AppUserAccessByAppQuery, AppUserAccessByAppQueryVariables>;
|
|
3477
|
+
export declare const ArchiveAccessTierDocument: DocumentNode<ArchiveAccessTierMutation, ArchiveAccessTierMutationVariables>;
|
|
3478
|
+
export declare const CreateAccessTierDocument: DocumentNode<CreateAccessTierMutation, CreateAccessTierMutationVariables>;
|
|
3479
|
+
export declare const GrantAppAccessDocument: DocumentNode<GrantAppAccessMutation, GrantAppAccessMutationVariables>;
|
|
3480
|
+
export declare const MyAppAccessDocument: DocumentNode<MyAppAccessQuery, MyAppAccessQueryVariables>;
|
|
3481
|
+
export declare const RevokeAppAccessDocument: DocumentNode<RevokeAppAccessMutation, RevokeAppAccessMutationVariables>;
|
|
3482
|
+
export declare const UpdateAccessTierDocument: DocumentNode<UpdateAccessTierMutation, UpdateAccessTierMutationVariables>;
|
|
3483
|
+
export declare const AppDocument: DocumentNode<AppQuery, AppQueryVariables>;
|
|
3484
|
+
export declare const AppBySlugDocument: DocumentNode<AppBySlugQuery, AppBySlugQueryVariables>;
|
|
3485
|
+
export declare const AppsForOrgDocument: DocumentNode<AppsForOrgQuery, AppsForOrgQueryVariables>;
|
|
3486
|
+
export declare const ArchiveAppDocument: DocumentNode<ArchiveAppMutation, ArchiveAppMutationVariables>;
|
|
3487
|
+
export declare const CreateAppDocument: DocumentNode<CreateAppMutation, CreateAppMutationVariables>;
|
|
3488
|
+
export declare const MarketplaceAppsDocument: DocumentNode<MarketplaceAppsQuery, MarketplaceAppsQueryVariables>;
|
|
3489
|
+
export declare const MyAppsDocument: DocumentNode<MyAppsQuery, MyAppsQueryVariables>;
|
|
3490
|
+
export declare const SetAppVisibilityDocument: DocumentNode<SetAppVisibilityMutation, SetAppVisibilityMutationVariables>;
|
|
3491
|
+
export declare const UpdateAppDocument: DocumentNode<UpdateAppMutation, UpdateAppMutationVariables>;
|
|
3492
|
+
export declare const ChangePasswordDocument: DocumentNode<ChangePasswordMutation, ChangePasswordMutationVariables>;
|
|
3493
|
+
export declare const ConfirmEmailDocument: DocumentNode<ConfirmEmailMutation, ConfirmEmailMutationVariables>;
|
|
3494
|
+
export declare const LoginDocument: DocumentNode<LoginMutation, LoginMutationVariables>;
|
|
3495
|
+
export declare const LogoutDocument: DocumentNode<LogoutMutation, LogoutMutationVariables>;
|
|
3496
|
+
export declare const LogoutAllDevicesDocument: DocumentNode<LogoutAllDevicesMutation, LogoutAllDevicesMutationVariables>;
|
|
3497
|
+
export declare const RegisterDocument: DocumentNode<RegisterMutation, RegisterMutationVariables>;
|
|
3498
|
+
export declare const RequestPasswordResetDocument: DocumentNode<RequestPasswordResetMutation, RequestPasswordResetMutationVariables>;
|
|
3499
|
+
export declare const ResendConfirmationEmailDocument: DocumentNode<ResendConfirmationEmailMutation, ResendConfirmationEmailMutationVariables>;
|
|
3500
|
+
export declare const ResetPasswordDocument: DocumentNode<ResetPasswordMutation, ResetPasswordMutationVariables>;
|
|
3501
|
+
export declare const AppBudgetDocument: DocumentNode<AppBudgetQuery, AppBudgetQueryVariables>;
|
|
3502
|
+
export declare const AppBudgetsDocument: DocumentNode<AppBudgetsQuery, AppBudgetsQueryVariables>;
|
|
3503
|
+
export declare const SetAppBudgetDocument: DocumentNode<SetAppBudgetMutation, SetAppBudgetMutationVariables>;
|
|
3504
|
+
export declare const WalletBalanceDocument: DocumentNode<WalletBalanceQuery, WalletBalanceQueryVariables>;
|
|
3505
|
+
export declare const WalletTransactionsDocument: DocumentNode<WalletTransactionsQuery, WalletTransactionsQueryVariables>;
|
|
3506
|
+
export declare const GetChunkDocument: DocumentNode<GetChunkQuery, GetChunkQueryVariables>;
|
|
3507
|
+
export declare const GetChunkLodsDocument: DocumentNode<GetChunkLodsQuery, GetChunkLodsQueryVariables>;
|
|
3508
|
+
export declare const GetChunksByDistanceDocument: DocumentNode<GetChunksByDistanceQuery, GetChunksByDistanceQueryVariables>;
|
|
3509
|
+
export declare const GetVoxelListDocument: DocumentNode<GetVoxelListQuery, GetVoxelListQueryVariables>;
|
|
3510
|
+
export declare const UpdateChunkDocument: DocumentNode<UpdateChunkMutation, UpdateChunkMutationVariables>;
|
|
3511
|
+
export declare const UpdateChunkLodsDocument: DocumentNode<UpdateChunkLodsMutation, UpdateChunkLodsMutationVariables>;
|
|
3512
|
+
export declare const UpdateChunkStateDocument: DocumentNode<UpdateChunkStateMutation, UpdateChunkStateMutationVariables>;
|
|
3513
|
+
export declare const CreateOrgRoleDocument: DocumentNode<CreateOrgRoleMutation, CreateOrgRoleMutationVariables>;
|
|
3514
|
+
export declare const CreateOrgTokenDocument: DocumentNode<CreateOrgTokenMutation, CreateOrgTokenMutationVariables>;
|
|
3515
|
+
export declare const CreateOrganizationDocument: DocumentNode<CreateOrganizationMutation, CreateOrganizationMutationVariables>;
|
|
3516
|
+
export declare const DeleteOrgRoleDocument: DocumentNode<DeleteOrgRoleMutation, DeleteOrgRoleMutationVariables>;
|
|
3517
|
+
export declare const InviteOrgMemberDocument: DocumentNode<InviteOrgMemberMutation, InviteOrgMemberMutationVariables>;
|
|
3518
|
+
export declare const MyOrganizationsDocument: DocumentNode<MyOrganizationsQuery, MyOrganizationsQueryVariables>;
|
|
3519
|
+
export declare const OrgMembersDocument: DocumentNode<OrgMembersQuery, OrgMembersQueryVariables>;
|
|
3520
|
+
export declare const OrgPermissionsDocument: DocumentNode<OrgPermissionsQuery, OrgPermissionsQueryVariables>;
|
|
3521
|
+
export declare const OrgRolesDocument: DocumentNode<OrgRolesQuery, OrgRolesQueryVariables>;
|
|
3522
|
+
export declare const OrgTokensDocument: DocumentNode<OrgTokensQuery, OrgTokensQueryVariables>;
|
|
3523
|
+
export declare const OrganizationDocument: DocumentNode<OrganizationQuery, OrganizationQueryVariables>;
|
|
3524
|
+
export declare const OrganizationBySlugDocument: DocumentNode<OrganizationBySlugQuery, OrganizationBySlugQueryVariables>;
|
|
3525
|
+
export declare const RemoveOrgMemberDocument: DocumentNode<RemoveOrgMemberMutation, RemoveOrgMemberMutationVariables>;
|
|
3526
|
+
export declare const RevokeOrgTokenDocument: DocumentNode<RevokeOrgTokenMutation, RevokeOrgTokenMutationVariables>;
|
|
3527
|
+
export declare const SetOrgStatusDocument: DocumentNode<SetOrgStatusMutation, SetOrgStatusMutationVariables>;
|
|
3528
|
+
export declare const UpdateOrgMemberRolesDocument: DocumentNode<UpdateOrgMemberRolesMutation, UpdateOrgMemberRolesMutationVariables>;
|
|
3529
|
+
export declare const UpdateOrgRoleDocument: DocumentNode<UpdateOrgRoleMutation, UpdateOrgRoleMutationVariables>;
|
|
3530
|
+
export declare const UpdateOrgTokenDocument: DocumentNode<UpdateOrgTokenMutation, UpdateOrgTokenMutationVariables>;
|
|
3531
|
+
export declare const CheckoutsDocument: DocumentNode<CheckoutsQuery, CheckoutsQueryVariables>;
|
|
3532
|
+
export declare const CreateCheckoutDocument: DocumentNode<CreateCheckoutMutation, CreateCheckoutMutationVariables>;
|
|
3533
|
+
export declare const MyCheckoutsDocument: DocumentNode<MyCheckoutsQuery, MyCheckoutsQueryVariables>;
|
|
3534
|
+
export declare const DeleteQuotaDocument: DocumentNode<DeleteQuotaMutation, DeleteQuotaMutationVariables>;
|
|
3535
|
+
export declare const EffectiveQuotaDocument: DocumentNode<EffectiveQuotaQuery, EffectiveQuotaQueryVariables>;
|
|
3536
|
+
export declare const QuotasForAppDocument: DocumentNode<QuotasForAppQuery, QuotasForAppQueryVariables>;
|
|
3537
|
+
export declare const QuotasForOrgDocument: DocumentNode<QuotasForOrgQuery, QuotasForOrgQueryVariables>;
|
|
3538
|
+
export declare const SetQuotaDocument: DocumentNode<SetQuotaMutation, SetQuotaMutationVariables>;
|
|
3539
|
+
export declare const ActiveGraphQlServersDocument: DocumentNode<ActiveGraphQlServersQuery, ActiveGraphQlServersQueryVariables>;
|
|
3540
|
+
export declare const GraphqlServersDocument: DocumentNode<GraphqlServersQuery, GraphqlServersQueryVariables>;
|
|
3541
|
+
export declare const ServerWithLeastClientsDocument: DocumentNode<ServerWithLeastClientsQuery, ServerWithLeastClientsQueryVariables>;
|
|
3542
|
+
export declare const VersionInfoDocument: DocumentNode<VersionInfoQuery, VersionInfoQueryVariables>;
|
|
3543
|
+
export declare const DeleteUserAppStateDocument: DocumentNode<DeleteUserAppStateMutation, DeleteUserAppStateMutationVariables>;
|
|
3544
|
+
export declare const UpdateUserAppStateDocument: DocumentNode<UpdateUserAppStateMutation, UpdateUserAppStateMutationVariables>;
|
|
3545
|
+
export declare const UserAppStateDocument: DocumentNode<UserAppStateQuery, UserAppStateQueryVariables>;
|
|
3546
|
+
export declare const UserAppStatesDocument: DocumentNode<UserAppStatesQuery, UserAppStatesQueryVariables>;
|
|
3547
|
+
export declare const TeleportRequestDocument: DocumentNode<TeleportRequestMutation, TeleportRequestMutationVariables>;
|
|
3548
|
+
export declare const ConnectUdpProxyDocument: DocumentNode<ConnectUdpProxyMutation, ConnectUdpProxyMutationVariables>;
|
|
3549
|
+
export declare const DisconnectUdpProxyDocument: DocumentNode<DisconnectUdpProxyMutation, DisconnectUdpProxyMutationVariables>;
|
|
3550
|
+
export declare const SendActorUpdateDocument: DocumentNode<SendActorUpdateMutation, SendActorUpdateMutationVariables>;
|
|
3551
|
+
export declare const SendAudioPacketDocument: DocumentNode<SendAudioPacketMutation, SendAudioPacketMutationVariables>;
|
|
3552
|
+
export declare const SendClientEventDocument: DocumentNode<SendClientEventMutation, SendClientEventMutationVariables>;
|
|
3553
|
+
export declare const SendTextPacketDocument: DocumentNode<SendTextPacketMutation, SendTextPacketMutationVariables>;
|
|
3554
|
+
export declare const SendVoxelUpdateDocument: DocumentNode<SendVoxelUpdateMutation, SendVoxelUpdateMutationVariables>;
|
|
3555
|
+
export declare const UdpProxyConnectionStatusDocument: DocumentNode<UdpProxyConnectionStatusQuery, UdpProxyConnectionStatusQueryVariables>;
|
|
3556
|
+
export declare const DeleteMyAccountDocument: DocumentNode<DeleteMyAccountMutation, DeleteMyAccountMutationVariables>;
|
|
3557
|
+
export declare const ForceLogoutUserDocument: DocumentNode<ForceLogoutUserMutation, ForceLogoutUserMutationVariables>;
|
|
3558
|
+
export declare const MeDocument: DocumentNode<MeQuery, MeQueryVariables>;
|
|
3559
|
+
export declare const SetEarlyAccessOverrideDocument: DocumentNode<SetEarlyAccessOverrideMutation, SetEarlyAccessOverrideMutationVariables>;
|
|
3560
|
+
export declare const SetSuperAdminDocument: DocumentNode<SetSuperAdminMutation, SetSuperAdminMutationVariables>;
|
|
3561
|
+
export declare const UpdateGamertagDocument: DocumentNode<UpdateGamertagMutation, UpdateGamertagMutationVariables>;
|
|
3562
|
+
export declare const UpdateUserStateDocument: DocumentNode<UpdateUserStateMutation, UpdateUserStateMutationVariables>;
|
|
3563
|
+
export declare const UpdateUserTypeDocument: DocumentNode<UpdateUserTypeMutation, UpdateUserTypeMutationVariables>;
|
|
3564
|
+
export declare const UserDocument: DocumentNode<UserQuery, UserQueryVariables>;
|
|
3565
|
+
export declare const UsersPaginatedDocument: DocumentNode<UsersPaginatedQuery, UsersPaginatedQueryVariables>;
|
|
3566
|
+
export declare const ListVoxelUpdatesByDistanceDocument: DocumentNode<ListVoxelUpdatesByDistanceQuery, ListVoxelUpdatesByDistanceQueryVariables>;
|
|
3567
|
+
export declare const ListVoxelsDocument: DocumentNode<ListVoxelsQuery, ListVoxelsQueryVariables>;
|
|
3568
|
+
export declare const RollbackVoxelUpdatesDocument: DocumentNode<RollbackVoxelUpdatesMutation, RollbackVoxelUpdatesMutationVariables>;
|
|
3569
|
+
export declare const UpdateVoxelDocument: DocumentNode<UpdateVoxelMutation, UpdateVoxelMutationVariables>;
|
|
3570
|
+
export declare const VoxelUpdateHistoryDocument: DocumentNode<VoxelUpdateHistoryQuery, VoxelUpdateHistoryQueryVariables>;
|
|
3571
|
+
//# sourceMappingURL=graphql.d.ts.map
|