@distilled.cloud/expo-eas 0.17.0 → 0.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/credentials.d.ts +1 -1
- package/lib/credentials.d.ts.map +1 -1
- package/lib/credentials.js +12 -11
- package/lib/credentials.js.map +1 -1
- package/lib/operations/convexProjectDeleteConvexProject.d.ts +11 -0
- package/lib/operations/convexProjectDeleteConvexProject.d.ts.map +1 -0
- package/lib/operations/convexProjectDeleteConvexProject.js +19 -0
- package/lib/operations/convexProjectDeleteConvexProject.js.map +1 -0
- package/lib/operations/convexProjectSetupConvexProject.d.ts +145 -0
- package/lib/operations/convexProjectSetupConvexProject.d.ts.map +1 -0
- package/lib/operations/convexProjectSetupConvexProject.js +86 -0
- package/lib/operations/convexProjectSetupConvexProject.js.map +1 -0
- package/lib/operations/deviceRunSessionEnsureDeviceRunSessionStopped.d.ts +713 -0
- package/lib/operations/deviceRunSessionEnsureDeviceRunSessionStopped.d.ts.map +1 -0
- package/lib/operations/deviceRunSessionEnsureDeviceRunSessionStopped.js +407 -0
- package/lib/operations/deviceRunSessionEnsureDeviceRunSessionStopped.js.map +1 -0
- package/package.json +2 -2
- package/src/credentials.ts +21 -14
- package/src/operations/convexProjectDeleteConvexProject.ts +32 -0
- package/src/operations/convexProjectSetupConvexProject.ts +97 -0
- package/src/operations/deviceRunSessionEnsureDeviceRunSessionStopped.ts +481 -0
|
@@ -0,0 +1,713 @@
|
|
|
1
|
+
import * as Schema from "effect/Schema";
|
|
2
|
+
export declare const DeviceRunSessionEnsureDeviceRunSessionStoppedInput: Schema.Struct<{
|
|
3
|
+
readonly deviceRunSessionId: Schema.String;
|
|
4
|
+
}>;
|
|
5
|
+
export type DeviceRunSessionEnsureDeviceRunSessionStoppedInput = typeof DeviceRunSessionEnsureDeviceRunSessionStoppedInput.Type;
|
|
6
|
+
export declare const DeviceRunSessionEnsureDeviceRunSessionStoppedOutput: Schema.Struct<{
|
|
7
|
+
readonly app: Schema.Struct<{
|
|
8
|
+
readonly accessTokens: Schema.$Array<Schema.NullOr<Schema.Struct<{
|
|
9
|
+
readonly createdAt: Schema.String;
|
|
10
|
+
readonly id: Schema.String;
|
|
11
|
+
readonly lastUsedAt: Schema.NullOr<Schema.String>;
|
|
12
|
+
readonly note: Schema.NullOr<Schema.String>;
|
|
13
|
+
readonly revokedAt: Schema.NullOr<Schema.String>;
|
|
14
|
+
readonly updatedAt: Schema.String;
|
|
15
|
+
readonly visibleTokenPrefix: Schema.String;
|
|
16
|
+
}>>>;
|
|
17
|
+
readonly appStoreConnectApp: Schema.NullOr<Schema.Struct<{
|
|
18
|
+
readonly ascAppIdentifier: Schema.String;
|
|
19
|
+
readonly createdAt: Schema.String;
|
|
20
|
+
readonly id: Schema.String;
|
|
21
|
+
readonly updatedAt: Schema.String;
|
|
22
|
+
readonly webhookEventTypes: Schema.$Array<Schema.String>;
|
|
23
|
+
readonly webhookIdentifier: Schema.String;
|
|
24
|
+
}>>;
|
|
25
|
+
readonly appStoreUrl: Schema.NullOr<Schema.String>;
|
|
26
|
+
readonly assetLimitPerUpdateGroup: Schema.Number;
|
|
27
|
+
readonly buildProfiles: Schema.$Array<Schema.String>;
|
|
28
|
+
readonly buildsReleaseChannels: Schema.$Array<Schema.String>;
|
|
29
|
+
readonly convexProject: Schema.NullOr<Schema.Struct<{
|
|
30
|
+
readonly convexProjectIdentifier: Schema.String;
|
|
31
|
+
readonly convexProjectName: Schema.String;
|
|
32
|
+
readonly convexProjectSlug: Schema.String;
|
|
33
|
+
readonly createdAt: Schema.String;
|
|
34
|
+
readonly id: Schema.String;
|
|
35
|
+
readonly updatedAt: Schema.String;
|
|
36
|
+
}>>;
|
|
37
|
+
readonly description: Schema.String;
|
|
38
|
+
readonly devDomainName: Schema.NullOr<Schema.Struct<{
|
|
39
|
+
readonly id: Schema.String;
|
|
40
|
+
readonly name: Schema.Unknown;
|
|
41
|
+
}>>;
|
|
42
|
+
readonly environmentVariableEnvironments: Schema.$Array<Schema.Unknown>;
|
|
43
|
+
readonly fullName: Schema.String;
|
|
44
|
+
readonly githubBuildTriggers: Schema.$Array<Schema.Struct<{
|
|
45
|
+
readonly autoSubmit: Schema.Boolean;
|
|
46
|
+
readonly buildProfile: Schema.String;
|
|
47
|
+
readonly createdAt: Schema.String;
|
|
48
|
+
readonly environment: Schema.NullOr<Schema.Unknown>;
|
|
49
|
+
readonly executionBehavior: Schema.Literals<readonly ["ALWAYS", "BASE_DIRECTORY_CHANGED"]>;
|
|
50
|
+
readonly id: Schema.String;
|
|
51
|
+
readonly isActive: Schema.Boolean;
|
|
52
|
+
readonly lastRunAt: Schema.NullOr<Schema.String>;
|
|
53
|
+
readonly lastRunErrorCode: Schema.NullOr<Schema.String>;
|
|
54
|
+
readonly lastRunErrorMessage: Schema.NullOr<Schema.String>;
|
|
55
|
+
readonly lastRunStatus: Schema.NullOr<Schema.Literals<readonly ["ERRORED", "SUCCESS"]>>;
|
|
56
|
+
readonly platform: Schema.Literals<readonly ["ANDROID", "IOS"]>;
|
|
57
|
+
readonly sourcePattern: Schema.String;
|
|
58
|
+
readonly submitProfile: Schema.NullOr<Schema.String>;
|
|
59
|
+
readonly targetPattern: Schema.NullOr<Schema.String>;
|
|
60
|
+
readonly type: Schema.Literals<readonly ["PULL_REQUEST_UPDATED", "PUSH_TO_BRANCH", "TAG_UPDATED"]>;
|
|
61
|
+
readonly updatedAt: Schema.String;
|
|
62
|
+
}>>;
|
|
63
|
+
readonly githubJobRunTriggers: Schema.$Array<Schema.Struct<{
|
|
64
|
+
readonly createdAt: Schema.String;
|
|
65
|
+
readonly id: Schema.String;
|
|
66
|
+
readonly isActive: Schema.Boolean;
|
|
67
|
+
readonly jobType: Schema.NullOr<Schema.Literals<readonly ["PUBLISH_UPDATE"]>>;
|
|
68
|
+
readonly lastRunAt: Schema.NullOr<Schema.String>;
|
|
69
|
+
readonly lastRunErrorCode: Schema.NullOr<Schema.String>;
|
|
70
|
+
readonly lastRunErrorMessage: Schema.NullOr<Schema.String>;
|
|
71
|
+
readonly lastRunStatus: Schema.NullOr<Schema.Literals<readonly ["ERRORED", "SUCCESS"]>>;
|
|
72
|
+
readonly sourcePattern: Schema.String;
|
|
73
|
+
readonly targetPattern: Schema.NullOr<Schema.String>;
|
|
74
|
+
readonly triggerType: Schema.Literals<readonly ["PULL_REQUEST_UPDATED", "PUSH_TO_BRANCH"]>;
|
|
75
|
+
}>>;
|
|
76
|
+
readonly githubRepository: Schema.NullOr<Schema.Struct<{
|
|
77
|
+
readonly createdAt: Schema.String;
|
|
78
|
+
readonly githubRepositoryIdentifier: Schema.Number;
|
|
79
|
+
readonly githubRepositoryUrl: Schema.NullOr<Schema.String>;
|
|
80
|
+
readonly id: Schema.String;
|
|
81
|
+
readonly lastDeletionAttemptTime: Schema.NullOr<Schema.String>;
|
|
82
|
+
readonly nodeIdentifier: Schema.String;
|
|
83
|
+
}>>;
|
|
84
|
+
readonly githubRepositorySettings: Schema.NullOr<Schema.Struct<{
|
|
85
|
+
readonly baseDirectory: Schema.String;
|
|
86
|
+
readonly id: Schema.String;
|
|
87
|
+
}>>;
|
|
88
|
+
readonly githubUrl: Schema.NullOr<Schema.String>;
|
|
89
|
+
readonly icon: Schema.NullOr<Schema.Struct<{
|
|
90
|
+
readonly colorPalette: Schema.NullOr<Schema.Unknown>;
|
|
91
|
+
readonly originalUrl: Schema.String;
|
|
92
|
+
readonly primaryColor: Schema.NullOr<Schema.String>;
|
|
93
|
+
readonly url: Schema.String;
|
|
94
|
+
}>>;
|
|
95
|
+
readonly iconUrl: Schema.NullOr<Schema.String>;
|
|
96
|
+
readonly id: Schema.String;
|
|
97
|
+
readonly insights: Schema.Struct<{
|
|
98
|
+
readonly hasEventsFromExpoInsightsClientModule: Schema.Boolean;
|
|
99
|
+
}>;
|
|
100
|
+
readonly internalDistributionBuildPrivacy: Schema.Literals<readonly ["PRIVATE", "PUBLIC"]>;
|
|
101
|
+
readonly isDeleting: Schema.Boolean;
|
|
102
|
+
readonly isDeprecated: Schema.Boolean;
|
|
103
|
+
readonly isLikedByMe: Schema.Boolean;
|
|
104
|
+
readonly lastDeletionAttemptTime: Schema.NullOr<Schema.String>;
|
|
105
|
+
readonly lastPublishedTime: Schema.String;
|
|
106
|
+
readonly latestActivity: Schema.String;
|
|
107
|
+
readonly latestReleaseId: Schema.String;
|
|
108
|
+
readonly likeCount: Schema.Number;
|
|
109
|
+
readonly logRocketProject: Schema.NullOr<Schema.Struct<{
|
|
110
|
+
readonly createdAt: Schema.String;
|
|
111
|
+
readonly id: Schema.String;
|
|
112
|
+
readonly logRocketOrgId: Schema.String;
|
|
113
|
+
readonly logRocketProjectSlug: Schema.String;
|
|
114
|
+
readonly updatedAt: Schema.String;
|
|
115
|
+
}>>;
|
|
116
|
+
readonly name: Schema.String;
|
|
117
|
+
readonly observe: Schema.Struct<{
|
|
118
|
+
readonly totalEventCount: Schema.Number;
|
|
119
|
+
}>;
|
|
120
|
+
readonly ownerAccount: Schema.Struct<{
|
|
121
|
+
readonly appCount: Schema.Number;
|
|
122
|
+
readonly availableBuilds: Schema.NullOr<Schema.Number>;
|
|
123
|
+
readonly createdAt: Schema.String;
|
|
124
|
+
readonly displayName: Schema.NullOr<Schema.String>;
|
|
125
|
+
readonly environmentVariableEnvironments: Schema.$Array<Schema.Unknown>;
|
|
126
|
+
readonly hasBuilds: Schema.Boolean;
|
|
127
|
+
readonly id: Schema.String;
|
|
128
|
+
readonly isCurrent: Schema.Boolean;
|
|
129
|
+
readonly isDisabled: Schema.Boolean;
|
|
130
|
+
readonly isFreeAppDevDomainTier: Schema.Boolean;
|
|
131
|
+
readonly isSSOEnabled: Schema.Boolean;
|
|
132
|
+
readonly lastDeletionAttemptTime: Schema.NullOr<Schema.String>;
|
|
133
|
+
readonly name: Schema.String;
|
|
134
|
+
readonly profileImageUrl: Schema.String;
|
|
135
|
+
readonly pushSecurityEnabled: Schema.Boolean;
|
|
136
|
+
readonly requireTwoFactor: Schema.Boolean;
|
|
137
|
+
readonly requiresAccessTokenForPushSecurity: Schema.Boolean;
|
|
138
|
+
readonly ssoAllowedAuthProviders: Schema.$Array<Schema.Literals<readonly ["AMAZON_FEDERATE", "GENERIC", "GOOGLE_WS", "MS_ENTRA_ID", "OKTA", "ONE_LOGIN", "STUB_IDP"]>>;
|
|
139
|
+
readonly subscriptionChangesPending: Schema.NullOr<Schema.Boolean>;
|
|
140
|
+
readonly unlimitedBuilds: Schema.Boolean;
|
|
141
|
+
readonly updatedAt: Schema.String;
|
|
142
|
+
readonly userSpecifiedAccountUsage: Schema.NullOr<Schema.Literals<readonly ["COMPANY", "PERSONAL"]>>;
|
|
143
|
+
readonly willAutoRenewBuilds: Schema.NullOr<Schema.Boolean>;
|
|
144
|
+
}>;
|
|
145
|
+
readonly packageName: Schema.String;
|
|
146
|
+
readonly packageUsername: Schema.String;
|
|
147
|
+
readonly playStoreUrl: Schema.NullOr<Schema.String>;
|
|
148
|
+
readonly privacy: Schema.String;
|
|
149
|
+
readonly privacySetting: Schema.Literals<readonly ["HIDDEN", "PUBLIC", "UNLISTED"]>;
|
|
150
|
+
readonly published: Schema.Boolean;
|
|
151
|
+
readonly pushNotifications: Schema.Struct<{
|
|
152
|
+
readonly id: Schema.String;
|
|
153
|
+
}>;
|
|
154
|
+
readonly pushSecurityEnabled: Schema.Boolean;
|
|
155
|
+
readonly releaseChannels: Schema.$Array<Schema.String>;
|
|
156
|
+
readonly requiresAccessTokenForPushSecurity: Schema.Boolean;
|
|
157
|
+
readonly resourceClassExperiment: Schema.NullOr<Schema.Literals<readonly ["C3D", "N2"]>>;
|
|
158
|
+
readonly scopeKey: Schema.String;
|
|
159
|
+
readonly sdkVersion: Schema.String;
|
|
160
|
+
readonly sentryProject: Schema.NullOr<Schema.Struct<{
|
|
161
|
+
readonly createdAt: Schema.String;
|
|
162
|
+
readonly id: Schema.String;
|
|
163
|
+
readonly sentryInstallationId: Schema.String;
|
|
164
|
+
readonly sentryProjectId: Schema.String;
|
|
165
|
+
readonly sentryProjectSlug: Schema.String;
|
|
166
|
+
readonly updatedAt: Schema.String;
|
|
167
|
+
}>>;
|
|
168
|
+
readonly slug: Schema.String;
|
|
169
|
+
readonly suggestedDevDomainName: Schema.String;
|
|
170
|
+
readonly trendScore: Schema.Number;
|
|
171
|
+
readonly updated: Schema.String;
|
|
172
|
+
readonly username: Schema.String;
|
|
173
|
+
readonly users: Schema.NullOr<Schema.$Array<Schema.NullOr<Schema.Struct<{
|
|
174
|
+
readonly appCount: Schema.Number;
|
|
175
|
+
readonly appetizeCode: Schema.NullOr<Schema.String>;
|
|
176
|
+
readonly bestContactEmail: Schema.NullOr<Schema.String>;
|
|
177
|
+
readonly created: Schema.String;
|
|
178
|
+
readonly displayName: Schema.String;
|
|
179
|
+
readonly email: Schema.String;
|
|
180
|
+
readonly emailVerified: Schema.Boolean;
|
|
181
|
+
readonly firstName: Schema.NullOr<Schema.String>;
|
|
182
|
+
readonly fullName: Schema.NullOr<Schema.String>;
|
|
183
|
+
readonly githubUsername: Schema.NullOr<Schema.String>;
|
|
184
|
+
readonly hasPassword: Schema.Boolean;
|
|
185
|
+
readonly hasPendingUserInvitations: Schema.Boolean;
|
|
186
|
+
readonly id: Schema.String;
|
|
187
|
+
readonly industry: Schema.NullOr<Schema.String>;
|
|
188
|
+
readonly isExpoAdmin: Schema.Boolean;
|
|
189
|
+
readonly isLegacy: Schema.Boolean;
|
|
190
|
+
readonly isSecondFactorAuthenticationEnabled: Schema.Boolean;
|
|
191
|
+
readonly isStaffModeEnabled: Schema.Boolean;
|
|
192
|
+
readonly lastDeletionAttemptTime: Schema.NullOr<Schema.String>;
|
|
193
|
+
readonly lastName: Schema.NullOr<Schema.String>;
|
|
194
|
+
readonly location: Schema.NullOr<Schema.String>;
|
|
195
|
+
readonly newEmailPendingVerification: Schema.NullOr<Schema.String>;
|
|
196
|
+
readonly primaryAccountProfileImageUrl: Schema.NullOr<Schema.String>;
|
|
197
|
+
readonly profilePhoto: Schema.String;
|
|
198
|
+
readonly twitterUsername: Schema.NullOr<Schema.String>;
|
|
199
|
+
readonly username: Schema.String;
|
|
200
|
+
}>>>>;
|
|
201
|
+
readonly vexoApp: Schema.NullOr<Schema.Struct<{
|
|
202
|
+
readonly domain: Schema.NullOr<Schema.String>;
|
|
203
|
+
readonly iconUrl: Schema.NullOr<Schema.String>;
|
|
204
|
+
readonly id: Schema.String;
|
|
205
|
+
readonly name: Schema.String;
|
|
206
|
+
readonly owner: Schema.String;
|
|
207
|
+
readonly slug: Schema.String;
|
|
208
|
+
readonly vexoIdentifier: Schema.String;
|
|
209
|
+
}>>;
|
|
210
|
+
readonly workerCustomDomain: Schema.NullOr<Schema.Struct<{
|
|
211
|
+
readonly createdAt: Schema.String;
|
|
212
|
+
readonly devDomainName: Schema.Unknown;
|
|
213
|
+
readonly hostname: Schema.String;
|
|
214
|
+
readonly id: Schema.String;
|
|
215
|
+
readonly updatedAt: Schema.String;
|
|
216
|
+
}>>;
|
|
217
|
+
}>;
|
|
218
|
+
readonly createdAt: Schema.String;
|
|
219
|
+
readonly finishedAt: Schema.NullOr<Schema.String>;
|
|
220
|
+
readonly id: Schema.String;
|
|
221
|
+
readonly initiatingActor: Schema.NullOr<Schema.Struct<{
|
|
222
|
+
readonly accessTokens: Schema.$Array<Schema.Struct<{
|
|
223
|
+
readonly createdAt: Schema.String;
|
|
224
|
+
readonly id: Schema.String;
|
|
225
|
+
readonly lastUsedAt: Schema.NullOr<Schema.String>;
|
|
226
|
+
readonly note: Schema.NullOr<Schema.String>;
|
|
227
|
+
readonly revokedAt: Schema.NullOr<Schema.String>;
|
|
228
|
+
readonly updatedAt: Schema.String;
|
|
229
|
+
readonly visibleTokenPrefix: Schema.String;
|
|
230
|
+
}>>;
|
|
231
|
+
readonly accounts: Schema.$Array<Schema.Struct<{
|
|
232
|
+
readonly appCount: Schema.Number;
|
|
233
|
+
readonly availableBuilds: Schema.NullOr<Schema.Number>;
|
|
234
|
+
readonly createdAt: Schema.String;
|
|
235
|
+
readonly displayName: Schema.NullOr<Schema.String>;
|
|
236
|
+
readonly environmentVariableEnvironments: Schema.$Array<Schema.Unknown>;
|
|
237
|
+
readonly hasBuilds: Schema.Boolean;
|
|
238
|
+
readonly id: Schema.String;
|
|
239
|
+
readonly isCurrent: Schema.Boolean;
|
|
240
|
+
readonly isDisabled: Schema.Boolean;
|
|
241
|
+
readonly isFreeAppDevDomainTier: Schema.Boolean;
|
|
242
|
+
readonly isSSOEnabled: Schema.Boolean;
|
|
243
|
+
readonly lastDeletionAttemptTime: Schema.NullOr<Schema.String>;
|
|
244
|
+
readonly name: Schema.String;
|
|
245
|
+
readonly profileImageUrl: Schema.String;
|
|
246
|
+
readonly pushSecurityEnabled: Schema.Boolean;
|
|
247
|
+
readonly requireTwoFactor: Schema.Boolean;
|
|
248
|
+
readonly requiresAccessTokenForPushSecurity: Schema.Boolean;
|
|
249
|
+
readonly ssoAllowedAuthProviders: Schema.$Array<Schema.Literals<readonly ["AMAZON_FEDERATE", "GENERIC", "GOOGLE_WS", "MS_ENTRA_ID", "OKTA", "ONE_LOGIN", "STUB_IDP"]>>;
|
|
250
|
+
readonly subscriptionChangesPending: Schema.NullOr<Schema.Boolean>;
|
|
251
|
+
readonly unlimitedBuilds: Schema.Boolean;
|
|
252
|
+
readonly updatedAt: Schema.String;
|
|
253
|
+
readonly userSpecifiedAccountUsage: Schema.NullOr<Schema.Literals<readonly ["COMPANY", "PERSONAL"]>>;
|
|
254
|
+
readonly willAutoRenewBuilds: Schema.NullOr<Schema.Boolean>;
|
|
255
|
+
}>>;
|
|
256
|
+
readonly created: Schema.String;
|
|
257
|
+
readonly displayName: Schema.String;
|
|
258
|
+
readonly experiments: Schema.$Array<Schema.Struct<{
|
|
259
|
+
readonly createdAt: Schema.String;
|
|
260
|
+
readonly enabled: Schema.Boolean;
|
|
261
|
+
readonly experiment: Schema.Literals<readonly ["ORBIT"]>;
|
|
262
|
+
readonly id: Schema.String;
|
|
263
|
+
readonly updatedAt: Schema.String;
|
|
264
|
+
}>>;
|
|
265
|
+
readonly firstName: Schema.NullOr<Schema.String>;
|
|
266
|
+
readonly id: Schema.String;
|
|
267
|
+
readonly isExpoAdmin: Schema.Boolean;
|
|
268
|
+
readonly lastDeletionAttemptTime: Schema.NullOr<Schema.String>;
|
|
269
|
+
}>>;
|
|
270
|
+
readonly packageVersion: Schema.NullOr<Schema.String>;
|
|
271
|
+
readonly platform: Schema.Literals<readonly ["ANDROID", "IOS"]>;
|
|
272
|
+
readonly startedAt: Schema.NullOr<Schema.String>;
|
|
273
|
+
readonly status: Schema.Literals<readonly ["ERRORED", "IN_PROGRESS", "NEW", "STOPPED"]>;
|
|
274
|
+
readonly turtleJobRun: Schema.NullOr<Schema.Struct<{
|
|
275
|
+
readonly app: Schema.Struct<{
|
|
276
|
+
readonly appStoreUrl: Schema.NullOr<Schema.String>;
|
|
277
|
+
readonly assetLimitPerUpdateGroup: Schema.Number;
|
|
278
|
+
readonly buildProfiles: Schema.$Array<Schema.String>;
|
|
279
|
+
readonly buildsReleaseChannels: Schema.$Array<Schema.String>;
|
|
280
|
+
readonly description: Schema.String;
|
|
281
|
+
readonly environmentVariableEnvironments: Schema.$Array<Schema.Unknown>;
|
|
282
|
+
readonly fullName: Schema.String;
|
|
283
|
+
readonly githubUrl: Schema.NullOr<Schema.String>;
|
|
284
|
+
readonly iconUrl: Schema.NullOr<Schema.String>;
|
|
285
|
+
readonly id: Schema.String;
|
|
286
|
+
readonly internalDistributionBuildPrivacy: Schema.Literals<readonly ["PRIVATE", "PUBLIC"]>;
|
|
287
|
+
readonly isDeleting: Schema.Boolean;
|
|
288
|
+
readonly isDeprecated: Schema.Boolean;
|
|
289
|
+
readonly isLikedByMe: Schema.Boolean;
|
|
290
|
+
readonly lastDeletionAttemptTime: Schema.NullOr<Schema.String>;
|
|
291
|
+
readonly lastPublishedTime: Schema.String;
|
|
292
|
+
readonly latestActivity: Schema.String;
|
|
293
|
+
readonly latestReleaseId: Schema.String;
|
|
294
|
+
readonly likeCount: Schema.Number;
|
|
295
|
+
readonly name: Schema.String;
|
|
296
|
+
readonly packageName: Schema.String;
|
|
297
|
+
readonly packageUsername: Schema.String;
|
|
298
|
+
readonly playStoreUrl: Schema.NullOr<Schema.String>;
|
|
299
|
+
readonly privacy: Schema.String;
|
|
300
|
+
readonly privacySetting: Schema.Literals<readonly ["HIDDEN", "PUBLIC", "UNLISTED"]>;
|
|
301
|
+
readonly published: Schema.Boolean;
|
|
302
|
+
readonly pushSecurityEnabled: Schema.Boolean;
|
|
303
|
+
readonly releaseChannels: Schema.$Array<Schema.String>;
|
|
304
|
+
readonly requiresAccessTokenForPushSecurity: Schema.Boolean;
|
|
305
|
+
readonly resourceClassExperiment: Schema.NullOr<Schema.Literals<readonly ["C3D", "N2"]>>;
|
|
306
|
+
readonly scopeKey: Schema.String;
|
|
307
|
+
readonly sdkVersion: Schema.String;
|
|
308
|
+
readonly slug: Schema.String;
|
|
309
|
+
readonly suggestedDevDomainName: Schema.String;
|
|
310
|
+
readonly trendScore: Schema.Number;
|
|
311
|
+
readonly updated: Schema.String;
|
|
312
|
+
readonly username: Schema.String;
|
|
313
|
+
}>;
|
|
314
|
+
readonly artifacts: Schema.$Array<Schema.Struct<{
|
|
315
|
+
readonly contentType: Schema.NullOr<Schema.String>;
|
|
316
|
+
readonly createdAt: Schema.String;
|
|
317
|
+
readonly downloadUrl: Schema.NullOr<Schema.String>;
|
|
318
|
+
readonly fileSizeBytes: Schema.NullOr<Schema.Number>;
|
|
319
|
+
readonly filename: Schema.String;
|
|
320
|
+
readonly id: Schema.String;
|
|
321
|
+
readonly name: Schema.String;
|
|
322
|
+
readonly storageType: Schema.Literals<readonly ["GCS", "R2"]>;
|
|
323
|
+
readonly updatedAt: Schema.String;
|
|
324
|
+
}>>;
|
|
325
|
+
readonly createdAt: Schema.String;
|
|
326
|
+
readonly displayName: Schema.NullOr<Schema.String>;
|
|
327
|
+
readonly endedAt: Schema.NullOr<Schema.String>;
|
|
328
|
+
readonly errors: Schema.$Array<Schema.Struct<{
|
|
329
|
+
readonly buildPhase: Schema.NullOr<Schema.String>;
|
|
330
|
+
readonly docsUrl: Schema.NullOr<Schema.String>;
|
|
331
|
+
readonly errorCode: Schema.String;
|
|
332
|
+
readonly message: Schema.String;
|
|
333
|
+
}>>;
|
|
334
|
+
readonly expiresAt: Schema.String;
|
|
335
|
+
readonly gitCommitHash: Schema.NullOr<Schema.String>;
|
|
336
|
+
readonly gitCommitMessage: Schema.NullOr<Schema.String>;
|
|
337
|
+
readonly gitRef: Schema.NullOr<Schema.String>;
|
|
338
|
+
readonly id: Schema.String;
|
|
339
|
+
readonly initiatingActor: Schema.NullOr<Schema.Struct<{
|
|
340
|
+
readonly created: Schema.String;
|
|
341
|
+
readonly displayName: Schema.String;
|
|
342
|
+
readonly firstName: Schema.NullOr<Schema.String>;
|
|
343
|
+
readonly id: Schema.String;
|
|
344
|
+
readonly isExpoAdmin: Schema.Boolean;
|
|
345
|
+
readonly lastDeletionAttemptTime: Schema.NullOr<Schema.String>;
|
|
346
|
+
}>>;
|
|
347
|
+
readonly isWaived: Schema.Boolean;
|
|
348
|
+
readonly logFileUrls: Schema.$Array<Schema.String>;
|
|
349
|
+
readonly name: Schema.String;
|
|
350
|
+
readonly priority: Schema.Literals<readonly ["HIGH", "NORMAL"]>;
|
|
351
|
+
readonly startedAt: Schema.NullOr<Schema.String>;
|
|
352
|
+
readonly status: Schema.Literals<readonly ["CANCELED", "ERRORED", "FINISHED", "IN_PROGRESS", "IN_QUEUE", "NEW", "PENDING_CANCEL"]>;
|
|
353
|
+
readonly updateGroups: Schema.$Array<Schema.$Array<Schema.Unknown>>;
|
|
354
|
+
}>>;
|
|
355
|
+
readonly type: Schema.Literals<readonly ["AGENT_DEVICE"]>;
|
|
356
|
+
readonly updatedAt: Schema.String;
|
|
357
|
+
}>;
|
|
358
|
+
export type DeviceRunSessionEnsureDeviceRunSessionStoppedOutput = typeof DeviceRunSessionEnsureDeviceRunSessionStoppedOutput.Type;
|
|
359
|
+
export declare const deviceRunSessionEnsureDeviceRunSessionStopped: import("@distilled.cloud/core/client").OperationMethod<{
|
|
360
|
+
readonly deviceRunSessionId: string;
|
|
361
|
+
}, {
|
|
362
|
+
readonly app: {
|
|
363
|
+
readonly accessTokens: readonly ({
|
|
364
|
+
readonly createdAt: string;
|
|
365
|
+
readonly id: string;
|
|
366
|
+
readonly lastUsedAt: string | null;
|
|
367
|
+
readonly note: string | null;
|
|
368
|
+
readonly revokedAt: string | null;
|
|
369
|
+
readonly updatedAt: string;
|
|
370
|
+
readonly visibleTokenPrefix: string;
|
|
371
|
+
} | null)[];
|
|
372
|
+
readonly appStoreConnectApp: {
|
|
373
|
+
readonly ascAppIdentifier: string;
|
|
374
|
+
readonly createdAt: string;
|
|
375
|
+
readonly id: string;
|
|
376
|
+
readonly updatedAt: string;
|
|
377
|
+
readonly webhookEventTypes: readonly string[];
|
|
378
|
+
readonly webhookIdentifier: string;
|
|
379
|
+
} | null;
|
|
380
|
+
readonly appStoreUrl: string | null;
|
|
381
|
+
readonly assetLimitPerUpdateGroup: number;
|
|
382
|
+
readonly buildProfiles: readonly string[];
|
|
383
|
+
readonly buildsReleaseChannels: readonly string[];
|
|
384
|
+
readonly convexProject: {
|
|
385
|
+
readonly convexProjectIdentifier: string;
|
|
386
|
+
readonly convexProjectName: string;
|
|
387
|
+
readonly convexProjectSlug: string;
|
|
388
|
+
readonly createdAt: string;
|
|
389
|
+
readonly id: string;
|
|
390
|
+
readonly updatedAt: string;
|
|
391
|
+
} | null;
|
|
392
|
+
readonly description: string;
|
|
393
|
+
readonly devDomainName: {
|
|
394
|
+
readonly id: string;
|
|
395
|
+
readonly name: unknown;
|
|
396
|
+
} | null;
|
|
397
|
+
readonly environmentVariableEnvironments: readonly unknown[];
|
|
398
|
+
readonly fullName: string;
|
|
399
|
+
readonly githubBuildTriggers: readonly {
|
|
400
|
+
readonly autoSubmit: boolean;
|
|
401
|
+
readonly buildProfile: string;
|
|
402
|
+
readonly createdAt: string;
|
|
403
|
+
readonly environment: unknown;
|
|
404
|
+
readonly executionBehavior: "ALWAYS" | "BASE_DIRECTORY_CHANGED";
|
|
405
|
+
readonly id: string;
|
|
406
|
+
readonly isActive: boolean;
|
|
407
|
+
readonly lastRunAt: string | null;
|
|
408
|
+
readonly lastRunErrorCode: string | null;
|
|
409
|
+
readonly lastRunErrorMessage: string | null;
|
|
410
|
+
readonly lastRunStatus: "ERRORED" | "SUCCESS" | null;
|
|
411
|
+
readonly platform: "ANDROID" | "IOS";
|
|
412
|
+
readonly sourcePattern: string;
|
|
413
|
+
readonly submitProfile: string | null;
|
|
414
|
+
readonly targetPattern: string | null;
|
|
415
|
+
readonly type: "PULL_REQUEST_UPDATED" | "PUSH_TO_BRANCH" | "TAG_UPDATED";
|
|
416
|
+
readonly updatedAt: string;
|
|
417
|
+
}[];
|
|
418
|
+
readonly githubJobRunTriggers: readonly {
|
|
419
|
+
readonly createdAt: string;
|
|
420
|
+
readonly id: string;
|
|
421
|
+
readonly isActive: boolean;
|
|
422
|
+
readonly jobType: "PUBLISH_UPDATE" | null;
|
|
423
|
+
readonly lastRunAt: string | null;
|
|
424
|
+
readonly lastRunErrorCode: string | null;
|
|
425
|
+
readonly lastRunErrorMessage: string | null;
|
|
426
|
+
readonly lastRunStatus: "ERRORED" | "SUCCESS" | null;
|
|
427
|
+
readonly sourcePattern: string;
|
|
428
|
+
readonly targetPattern: string | null;
|
|
429
|
+
readonly triggerType: "PULL_REQUEST_UPDATED" | "PUSH_TO_BRANCH";
|
|
430
|
+
}[];
|
|
431
|
+
readonly githubRepository: {
|
|
432
|
+
readonly createdAt: string;
|
|
433
|
+
readonly githubRepositoryIdentifier: number;
|
|
434
|
+
readonly githubRepositoryUrl: string | null;
|
|
435
|
+
readonly id: string;
|
|
436
|
+
readonly lastDeletionAttemptTime: string | null;
|
|
437
|
+
readonly nodeIdentifier: string;
|
|
438
|
+
} | null;
|
|
439
|
+
readonly githubRepositorySettings: {
|
|
440
|
+
readonly baseDirectory: string;
|
|
441
|
+
readonly id: string;
|
|
442
|
+
} | null;
|
|
443
|
+
readonly githubUrl: string | null;
|
|
444
|
+
readonly icon: {
|
|
445
|
+
readonly colorPalette: unknown;
|
|
446
|
+
readonly originalUrl: string;
|
|
447
|
+
readonly primaryColor: string | null;
|
|
448
|
+
readonly url: string;
|
|
449
|
+
} | null;
|
|
450
|
+
readonly iconUrl: string | null;
|
|
451
|
+
readonly id: string;
|
|
452
|
+
readonly insights: {
|
|
453
|
+
readonly hasEventsFromExpoInsightsClientModule: boolean;
|
|
454
|
+
};
|
|
455
|
+
readonly internalDistributionBuildPrivacy: "PRIVATE" | "PUBLIC";
|
|
456
|
+
readonly isDeleting: boolean;
|
|
457
|
+
readonly isDeprecated: boolean;
|
|
458
|
+
readonly isLikedByMe: boolean;
|
|
459
|
+
readonly lastDeletionAttemptTime: string | null;
|
|
460
|
+
readonly lastPublishedTime: string;
|
|
461
|
+
readonly latestActivity: string;
|
|
462
|
+
readonly latestReleaseId: string;
|
|
463
|
+
readonly likeCount: number;
|
|
464
|
+
readonly logRocketProject: {
|
|
465
|
+
readonly createdAt: string;
|
|
466
|
+
readonly id: string;
|
|
467
|
+
readonly logRocketOrgId: string;
|
|
468
|
+
readonly logRocketProjectSlug: string;
|
|
469
|
+
readonly updatedAt: string;
|
|
470
|
+
} | null;
|
|
471
|
+
readonly name: string;
|
|
472
|
+
readonly observe: {
|
|
473
|
+
readonly totalEventCount: number;
|
|
474
|
+
};
|
|
475
|
+
readonly ownerAccount: {
|
|
476
|
+
readonly appCount: number;
|
|
477
|
+
readonly availableBuilds: number | null;
|
|
478
|
+
readonly createdAt: string;
|
|
479
|
+
readonly displayName: string | null;
|
|
480
|
+
readonly environmentVariableEnvironments: readonly unknown[];
|
|
481
|
+
readonly hasBuilds: boolean;
|
|
482
|
+
readonly id: string;
|
|
483
|
+
readonly isCurrent: boolean;
|
|
484
|
+
readonly isDisabled: boolean;
|
|
485
|
+
readonly isFreeAppDevDomainTier: boolean;
|
|
486
|
+
readonly isSSOEnabled: boolean;
|
|
487
|
+
readonly lastDeletionAttemptTime: string | null;
|
|
488
|
+
readonly name: string;
|
|
489
|
+
readonly profileImageUrl: string;
|
|
490
|
+
readonly pushSecurityEnabled: boolean;
|
|
491
|
+
readonly requireTwoFactor: boolean;
|
|
492
|
+
readonly requiresAccessTokenForPushSecurity: boolean;
|
|
493
|
+
readonly ssoAllowedAuthProviders: readonly ("AMAZON_FEDERATE" | "GENERIC" | "GOOGLE_WS" | "MS_ENTRA_ID" | "OKTA" | "ONE_LOGIN" | "STUB_IDP")[];
|
|
494
|
+
readonly subscriptionChangesPending: boolean | null;
|
|
495
|
+
readonly unlimitedBuilds: boolean;
|
|
496
|
+
readonly updatedAt: string;
|
|
497
|
+
readonly userSpecifiedAccountUsage: "COMPANY" | "PERSONAL" | null;
|
|
498
|
+
readonly willAutoRenewBuilds: boolean | null;
|
|
499
|
+
};
|
|
500
|
+
readonly packageName: string;
|
|
501
|
+
readonly packageUsername: string;
|
|
502
|
+
readonly playStoreUrl: string | null;
|
|
503
|
+
readonly privacy: string;
|
|
504
|
+
readonly privacySetting: "HIDDEN" | "PUBLIC" | "UNLISTED";
|
|
505
|
+
readonly published: boolean;
|
|
506
|
+
readonly pushNotifications: {
|
|
507
|
+
readonly id: string;
|
|
508
|
+
};
|
|
509
|
+
readonly pushSecurityEnabled: boolean;
|
|
510
|
+
readonly releaseChannels: readonly string[];
|
|
511
|
+
readonly requiresAccessTokenForPushSecurity: boolean;
|
|
512
|
+
readonly resourceClassExperiment: "C3D" | "N2" | null;
|
|
513
|
+
readonly scopeKey: string;
|
|
514
|
+
readonly sdkVersion: string;
|
|
515
|
+
readonly sentryProject: {
|
|
516
|
+
readonly createdAt: string;
|
|
517
|
+
readonly id: string;
|
|
518
|
+
readonly sentryInstallationId: string;
|
|
519
|
+
readonly sentryProjectId: string;
|
|
520
|
+
readonly sentryProjectSlug: string;
|
|
521
|
+
readonly updatedAt: string;
|
|
522
|
+
} | null;
|
|
523
|
+
readonly slug: string;
|
|
524
|
+
readonly suggestedDevDomainName: string;
|
|
525
|
+
readonly trendScore: number;
|
|
526
|
+
readonly updated: string;
|
|
527
|
+
readonly username: string;
|
|
528
|
+
readonly users: readonly ({
|
|
529
|
+
readonly appCount: number;
|
|
530
|
+
readonly appetizeCode: string | null;
|
|
531
|
+
readonly bestContactEmail: string | null;
|
|
532
|
+
readonly created: string;
|
|
533
|
+
readonly displayName: string;
|
|
534
|
+
readonly email: string;
|
|
535
|
+
readonly emailVerified: boolean;
|
|
536
|
+
readonly firstName: string | null;
|
|
537
|
+
readonly fullName: string | null;
|
|
538
|
+
readonly githubUsername: string | null;
|
|
539
|
+
readonly hasPassword: boolean;
|
|
540
|
+
readonly hasPendingUserInvitations: boolean;
|
|
541
|
+
readonly id: string;
|
|
542
|
+
readonly industry: string | null;
|
|
543
|
+
readonly isExpoAdmin: boolean;
|
|
544
|
+
readonly isLegacy: boolean;
|
|
545
|
+
readonly isSecondFactorAuthenticationEnabled: boolean;
|
|
546
|
+
readonly isStaffModeEnabled: boolean;
|
|
547
|
+
readonly lastDeletionAttemptTime: string | null;
|
|
548
|
+
readonly lastName: string | null;
|
|
549
|
+
readonly location: string | null;
|
|
550
|
+
readonly newEmailPendingVerification: string | null;
|
|
551
|
+
readonly primaryAccountProfileImageUrl: string | null;
|
|
552
|
+
readonly profilePhoto: string;
|
|
553
|
+
readonly twitterUsername: string | null;
|
|
554
|
+
readonly username: string;
|
|
555
|
+
} | null)[] | null;
|
|
556
|
+
readonly vexoApp: {
|
|
557
|
+
readonly domain: string | null;
|
|
558
|
+
readonly iconUrl: string | null;
|
|
559
|
+
readonly id: string;
|
|
560
|
+
readonly name: string;
|
|
561
|
+
readonly owner: string;
|
|
562
|
+
readonly slug: string;
|
|
563
|
+
readonly vexoIdentifier: string;
|
|
564
|
+
} | null;
|
|
565
|
+
readonly workerCustomDomain: {
|
|
566
|
+
readonly createdAt: string;
|
|
567
|
+
readonly devDomainName: unknown;
|
|
568
|
+
readonly hostname: string;
|
|
569
|
+
readonly id: string;
|
|
570
|
+
readonly updatedAt: string;
|
|
571
|
+
} | null;
|
|
572
|
+
};
|
|
573
|
+
readonly createdAt: string;
|
|
574
|
+
readonly finishedAt: string | null;
|
|
575
|
+
readonly id: string;
|
|
576
|
+
readonly initiatingActor: {
|
|
577
|
+
readonly accessTokens: readonly {
|
|
578
|
+
readonly createdAt: string;
|
|
579
|
+
readonly id: string;
|
|
580
|
+
readonly lastUsedAt: string | null;
|
|
581
|
+
readonly note: string | null;
|
|
582
|
+
readonly revokedAt: string | null;
|
|
583
|
+
readonly updatedAt: string;
|
|
584
|
+
readonly visibleTokenPrefix: string;
|
|
585
|
+
}[];
|
|
586
|
+
readonly accounts: readonly {
|
|
587
|
+
readonly appCount: number;
|
|
588
|
+
readonly availableBuilds: number | null;
|
|
589
|
+
readonly createdAt: string;
|
|
590
|
+
readonly displayName: string | null;
|
|
591
|
+
readonly environmentVariableEnvironments: readonly unknown[];
|
|
592
|
+
readonly hasBuilds: boolean;
|
|
593
|
+
readonly id: string;
|
|
594
|
+
readonly isCurrent: boolean;
|
|
595
|
+
readonly isDisabled: boolean;
|
|
596
|
+
readonly isFreeAppDevDomainTier: boolean;
|
|
597
|
+
readonly isSSOEnabled: boolean;
|
|
598
|
+
readonly lastDeletionAttemptTime: string | null;
|
|
599
|
+
readonly name: string;
|
|
600
|
+
readonly profileImageUrl: string;
|
|
601
|
+
readonly pushSecurityEnabled: boolean;
|
|
602
|
+
readonly requireTwoFactor: boolean;
|
|
603
|
+
readonly requiresAccessTokenForPushSecurity: boolean;
|
|
604
|
+
readonly ssoAllowedAuthProviders: readonly ("AMAZON_FEDERATE" | "GENERIC" | "GOOGLE_WS" | "MS_ENTRA_ID" | "OKTA" | "ONE_LOGIN" | "STUB_IDP")[];
|
|
605
|
+
readonly subscriptionChangesPending: boolean | null;
|
|
606
|
+
readonly unlimitedBuilds: boolean;
|
|
607
|
+
readonly updatedAt: string;
|
|
608
|
+
readonly userSpecifiedAccountUsage: "COMPANY" | "PERSONAL" | null;
|
|
609
|
+
readonly willAutoRenewBuilds: boolean | null;
|
|
610
|
+
}[];
|
|
611
|
+
readonly created: string;
|
|
612
|
+
readonly displayName: string;
|
|
613
|
+
readonly experiments: readonly {
|
|
614
|
+
readonly createdAt: string;
|
|
615
|
+
readonly enabled: boolean;
|
|
616
|
+
readonly experiment: "ORBIT";
|
|
617
|
+
readonly id: string;
|
|
618
|
+
readonly updatedAt: string;
|
|
619
|
+
}[];
|
|
620
|
+
readonly firstName: string | null;
|
|
621
|
+
readonly id: string;
|
|
622
|
+
readonly isExpoAdmin: boolean;
|
|
623
|
+
readonly lastDeletionAttemptTime: string | null;
|
|
624
|
+
} | null;
|
|
625
|
+
readonly packageVersion: string | null;
|
|
626
|
+
readonly platform: "ANDROID" | "IOS";
|
|
627
|
+
readonly startedAt: string | null;
|
|
628
|
+
readonly status: "ERRORED" | "IN_PROGRESS" | "NEW" | "STOPPED";
|
|
629
|
+
readonly turtleJobRun: {
|
|
630
|
+
readonly app: {
|
|
631
|
+
readonly appStoreUrl: string | null;
|
|
632
|
+
readonly assetLimitPerUpdateGroup: number;
|
|
633
|
+
readonly buildProfiles: readonly string[];
|
|
634
|
+
readonly buildsReleaseChannels: readonly string[];
|
|
635
|
+
readonly description: string;
|
|
636
|
+
readonly environmentVariableEnvironments: readonly unknown[];
|
|
637
|
+
readonly fullName: string;
|
|
638
|
+
readonly githubUrl: string | null;
|
|
639
|
+
readonly iconUrl: string | null;
|
|
640
|
+
readonly id: string;
|
|
641
|
+
readonly internalDistributionBuildPrivacy: "PRIVATE" | "PUBLIC";
|
|
642
|
+
readonly isDeleting: boolean;
|
|
643
|
+
readonly isDeprecated: boolean;
|
|
644
|
+
readonly isLikedByMe: boolean;
|
|
645
|
+
readonly lastDeletionAttemptTime: string | null;
|
|
646
|
+
readonly lastPublishedTime: string;
|
|
647
|
+
readonly latestActivity: string;
|
|
648
|
+
readonly latestReleaseId: string;
|
|
649
|
+
readonly likeCount: number;
|
|
650
|
+
readonly name: string;
|
|
651
|
+
readonly packageName: string;
|
|
652
|
+
readonly packageUsername: string;
|
|
653
|
+
readonly playStoreUrl: string | null;
|
|
654
|
+
readonly privacy: string;
|
|
655
|
+
readonly privacySetting: "HIDDEN" | "PUBLIC" | "UNLISTED";
|
|
656
|
+
readonly published: boolean;
|
|
657
|
+
readonly pushSecurityEnabled: boolean;
|
|
658
|
+
readonly releaseChannels: readonly string[];
|
|
659
|
+
readonly requiresAccessTokenForPushSecurity: boolean;
|
|
660
|
+
readonly resourceClassExperiment: "C3D" | "N2" | null;
|
|
661
|
+
readonly scopeKey: string;
|
|
662
|
+
readonly sdkVersion: string;
|
|
663
|
+
readonly slug: string;
|
|
664
|
+
readonly suggestedDevDomainName: string;
|
|
665
|
+
readonly trendScore: number;
|
|
666
|
+
readonly updated: string;
|
|
667
|
+
readonly username: string;
|
|
668
|
+
};
|
|
669
|
+
readonly artifacts: readonly {
|
|
670
|
+
readonly contentType: string | null;
|
|
671
|
+
readonly createdAt: string;
|
|
672
|
+
readonly downloadUrl: string | null;
|
|
673
|
+
readonly fileSizeBytes: number | null;
|
|
674
|
+
readonly filename: string;
|
|
675
|
+
readonly id: string;
|
|
676
|
+
readonly name: string;
|
|
677
|
+
readonly storageType: "GCS" | "R2";
|
|
678
|
+
readonly updatedAt: string;
|
|
679
|
+
}[];
|
|
680
|
+
readonly createdAt: string;
|
|
681
|
+
readonly displayName: string | null;
|
|
682
|
+
readonly endedAt: string | null;
|
|
683
|
+
readonly errors: readonly {
|
|
684
|
+
readonly buildPhase: string | null;
|
|
685
|
+
readonly docsUrl: string | null;
|
|
686
|
+
readonly errorCode: string;
|
|
687
|
+
readonly message: string;
|
|
688
|
+
}[];
|
|
689
|
+
readonly expiresAt: string;
|
|
690
|
+
readonly gitCommitHash: string | null;
|
|
691
|
+
readonly gitCommitMessage: string | null;
|
|
692
|
+
readonly gitRef: string | null;
|
|
693
|
+
readonly id: string;
|
|
694
|
+
readonly initiatingActor: {
|
|
695
|
+
readonly created: string;
|
|
696
|
+
readonly displayName: string;
|
|
697
|
+
readonly firstName: string | null;
|
|
698
|
+
readonly id: string;
|
|
699
|
+
readonly isExpoAdmin: boolean;
|
|
700
|
+
readonly lastDeletionAttemptTime: string | null;
|
|
701
|
+
} | null;
|
|
702
|
+
readonly isWaived: boolean;
|
|
703
|
+
readonly logFileUrls: readonly string[];
|
|
704
|
+
readonly name: string;
|
|
705
|
+
readonly priority: "HIGH" | "NORMAL";
|
|
706
|
+
readonly startedAt: string | null;
|
|
707
|
+
readonly status: "CANCELED" | "ERRORED" | "FINISHED" | "IN_PROGRESS" | "IN_QUEUE" | "NEW" | "PENDING_CANCEL";
|
|
708
|
+
readonly updateGroups: readonly (readonly unknown[])[];
|
|
709
|
+
} | null;
|
|
710
|
+
readonly type: "AGENT_DEVICE";
|
|
711
|
+
readonly updatedAt: string;
|
|
712
|
+
}, never, import("~/credentials.ts").Credentials>;
|
|
713
|
+
//# sourceMappingURL=deviceRunSessionEnsureDeviceRunSessionStopped.d.ts.map
|