eas-cli 20.2.0 → 20.3.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.
Files changed (31) hide show
  1. package/README.md +202 -110
  2. package/build/commandUtils/posthog.d.ts +4 -0
  3. package/build/commandUtils/posthog.js +23 -0
  4. package/build/commands/account/audit.d.ts +17 -0
  5. package/build/commands/account/audit.js +112 -0
  6. package/build/commands/integrations/posthog/connect.d.ts +27 -0
  7. package/build/commands/integrations/posthog/connect.js +432 -0
  8. package/build/commands/integrations/posthog/dashboard.d.ts +13 -0
  9. package/build/commands/integrations/posthog/dashboard.js +66 -0
  10. package/build/commands/integrations/posthog/disconnect.d.ts +14 -0
  11. package/build/commands/integrations/posthog/disconnect.js +80 -0
  12. package/build/commands/update/view.d.ts +7 -0
  13. package/build/commands/update/view.js +30 -3
  14. package/build/graphql/generated.d.ts +519 -30
  15. package/build/graphql/generated.js +29 -5
  16. package/build/graphql/mutations/PostHogMutation.d.ts +8 -0
  17. package/build/graphql/mutations/PostHogMutation.js +55 -0
  18. package/build/graphql/queries/AuditLogQuery.d.ts +6 -0
  19. package/build/graphql/queries/AuditLogQuery.js +57 -0
  20. package/build/graphql/queries/DeviceRunSessionQuery.js +1 -0
  21. package/build/graphql/queries/PostHogQuery.d.ts +6 -0
  22. package/build/graphql/queries/PostHogQuery.js +49 -0
  23. package/build/graphql/types/AuditLog.d.ts +1 -0
  24. package/build/graphql/types/AuditLog.js +18 -0
  25. package/build/graphql/types/PostHogConnection.d.ts +7 -0
  26. package/build/graphql/types/PostHogConnection.js +30 -0
  27. package/build/simulator/utils.js +28 -5
  28. package/build/user/SessionManager.d.ts +1 -22
  29. package/build/user/SessionManager.js +7 -89
  30. package/oclif.manifest.json +566 -186
  31. package/package.json +5 -2
@@ -210,6 +210,8 @@ export type Account = {
210
210
  /** Owning UserActor of this account if personal account */
211
211
  ownerUserActor?: Maybe<UserActor>;
212
212
  pendingSentryInstallation?: Maybe<PendingSentryInstallation>;
213
+ /** PostHog organization connection for this account */
214
+ posthogOrganizationConnection?: Maybe<PostHogOrganizationConnection>;
213
215
  profileImageUrl: Scalars['String']['output'];
214
216
  pushSecurityEnabled: Scalars['Boolean']['output'];
215
217
  requireTwoFactor: Scalars['Boolean']['output'];
@@ -1060,6 +1062,7 @@ export type AndroidAppCredentialsMutationCreateAndroidAppCredentialsArgs = {
1060
1062
  applicationIdentifier: Scalars['String']['input'];
1061
1063
  };
1062
1064
  export type AndroidAppCredentialsMutationCreateFcmV1CredentialArgs = {
1065
+ accountId?: InputMaybe<Scalars['ID']['input']>;
1063
1066
  androidAppCredentialsId: Scalars['String']['input'];
1064
1067
  credential: Scalars['String']['input'];
1065
1068
  };
@@ -1192,6 +1195,8 @@ export type AndroidJobOverridesInput = {
1192
1195
  };
1193
1196
  export type AndroidJobSecretsInput = {
1194
1197
  buildCredentials?: InputMaybe<AndroidJobBuildCredentialsInput>;
1198
+ /** @deprecated Robot access token is no longer needed as it's generated server-side and injected into the builder environment automatically. */
1199
+ robotAccessToken?: InputMaybe<Scalars['String']['input']>;
1195
1200
  };
1196
1201
  export type AndroidJobVersionInput = {
1197
1202
  versionCode: Scalars['String']['input'];
@@ -1216,6 +1221,8 @@ export type AndroidKeystoreInput = {
1216
1221
  keyAlias: Scalars['String']['input'];
1217
1222
  keyPassword?: InputMaybe<Scalars['String']['input']>;
1218
1223
  keystorePassword: Scalars['String']['input'];
1224
+ /** @deprecated Type will be automatically inferred from keystore content. */
1225
+ type?: InputMaybe<AndroidKeystoreType>;
1219
1226
  };
1220
1227
  export type AndroidKeystoreMutation = {
1221
1228
  __typename?: 'AndroidKeystoreMutation';
@@ -1316,7 +1323,7 @@ export type App = Project & {
1316
1323
  * @deprecated Classic updates have been deprecated.
1317
1324
  */
1318
1325
  icon?: Maybe<AppIcon>;
1319
- /** @deprecated No longer supported */
1326
+ /** @deprecated Field no longer supported */
1320
1327
  iconUrl?: Maybe<Scalars['String']['output']>;
1321
1328
  id: Scalars['ID']['output'];
1322
1329
  /** App query field for querying EAS Insights about this app */
@@ -1334,7 +1341,7 @@ export type App = Project & {
1334
1341
  /** @deprecated 'likes' have been deprecated. */
1335
1342
  isLikedByMe: Scalars['Boolean']['output'];
1336
1343
  lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
1337
- /** @deprecated No longer supported */
1344
+ /** @deprecated Field no longer supported */
1338
1345
  lastPublishedTime: Scalars['DateTime']['output'];
1339
1346
  /** Time of the last user activity (update, branch, submission). */
1340
1347
  latestActivity: Scalars['DateTime']['output'];
@@ -1354,18 +1361,19 @@ export type App = Project & {
1354
1361
  name: Scalars['String']['output'];
1355
1362
  observe: AppObserve;
1356
1363
  ownerAccount: Account;
1357
- /** @deprecated No longer supported */
1364
+ /** @deprecated Field no longer supported */
1358
1365
  packageName: Scalars['String']['output'];
1359
- /** @deprecated No longer supported */
1366
+ /** @deprecated Field no longer supported */
1360
1367
  packageUsername: Scalars['String']['output'];
1361
1368
  /**
1362
1369
  * android.playStoreUrl field from most recent classic update manifest
1363
1370
  * @deprecated Classic updates have been deprecated.
1364
1371
  */
1365
1372
  playStoreUrl?: Maybe<Scalars['String']['output']>;
1373
+ posthogProject?: Maybe<PostHogProject>;
1366
1374
  /** @deprecated No longer supported */
1367
1375
  privacy: Scalars['String']['output'];
1368
- /** @deprecated No longer supported */
1376
+ /** @deprecated Field no longer supported */
1369
1377
  privacySetting: AppPrivacy;
1370
1378
  profileImageUrl?: Maybe<Scalars['String']['output']>;
1371
1379
  /**
@@ -1425,7 +1433,7 @@ export type App = Project & {
1425
1433
  usageMetrics: AppUsageMetrics;
1426
1434
  /** @deprecated Use ownerAccount.name instead */
1427
1435
  username: Scalars['String']['output'];
1428
- /** @deprecated No longer supported */
1436
+ /** @deprecated Field no longer supported */
1429
1437
  users?: Maybe<Array<Maybe<User>>>;
1430
1438
  vexoApp?: Maybe<VexoApp>;
1431
1439
  /** Notification preferences of the viewer for this app */
@@ -1453,6 +1461,7 @@ export type AppActivityTimelineProjectActivitiesArgs = {
1453
1461
  createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
1454
1462
  filterChannels?: InputMaybe<Array<Scalars['String']['input']>>;
1455
1463
  filterPlatforms?: InputMaybe<Array<AppPlatform>>;
1464
+ filterReleaseChannels?: InputMaybe<Array<Scalars['String']['input']>>;
1456
1465
  filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
1457
1466
  limit: Scalars['Int']['input'];
1458
1467
  };
@@ -1804,7 +1813,7 @@ export type AppFingerprintsConnection = {
1804
1813
  };
1805
1814
  export type AppIcon = {
1806
1815
  __typename?: 'AppIcon';
1807
- /** @deprecated No longer supported */
1816
+ /** @deprecated Field no longer supported */
1808
1817
  colorPalette?: Maybe<Scalars['JSON']['output']>;
1809
1818
  originalUrl: Scalars['String']['output'];
1810
1819
  primaryColor?: Maybe<Scalars['String']['output']>;
@@ -1816,6 +1825,8 @@ export type AppInfoInput = {
1816
1825
  export type AppInput = {
1817
1826
  accountId: Scalars['ID']['input'];
1818
1827
  appInfo?: InputMaybe<AppInfoInput>;
1828
+ /** @deprecated Field no longer supported */
1829
+ privacy?: InputMaybe<AppPrivacy>;
1819
1830
  projectName: Scalars['String']['input'];
1820
1831
  };
1821
1832
  export type AppInsights = {
@@ -1842,7 +1853,7 @@ export type AppMutation = {
1842
1853
  __typename?: 'AppMutation';
1843
1854
  /** Create an app */
1844
1855
  createApp: App;
1845
- /** @deprecated No longer supported */
1856
+ /** @deprecated Field no longer supported */
1846
1857
  grantAccess?: Maybe<App>;
1847
1858
  /** Remove profile image (icon) for the app. Do nothing if there's no profile image associated. */
1848
1859
  removeProfileImage: App;
@@ -2699,6 +2710,8 @@ export type AppWithGithubRepositoryInput = {
2699
2710
  accountId: Scalars['ID']['input'];
2700
2711
  appInfo?: InputMaybe<AppInfoInput>;
2701
2712
  installationIdentifier?: InputMaybe<Scalars['String']['input']>;
2713
+ /** @deprecated Field no longer supported */
2714
+ privacy?: InputMaybe<AppPrivacy>;
2702
2715
  projectName: Scalars['String']['input'];
2703
2716
  };
2704
2717
  export type AppWorkflowFilterInput = {
@@ -3081,6 +3094,7 @@ export declare enum AppsFilter {
3081
3094
  }
3082
3095
  export type ArgentRunSessionRemoteConfig = {
3083
3096
  __typename?: 'ArgentRunSessionRemoteConfig';
3097
+ toolsAuthToken?: Maybe<Scalars['String']['output']>;
3084
3098
  toolsUrl: Scalars['String']['output'];
3085
3099
  /**
3086
3100
  * URL of the web preview surface for the session. Null when web previews are
@@ -3495,7 +3509,11 @@ export type BuildArtifacts = {
3495
3509
  xcodeBuildLogsUrl?: Maybe<Scalars['String']['output']>;
3496
3510
  };
3497
3511
  export type BuildCacheInput = {
3512
+ /** @deprecated We don't cache anything by default anymore */
3513
+ cacheDefaultPaths?: InputMaybe<Scalars['Boolean']['input']>;
3498
3514
  clear?: InputMaybe<Scalars['Boolean']['input']>;
3515
+ /** @deprecated We use paths now since there is no default caching anymore */
3516
+ customPaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
3499
3517
  disabled?: InputMaybe<Scalars['Boolean']['input']>;
3500
3518
  key?: InputMaybe<Scalars['String']['input']>;
3501
3519
  paths?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -3559,6 +3577,8 @@ export type BuildMetadataInput = {
3559
3577
  appIdentifier?: InputMaybe<Scalars['String']['input']>;
3560
3578
  appName?: InputMaybe<Scalars['String']['input']>;
3561
3579
  appVersion?: InputMaybe<Scalars['String']['input']>;
3580
+ /** @deprecated Use job.mode instead. */
3581
+ buildMode?: InputMaybe<BuildMode>;
3562
3582
  buildProfile?: InputMaybe<Scalars['String']['input']>;
3563
3583
  channel?: InputMaybe<Scalars['String']['input']>;
3564
3584
  cliVersion?: InputMaybe<Scalars['String']['input']>;
@@ -3584,6 +3604,8 @@ export type BuildMetadataInput = {
3584
3604
  runWithNoWaitFlag?: InputMaybe<Scalars['Boolean']['input']>;
3585
3605
  runtimeVersion?: InputMaybe<Scalars['String']['input']>;
3586
3606
  sdkVersion?: InputMaybe<Scalars['String']['input']>;
3607
+ /** @deprecated Unused. */
3608
+ selectedImage?: InputMaybe<Scalars['String']['input']>;
3587
3609
  simulator?: InputMaybe<Scalars['Boolean']['input']>;
3588
3610
  trackingContext?: InputMaybe<Scalars['JSONObject']['input']>;
3589
3611
  username?: InputMaybe<Scalars['String']['input']>;
@@ -3725,7 +3747,7 @@ export declare enum BuildPhase {
3725
3747
  StartBuild = "START_BUILD",
3726
3748
  Unknown = "UNKNOWN",
3727
3749
  UploadApplicationArchive = "UPLOAD_APPLICATION_ARCHIVE",
3728
- /** @deprecated No longer supported */
3750
+ /** @deprecated Field no longer supported */
3729
3751
  UploadArtifacts = "UPLOAD_ARTIFACTS",
3730
3752
  UploadBuildArtifacts = "UPLOAD_BUILD_ARTIFACTS"
3731
3753
  }
@@ -4179,6 +4201,10 @@ export type CreateIosSubmissionInput = {
4179
4201
  config: IosSubmissionConfigInput;
4180
4202
  submittedBuildId?: InputMaybe<Scalars['ID']['input']>;
4181
4203
  };
4204
+ export type CreatePostHogAccountRequestInput = {
4205
+ accountId: Scalars['ID']['input'];
4206
+ region: PostHogRegion;
4207
+ };
4182
4208
  export type CreateSentryProjectInput = {
4183
4209
  appId: Scalars['ID']['input'];
4184
4210
  sentryProjectId: Scalars['String']['input'];
@@ -4187,6 +4213,8 @@ export type CreateSentryProjectInput = {
4187
4213
  export type CreateSharedEnvironmentVariableInput = {
4188
4214
  environments?: InputMaybe<Array<Scalars['EnvironmentVariableEnvironment']['input']>>;
4189
4215
  fileName?: InputMaybe<Scalars['String']['input']>;
4216
+ /** @deprecated Whether the variable is global is now governed by its scope - account / app. */
4217
+ isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
4190
4218
  name: Scalars['String']['input'];
4191
4219
  overwrite?: InputMaybe<Scalars['Boolean']['input']>;
4192
4220
  type?: InputMaybe<EnvironmentSecretType>;
@@ -5334,6 +5362,8 @@ export declare enum EntityTypeName {
5334
5362
  IosAppCredentialsEntity = "IosAppCredentialsEntity",
5335
5363
  LogRocketOrganizationEntity = "LogRocketOrganizationEntity",
5336
5364
  LogRocketProjectEntity = "LogRocketProjectEntity",
5365
+ PostHogOrganizationConnectionEntity = "PostHogOrganizationConnectionEntity",
5366
+ PostHogProjectEntity = "PostHogProjectEntity",
5337
5367
  UserInvitationEntity = "UserInvitationEntity",
5338
5368
  UserPermissionEntity = "UserPermissionEntity",
5339
5369
  VexoAccountConnectionEntity = "VexoAccountConnectionEntity",
@@ -5527,6 +5557,106 @@ export type EstimatedUsagePlatformDetail = {
5527
5557
  limit: Scalars['Float']['output'];
5528
5558
  value: Scalars['Float']['output'];
5529
5559
  };
5560
+ export type ExitInterviewBeginChatTurnInput = {
5561
+ accountId: Scalars['ID']['input'];
5562
+ };
5563
+ export type ExitInterviewBeginChatTurnResult = {
5564
+ __typename?: 'ExitInterviewBeginChatTurnResult';
5565
+ ok: Scalars['Boolean']['output'];
5566
+ };
5567
+ export type ExitInterviewCompleteInput = {
5568
+ accountId: Scalars['ID']['input'];
5569
+ conversationId: Scalars['ID']['input'];
5570
+ messages: Array<ExitInterviewMessageInput>;
5571
+ outcome: ExitInterviewOutcome;
5572
+ /**
5573
+ * Optional classification tags. Present when the website's tagging call
5574
+ * succeeded; omitted when it failed or when the user dismissed without
5575
+ * engaging. When present, drives the conversation-tagged event and the
5576
+ * tagged Slack notification.
5577
+ */
5578
+ tags?: InputMaybe<ExitInterviewTagsInput>;
5579
+ };
5580
+ export type ExitInterviewCompleteResult = {
5581
+ __typename?: 'ExitInterviewCompleteResult';
5582
+ success: Scalars['Boolean']['output'];
5583
+ };
5584
+ export type ExitInterviewFeedbackInput = {
5585
+ accountId: Scalars['ID']['input'];
5586
+ conversationId: Scalars['ID']['input'];
5587
+ feedback: Scalars['String']['input'];
5588
+ outcome: ExitInterviewOutcome;
5589
+ };
5590
+ export type ExitInterviewFeedbackResult = {
5591
+ __typename?: 'ExitInterviewFeedbackResult';
5592
+ success: Scalars['Boolean']['output'];
5593
+ };
5594
+ export type ExitInterviewMessageInput = {
5595
+ content: Scalars['String']['input'];
5596
+ role: ExitInterviewMessageRole;
5597
+ };
5598
+ export declare enum ExitInterviewMessageRole {
5599
+ Assistant = "ASSISTANT",
5600
+ User = "USER"
5601
+ }
5602
+ export type ExitInterviewMutation = {
5603
+ __typename?: 'ExitInterviewMutation';
5604
+ /**
5605
+ * Gate a chat turn before the website route calls OpenAI. Enforces
5606
+ * authorization (account admin), eligibility (active paid subscription,
5607
+ * not cancelling), and a per-user rate limit (30 turns/hour). The
5608
+ * website's /api/exit-interview/chat route calls this server-to-server
5609
+ * on every turn; failures map to HTTP 4xx and abort the stream before
5610
+ * any OpenAI tokens are spent.
5611
+ */
5612
+ beginChatTurn: ExitInterviewBeginChatTurnResult;
5613
+ /**
5614
+ * Mark a treatment-variant exit-interview chat conversation complete. Emits
5615
+ * the conversation-completed event to RudderStack with the full transcript.
5616
+ * If the transcript carries at least one server-signed assistant turn (i.e.
5617
+ * the user actually engaged the bot), fans out the raw transcript to Slack.
5618
+ * If the client also provides tags, emits a separate conversation-tagged
5619
+ * event and a tagged Slack notification. Control-variant one-shot feedback
5620
+ * goes through submitFeedback.
5621
+ */
5622
+ complete: ExitInterviewCompleteResult;
5623
+ /**
5624
+ * Record a control-variant one-shot feedback submission. Emits the
5625
+ * feedback-submitted event to RudderStack. No Slack notification, no
5626
+ * tagging — those pipelines are scoped to the treatment chat flow via
5627
+ * complete.
5628
+ */
5629
+ submitFeedback: ExitInterviewFeedbackResult;
5630
+ };
5631
+ export type ExitInterviewMutationBeginChatTurnArgs = {
5632
+ input: ExitInterviewBeginChatTurnInput;
5633
+ };
5634
+ export type ExitInterviewMutationCompleteArgs = {
5635
+ input: ExitInterviewCompleteInput;
5636
+ };
5637
+ export type ExitInterviewMutationSubmitFeedbackArgs = {
5638
+ input: ExitInterviewFeedbackInput;
5639
+ };
5640
+ export declare enum ExitInterviewOutcome {
5641
+ CancelledImmediately = "CANCELLED_IMMEDIATELY",
5642
+ ContinuedToStripe = "CONTINUED_TO_STRIPE",
5643
+ Dismissed = "DISMISSED",
5644
+ KeptPlan = "KEPT_PLAN"
5645
+ }
5646
+ /**
5647
+ * Tags produced by the website's churn-classification step. The website runs
5648
+ * this synchronously before calling complete, then forwards the structured
5649
+ * result. Allowed category / sentiment values are enforced by the resolver.
5650
+ */
5651
+ export type ExitInterviewTagsInput = {
5652
+ actionableInsight: Scalars['Boolean']['input'];
5653
+ category: Scalars['String']['input'];
5654
+ competitorMention?: InputMaybe<Scalars['String']['input']>;
5655
+ confidence?: InputMaybe<Scalars['String']['input']>;
5656
+ productArea?: InputMaybe<Scalars['String']['input']>;
5657
+ sentiment: Scalars['String']['input'];
5658
+ summary?: InputMaybe<Scalars['String']['input']>;
5659
+ };
5530
5660
  export declare enum Experiment {
5531
5661
  Orbit = "ORBIT"
5532
5662
  }
@@ -6323,6 +6453,8 @@ export type IosJobOverridesInput = {
6323
6453
  };
6324
6454
  export type IosJobSecretsInput = {
6325
6455
  buildCredentials?: InputMaybe<Array<InputMaybe<IosJobTargetCredentialsInput>>>;
6456
+ /** @deprecated Robot access token is no longer needed as it's generated server-side and injected into the builder environment automatically. */
6457
+ robotAccessToken?: InputMaybe<Scalars['String']['input']>;
6326
6458
  };
6327
6459
  export type IosJobTargetCredentialsInput = {
6328
6460
  distributionCertificate: IosJobDistributionCertificateInput;
@@ -6362,7 +6494,7 @@ export type JobRun = {
6362
6494
  __typename?: 'JobRun';
6363
6495
  app: App;
6364
6496
  artifacts: Array<WorkflowArtifact>;
6365
- /** @deprecated No longer supported */
6497
+ /** @deprecated Field no longer supported */
6366
6498
  childJobRun?: Maybe<JobRun>;
6367
6499
  createdAt: Scalars['DateTime']['output'];
6368
6500
  displayName?: Maybe<Scalars['String']['output']>;
@@ -6839,10 +6971,66 @@ export type PinnedDashboardView = {
6839
6971
  view: DashboardViewPin;
6840
6972
  };
6841
6973
  export type PlanEnablement = Concurrencies | EasTotalPlanEnablement;
6974
+ export type PostHogIntegrationQuery = {
6975
+ __typename?: 'PostHogIntegrationQuery';
6976
+ clientIdentifier: Scalars['String']['output'];
6977
+ };
6978
+ export type PostHogOrganizationConnection = {
6979
+ __typename?: 'PostHogOrganizationConnection';
6980
+ account: Account;
6981
+ createdAt: Scalars['DateTime']['output'];
6982
+ id: Scalars['ID']['output'];
6983
+ posthogOrganizationIdentifier: Scalars['String']['output'];
6984
+ posthogOrganizationName: Scalars['String']['output'];
6985
+ posthogProjects: Array<PostHogProject>;
6986
+ posthogRegion: PostHogRegion;
6987
+ updatedAt: Scalars['DateTime']['output'];
6988
+ };
6989
+ export type PostHogOrganizationConnectionMutation = {
6990
+ __typename?: 'PostHogOrganizationConnectionMutation';
6991
+ createPostHogAccountRequest: PostHogOrganizationConnection;
6992
+ /** Removes the Expo-side connection only; the PostHog organization is preserved. */
6993
+ deletePostHogOrganizationConnection: Scalars['ID']['output'];
6994
+ };
6995
+ export type PostHogOrganizationConnectionMutationCreatePostHogAccountRequestArgs = {
6996
+ input: CreatePostHogAccountRequestInput;
6997
+ };
6998
+ export type PostHogOrganizationConnectionMutationDeletePostHogOrganizationConnectionArgs = {
6999
+ id: Scalars['ID']['input'];
7000
+ };
7001
+ export type PostHogProject = {
7002
+ __typename?: 'PostHogProject';
7003
+ app: App;
7004
+ createdAt: Scalars['DateTime']['output'];
7005
+ id: Scalars['ID']['output'];
7006
+ posthogHost: Scalars['String']['output'];
7007
+ posthogOrganizationConnection: PostHogOrganizationConnection;
7008
+ posthogProjectIdentifier: Scalars['String']['output'];
7009
+ posthogProjectName: Scalars['String']['output'];
7010
+ posthogProjectToken: Scalars['String']['output'];
7011
+ updatedAt: Scalars['DateTime']['output'];
7012
+ };
7013
+ export type PostHogProjectMutation = {
7014
+ __typename?: 'PostHogProjectMutation';
7015
+ /** Removes the Expo-side project link only; the PostHog project is preserved. */
7016
+ deletePostHogProject: Scalars['ID']['output'];
7017
+ /** Provisions a PostHog project for the app; the project name is derived from the app. */
7018
+ setupPostHogProject: PostHogProject;
7019
+ };
7020
+ export type PostHogProjectMutationDeletePostHogProjectArgs = {
7021
+ id: Scalars['ID']['input'];
7022
+ };
7023
+ export type PostHogProjectMutationSetupPostHogProjectArgs = {
7024
+ input: SetupPostHogProjectInput;
7025
+ };
7026
+ export declare enum PostHogRegion {
7027
+ Eu = "EU",
7028
+ Us = "US"
7029
+ }
6842
7030
  export type Project = {
6843
7031
  description: Scalars['String']['output'];
6844
7032
  fullName: Scalars['String']['output'];
6845
- /** @deprecated No longer supported */
7033
+ /** @deprecated Field no longer supported */
6846
7034
  iconUrl?: Maybe<Scalars['String']['output']>;
6847
7035
  id: Scalars['ID']['output'];
6848
7036
  name: Scalars['String']['output'];
@@ -6904,6 +7092,8 @@ export type PublishUpdateGroupInput = {
6904
7092
  message?: InputMaybe<Scalars['String']['input']>;
6905
7093
  rollBackToEmbeddedInfoGroup?: InputMaybe<UpdateRollBackToEmbeddedGroup>;
6906
7094
  rolloutInfoGroup?: InputMaybe<UpdateRolloutInfoGroup>;
7095
+ /** @deprecated Use fingerprintInfoGroup instead */
7096
+ runtimeFingerprintSource?: InputMaybe<FingerprintSourceInput>;
6907
7097
  runtimeVersion: Scalars['String']['input'];
6908
7098
  turtleJobRunId?: InputMaybe<Scalars['String']['input']>;
6909
7099
  updateInfoGroup?: InputMaybe<UpdateInfoGroup>;
@@ -7127,6 +7317,8 @@ export type RootMutation = {
7127
7317
  environmentSecret: EnvironmentSecretMutation;
7128
7318
  /** Mutations that create and delete EnvironmentVariables */
7129
7319
  environmentVariable: EnvironmentVariableMutation;
7320
+ /** Mutations for the exit-interview chat shown when a user cancels their plan. */
7321
+ exitInterview: ExitInterviewMutation;
7130
7322
  /** Mutations that modify App fingerprints */
7131
7323
  fingerprint: FingerprintMutation;
7132
7324
  /** Mutations that utilize services facilitated by the GitHub App */
@@ -7159,6 +7351,8 @@ export type RootMutation = {
7159
7351
  me: MeMutation;
7160
7352
  /** Notification preference management */
7161
7353
  notificationPreference: NotificationPreferenceMutation;
7354
+ posthogOrganizationConnection: PostHogOrganizationConnectionMutation;
7355
+ posthogProject: PostHogProjectMutation;
7162
7356
  /** Mutations that create, update, and delete Robots */
7163
7357
  robot: RobotMutation;
7164
7358
  /** Mutations for Sentry installations */
@@ -7167,6 +7361,7 @@ export type RootMutation = {
7167
7361
  sentryProject: SentryProjectMutation;
7168
7362
  /** Mutations that modify an EAS Submit submission */
7169
7363
  submission: SubmissionMutation;
7364
+ tunnels: TunnelsMutation;
7170
7365
  turtleBrownfieldArtifacts: TurtleBrownfieldArtifactMutation;
7171
7366
  update: UpdateMutation;
7172
7367
  updateBranch: UpdateBranchMutation;
@@ -7298,6 +7493,8 @@ export type RootQuery = {
7298
7493
  * this is the appropriate top-level query object
7299
7494
  */
7300
7495
  meUserActor?: Maybe<UserActor>;
7496
+ /** Top-level query object for querying PostHog Integration information. */
7497
+ posthogIntegration: PostHogIntegrationQuery;
7301
7498
  /** @deprecated Snacks and apps should be queried separately */
7302
7499
  project: ProjectQuery;
7303
7500
  /** Top-level query object for querying Runtimes. */
@@ -7460,7 +7657,7 @@ export type SsoUser = Actor & UserActor & {
7460
7657
  /** Coalesced project activity for all apps belonging to all accounts this user belongs to. Only resolves for the viewer. */
7461
7658
  activityTimelineProjectActivities: Array<ActivityTimelineProjectActivity>;
7462
7659
  appCount: Scalars['Int']['output'];
7463
- /** @deprecated No longer supported */
7660
+ /** @deprecated Field no longer supported */
7464
7661
  appetizeCode?: Maybe<Scalars['String']['output']>;
7465
7662
  /**
7466
7663
  * Apps this user has published. If this user is the viewer, this field returns the apps the user has access to.
@@ -7483,16 +7680,16 @@ export type SsoUser = Actor & UserActor & {
7483
7680
  fullName?: Maybe<Scalars['String']['output']>;
7484
7681
  /** GitHub account linked to a user */
7485
7682
  githubUser?: Maybe<GitHubUser>;
7486
- /** @deprecated No longer supported */
7683
+ /** @deprecated Field no longer supported */
7487
7684
  githubUsername?: Maybe<Scalars['String']['output']>;
7488
7685
  id: Scalars['ID']['output'];
7489
- /** @deprecated No longer supported */
7686
+ /** @deprecated Field no longer supported */
7490
7687
  industry?: Maybe<Scalars['String']['output']>;
7491
7688
  isExpoAdmin: Scalars['Boolean']['output'];
7492
7689
  isStaffModeEnabled: Scalars['Boolean']['output'];
7493
7690
  lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
7494
7691
  lastName?: Maybe<Scalars['String']['output']>;
7495
- /** @deprecated No longer supported */
7692
+ /** @deprecated Field no longer supported */
7496
7693
  location?: Maybe<Scalars['String']['output']>;
7497
7694
  pinnedApps: Array<App>;
7498
7695
  pinnedDashboardViews: Array<PinnedDashboardView>;
@@ -7504,7 +7701,7 @@ export type SsoUser = Actor & UserActor & {
7504
7701
  profilePhoto: Scalars['String']['output'];
7505
7702
  /** Snacks associated with this account */
7506
7703
  snacks: Array<Snack>;
7507
- /** @deprecated No longer supported */
7704
+ /** @deprecated Field no longer supported */
7508
7705
  twitterUsername?: Maybe<Scalars['String']['output']>;
7509
7706
  username: Scalars['String']['output'];
7510
7707
  websiteNotificationsPaginated: WebsiteNotificationsConnection;
@@ -7539,7 +7736,15 @@ export type SsoUserWebsiteNotificationsPaginatedArgs = {
7539
7736
  };
7540
7737
  export type SsoUserDataInput = {
7541
7738
  firstName?: InputMaybe<Scalars['String']['input']>;
7739
+ /** @deprecated Field no longer supported */
7740
+ githubUsername?: InputMaybe<Scalars['String']['input']>;
7741
+ /** @deprecated Field no longer supported */
7742
+ industry?: InputMaybe<Scalars['String']['input']>;
7542
7743
  lastName?: InputMaybe<Scalars['String']['input']>;
7744
+ /** @deprecated Field no longer supported */
7745
+ location?: InputMaybe<Scalars['String']['input']>;
7746
+ /** @deprecated Field no longer supported */
7747
+ twitterUsername?: InputMaybe<Scalars['String']['input']>;
7543
7748
  };
7544
7749
  export type SecondFactorBooleanResult = {
7545
7750
  __typename?: 'SecondFactorBooleanResult';
@@ -7549,7 +7754,6 @@ export type SecondFactorDeviceConfiguration = {
7549
7754
  isPrimary: Scalars['Boolean']['input'];
7550
7755
  method: SecondFactorMethod;
7551
7756
  name: Scalars['String']['input'];
7552
- smsPhoneNumber?: InputMaybe<Scalars['String']['input']>;
7553
7757
  };
7554
7758
  export type SecondFactorDeviceConfigurationResult = {
7555
7759
  __typename?: 'SecondFactorDeviceConfigurationResult';
@@ -7565,7 +7769,10 @@ export type SecondFactorInitiationResult = {
7565
7769
  export declare enum SecondFactorMethod {
7566
7770
  /** Google Authenticator (TOTP) */
7567
7771
  Authenticator = "AUTHENTICATOR",
7568
- /** SMS */
7772
+ /**
7773
+ * SMS
7774
+ * @deprecated No longer supported
7775
+ */
7569
7776
  Sms = "SMS"
7570
7777
  }
7571
7778
  export type SecondFactorRegenerateBackupCodesResult = {
@@ -7647,6 +7854,10 @@ export type SetupConvexProjectResult = {
7647
7854
  convexProject: ConvexProject;
7648
7855
  deployKey: Scalars['String']['output'];
7649
7856
  };
7857
+ export type SetupPostHogProjectInput = {
7858
+ appId: Scalars['ID']['input'];
7859
+ posthogOrganizationConnectionId: Scalars['ID']['input'];
7860
+ };
7650
7861
  export type SizeBreakdownCategory = {
7651
7862
  __typename?: 'SizeBreakdownCategory';
7652
7863
  assetCount: Scalars['Int']['output'];
@@ -7662,7 +7873,7 @@ export type Snack = Project & {
7662
7873
  /** Has the Snack been run without errors */
7663
7874
  hasBeenRunSuccessfully?: Maybe<Scalars['Boolean']['output']>;
7664
7875
  hashId: Scalars['String']['output'];
7665
- /** @deprecated No longer supported */
7876
+ /** @deprecated Field no longer supported */
7666
7877
  iconUrl?: Maybe<Scalars['String']['output']>;
7667
7878
  id: Scalars['ID']['output'];
7668
7879
  /** Draft status, which is true when the Snack was not saved explicitly, but auto-saved */
@@ -7965,6 +8176,19 @@ export type TimelineActivityFilterInput = {
7965
8176
  releaseChannels?: InputMaybe<Array<Scalars['String']['input']>>;
7966
8177
  types?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
7967
8178
  };
8179
+ export type TunnelSignedUrlResult = {
8180
+ __typename?: 'TunnelSignedUrlResult';
8181
+ label: Scalars['ID']['output'];
8182
+ url: Scalars['String']['output'];
8183
+ };
8184
+ export type TunnelsMutation = {
8185
+ __typename?: 'TunnelsMutation';
8186
+ /** Create a signed tunnel URL for an account */
8187
+ createSignedTunnelUrl: TunnelSignedUrlResult;
8188
+ };
8189
+ export type TunnelsMutationCreateSignedTunnelUrlArgs = {
8190
+ accountId: Scalars['ID']['input'];
8191
+ };
7968
8192
  export type TurtleBrownfieldArtifactMutation = {
7969
8193
  __typename?: 'TurtleBrownfieldArtifactMutation';
7970
8194
  createTurtleBrownfieldArtifact: CreateBrownfieldArtifactResult;
@@ -8309,6 +8533,8 @@ export type UpdateEnvironmentVariableInput = {
8309
8533
  environments?: InputMaybe<Array<Scalars['EnvironmentVariableEnvironment']['input']>>;
8310
8534
  fileName?: InputMaybe<Scalars['String']['input']>;
8311
8535
  id: Scalars['ID']['input'];
8536
+ /** @deprecated You cannot change whether the variable is global. */
8537
+ isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
8312
8538
  name?: InputMaybe<Scalars['String']['input']>;
8313
8539
  type?: InputMaybe<EnvironmentSecretType>;
8314
8540
  value?: InputMaybe<Scalars['String']['input']>;
@@ -8429,6 +8655,8 @@ export type UpdateVexoAppInput = {
8429
8655
  export type UpdatesFilter = {
8430
8656
  platform?: InputMaybe<AppPlatform>;
8431
8657
  runtimeVersions?: InputMaybe<Array<Scalars['String']['input']>>;
8658
+ /** @deprecated Use runtimeVersions instead. */
8659
+ sdkVersions?: InputMaybe<Array<Scalars['String']['input']>>;
8432
8660
  };
8433
8661
  export type UpdatesFilterV2 = {
8434
8662
  platform?: InputMaybe<AppPlatform>;
@@ -8525,7 +8753,7 @@ export type User = Actor & UserActor & {
8525
8753
  /** Coalesced project activity for all apps belonging to all accounts this user belongs to. Only resolves for the viewer. */
8526
8754
  activityTimelineProjectActivities: Array<ActivityTimelineProjectActivity>;
8527
8755
  appCount: Scalars['Int']['output'];
8528
- /** @deprecated No longer supported */
8756
+ /** @deprecated Field no longer supported */
8529
8757
  appetizeCode?: Maybe<Scalars['String']['output']>;
8530
8758
  /**
8531
8759
  * Apps this user has published
@@ -8550,25 +8778,27 @@ export type User = Actor & UserActor & {
8550
8778
  fullName?: Maybe<Scalars['String']['output']>;
8551
8779
  /** GitHub account linked to a user */
8552
8780
  githubUser?: Maybe<GitHubUser>;
8553
- /** @deprecated No longer supported */
8781
+ /** @deprecated Field no longer supported */
8554
8782
  githubUsername?: Maybe<Scalars['String']['output']>;
8555
8783
  hasPassword: Scalars['Boolean']['output'];
8556
8784
  /** Whether this user has any pending user invitations. Only resolves for the viewer. */
8557
8785
  hasPendingUserInvitations: Scalars['Boolean']['output'];
8558
8786
  id: Scalars['ID']['output'];
8559
- /** @deprecated No longer supported */
8787
+ /** @deprecated Field no longer supported */
8560
8788
  industry?: Maybe<Scalars['String']['output']>;
8561
8789
  isExpoAdmin: Scalars['Boolean']['output'];
8562
- /** @deprecated No longer supported */
8790
+ /** @deprecated Field no longer supported */
8563
8791
  isLegacy: Scalars['Boolean']['output'];
8564
8792
  isSecondFactorAuthenticationEnabled: Scalars['Boolean']['output'];
8565
8793
  isStaffModeEnabled: Scalars['Boolean']['output'];
8566
8794
  lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
8567
8795
  lastName?: Maybe<Scalars['String']['output']>;
8568
- /** @deprecated No longer supported */
8796
+ /** @deprecated Field no longer supported */
8569
8797
  location?: Maybe<Scalars['String']['output']>;
8570
8798
  newEmailPendingVerification?: Maybe<Scalars['String']['output']>;
8571
8799
  oAuthIdentities: Array<OAuthIdentity>;
8800
+ /** Registered passkey credentials */
8801
+ passkeyCredentials: Array<UserPasskeyCredential>;
8572
8802
  /** Pending UserInvitations for this user. Only resolves for the viewer. */
8573
8803
  pendingUserInvitations: Array<UserInvitation>;
8574
8804
  pinnedApps: Array<App>;
@@ -8583,7 +8813,7 @@ export type User = Actor & UserActor & {
8583
8813
  secondFactorDevices: Array<UserSecondFactorDevice>;
8584
8814
  /** Snacks associated with this account */
8585
8815
  snacks: Array<Snack>;
8586
- /** @deprecated No longer supported */
8816
+ /** @deprecated Field no longer supported */
8587
8817
  twitterUsername?: Maybe<Scalars['String']['output']>;
8588
8818
  username: Scalars['String']['output'];
8589
8819
  websiteNotificationsPaginated: WebsiteNotificationsConnection;
@@ -8627,7 +8857,7 @@ export type UserActor = {
8627
8857
  */
8628
8858
  activityTimelineProjectActivities: Array<ActivityTimelineProjectActivity>;
8629
8859
  appCount: Scalars['Int']['output'];
8630
- /** @deprecated No longer supported */
8860
+ /** @deprecated Field no longer supported */
8631
8861
  appetizeCode?: Maybe<Scalars['String']['output']>;
8632
8862
  /**
8633
8863
  * Apps this user has published
@@ -8654,16 +8884,16 @@ export type UserActor = {
8654
8884
  fullName?: Maybe<Scalars['String']['output']>;
8655
8885
  /** GitHub account linked to a user */
8656
8886
  githubUser?: Maybe<GitHubUser>;
8657
- /** @deprecated No longer supported */
8887
+ /** @deprecated Field no longer supported */
8658
8888
  githubUsername?: Maybe<Scalars['String']['output']>;
8659
8889
  id: Scalars['ID']['output'];
8660
- /** @deprecated No longer supported */
8890
+ /** @deprecated Field no longer supported */
8661
8891
  industry?: Maybe<Scalars['String']['output']>;
8662
8892
  isExpoAdmin: Scalars['Boolean']['output'];
8663
8893
  isStaffModeEnabled: Scalars['Boolean']['output'];
8664
8894
  lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
8665
8895
  lastName?: Maybe<Scalars['String']['output']>;
8666
- /** @deprecated No longer supported */
8896
+ /** @deprecated Field no longer supported */
8667
8897
  location?: Maybe<Scalars['String']['output']>;
8668
8898
  pinnedApps: Array<App>;
8669
8899
  preferences: UserPreferences;
@@ -8674,7 +8904,7 @@ export type UserActor = {
8674
8904
  profilePhoto: Scalars['String']['output'];
8675
8905
  /** Snacks associated with this user's personal account */
8676
8906
  snacks: Array<Snack>;
8677
- /** @deprecated No longer supported */
8907
+ /** @deprecated Field no longer supported */
8678
8908
  twitterUsername?: Maybe<Scalars['String']['output']>;
8679
8909
  username: Scalars['String']['output'];
8680
8910
  websiteNotificationsPaginated: WebsiteNotificationsConnection;
@@ -8872,12 +9102,22 @@ export type UserDashboardViewPinMutationUnpinDashboardViewArgs = {
8872
9102
  accountId: Scalars['ID']['input'];
8873
9103
  };
8874
9104
  export type UserDataInput = {
9105
+ /** @deprecated Field no longer supported */
9106
+ appetizeCode?: InputMaybe<Scalars['String']['input']>;
8875
9107
  email?: InputMaybe<Scalars['String']['input']>;
8876
9108
  firstName?: InputMaybe<Scalars['String']['input']>;
8877
9109
  fullName?: InputMaybe<Scalars['String']['input']>;
9110
+ /** @deprecated Field no longer supported */
9111
+ githubUsername?: InputMaybe<Scalars['String']['input']>;
8878
9112
  id?: InputMaybe<Scalars['ID']['input']>;
9113
+ /** @deprecated Field no longer supported */
9114
+ industry?: InputMaybe<Scalars['String']['input']>;
8879
9115
  lastName?: InputMaybe<Scalars['String']['input']>;
9116
+ /** @deprecated Field no longer supported */
9117
+ location?: InputMaybe<Scalars['String']['input']>;
8880
9118
  profilePhoto?: InputMaybe<Scalars['String']['input']>;
9119
+ /** @deprecated Field no longer supported */
9120
+ twitterUsername?: InputMaybe<Scalars['String']['input']>;
8881
9121
  username?: InputMaybe<Scalars['String']['input']>;
8882
9122
  };
8883
9123
  export declare enum UserEntityTypeName {
@@ -8889,6 +9129,7 @@ export declare enum UserEntityTypeName {
8889
9129
  PasswordEntity = "PasswordEntity",
8890
9130
  SsoUserEntity = "SSOUserEntity",
8891
9131
  UserEntity = "UserEntity",
9132
+ UserPasskeyCredentialEntity = "UserPasskeyCredentialEntity",
8892
9133
  UserPermissionEntity = "UserPermissionEntity",
8893
9134
  UserSecondFactorBackupCodesEntity = "UserSecondFactorBackupCodesEntity",
8894
9135
  UserSecondFactorDeviceEntity = "UserSecondFactorDeviceEntity"
@@ -8996,6 +9237,20 @@ export type UserLogNameTypeMapping = {
8996
9237
  publicName: Scalars['String']['output'];
8997
9238
  typeName: UserEntityTypeName;
8998
9239
  };
9240
+ /** A passkey credential belonging to a User */
9241
+ export type UserPasskeyCredential = {
9242
+ __typename?: 'UserPasskeyCredential';
9243
+ /**
9244
+ * Authenticator Attestation Globally Unique Identifier — identifies the authenticator model
9245
+ * (e.g., 1Password, iCloud Keychain). See https://passkeydeveloper.github.io/passkey-authenticator-aaguids/explorer/
9246
+ */
9247
+ aaguid?: Maybe<Scalars['ID']['output']>;
9248
+ createdAt: Scalars['DateTime']['output'];
9249
+ credentialDeviceType: Scalars['String']['output'];
9250
+ id: Scalars['ID']['output'];
9251
+ lastUsedAt?: Maybe<Scalars['DateTime']['output']>;
9252
+ name: Scalars['String']['output'];
9253
+ };
8999
9254
  export type UserPermission = {
9000
9255
  __typename?: 'UserPermission';
9001
9256
  actor: Actor;
@@ -9664,6 +9919,11 @@ export type WorkflowArtifact = {
9664
9919
  filename: Scalars['String']['output'];
9665
9920
  id: Scalars['ID']['output'];
9666
9921
  jobRun: JobRun;
9922
+ /**
9923
+ * Opaque JSON attached by the worker at upload time (e.g. the Maestro test screenshot
9924
+ * flow/attempt mapping). Interpretation is owned by the client.
9925
+ */
9926
+ metadata?: Maybe<Scalars['JSONObject']['output']>;
9667
9927
  name: Scalars['String']['output'];
9668
9928
  storageType: WorkflowArtifactStorageType;
9669
9929
  updatedAt: Scalars['DateTime']['output'];
@@ -9941,6 +10201,14 @@ export type WorkflowJob = {
9941
10201
  approvals: Array<WorkflowJobApproval>;
9942
10202
  createdAt: Scalars['DateTime']['output'];
9943
10203
  credentialsAppleDeviceRegistrationRequest?: Maybe<AppleDeviceRegistrationRequest>;
10204
+ /**
10205
+ * All test case attempt rows produced by this job's own execution (turtle job
10206
+ * run), ordered by path then retryCount. Unlike deviceTestCaseResults and
10207
+ * allDeviceTestCaseResults, this never includes rows from other jobs in the
10208
+ * workflow retry chain.
10209
+ */
10210
+ deviceTestCaseResultAttempts: Array<WorkflowDeviceTestCaseResult>;
10211
+ /** @deprecated Use deviceTestCaseResultAttempts instead */
9944
10212
  deviceTestCaseResults: Array<WorkflowDeviceTestCaseResult>;
9945
10213
  environment?: Maybe<Scalars['String']['output']>;
9946
10214
  errors: Array<WorkflowJobError>;
@@ -10219,6 +10487,7 @@ export declare enum WorkflowRunTriggerEventType {
10219
10487
  GithubPullRequestReopened = "GITHUB_PULL_REQUEST_REOPENED",
10220
10488
  GithubPullRequestSynchronize = "GITHUB_PULL_REQUEST_SYNCHRONIZE",
10221
10489
  GithubPush = "GITHUB_PUSH",
10490
+ GithubRefDelete = "GITHUB_REF_DELETE",
10222
10491
  Manual = "MANUAL",
10223
10492
  RepackExpoGo = "REPACK_EXPO_GO",
10224
10493
  Schedule = "SCHEDULE"
@@ -15159,6 +15428,62 @@ export type CreateLocalBuildMutation = {
15159
15428
  };
15160
15429
  };
15161
15430
  };
15431
+ export type CreatePostHogAccountRequestMutationVariables = Exact<{
15432
+ input: CreatePostHogAccountRequestInput;
15433
+ }>;
15434
+ export type CreatePostHogAccountRequestMutation = {
15435
+ __typename?: 'RootMutation';
15436
+ posthogOrganizationConnection: {
15437
+ __typename?: 'PostHogOrganizationConnectionMutation';
15438
+ createPostHogAccountRequest: {
15439
+ __typename?: 'PostHogOrganizationConnection';
15440
+ id: string;
15441
+ posthogOrganizationIdentifier: string;
15442
+ posthogOrganizationName: string;
15443
+ posthogRegion: PostHogRegion;
15444
+ createdAt: any;
15445
+ updatedAt: any;
15446
+ };
15447
+ };
15448
+ };
15449
+ export type SetupPostHogProjectMutationVariables = Exact<{
15450
+ input: SetupPostHogProjectInput;
15451
+ }>;
15452
+ export type SetupPostHogProjectMutation = {
15453
+ __typename?: 'RootMutation';
15454
+ posthogProject: {
15455
+ __typename?: 'PostHogProjectMutation';
15456
+ setupPostHogProject: {
15457
+ __typename?: 'PostHogProject';
15458
+ id: string;
15459
+ posthogProjectIdentifier: string;
15460
+ posthogProjectName: string;
15461
+ posthogProjectToken: string;
15462
+ posthogHost: string;
15463
+ createdAt: any;
15464
+ updatedAt: any;
15465
+ posthogOrganizationConnection: {
15466
+ __typename?: 'PostHogOrganizationConnection';
15467
+ id: string;
15468
+ posthogOrganizationIdentifier: string;
15469
+ posthogOrganizationName: string;
15470
+ posthogRegion: PostHogRegion;
15471
+ createdAt: any;
15472
+ updatedAt: any;
15473
+ };
15474
+ };
15475
+ };
15476
+ };
15477
+ export type DeletePostHogProjectMutationVariables = Exact<{
15478
+ id: Scalars['ID']['input'];
15479
+ }>;
15480
+ export type DeletePostHogProjectMutation = {
15481
+ __typename?: 'RootMutation';
15482
+ posthogProject: {
15483
+ __typename?: 'PostHogProjectMutation';
15484
+ deletePostHogProject: string;
15485
+ };
15486
+ };
15162
15487
  export type GetSignedUploadMutationVariables = Exact<{
15163
15488
  contentTypes: Array<Scalars['String']['input']> | Scalars['String']['input'];
15164
15489
  }>;
@@ -16221,6 +16546,62 @@ export type GetAssetSignedUrlsQuery = {
16221
16546
  }>;
16222
16547
  };
16223
16548
  };
16549
+ export type AuditLogsByAccountQueryVariables = Exact<{
16550
+ accountId: Scalars['String']['input'];
16551
+ first?: InputMaybe<Scalars['Int']['input']>;
16552
+ after?: InputMaybe<Scalars['String']['input']>;
16553
+ last?: InputMaybe<Scalars['Int']['input']>;
16554
+ before?: InputMaybe<Scalars['String']['input']>;
16555
+ }>;
16556
+ export type AuditLogsByAccountQuery = {
16557
+ __typename?: 'RootQuery';
16558
+ account: {
16559
+ __typename?: 'AccountQuery';
16560
+ byId: {
16561
+ __typename?: 'Account';
16562
+ id: string;
16563
+ auditLogsPaginated: {
16564
+ __typename?: 'AuditLogConnection';
16565
+ edges: Array<{
16566
+ __typename?: 'AuditLogEdge';
16567
+ cursor: string;
16568
+ node: {
16569
+ __typename?: 'AuditLog';
16570
+ id: string;
16571
+ createdAt: any;
16572
+ websiteMessage: string;
16573
+ targetEntityTypePublicName: string;
16574
+ targetEntityMutationType: TargetEntityMutationType;
16575
+ actor?: {
16576
+ __typename?: 'PartnerActor';
16577
+ id: string;
16578
+ displayName: string;
16579
+ } | {
16580
+ __typename?: 'Robot';
16581
+ id: string;
16582
+ displayName: string;
16583
+ } | {
16584
+ __typename?: 'SSOUser';
16585
+ id: string;
16586
+ displayName: string;
16587
+ } | {
16588
+ __typename?: 'User';
16589
+ id: string;
16590
+ displayName: string;
16591
+ } | null;
16592
+ };
16593
+ }>;
16594
+ pageInfo: {
16595
+ __typename?: 'PageInfo';
16596
+ hasNextPage: boolean;
16597
+ hasPreviousPage: boolean;
16598
+ startCursor?: string | null;
16599
+ endCursor?: string | null;
16600
+ };
16601
+ };
16602
+ };
16603
+ };
16604
+ };
16224
16605
  export type BackgroundJobReceiptByIdQueryVariables = Exact<{
16225
16606
  id: Scalars['ID']['input'];
16226
16607
  }>;
@@ -17334,6 +17715,7 @@ export type DeviceRunSessionByIdQuery = {
17334
17715
  } | {
17335
17716
  __typename: 'ArgentRunSessionRemoteConfig';
17336
17717
  toolsUrl: string;
17718
+ toolsAuthToken?: string | null;
17337
17719
  webPreviewUrl?: string | null;
17338
17720
  } | {
17339
17721
  __typename: 'ServeSimRunSessionRemoteConfig';
@@ -18056,6 +18438,60 @@ export type AppObserveNavigationRoutesQuery = {
18056
18438
  };
18057
18439
  };
18058
18440
  };
18441
+ export type PostHogOrganizationConnectionByAccountIdQueryVariables = Exact<{
18442
+ accountId: Scalars['String']['input'];
18443
+ }>;
18444
+ export type PostHogOrganizationConnectionByAccountIdQuery = {
18445
+ __typename?: 'RootQuery';
18446
+ account: {
18447
+ __typename?: 'AccountQuery';
18448
+ byId: {
18449
+ __typename?: 'Account';
18450
+ id: string;
18451
+ posthogOrganizationConnection?: {
18452
+ __typename?: 'PostHogOrganizationConnection';
18453
+ id: string;
18454
+ posthogOrganizationIdentifier: string;
18455
+ posthogOrganizationName: string;
18456
+ posthogRegion: PostHogRegion;
18457
+ createdAt: any;
18458
+ updatedAt: any;
18459
+ } | null;
18460
+ };
18461
+ };
18462
+ };
18463
+ export type PostHogProjectByAppIdQueryVariables = Exact<{
18464
+ appId: Scalars['String']['input'];
18465
+ }>;
18466
+ export type PostHogProjectByAppIdQuery = {
18467
+ __typename?: 'RootQuery';
18468
+ app: {
18469
+ __typename?: 'AppQuery';
18470
+ byId: {
18471
+ __typename?: 'App';
18472
+ id: string;
18473
+ posthogProject?: {
18474
+ __typename?: 'PostHogProject';
18475
+ id: string;
18476
+ posthogProjectIdentifier: string;
18477
+ posthogProjectName: string;
18478
+ posthogProjectToken: string;
18479
+ posthogHost: string;
18480
+ createdAt: any;
18481
+ updatedAt: any;
18482
+ posthogOrganizationConnection: {
18483
+ __typename?: 'PostHogOrganizationConnection';
18484
+ id: string;
18485
+ posthogOrganizationIdentifier: string;
18486
+ posthogOrganizationName: string;
18487
+ posthogRegion: PostHogRegion;
18488
+ createdAt: any;
18489
+ updatedAt: any;
18490
+ };
18491
+ } | null;
18492
+ };
18493
+ };
18494
+ };
18059
18495
  export type GetAssetMetadataQueryVariables = Exact<{
18060
18496
  storageKeys: Array<Scalars['String']['input']> | Scalars['String']['input'];
18061
18497
  }>;
@@ -19663,6 +20099,31 @@ export type AppFragment = {
19663
20099
  };
19664
20100
  } | null;
19665
20101
  };
20102
+ export type AuditLogFragment = {
20103
+ __typename?: 'AuditLog';
20104
+ id: string;
20105
+ createdAt: any;
20106
+ websiteMessage: string;
20107
+ targetEntityTypePublicName: string;
20108
+ targetEntityMutationType: TargetEntityMutationType;
20109
+ actor?: {
20110
+ __typename?: 'PartnerActor';
20111
+ id: string;
20112
+ displayName: string;
20113
+ } | {
20114
+ __typename?: 'Robot';
20115
+ id: string;
20116
+ displayName: string;
20117
+ } | {
20118
+ __typename?: 'SSOUser';
20119
+ id: string;
20120
+ displayName: string;
20121
+ } | {
20122
+ __typename?: 'User';
20123
+ id: string;
20124
+ displayName: string;
20125
+ } | null;
20126
+ };
19666
20127
  export type BackgroundJobReceiptDataFragment = {
19667
20128
  __typename?: 'BackgroundJobReceipt';
19668
20129
  id: string;
@@ -20262,6 +20723,34 @@ export type AppObserveAppVersionFragment = {
20262
20723
  };
20263
20724
  }>;
20264
20725
  };
20726
+ export type PostHogOrganizationConnectionFragment = {
20727
+ __typename?: 'PostHogOrganizationConnection';
20728
+ id: string;
20729
+ posthogOrganizationIdentifier: string;
20730
+ posthogOrganizationName: string;
20731
+ posthogRegion: PostHogRegion;
20732
+ createdAt: any;
20733
+ updatedAt: any;
20734
+ };
20735
+ export type PostHogProjectFragment = {
20736
+ __typename?: 'PostHogProject';
20737
+ id: string;
20738
+ posthogProjectIdentifier: string;
20739
+ posthogProjectName: string;
20740
+ posthogProjectToken: string;
20741
+ posthogHost: string;
20742
+ createdAt: any;
20743
+ updatedAt: any;
20744
+ posthogOrganizationConnection: {
20745
+ __typename?: 'PostHogOrganizationConnection';
20746
+ id: string;
20747
+ posthogOrganizationIdentifier: string;
20748
+ posthogOrganizationName: string;
20749
+ posthogRegion: PostHogRegion;
20750
+ createdAt: any;
20751
+ updatedAt: any;
20752
+ };
20753
+ };
20265
20754
  export type RuntimeFragment = {
20266
20755
  __typename?: 'Runtime';
20267
20756
  id: string;