@crowdedkingdoms/crowdyjs 10.0.0 → 11.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/MIGRATION.md +59 -48
- package/README.md +29 -21
- package/dist/crowdy-client.d.ts +3 -3
- package/dist/crowdy-client.d.ts.map +1 -1
- package/dist/crowdy-client.js +2 -2
- package/dist/crowdy-studio/controller.d.ts +188 -0
- package/dist/crowdy-studio/controller.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/controller.js +22 -22
- package/dist/crowdy-studio/diagnostics.d.ts +22 -0
- package/dist/crowdy-studio/diagnostics.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/diagnostics.js +2 -2
- package/dist/{mod-studio → crowdy-studio}/dom-shell.d.ts +4 -4
- package/dist/crowdy-studio/dom-shell.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/dom-shell.js +31 -31
- package/dist/crowdy-studio/editor.d.ts +17 -0
- package/dist/crowdy-studio/editor.d.ts.map +1 -0
- package/dist/crowdy-studio/index.d.ts +10 -0
- package/dist/crowdy-studio/index.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/index.js +4 -4
- package/dist/crowdy-studio/models.d.ts +149 -0
- package/dist/crowdy-studio/models.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/models.js +10 -10
- package/dist/{mod-studio → crowdy-studio}/monaco-editor.d.ts +3 -3
- package/dist/crowdy-studio/monaco-editor.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/monaco-editor.js +4 -4
- package/dist/crowdy-studio/mount.d.ts +23 -0
- package/dist/crowdy-studio/mount.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/mount.js +48 -14
- package/dist/crowdy-studio/starter-projects.d.ts +11 -0
- package/dist/crowdy-studio/starter-projects.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/starter-projects.js +2 -2
- package/dist/crowdy-studio/styles.d.ts +2 -0
- package/dist/crowdy-studio/styles.d.ts.map +1 -0
- package/dist/crowdy-studio/styles.js +14 -0
- package/dist/crowdy-studio/textarea-editor.d.ts +8 -0
- package/dist/crowdy-studio/textarea-editor.d.ts.map +1 -0
- package/dist/{mod-studio → crowdy-studio}/textarea-editor.js +3 -3
- package/dist/domains/crowdyStudio.d.ts +27 -0
- package/dist/domains/crowdyStudio.d.ts.map +1 -0
- package/dist/domains/{playerCodeProjects.js → crowdyStudio.js} +47 -45
- package/dist/domains/playerCompute.d.ts +1 -1
- package/dist/domains/playerCompute.js +1 -1
- package/dist/generated/graphql.d.ts +670 -670
- package/dist/generated/graphql.d.ts.map +1 -1
- package/dist/generated/graphql.js +57 -57
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/kit/npcs.d.ts.map +1 -1
- package/dist/kit/social.d.ts.map +1 -1
- package/dist/live-coding/rust-analysis.js +1 -1
- package/package.json +4 -4
- package/dist/domains/playerCodeProjects.d.ts +0 -25
- package/dist/domains/playerCodeProjects.d.ts.map +0 -1
- package/dist/mod-studio/controller.d.ts +0 -188
- package/dist/mod-studio/controller.d.ts.map +0 -1
- package/dist/mod-studio/diagnostics.d.ts +0 -22
- package/dist/mod-studio/diagnostics.d.ts.map +0 -1
- package/dist/mod-studio/dom-shell.d.ts.map +0 -1
- package/dist/mod-studio/editor.d.ts +0 -17
- package/dist/mod-studio/editor.d.ts.map +0 -1
- package/dist/mod-studio/index.d.ts +0 -10
- package/dist/mod-studio/index.d.ts.map +0 -1
- package/dist/mod-studio/models.d.ts +0 -149
- package/dist/mod-studio/models.d.ts.map +0 -1
- package/dist/mod-studio/monaco-editor.d.ts.map +0 -1
- package/dist/mod-studio/mount.d.ts +0 -17
- package/dist/mod-studio/mount.d.ts.map +0 -1
- package/dist/mod-studio/starter-projects.d.ts +0 -11
- package/dist/mod-studio/starter-projects.d.ts.map +0 -1
- package/dist/mod-studio/styles.d.ts +0 -2
- package/dist/mod-studio/styles.d.ts.map +0 -1
- package/dist/mod-studio/styles.js +0 -14
- package/dist/mod-studio/textarea-editor.d.ts +0 -8
- package/dist/mod-studio/textarea-editor.d.ts.map +0 -1
- /package/dist/{mod-studio → crowdy-studio}/editor.js +0 -0
|
@@ -92,6 +92,54 @@ export var CodeAdmissionSubjectKind;
|
|
|
92
92
|
CodeAdmissionSubjectKind["Code"] = "CODE";
|
|
93
93
|
CodeAdmissionSubjectKind["Org"] = "ORG";
|
|
94
94
|
})(CodeAdmissionSubjectKind || (CodeAdmissionSubjectKind = {}));
|
|
95
|
+
/** Crowdy Studio catalog visibility. Player catalog queries return only published entries. */
|
|
96
|
+
export var CrowdyStudioCommonStatus;
|
|
97
|
+
(function (CrowdyStudioCommonStatus) {
|
|
98
|
+
/** Retained for provenance but hidden from new player catalog reads and imports. */
|
|
99
|
+
CrowdyStudioCommonStatus["Archived"] = "ARCHIVED";
|
|
100
|
+
/** Crowdy Studio work in progress; hidden from player common-file queries. */
|
|
101
|
+
CrowdyStudioCommonStatus["Draft"] = "DRAFT";
|
|
102
|
+
/** Available to app-scoped players for reading and copy-by-value import. */
|
|
103
|
+
CrowdyStudioCommonStatus["Published"] = "PUBLISHED";
|
|
104
|
+
})(CrowdyStudioCommonStatus || (CrowdyStudioCommonStatus = {}));
|
|
105
|
+
/** How a project file entered the project. Imported content is copied by value; provenance is informational and does not create a live link. */
|
|
106
|
+
export var CrowdyStudioFileProvenance;
|
|
107
|
+
(function (CrowdyStudioFileProvenance) {
|
|
108
|
+
/** The owner authored or directly saved this project file. */
|
|
109
|
+
CrowdyStudioFileProvenance["Authored"] = "AUTHORED";
|
|
110
|
+
/** The file was copied from a specific immutable version of the app’s Crowdy Studio-curated common catalog. */
|
|
111
|
+
CrowdyStudioFileProvenance["Common"] = "COMMON";
|
|
112
|
+
/** The file was copied from a specific revision of the owner’s private personal library. */
|
|
113
|
+
CrowdyStudioFileProvenance["Library"] = "LIBRARY";
|
|
114
|
+
})(CrowdyStudioFileProvenance || (CrowdyStudioFileProvenance = {}));
|
|
115
|
+
/** The source catalog used for a copy-by-value project file import. */
|
|
116
|
+
export var CrowdyStudioImportSource;
|
|
117
|
+
(function (CrowdyStudioImportSource) {
|
|
118
|
+
/** Import from an immutable published common-file version in the requested app. */
|
|
119
|
+
CrowdyStudioImportSource["Common"] = "COMMON";
|
|
120
|
+
/** Import from a private personal-library file owned by the authenticated caller. */
|
|
121
|
+
CrowdyStudioImportSource["Library"] = "LIBRARY";
|
|
122
|
+
})(CrowdyStudioImportSource || (CrowdyStudioImportSource = {}));
|
|
123
|
+
/** Editor preference describing how the project presents its server and client targets; it never grants deployment or runtime authority. */
|
|
124
|
+
export var CrowdyStudioPairingPreference;
|
|
125
|
+
(function (CrowdyStudioPairingPreference) {
|
|
126
|
+
/** Present only the client-target authoring workflow. */
|
|
127
|
+
CrowdyStudioPairingPreference["ClientOnly"] = "CLIENT_ONLY";
|
|
128
|
+
/** Present server and client sources independently without an implied requirement edge. */
|
|
129
|
+
CrowdyStudioPairingPreference["Independent"] = "INDEPENDENT";
|
|
130
|
+
/** Present server and client sources as two coordinated halves of one Crowdy Studio project. */
|
|
131
|
+
CrowdyStudioPairingPreference["Paired"] = "PAIRED";
|
|
132
|
+
/** Present only the server-target authoring workflow. */
|
|
133
|
+
CrowdyStudioPairingPreference["ServerOnly"] = "SERVER_ONLY";
|
|
134
|
+
})(CrowdyStudioPairingPreference || (CrowdyStudioPairingPreference = {}));
|
|
135
|
+
/** The independently capped source target inside a player-owned Crowdy Studio project. */
|
|
136
|
+
export var CrowdyStudioTarget;
|
|
137
|
+
(function (CrowdyStudioTarget) {
|
|
138
|
+
/** Browser-worker Rust that can run only after the caller separately passes current grid ownership and write_client_code deployment checks. */
|
|
139
|
+
CrowdyStudioTarget["Client"] = "CLIENT";
|
|
140
|
+
/** Server-target Rust that can run only after the caller separately passes current grid ownership and write_server_code deployment checks. */
|
|
141
|
+
CrowdyStudioTarget["Server"] = "SERVER";
|
|
142
|
+
})(CrowdyStudioTarget || (CrowdyStudioTarget = {}));
|
|
95
143
|
/** How a player claim confers grid ownership in this app (D4): SELF_CLAIM (the claim alone assigns ownership), APPROVAL (claims create requests designated approvers accept), INVITE (only against a standing invite), or MARKETPLACE_ONLY (only a marketplace grid purchase; direct claims refused — the purchase edge ships in P4b). */
|
|
96
144
|
export var GridClaimPolicy;
|
|
97
145
|
(function (GridClaimPolicy) {
|
|
@@ -137,34 +185,6 @@ export var PlayerCodeAdmissionState;
|
|
|
137
185
|
PlayerCodeAdmissionState["Pending"] = "PENDING";
|
|
138
186
|
PlayerCodeAdmissionState["Revoked"] = "REVOKED";
|
|
139
187
|
})(PlayerCodeAdmissionState || (PlayerCodeAdmissionState = {}));
|
|
140
|
-
/** Studio-controlled catalog visibility. Player catalog queries return only published entries. */
|
|
141
|
-
export var PlayerCodeCommonStatus;
|
|
142
|
-
(function (PlayerCodeCommonStatus) {
|
|
143
|
-
/** Retained for provenance but hidden from new player catalog reads and imports. */
|
|
144
|
-
PlayerCodeCommonStatus["Archived"] = "ARCHIVED";
|
|
145
|
-
/** Studio work in progress; hidden from player common-file queries. */
|
|
146
|
-
PlayerCodeCommonStatus["Draft"] = "DRAFT";
|
|
147
|
-
/** Available to app-scoped players for reading and copy-by-value import. */
|
|
148
|
-
PlayerCodeCommonStatus["Published"] = "PUBLISHED";
|
|
149
|
-
})(PlayerCodeCommonStatus || (PlayerCodeCommonStatus = {}));
|
|
150
|
-
/** How a project file entered the project. Imported content is copied by value; provenance is informational and does not create a live link. */
|
|
151
|
-
export var PlayerCodeFileProvenance;
|
|
152
|
-
(function (PlayerCodeFileProvenance) {
|
|
153
|
-
/** The owner authored or directly saved this project file. */
|
|
154
|
-
PlayerCodeFileProvenance["Authored"] = "AUTHORED";
|
|
155
|
-
/** The file was copied from a specific immutable version of the app’s studio-curated common catalog. */
|
|
156
|
-
PlayerCodeFileProvenance["Common"] = "COMMON";
|
|
157
|
-
/** The file was copied from a specific revision of the owner’s private personal library. */
|
|
158
|
-
PlayerCodeFileProvenance["Library"] = "LIBRARY";
|
|
159
|
-
})(PlayerCodeFileProvenance || (PlayerCodeFileProvenance = {}));
|
|
160
|
-
/** The source catalog used for a copy-by-value project file import. */
|
|
161
|
-
export var PlayerCodeImportSource;
|
|
162
|
-
(function (PlayerCodeImportSource) {
|
|
163
|
-
/** Import from an immutable published common-file version in the requested app. */
|
|
164
|
-
PlayerCodeImportSource["Common"] = "COMMON";
|
|
165
|
-
/** Import from a private personal-library file owned by the authenticated caller. */
|
|
166
|
-
PlayerCodeImportSource["Library"] = "LIBRARY";
|
|
167
|
-
})(PlayerCodeImportSource || (PlayerCodeImportSource = {}));
|
|
168
188
|
/** Source-access mode of a listing: CLOSED (artifacts + contracts only) or OPEN_SOURCE (source readable; irreversible per published version). */
|
|
169
189
|
export var PlayerCodeLicenseMode;
|
|
170
190
|
(function (PlayerCodeLicenseMode) {
|
|
@@ -184,26 +204,6 @@ export var PlayerCodeOwnerKind;
|
|
|
184
204
|
PlayerCodeOwnerKind["Org"] = "ORG";
|
|
185
205
|
PlayerCodeOwnerKind["User"] = "USER";
|
|
186
206
|
})(PlayerCodeOwnerKind || (PlayerCodeOwnerKind = {}));
|
|
187
|
-
/** Editor preference describing how the project presents its server and client targets; it never grants deployment or runtime authority. */
|
|
188
|
-
export var PlayerCodePairingPreference;
|
|
189
|
-
(function (PlayerCodePairingPreference) {
|
|
190
|
-
/** Present only the client-target authoring workflow. */
|
|
191
|
-
PlayerCodePairingPreference["ClientOnly"] = "CLIENT_ONLY";
|
|
192
|
-
/** Present server and client sources independently without an implied requirement edge. */
|
|
193
|
-
PlayerCodePairingPreference["Independent"] = "INDEPENDENT";
|
|
194
|
-
/** Present server and client sources as two coordinated halves of one mod. */
|
|
195
|
-
PlayerCodePairingPreference["Paired"] = "PAIRED";
|
|
196
|
-
/** Present only the server-target authoring workflow. */
|
|
197
|
-
PlayerCodePairingPreference["ServerOnly"] = "SERVER_ONLY";
|
|
198
|
-
})(PlayerCodePairingPreference || (PlayerCodePairingPreference = {}));
|
|
199
|
-
/** The independently capped source target inside a player-owned Mod Studio project. */
|
|
200
|
-
export var PlayerCodeTarget;
|
|
201
|
-
(function (PlayerCodeTarget) {
|
|
202
|
-
/** Browser-worker Rust that can run only after the caller separately passes current grid ownership and write_client_code deployment checks. */
|
|
203
|
-
PlayerCodeTarget["Client"] = "CLIENT";
|
|
204
|
-
/** Server-target Rust that can run only after the caller separately passes current grid ownership and write_server_code deployment checks. */
|
|
205
|
-
PlayerCodeTarget["Server"] = "SERVER";
|
|
206
|
-
})(PlayerCodeTarget || (PlayerCodeTarget = {}));
|
|
207
207
|
/** Execution target for player-authored Rust. SERVER runs as the grid owner in game-api; CLIENT runs as the actual player in the browser worker sandbox. */
|
|
208
208
|
export var PlayerComputeTarget;
|
|
209
209
|
(function (PlayerComputeTarget) {
|
|
@@ -315,6 +315,7 @@ export const ComputeVersionFieldsFragmentDoc = { "kind": "Document", "definition
|
|
|
315
315
|
export const ComputeTriggerFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ComputeTriggerFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "WasmModuleTrigger" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "triggerId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "moduleId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "triggerType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tickHz" } }, { "kind": "Field", "name": { "kind": "Name", "value": "onEvent" } }, { "kind": "Field", "name": { "kind": "Name", "value": "functionName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "containerTypeName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "propertyKey" } }, { "kind": "Field", "name": { "kind": "Name", "value": "eventName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "debounceMs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "exportName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "invokePolicyJson" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contractJson" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }] } }] };
|
|
316
316
|
export const ComputePolicyFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ComputePolicyFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "WasmModulePolicy" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enabled" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxModules" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxTickHz" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fuelPerTick" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fuelPerInvoke" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxMemoryMb" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxRunMs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxDbOpsPerTick" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxEgressMsgsPerMin" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxEgressBytesPerMin" } }, { "kind": "Field", "name": { "kind": "Name", "value": "failureThreshold" } }, { "kind": "Field", "name": { "kind": "Name", "value": "cooldownMs" } }] } }] };
|
|
317
317
|
export const ComputeRunFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ComputeRunFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "WasmModuleRun" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "runId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "moduleId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "moduleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "triggerSource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "entry" } }, { "kind": "Field", "name": { "kind": "Name", "value": "startedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "durationUs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fuelUsed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "dbReads" } }, { "kind": "Field", "name": { "kind": "Name", "value": "dbWrites" } }, { "kind": "Field", "name": { "kind": "Name", "value": "egressMsgs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "egressBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "success" } }, { "kind": "Field", "name": { "kind": "Name", "value": "errorMessage" } }, { "kind": "Field", "name": { "kind": "Name", "value": "circuitAction" } }] } }] };
|
|
318
|
+
export const CrowdyStudioProjectFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CrowdyStudioProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
318
319
|
export const GridOwnershipFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "GridOwnershipFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "GridOwnership" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "gridOwnershipId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerKind" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerRef" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tenure" } }, { "kind": "Field", "name": { "kind": "Name", "value": "acquiredVia" } }, { "kind": "Field", "name": { "kind": "Name", "value": "acquiredAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "expiresAt" } }] } }] };
|
|
319
320
|
export const GmAutomationFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "GmAutomationFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "GmAutomation" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "automationId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enabled" } }, { "kind": "Field", "name": { "kind": "Name", "value": "actionKind" } }, { "kind": "Field", "name": { "kind": "Name", "value": "functionName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "computeModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "computeExport" } }, { "kind": "Field", "name": { "kind": "Name", "value": "targetMode" } }, { "kind": "Field", "name": { "kind": "Name", "value": "selfContainerId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "targetTypeName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sessionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "paramsJson" } }, { "kind": "Field", "name": { "kind": "Name", "value": "selectorJson" } }, { "kind": "Field", "name": { "kind": "Name", "value": "runAsUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "triggerType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "scheduleKind" } }, { "kind": "Field", "name": { "kind": "Name", "value": "intervalMs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "cronExpr" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxTargets" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxFnDepth" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gasLimit" } }, { "kind": "Field", "name": { "kind": "Name", "value": "runTimeoutMs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxRunsPerMinute" } }, { "kind": "Field", "name": { "kind": "Name", "value": "failureThreshold" } }, { "kind": "Field", "name": { "kind": "Name", "value": "cooldownMs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "circuitState" } }, { "kind": "Field", "name": { "kind": "Name", "value": "consecutiveFailures" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pausedUntil" } }, { "kind": "Field", "name": { "kind": "Name", "value": "lastError" } }, { "kind": "Field", "name": { "kind": "Name", "value": "lastRunAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "nextRunAt" } }] } }] };
|
|
320
321
|
export const GmAutomationTriggerFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "GmAutomationTriggerFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "GmAutomationTrigger" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "triggerId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "automationId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "onEvent" } }, { "kind": "Field", "name": { "kind": "Name", "value": "functionName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "containerTypeName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "propertyKey" } }, { "kind": "Field", "name": { "kind": "Name", "value": "debounceMs" } }] } }] };
|
|
@@ -330,7 +331,6 @@ export const PlayerCodeListingVersionFieldsFragmentDoc = { "kind": "Document", "
|
|
|
330
331
|
export const PlayerCodeAcquisitionFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerCodeAcquisitionFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerCodeAcquisition" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "acquisitionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "listingId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "mode" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "expiresAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "unitBudget" } }, { "kind": "Field", "name": { "kind": "Name", "value": "unitsConsumed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "acquiredAt" } }] } }] };
|
|
331
332
|
export const PlayerCodeInstallFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerCodeInstallFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerCodeInstall" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "installId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "acquisitionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "listingId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pinnedVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "targetGridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "consentedCapabilityHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }] } }] };
|
|
332
333
|
export const GridClaimRequestFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "GridClaimRequestFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "GridClaimRequest" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "requestId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "requesterUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }] } }] };
|
|
333
|
-
export const PlayerCodeProjectFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerCodeProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
334
334
|
export const PlayerWasmModuleFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerWasmModuleFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerWasmModule" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "moduleId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "authorUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "authorOrgId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enabled" } }, { "kind": "Field", "name": { "kind": "Name", "value": "draft" } }, { "kind": "Field", "name": { "kind": "Name", "value": "currentVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "currentTarget" } }, { "kind": "Field", "name": { "kind": "Name", "value": "circuitState" } }, { "kind": "Field", "name": { "kind": "Name", "value": "lastError" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] };
|
|
335
335
|
export const PlayerWasmModuleVersionFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerWasmModuleVersionFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerWasmModuleVersion" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "versionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "moduleId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "versionNo" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sourceFilesJson" } }, { "kind": "Field", "name": { "kind": "Name", "value": "openSource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "compileStatus" } }, { "kind": "Field", "name": { "kind": "Name", "value": "compileLog" } }, { "kind": "Field", "name": { "kind": "Name", "value": "compiledSizeBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }] } }] };
|
|
336
336
|
export const PlayerWasmModuleRunFieldsFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerWasmModuleRunFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerWasmModuleRun" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "runId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "moduleId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "moduleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "executedAsUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "triggerSource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "startedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "durationUs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fuelUsed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "success" } }, { "kind": "Field", "name": { "kind": "Name", "value": "errorMessage" } }] } }] };
|
|
@@ -463,6 +463,14 @@ export const PublishEnvironmentReleaseFromGameApiTagDocument = { "kind": "Docume
|
|
|
463
463
|
export const YankEnvironmentVersionDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "YankEnvironmentVersion" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "version" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "yankEnvironmentVersion" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "version" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "version" } } }] }] } }] };
|
|
464
464
|
export const CpComputePlatformCeilingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "CpComputePlatformCeilings" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "cpComputePlatformCeilings" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "maxModules" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxTickHz" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fuelPerTick" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fuelPerInvoke" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxMemoryMb" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxRunMs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxDbOpsPerTick" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxEgressMsgsPerMin" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxEgressBytesPerMin" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedByUserId" } }] } }] } }] };
|
|
465
465
|
export const CpSetComputePlatformCeilingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "CpSetComputePlatformCeilings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "CpSetComputePlatformCeilingsInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "cpSetComputePlatformCeilings" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "maxModules" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxTickHz" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fuelPerTick" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fuelPerInvoke" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxMemoryMb" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxRunMs" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxDbOpsPerTick" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxEgressMsgsPerMin" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxEgressBytesPerMin" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedByUserId" } }] } }] } }] };
|
|
466
|
+
export const CrowdyStudioProjectsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "CrowdyStudioProjects" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "includeArchived" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "crowdyStudioProjects" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "includeArchived" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "includeArchived" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
467
|
+
export const CrowdyStudioProjectDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "CrowdyStudioProject" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "projectId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "crowdyStudioProject" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "projectId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "projectId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CrowdyStudioProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
468
|
+
export const CrowdyStudioProjectCreateDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "CrowdyStudioProjectCreate" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "CreateCrowdyStudioProjectInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "crowdyStudioProjectCreate" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CrowdyStudioProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
469
|
+
export const CrowdyStudioProjectSaveDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "CrowdyStudioProjectSave" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "SaveCrowdyStudioProjectInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "crowdyStudioProjectSave" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CrowdyStudioProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
470
|
+
export const CrowdyStudioLibraryFilesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "CrowdyStudioLibraryFiles" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "includeArchived" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "crowdyStudioLibraryFiles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "includeArchived" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "includeArchived" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "libraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pathHint" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
471
|
+
export const CrowdyStudioLibrarySaveDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "CrowdyStudioLibrarySave" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "SaveCrowdyStudioLibraryFileInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "crowdyStudioLibrarySave" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "libraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pathHint" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
472
|
+
export const CrowdyStudioCommonFilesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "CrowdyStudioCommonFiles" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "CrowdyStudioTarget" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "crowdyStudioCommonFiles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "commonFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "slug" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "versionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "versionNo" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contentSha256" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publishedByUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publishedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
473
|
+
export const CrowdyStudioProjectImportFileDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "CrowdyStudioProjectImportFile" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ImportCrowdyStudioProjectFileInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "crowdyStudioProjectImportFile" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "CrowdyStudioProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CrowdyStudioProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
466
474
|
export const CreateEnvironmentDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "CreateEnvironment" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "CreateEnvironmentInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createEnvironment" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "environment" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "slug" } }, { "kind": "Field", "name": { "kind": "Name", "value": "displayName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "billingStatus" } }, { "kind": "Field", "name": { "kind": "Name", "value": "environmentClass" } }, { "kind": "Field", "name": { "kind": "Name", "value": "primaryRegion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "desiredEnvironmentVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "observedEnvironmentVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "changeOrders" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "kind" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "error" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }] } }] } }] } }] };
|
|
467
475
|
export const DestroyEnvironmentDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "DestroyEnvironment" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "DestroyEnvironmentInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "destroyEnvironment" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "environmentId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "kind" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "requestedBy" } }, { "kind": "Field", "name": { "kind": "Name", "value": "error" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "finishedAt" } }] } }] } }] };
|
|
468
476
|
export const EnvironmentDatacentersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "EnvironmentDatacenters" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "environmentDatacenters" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "region" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "city" } }, { "kind": "Field", "name": { "kind": "Name", "value": "continent" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isAvailable" } }, { "kind": "Field", "name": { "kind": "Name", "value": "selectableInstanceCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "syncedAt" } }] } }] } }] };
|
|
@@ -620,14 +628,6 @@ export const MyCheckoutsConnectionDocument = { "kind": "Document", "definitions"
|
|
|
620
628
|
export const PaymentEventsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "PaymentEvents" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "paymentEvents" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "items" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "eventId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provider" } }, { "kind": "Field", "name": { "kind": "Name", "value": "externalEventId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "eventType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "checkoutId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "processedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "error" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "pageInfo" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "totalCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "limit" } }, { "kind": "Field", "name": { "kind": "Name", "value": "offset" } }] } }] } }] } }] };
|
|
621
629
|
export const PaymentEventsConnectionDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "PaymentEventsConnection" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "after" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "paymentEventsConnection" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "after" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "after" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "edges" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "cursor" } }, { "kind": "Field", "name": { "kind": "Name", "value": "node" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "eventId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provider" } }, { "kind": "Field", "name": { "kind": "Name", "value": "externalEventId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "eventType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "checkoutId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "processedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "error" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }] } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "pageInfo" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "hasNextPage" } }, { "kind": "Field", "name": { "kind": "Name", "value": "hasPreviousPage" } }, { "kind": "Field", "name": { "kind": "Name", "value": "startCursor" } }, { "kind": "Field", "name": { "kind": "Name", "value": "endCursor" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalCount" } }] } }] } }] };
|
|
622
630
|
export const PlatformConfigDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "PlatformConfig" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "platformConfig" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "sharedGameApiUrl" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sharedGameApiWsUrl" } }, { "kind": "Field", "name": { "kind": "Name", "value": "freeAppsPerOrg" } }] } }] } }] };
|
|
623
|
-
export const PlayerCodeProjectsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "PlayerCodeProjects" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "includeArchived" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerCodeProjects" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "includeArchived" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "includeArchived" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
624
|
-
export const PlayerCodeProjectDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "PlayerCodeProject" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "projectId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerCodeProject" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "projectId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "projectId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerCodeProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
625
|
-
export const PlayerCodeProjectCreateDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "PlayerCodeProjectCreate" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "CreatePlayerCodeProjectInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerCodeProjectCreate" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerCodeProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
626
|
-
export const PlayerCodeProjectSaveDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "PlayerCodeProjectSave" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "SavePlayerCodeProjectInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerCodeProjectSave" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerCodeProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
627
|
-
export const PlayerCodeLibraryFilesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "PlayerCodeLibraryFiles" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "includeArchived" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerCodeLibraryFiles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "includeArchived" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "includeArchived" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "libraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pathHint" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
628
|
-
export const PlayerCodeLibrarySaveDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "PlayerCodeLibrarySave" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "SavePlayerCodeLibraryFileInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerCodeLibrarySave" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "libraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pathHint" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
629
|
-
export const PlayerCodeCommonFilesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "PlayerCodeCommonFiles" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerCodeTarget" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerCodeCommonFiles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "commonFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "slug" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "versionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "versionNo" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contentSha256" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publishedByUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publishedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
630
|
-
export const PlayerCodeProjectImportFileDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "PlayerCodeProjectImportFile" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ImportPlayerCodeProjectFileInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerCodeProjectImportFile" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerCodeProjectFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerCodeProject" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "projectId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "ownerUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "serverModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "clientModuleName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pairingPreference" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sdkVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "abiVersion" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archived" } }, { "kind": "Field", "name": { "kind": "Name", "value": "archivedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fileCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "files" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "path" } }, { "kind": "Field", "name": { "kind": "Name", "value": "content" } }, { "kind": "Field", "name": { "kind": "Name", "value": "revision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryFileId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceLibraryRevision" } }, { "kind": "Field", "name": { "kind": "Name", "value": "provenanceCommonVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] } }] };
|
|
631
631
|
export const PlayerComputeDeployDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "PlayerComputeDeploy" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "DeployPlayerComputeInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerComputeDeploy" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "PlayerWasmModuleVersionFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerWasmModuleVersionFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerWasmModuleVersion" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "versionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "moduleId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "versionNo" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sourceFilesJson" } }, { "kind": "Field", "name": { "kind": "Name", "value": "openSource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "compileStatus" } }, { "kind": "Field", "name": { "kind": "Name", "value": "compileLog" } }, { "kind": "Field", "name": { "kind": "Name", "value": "compiledSizeBytes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }] } }] };
|
|
632
632
|
export const PlayerComputeSetEnabledDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "PlayerComputeSetEnabled" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "gridId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "name" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "enabled" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerComputeSetEnabled" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "gridId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "gridId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "name" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "name" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "enabled" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "enabled" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "PlayerWasmModuleFields" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "PlayerWasmModuleFields" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PlayerWasmModule" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "moduleId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "appId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "gridId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "authorUserId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "authorOrgId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enabled" } }, { "kind": "Field", "name": { "kind": "Name", "value": "draft" } }, { "kind": "Field", "name": { "kind": "Name", "value": "currentVersionId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "currentTarget" } }, { "kind": "Field", "name": { "kind": "Name", "value": "circuitState" } }, { "kind": "Field", "name": { "kind": "Name", "value": "lastError" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }] } }] };
|
|
633
633
|
export const PlayerComputeSetRequiresDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "PlayerComputeSetRequires" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "gridId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BigInt" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "serverName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "requiredClientName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "playerComputeSetRequires" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "appId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "appId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "gridId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "gridId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "serverName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "serverName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "requiredClientName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "requiredClientName" } } }] }] } }] };
|
package/dist/index.d.ts
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
* or internal tooling, never an untrusted browser.
|
|
46
46
|
*/
|
|
47
47
|
/** The published package version. Mirrors `package.json`. */
|
|
48
|
-
export declare const VERSION = "
|
|
48
|
+
export declare const VERSION = "11.1.0";
|
|
49
49
|
export { LbCookieStore } from './lb-cookie-store.js';
|
|
50
50
|
export { CrowdyClient, createCrowdyClient, type CrowdyClientConfig, } from './crowdy-client.js';
|
|
51
51
|
export { BrowserLocalStorageTokenStore, SessionStore, type SessionListener, type TokenStore, } from './session.js';
|
|
@@ -90,7 +90,7 @@ export { UdpAPI } from './domains/udp.js';
|
|
|
90
90
|
export { GameModelAPI } from './domains/gameModel.js';
|
|
91
91
|
export { ComputeAPI, COMPUTE_SDK_VERSION, COMPUTE_ABI_VERSION, type DeployVersionOptions, type WaitForCompileOptions, } from './domains/compute.js';
|
|
92
92
|
export { PlayerComputeAPI } from './domains/playerCompute.js';
|
|
93
|
-
export {
|
|
93
|
+
export { CrowdyStudioAPI } from './domains/crowdyStudio.js';
|
|
94
94
|
export { PlayerWalletAPI } from './domains/playerWallet.js';
|
|
95
95
|
export { MarketplaceAPI } from './domains/marketplace.js';
|
|
96
96
|
export { PlayerModelAPI } from './domains/playerModel.js';
|
|
@@ -98,7 +98,7 @@ export { PlayerCodeBroker, type PlayerCodeBrokerOptions, type PlayerCodeGridBoun
|
|
|
98
98
|
export { GLUE_HOST_FUNCTIONS, parseFuelBudget, runWithWatchdog, GlueRuntime, startGlueWorker, type GlueInitMessage, type GlueDispatchResult, } from './player-runtime/player-glue-worker.js';
|
|
99
99
|
export { type GuestExports, type GlueRuntimeOptions, } from './player-runtime/glue-runtime.js';
|
|
100
100
|
export { createGlueSab, wrapGlueSab, armGlueRequest, waitAndReadGlueReply, writeGlueResult, writeGlueReply, glueEncoder, glueDecoder, type GlueSab, } from './player-runtime/glue-sab.js';
|
|
101
|
-
export * from './
|
|
101
|
+
export * from './crowdy-studio/index.js';
|
|
102
102
|
export type { ChunkCoordinatesInput, VoxelCoordinatesInput, ActorUpdateRequestInput, VoxelUpdateRequestInput, ClientAudioPacketInput, ClientTextPacketInput, ClientEventNotificationInput, UdpProxyConnectionStatus, RealtimeConnectionEvent, GameClientBootstrap, PlayerWasmModule, PlayerWasmModuleVersion, DeployPlayerComputeInput, GridOwnership, AssignGridOwnershipInput, TransferGridOwnershipInput, UpdateGamertagInput, CreateActorInput, UpdateActorInput, ActorFilterInput, BatchActorLookupInput, CreateUserAppStateInput, UpdateUserStateInput, UpdateAvatarStateInput, UpdateActorStateInput, UpdateChunkStateInput, UpdateChunkLodsInput, ChunkUpdateInput, UpdateVoxelInput, RollbackVoxelUpdatesInput, GetChunkInput, GetChunkLodsInput, GetChunksByDistanceInput, GetVoxelListInput, ListVoxelsInput, ListVoxelUpdatesByDistanceInput, TeleportRequestInput, LodDataInput, VoxelStateInput, Chunk, ChunkLodsResponse, ChunksByDistanceResponse, ChunkVoxelResponse, ChunkVoxelUpdatesResponse, Voxel, VoxelUpdatesByDistanceResponse, VoxelUpdateHistoryEvent, RollbackVoxelEventResult, Actor, Avatar, AvatarDto, TeleportResponse, UserAppState, ServerStatus, GraphQlServer, ServerVersionInfo, VersionInfo, PageInfo, UdpNotificationsSubscription, GmContainer, GmContainerState, GmContainerType, GmPropertyDef, GmFunction, GmFunctionParam, GmFunctionMutation, GmSession, GmSessionParticipant, GmEdge, GmTraverseResult, GmInvokeResult, GmMutationApplied, GmEvent, GmTypeSchema, GmAppFeature, GmTierFeature, GmAppPolicy, GmSeedResult, UpsertContainerTypeInput, UpsertPropertyDefInput, UpsertFunctionInput, FunctionParamInput, FunctionMutationInput, SeedGameModelInput, SeedContainerInput, SeedContainerTypeInput, SeedPropertyDefInput, SeedFunctionInput, SeedEdgeInput, SeedPropertyInput, CreateSessionInput, JoinSessionInput, SetSessionTurnInput, CreateContainerInput, SetContainerPropertyInput, AddEdgeInput, InvokeFunctionInput, DefineAppFeatureInput, GrantTierFeatureInput, SetGameModelPolicyInput, Scalars, } from './generated/graphql.js';
|
|
103
103
|
export type { CreateAppInput, UpdateAppInput, CreateOrganizationInput, CreateOrgTokenInput, UpdateOrgTokenInput, InviteOrgMemberInput, CreateOrgRoleInput, UpdateOrgRoleInput, CreateAccessTierInput, UpdateAccessTierInput, GrantAppAccessInput, CreateCheckoutInput, CheckoutFilterInput, SetQuotaInput, AppCodeAdmission, AdmitAppCodeInput, } from './generated/graphql.js';
|
|
104
104
|
export { ServerState, AppVisibility, PlayerComputeTarget, GridOwnerKind, GridTenure, CodeAdmissionMode, CodeAdmissionSubjectKind, } from './generated/graphql.js';
|