eas-cli 5.4.0 → 5.6.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 (138) hide show
  1. package/README.md +103 -55
  2. package/build/branch/utils.d.ts +2 -1
  3. package/build/branch/utils.js +2 -4
  4. package/build/build/android/build.js +5 -3
  5. package/build/build/android/prepareJob.js +1 -2
  6. package/build/build/android/syncProjectConfiguration.d.ts +3 -1
  7. package/build/build/android/syncProjectConfiguration.js +2 -2
  8. package/build/build/android/version.d.ts +4 -2
  9. package/build/build/android/version.js +4 -4
  10. package/build/build/build.d.ts +1 -3
  11. package/build/build/build.js +7 -58
  12. package/build/build/configure.d.ts +2 -0
  13. package/build/build/configure.js +9 -10
  14. package/build/build/context.d.ts +4 -0
  15. package/build/build/createContext.d.ts +3 -1
  16. package/build/build/createContext.js +7 -2
  17. package/build/build/ios/build.js +4 -0
  18. package/build/build/ios/prepareJob.js +1 -2
  19. package/build/build/ios/syncProjectConfiguration.d.ts +3 -1
  20. package/build/build/ios/syncProjectConfiguration.js +3 -3
  21. package/build/build/ios/version.d.ts +6 -4
  22. package/build/build/ios/version.js +10 -10
  23. package/build/build/metadata.js +7 -8
  24. package/build/build/runBuildAndSubmit.d.ts +2 -1
  25. package/build/build/runBuildAndSubmit.js +12 -8
  26. package/build/build/utils/devClient.d.ts +3 -1
  27. package/build/build/utils/devClient.js +6 -7
  28. package/build/build/utils/repository.d.ts +6 -5
  29. package/build/build/utils/repository.js +14 -15
  30. package/build/build/utils/resourceClass.js +3 -12
  31. package/build/build/validate.js +2 -3
  32. package/build/commandUtils/EasCommand.d.ts +4 -0
  33. package/build/commandUtils/EasCommand.js +4 -0
  34. package/build/commandUtils/context/VcsClientContextField.d.ts +5 -0
  35. package/build/commandUtils/context/VcsClientContextField.js +11 -0
  36. package/build/commands/branch/create.d.ts +1 -0
  37. package/build/commands/branch/create.js +3 -2
  38. package/build/commands/build/cancel.d.ts +1 -0
  39. package/build/commands/build/cancel.js +1 -0
  40. package/build/commands/build/configure.d.ts +1 -0
  41. package/build/commands/build/configure.js +8 -6
  42. package/build/commands/build/index.d.ts +1 -0
  43. package/build/commands/build/index.js +3 -2
  44. package/build/commands/build/inspect.d.ts +1 -0
  45. package/build/commands/build/inspect.js +5 -6
  46. package/build/commands/build/internal.d.ts +1 -0
  47. package/build/commands/build/internal.js +3 -2
  48. package/build/commands/build/list.d.ts +1 -0
  49. package/build/commands/build/list.js +1 -0
  50. package/build/commands/build/resign.d.ts +1 -0
  51. package/build/commands/build/resign.js +5 -3
  52. package/build/commands/build/run.d.ts +1 -0
  53. package/build/commands/build/run.js +1 -0
  54. package/build/commands/build/version/get.d.ts +1 -0
  55. package/build/commands/build/version/get.js +3 -1
  56. package/build/commands/build/version/set.d.ts +1 -0
  57. package/build/commands/build/version/set.js +3 -1
  58. package/build/commands/build/version/sync.d.ts +1 -0
  59. package/build/commands/build/version/sync.js +9 -4
  60. package/build/commands/build/view.d.ts +1 -0
  61. package/build/commands/build/view.js +1 -0
  62. package/build/commands/credentials.d.ts +1 -0
  63. package/build/commands/credentials.js +3 -2
  64. package/build/commands/diagnostics.d.ts +1 -0
  65. package/build/commands/diagnostics.js +6 -5
  66. package/build/commands/metadata/pull.d.ts +1 -0
  67. package/build/commands/metadata/pull.js +4 -2
  68. package/build/commands/metadata/push.d.ts +1 -0
  69. package/build/commands/metadata/push.js +4 -2
  70. package/build/commands/project/init.d.ts +1 -0
  71. package/build/commands/project/init.js +43 -11
  72. package/build/commands/submit.d.ts +1 -0
  73. package/build/commands/submit.js +4 -1
  74. package/build/commands/update/configure.d.ts +1 -0
  75. package/build/commands/update/configure.js +4 -3
  76. package/build/commands/update/index.d.ts +1 -0
  77. package/build/commands/update/index.js +17 -11
  78. package/build/commands/update/roll-back-to-embedded.d.ts +1 -1
  79. package/build/commands/update/roll-back-to-embedded.js +8 -6
  80. package/build/commands/update/rollback.d.ts +0 -1
  81. package/build/commands/update/rollback.js +0 -1
  82. package/build/credentials/android/actions/BuildCredentialsUtils.js +1 -1
  83. package/build/credentials/android/api/GraphqlClient.js +0 -1
  84. package/build/credentials/context.d.ts +3 -0
  85. package/build/credentials/context.js +1 -0
  86. package/build/credentials/credentialsJson/update.js +6 -8
  87. package/build/credentials/ios/actions/DeviceUtils.js +1 -1
  88. package/build/credentials/manager/HelperActions.d.ts +2 -0
  89. package/build/credentials/manager/ManageAndroid.js +2 -1
  90. package/build/credentials/manager/ManageIos.js +3 -0
  91. package/build/credentials/manager/SelectPlatform.d.ts +3 -1
  92. package/build/credentials/manager/SelectPlatform.js +2 -1
  93. package/build/graphql/generated.d.ts +474 -5
  94. package/build/graphql/generated.js +10 -3
  95. package/build/graphql/types/Account.js +4 -0
  96. package/build/graphql/types/Build.js +1 -0
  97. package/build/graphql/types/credentials/AppleDevice.js +1 -0
  98. package/build/metadata/auth.js +4 -4
  99. package/build/project/android/applicationId.d.ts +4 -2
  100. package/build/project/android/applicationId.js +5 -5
  101. package/build/project/android/gradle.d.ts +2 -1
  102. package/build/project/android/gradle.js +2 -2
  103. package/build/project/applicationIdentifier.d.ts +3 -1
  104. package/build/project/applicationIdentifier.js +10 -7
  105. package/build/project/ios/bundleIdentifier.d.ts +4 -2
  106. package/build/project/ios/bundleIdentifier.js +5 -5
  107. package/build/project/ios/entitlements.d.ts +2 -1
  108. package/build/project/ios/entitlements.js +2 -2
  109. package/build/project/ios/scheme.d.ts +3 -1
  110. package/build/project/ios/scheme.js +2 -2
  111. package/build/project/ios/target.d.ts +4 -2
  112. package/build/project/ios/target.js +10 -8
  113. package/build/project/projectUtils.d.ts +1 -0
  114. package/build/project/projectUtils.js +12 -1
  115. package/build/project/publish.d.ts +6 -4
  116. package/build/project/publish.js +10 -11
  117. package/build/project/workflow.d.ts +4 -3
  118. package/build/project/workflow.js +5 -8
  119. package/build/submit/android/AndroidSubmitCommand.js +25 -7
  120. package/build/submit/android/AndroidSubmitter.d.ts +1 -1
  121. package/build/submit/android/AndroidSubmitter.js +2 -9
  122. package/build/submit/commons.d.ts +1 -0
  123. package/build/submit/commons.js +20 -1
  124. package/build/submit/context.d.ts +5 -0
  125. package/build/submit/context.js +2 -1
  126. package/build/submit/ios/AppProduce.js +1 -1
  127. package/build/submit/ios/AscApiKeySource.js +1 -1
  128. package/build/submit/ios/IosSubmitCommand.js +23 -6
  129. package/build/submit/ios/IosSubmitter.d.ts +1 -1
  130. package/build/submit/ios/IosSubmitter.js +2 -9
  131. package/build/update/configure.d.ts +3 -1
  132. package/build/update/configure.js +5 -5
  133. package/build/update/ios/UpdatesModule.d.ts +2 -1
  134. package/build/update/ios/UpdatesModule.js +4 -5
  135. package/build/uploads.d.ts +1 -1
  136. package/build/uploads.js +2 -1
  137. package/oclif.manifest.json +1 -1
  138. package/package.json +6 -6
@@ -802,7 +802,6 @@ export type AndroidKeystoreInput = {
802
802
  keyAlias: Scalars['String'];
803
803
  keyPassword?: InputMaybe<Scalars['String']>;
804
804
  keystorePassword: Scalars['String'];
805
- type: AndroidKeystoreType;
806
805
  };
807
806
  export type AndroidKeystoreMutation = {
808
807
  __typename?: 'AndroidKeystoreMutation';
@@ -976,6 +975,7 @@ export type AppAndroidAppCredentialsArgs = {
976
975
  export type AppBranchesPaginatedArgs = {
977
976
  after?: InputMaybe<Scalars['String']>;
978
977
  before?: InputMaybe<Scalars['String']>;
978
+ filter?: InputMaybe<BranchFilterInput>;
979
979
  first?: InputMaybe<Scalars['Int']>;
980
980
  last?: InputMaybe<Scalars['Int']>;
981
981
  };
@@ -1178,15 +1178,12 @@ export type AppInsights = {
1178
1178
  };
1179
1179
  export type AppInsightsTotalUniqueUsersArgs = {
1180
1180
  timespan: InsightsTimespan;
1181
- useDeprecatedBackend?: InputMaybe<Scalars['Boolean']>;
1182
1181
  };
1183
1182
  export type AppInsightsUniqueUsersByAppVersionOverTimeArgs = {
1184
1183
  timespan: InsightsTimespan;
1185
- useDeprecatedBackend?: InputMaybe<Scalars['Boolean']>;
1186
1184
  };
1187
1185
  export type AppInsightsUniqueUsersByPlatformOverTimeArgs = {
1188
1186
  timespan: InsightsTimespan;
1189
- useDeprecatedBackend?: InputMaybe<Scalars['Boolean']>;
1190
1187
  };
1191
1188
  export type AppMutation = {
1192
1189
  __typename?: 'AppMutation';
@@ -1410,6 +1407,7 @@ export type AppleDevice = {
1410
1407
  __typename?: 'AppleDevice';
1411
1408
  account: Account;
1412
1409
  appleTeam: AppleTeam;
1410
+ createdAt?: Maybe<Scalars['DateTime']>;
1413
1411
  deviceClass?: Maybe<AppleDeviceClass>;
1414
1412
  enabled?: Maybe<Scalars['Boolean']>;
1415
1413
  id: Scalars['ID'];
@@ -1723,6 +1721,9 @@ export type BillingPeriod = {
1723
1721
  id: Scalars['ID'];
1724
1722
  start: Scalars['DateTime'];
1725
1723
  };
1724
+ export type BranchFilterInput = {
1725
+ searchTerm?: InputMaybe<Scalars['String']>;
1726
+ };
1726
1727
  /** Represents an EAS Build */
1727
1728
  export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
1728
1729
  __typename?: 'Build';
@@ -1776,6 +1777,7 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
1776
1777
  queuePosition?: Maybe<Scalars['Int']>;
1777
1778
  reactNativeVersion?: Maybe<Scalars['String']>;
1778
1779
  releaseChannel?: Maybe<Scalars['String']>;
1780
+ requiredPackageManager?: Maybe<Scalars['String']>;
1779
1781
  /**
1780
1782
  * The builder resource class requested by the developer
1781
1783
  * @deprecated Use resourceClassDisplayName instead
@@ -1844,6 +1846,8 @@ export type BuildFilter = {
1844
1846
  };
1845
1847
  export type BuildFilterInput = {
1846
1848
  channel?: InputMaybe<Scalars['String']>;
1849
+ developmentClient?: InputMaybe<Scalars['Boolean']>;
1850
+ distributions?: InputMaybe<Array<DistributionType>>;
1847
1851
  platforms?: InputMaybe<Array<AppPlatform>>;
1848
1852
  releaseChannel?: InputMaybe<Scalars['String']>;
1849
1853
  };
@@ -1943,6 +1947,7 @@ export type BuildMetadataInput = {
1943
1947
  message?: InputMaybe<Scalars['String']>;
1944
1948
  reactNativeVersion?: InputMaybe<Scalars['String']>;
1945
1949
  releaseChannel?: InputMaybe<Scalars['String']>;
1950
+ requiredPackageManager?: InputMaybe<Scalars['String']>;
1946
1951
  runFromCI?: InputMaybe<Scalars['Boolean']>;
1947
1952
  runWithNoWaitFlag?: InputMaybe<Scalars['Boolean']>;
1948
1953
  runtimeVersion?: InputMaybe<Scalars['String']>;
@@ -2152,12 +2157,14 @@ export declare enum BuildResourceClass {
2152
2157
  AndroidLarge = "ANDROID_LARGE",
2153
2158
  AndroidMedium = "ANDROID_MEDIUM",
2154
2159
  IosDefault = "IOS_DEFAULT",
2155
- /** @deprecated Use IOS_INTEL_MEDIUM instead */
2160
+ /** @deprecated No longer available. Use IOS_M_LARGE instead. */
2156
2161
  IosIntelLarge = "IOS_INTEL_LARGE",
2162
+ /** @deprecated No longer available. Use IOS_M_MEDIUM instead. */
2157
2163
  IosIntelMedium = "IOS_INTEL_MEDIUM",
2158
2164
  IosLarge = "IOS_LARGE",
2159
2165
  /** @deprecated Use IOS_M_MEDIUM instead */
2160
2166
  IosM1Large = "IOS_M1_LARGE",
2167
+ /** @deprecated Use IOS_M_MEDIUM instead */
2161
2168
  IosM1Medium = "IOS_M1_MEDIUM",
2162
2169
  IosMedium = "IOS_MEDIUM",
2163
2170
  IosMLarge = "IOS_M_LARGE",
@@ -2706,6 +2713,7 @@ export type GitHubAppQuery = {
2706
2713
  environment: GitHubAppEnvironment;
2707
2714
  installation: GitHubAppInstallation;
2708
2715
  name: Scalars['String'];
2716
+ /** @deprecated */
2709
2717
  searchRepositories: GitHubRepositoryPaginationResult;
2710
2718
  };
2711
2719
  export type GitHubAppQueryInstallationArgs = {
@@ -2731,6 +2739,10 @@ export type GitHubBuildTrigger = {
2731
2739
  id: Scalars['ID'];
2732
2740
  isActive: Scalars['Boolean'];
2733
2741
  lastRunAt?: Maybe<Scalars['DateTime']>;
2742
+ lastRunBuild?: Maybe<Build>;
2743
+ lastRunErrorCode?: Maybe<Scalars['String']>;
2744
+ lastRunErrorMessage?: Maybe<Scalars['String']>;
2745
+ lastRunStatus?: Maybe<GitHubBuildTriggerRunStatus>;
2734
2746
  platform: AppPlatform;
2735
2747
  sourcePattern: Scalars['String'];
2736
2748
  targetPattern?: Maybe<Scalars['String']>;
@@ -2756,6 +2768,10 @@ export type GitHubBuildTriggerMutationUpdateGitHubBuildTriggerArgs = {
2756
2768
  githubBuildTriggerData: UpdateGitHubBuildTriggerInput;
2757
2769
  githubBuildTriggerId: Scalars['ID'];
2758
2770
  };
2771
+ export declare enum GitHubBuildTriggerRunStatus {
2772
+ Errored = "ERRORED",
2773
+ Success = "SUCCESS"
2774
+ }
2759
2775
  export declare enum GitHubBuildTriggerType {
2760
2776
  PullRequestUpdated = "PULL_REQUEST_UPDATED",
2761
2777
  PushToBranch = "PUSH_TO_BRANCH",
@@ -2850,6 +2866,8 @@ export type GitHubUserMutation = {
2850
2866
  __typename?: 'GitHubUserMutation';
2851
2867
  /** Delete a GitHub User by ID */
2852
2868
  deleteGitHubUser: DeleteGitHubUserResult;
2869
+ /** Generate a GitHub User Access Token */
2870
+ generateGitHubUserAccessToken?: Maybe<Scalars['String']>;
2853
2871
  };
2854
2872
  export type GitHubUserMutationDeleteGitHubUserArgs = {
2855
2873
  id: Scalars['ID'];
@@ -5181,6 +5199,15 @@ export type CreateAndroidAppCredentialsMutation = {
5181
5199
  __typename?: 'Account';
5182
5200
  id: string;
5183
5201
  name: string;
5202
+ ownerUserActor?: {
5203
+ __typename?: 'SSOUser';
5204
+ id: string;
5205
+ username: string;
5206
+ } | {
5207
+ __typename?: 'User';
5208
+ id: string;
5209
+ username: string;
5210
+ } | null;
5184
5211
  users: Array<{
5185
5212
  __typename?: 'UserPermission';
5186
5213
  role: Role;
@@ -5272,6 +5299,15 @@ export type SetFcmMutation = {
5272
5299
  __typename?: 'Account';
5273
5300
  id: string;
5274
5301
  name: string;
5302
+ ownerUserActor?: {
5303
+ __typename?: 'SSOUser';
5304
+ id: string;
5305
+ username: string;
5306
+ } | {
5307
+ __typename?: 'User';
5308
+ id: string;
5309
+ username: string;
5310
+ } | null;
5275
5311
  users: Array<{
5276
5312
  __typename?: 'UserPermission';
5277
5313
  role: Role;
@@ -5363,6 +5399,15 @@ export type SetGoogleServiceAccountKeyForSubmissionsMutation = {
5363
5399
  __typename?: 'Account';
5364
5400
  id: string;
5365
5401
  name: string;
5402
+ ownerUserActor?: {
5403
+ __typename?: 'SSOUser';
5404
+ id: string;
5405
+ username: string;
5406
+ } | {
5407
+ __typename?: 'User';
5408
+ id: string;
5409
+ username: string;
5410
+ } | null;
5366
5411
  users: Array<{
5367
5412
  __typename?: 'UserPermission';
5368
5413
  role: Role;
@@ -5570,6 +5615,15 @@ export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifi
5570
5615
  __typename?: 'Account';
5571
5616
  id: string;
5572
5617
  name: string;
5618
+ ownerUserActor?: {
5619
+ __typename?: 'SSOUser';
5620
+ id: string;
5621
+ username: string;
5622
+ } | {
5623
+ __typename?: 'User';
5624
+ id: string;
5625
+ username: string;
5626
+ } | null;
5573
5627
  users: Array<{
5574
5628
  __typename?: 'UserPermission';
5575
5629
  role: Role;
@@ -5732,6 +5786,7 @@ export type CreateAppleDeviceMutation = {
5732
5786
  name?: string | null;
5733
5787
  model?: string | null;
5734
5788
  deviceClass?: AppleDeviceClass | null;
5789
+ createdAt?: any | null;
5735
5790
  };
5736
5791
  };
5737
5792
  };
@@ -5763,6 +5818,7 @@ export type UpdateAppleDeviceMutation = {
5763
5818
  name?: string | null;
5764
5819
  model?: string | null;
5765
5820
  deviceClass?: AppleDeviceClass | null;
5821
+ createdAt?: any | null;
5766
5822
  };
5767
5823
  };
5768
5824
  };
@@ -5819,6 +5875,15 @@ export type CreateAppleDistributionCertificateMutation = {
5819
5875
  __typename?: 'Account';
5820
5876
  id: string;
5821
5877
  name: string;
5878
+ ownerUserActor?: {
5879
+ __typename?: 'SSOUser';
5880
+ id: string;
5881
+ username: string;
5882
+ } | {
5883
+ __typename?: 'User';
5884
+ id: string;
5885
+ username: string;
5886
+ } | null;
5822
5887
  users: Array<{
5823
5888
  __typename?: 'UserPermission';
5824
5889
  role: Role;
@@ -5893,6 +5958,7 @@ export type CreateAppleProvisioningProfileMutation = {
5893
5958
  name?: string | null;
5894
5959
  model?: string | null;
5895
5960
  deviceClass?: AppleDeviceClass | null;
5961
+ createdAt?: any | null;
5896
5962
  }>;
5897
5963
  };
5898
5964
  };
@@ -5926,6 +5992,7 @@ export type UpdateAppleProvisioningProfileMutation = {
5926
5992
  name?: string | null;
5927
5993
  model?: string | null;
5928
5994
  deviceClass?: AppleDeviceClass | null;
5995
+ createdAt?: any | null;
5929
5996
  }>;
5930
5997
  };
5931
5998
  };
@@ -5974,6 +6041,15 @@ export type CreateApplePushKeyMutation = {
5974
6041
  __typename?: 'Account';
5975
6042
  id: string;
5976
6043
  name: string;
6044
+ ownerUserActor?: {
6045
+ __typename?: 'SSOUser';
6046
+ id: string;
6047
+ username: string;
6048
+ } | {
6049
+ __typename?: 'User';
6050
+ id: string;
6051
+ username: string;
6052
+ } | null;
5977
6053
  users: Array<{
5978
6054
  __typename?: 'UserPermission';
5979
6055
  role: Role;
@@ -6029,6 +6105,15 @@ export type CreateAppleTeamMutation = {
6029
6105
  __typename?: 'Account';
6030
6106
  id: string;
6031
6107
  name: string;
6108
+ ownerUserActor?: {
6109
+ __typename?: 'SSOUser';
6110
+ id: string;
6111
+ username: string;
6112
+ } | {
6113
+ __typename?: 'User';
6114
+ id: string;
6115
+ username: string;
6116
+ } | null;
6032
6117
  users: Array<{
6033
6118
  __typename?: 'UserPermission';
6034
6119
  role: Role;
@@ -6090,6 +6175,15 @@ export type CreateIosAppBuildCredentialsMutation = {
6090
6175
  __typename?: 'Account';
6091
6176
  id: string;
6092
6177
  name: string;
6178
+ ownerUserActor?: {
6179
+ __typename?: 'SSOUser';
6180
+ id: string;
6181
+ username: string;
6182
+ } | {
6183
+ __typename?: 'User';
6184
+ id: string;
6185
+ username: string;
6186
+ } | null;
6093
6187
  users: Array<{
6094
6188
  __typename?: 'UserPermission';
6095
6189
  role: Role;
@@ -6140,6 +6234,7 @@ export type CreateIosAppBuildCredentialsMutation = {
6140
6234
  name?: string | null;
6141
6235
  model?: string | null;
6142
6236
  deviceClass?: AppleDeviceClass | null;
6237
+ createdAt?: any | null;
6143
6238
  }>;
6144
6239
  } | null;
6145
6240
  };
@@ -6188,6 +6283,15 @@ export type SetDistributionCertificateMutation = {
6188
6283
  __typename?: 'Account';
6189
6284
  id: string;
6190
6285
  name: string;
6286
+ ownerUserActor?: {
6287
+ __typename?: 'SSOUser';
6288
+ id: string;
6289
+ username: string;
6290
+ } | {
6291
+ __typename?: 'User';
6292
+ id: string;
6293
+ username: string;
6294
+ } | null;
6191
6295
  users: Array<{
6192
6296
  __typename?: 'UserPermission';
6193
6297
  role: Role;
@@ -6238,6 +6342,7 @@ export type SetDistributionCertificateMutation = {
6238
6342
  name?: string | null;
6239
6343
  model?: string | null;
6240
6344
  deviceClass?: AppleDeviceClass | null;
6345
+ createdAt?: any | null;
6241
6346
  }>;
6242
6347
  } | null;
6243
6348
  };
@@ -6286,6 +6391,15 @@ export type SetProvisioningProfileMutation = {
6286
6391
  __typename?: 'Account';
6287
6392
  id: string;
6288
6393
  name: string;
6394
+ ownerUserActor?: {
6395
+ __typename?: 'SSOUser';
6396
+ id: string;
6397
+ username: string;
6398
+ } | {
6399
+ __typename?: 'User';
6400
+ id: string;
6401
+ username: string;
6402
+ } | null;
6289
6403
  users: Array<{
6290
6404
  __typename?: 'UserPermission';
6291
6405
  role: Role;
@@ -6336,6 +6450,7 @@ export type SetProvisioningProfileMutation = {
6336
6450
  name?: string | null;
6337
6451
  model?: string | null;
6338
6452
  deviceClass?: AppleDeviceClass | null;
6453
+ createdAt?: any | null;
6339
6454
  }>;
6340
6455
  } | null;
6341
6456
  };
@@ -6388,6 +6503,15 @@ export type CreateIosAppCredentialsMutation = {
6388
6503
  __typename?: 'Account';
6389
6504
  id: string;
6390
6505
  name: string;
6506
+ ownerUserActor?: {
6507
+ __typename?: 'SSOUser';
6508
+ id: string;
6509
+ username: string;
6510
+ } | {
6511
+ __typename?: 'User';
6512
+ id: string;
6513
+ username: string;
6514
+ } | null;
6391
6515
  users: Array<{
6392
6516
  __typename?: 'UserPermission';
6393
6517
  role: Role;
@@ -6438,6 +6562,7 @@ export type CreateIosAppCredentialsMutation = {
6438
6562
  name?: string | null;
6439
6563
  model?: string | null;
6440
6564
  deviceClass?: AppleDeviceClass | null;
6565
+ createdAt?: any | null;
6441
6566
  }>;
6442
6567
  } | null;
6443
6568
  }>;
@@ -6450,6 +6575,15 @@ export type CreateIosAppCredentialsMutation = {
6450
6575
  __typename?: 'Account';
6451
6576
  id: string;
6452
6577
  name: string;
6578
+ ownerUserActor?: {
6579
+ __typename?: 'SSOUser';
6580
+ id: string;
6581
+ username: string;
6582
+ } | {
6583
+ __typename?: 'User';
6584
+ id: string;
6585
+ username: string;
6586
+ } | null;
6453
6587
  users: Array<{
6454
6588
  __typename?: 'UserPermission';
6455
6589
  role: Role;
@@ -6500,6 +6634,15 @@ export type CreateIosAppCredentialsMutation = {
6500
6634
  __typename?: 'Account';
6501
6635
  id: string;
6502
6636
  name: string;
6637
+ ownerUserActor?: {
6638
+ __typename?: 'SSOUser';
6639
+ id: string;
6640
+ username: string;
6641
+ } | {
6642
+ __typename?: 'User';
6643
+ id: string;
6644
+ username: string;
6645
+ } | null;
6503
6646
  users: Array<{
6504
6647
  __typename?: 'UserPermission';
6505
6648
  role: Role;
@@ -6588,6 +6731,15 @@ export type SetPushKeyMutation = {
6588
6731
  __typename?: 'Account';
6589
6732
  id: string;
6590
6733
  name: string;
6734
+ ownerUserActor?: {
6735
+ __typename?: 'SSOUser';
6736
+ id: string;
6737
+ username: string;
6738
+ } | {
6739
+ __typename?: 'User';
6740
+ id: string;
6741
+ username: string;
6742
+ } | null;
6591
6743
  users: Array<{
6592
6744
  __typename?: 'UserPermission';
6593
6745
  role: Role;
@@ -6638,6 +6790,7 @@ export type SetPushKeyMutation = {
6638
6790
  name?: string | null;
6639
6791
  model?: string | null;
6640
6792
  deviceClass?: AppleDeviceClass | null;
6793
+ createdAt?: any | null;
6641
6794
  }>;
6642
6795
  } | null;
6643
6796
  }>;
@@ -6650,6 +6803,15 @@ export type SetPushKeyMutation = {
6650
6803
  __typename?: 'Account';
6651
6804
  id: string;
6652
6805
  name: string;
6806
+ ownerUserActor?: {
6807
+ __typename?: 'SSOUser';
6808
+ id: string;
6809
+ username: string;
6810
+ } | {
6811
+ __typename?: 'User';
6812
+ id: string;
6813
+ username: string;
6814
+ } | null;
6653
6815
  users: Array<{
6654
6816
  __typename?: 'UserPermission';
6655
6817
  role: Role;
@@ -6700,6 +6862,15 @@ export type SetPushKeyMutation = {
6700
6862
  __typename?: 'Account';
6701
6863
  id: string;
6702
6864
  name: string;
6865
+ ownerUserActor?: {
6866
+ __typename?: 'SSOUser';
6867
+ id: string;
6868
+ username: string;
6869
+ } | {
6870
+ __typename?: 'User';
6871
+ id: string;
6872
+ username: string;
6873
+ } | null;
6703
6874
  users: Array<{
6704
6875
  __typename?: 'UserPermission';
6705
6876
  role: Role;
@@ -6788,6 +6959,15 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
6788
6959
  __typename?: 'Account';
6789
6960
  id: string;
6790
6961
  name: string;
6962
+ ownerUserActor?: {
6963
+ __typename?: 'SSOUser';
6964
+ id: string;
6965
+ username: string;
6966
+ } | {
6967
+ __typename?: 'User';
6968
+ id: string;
6969
+ username: string;
6970
+ } | null;
6791
6971
  users: Array<{
6792
6972
  __typename?: 'UserPermission';
6793
6973
  role: Role;
@@ -6838,6 +7018,7 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
6838
7018
  name?: string | null;
6839
7019
  model?: string | null;
6840
7020
  deviceClass?: AppleDeviceClass | null;
7021
+ createdAt?: any | null;
6841
7022
  }>;
6842
7023
  } | null;
6843
7024
  }>;
@@ -6850,6 +7031,15 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
6850
7031
  __typename?: 'Account';
6851
7032
  id: string;
6852
7033
  name: string;
7034
+ ownerUserActor?: {
7035
+ __typename?: 'SSOUser';
7036
+ id: string;
7037
+ username: string;
7038
+ } | {
7039
+ __typename?: 'User';
7040
+ id: string;
7041
+ username: string;
7042
+ } | null;
6853
7043
  users: Array<{
6854
7044
  __typename?: 'UserPermission';
6855
7045
  role: Role;
@@ -6900,6 +7090,15 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
6900
7090
  __typename?: 'Account';
6901
7091
  id: string;
6902
7092
  name: string;
7093
+ ownerUserActor?: {
7094
+ __typename?: 'SSOUser';
7095
+ id: string;
7096
+ username: string;
7097
+ } | {
7098
+ __typename?: 'User';
7099
+ id: string;
7100
+ username: string;
7101
+ } | null;
6903
7102
  users: Array<{
6904
7103
  __typename?: 'UserPermission';
6905
7104
  role: Role;
@@ -7010,6 +7209,7 @@ export type AppleDevicesByAppleTeamQuery = {
7010
7209
  name?: string | null;
7011
7210
  model?: string | null;
7012
7211
  deviceClass?: AppleDeviceClass | null;
7212
+ createdAt?: any | null;
7013
7213
  appleTeam: {
7014
7214
  __typename?: 'AppleTeam';
7015
7215
  id: string;
@@ -7129,6 +7329,15 @@ export type AppleDistributionCertificateByAppQuery = {
7129
7329
  __typename?: 'Account';
7130
7330
  id: string;
7131
7331
  name: string;
7332
+ ownerUserActor?: {
7333
+ __typename?: 'SSOUser';
7334
+ id: string;
7335
+ username: string;
7336
+ } | {
7337
+ __typename?: 'User';
7338
+ id: string;
7339
+ username: string;
7340
+ } | null;
7132
7341
  users: Array<{
7133
7342
  __typename?: 'UserPermission';
7134
7343
  role: Role;
@@ -7204,6 +7413,15 @@ export type AppleDistributionCertificateByAccountQuery = {
7204
7413
  __typename?: 'Account';
7205
7414
  id: string;
7206
7415
  name: string;
7416
+ ownerUserActor?: {
7417
+ __typename?: 'SSOUser';
7418
+ id: string;
7419
+ username: string;
7420
+ } | {
7421
+ __typename?: 'User';
7422
+ id: string;
7423
+ username: string;
7424
+ } | null;
7207
7425
  users: Array<{
7208
7426
  __typename?: 'UserPermission';
7209
7427
  role: Role;
@@ -7275,6 +7493,7 @@ export type AppleProvisioningProfilesByAppQuery = {
7275
7493
  name?: string | null;
7276
7494
  model?: string | null;
7277
7495
  deviceClass?: AppleDeviceClass | null;
7496
+ createdAt?: any | null;
7278
7497
  }>;
7279
7498
  appleAppIdentifier: {
7280
7499
  __typename?: 'AppleAppIdentifier';
@@ -7320,6 +7539,15 @@ export type ApplePushKeyByAccountQuery = {
7320
7539
  __typename?: 'Account';
7321
7540
  id: string;
7322
7541
  name: string;
7542
+ ownerUserActor?: {
7543
+ __typename?: 'SSOUser';
7544
+ id: string;
7545
+ username: string;
7546
+ } | {
7547
+ __typename?: 'User';
7548
+ id: string;
7549
+ username: string;
7550
+ } | null;
7323
7551
  users: Array<{
7324
7552
  __typename?: 'UserPermission';
7325
7553
  role: Role;
@@ -7433,6 +7661,15 @@ export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
7433
7661
  __typename?: 'Account';
7434
7662
  id: string;
7435
7663
  name: string;
7664
+ ownerUserActor?: {
7665
+ __typename?: 'SSOUser';
7666
+ id: string;
7667
+ username: string;
7668
+ } | {
7669
+ __typename?: 'User';
7670
+ id: string;
7671
+ username: string;
7672
+ } | null;
7436
7673
  users: Array<{
7437
7674
  __typename?: 'UserPermission';
7438
7675
  role: Role;
@@ -7483,6 +7720,7 @@ export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
7483
7720
  name?: string | null;
7484
7721
  model?: string | null;
7485
7722
  deviceClass?: AppleDeviceClass | null;
7723
+ createdAt?: any | null;
7486
7724
  }>;
7487
7725
  } | null;
7488
7726
  }>;
@@ -7540,6 +7778,15 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
7540
7778
  __typename?: 'Account';
7541
7779
  id: string;
7542
7780
  name: string;
7781
+ ownerUserActor?: {
7782
+ __typename?: 'SSOUser';
7783
+ id: string;
7784
+ username: string;
7785
+ } | {
7786
+ __typename?: 'User';
7787
+ id: string;
7788
+ username: string;
7789
+ } | null;
7543
7790
  users: Array<{
7544
7791
  __typename?: 'UserPermission';
7545
7792
  role: Role;
@@ -7590,6 +7837,7 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
7590
7837
  name?: string | null;
7591
7838
  model?: string | null;
7592
7839
  deviceClass?: AppleDeviceClass | null;
7840
+ createdAt?: any | null;
7593
7841
  }>;
7594
7842
  } | null;
7595
7843
  }>;
@@ -7602,6 +7850,15 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
7602
7850
  __typename?: 'Account';
7603
7851
  id: string;
7604
7852
  name: string;
7853
+ ownerUserActor?: {
7854
+ __typename?: 'SSOUser';
7855
+ id: string;
7856
+ username: string;
7857
+ } | {
7858
+ __typename?: 'User';
7859
+ id: string;
7860
+ username: string;
7861
+ } | null;
7605
7862
  users: Array<{
7606
7863
  __typename?: 'UserPermission';
7607
7864
  role: Role;
@@ -7652,6 +7909,15 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
7652
7909
  __typename?: 'Account';
7653
7910
  id: string;
7654
7911
  name: string;
7912
+ ownerUserActor?: {
7913
+ __typename?: 'SSOUser';
7914
+ id: string;
7915
+ username: string;
7916
+ } | {
7917
+ __typename?: 'User';
7918
+ id: string;
7919
+ username: string;
7920
+ } | null;
7655
7921
  users: Array<{
7656
7922
  __typename?: 'UserPermission';
7657
7923
  role: Role;
@@ -7744,6 +8010,15 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
7744
8010
  __typename?: 'Account';
7745
8011
  id: string;
7746
8012
  name: string;
8013
+ ownerUserActor?: {
8014
+ __typename?: 'SSOUser';
8015
+ id: string;
8016
+ username: string;
8017
+ } | {
8018
+ __typename?: 'User';
8019
+ id: string;
8020
+ username: string;
8021
+ } | null;
7747
8022
  users: Array<{
7748
8023
  __typename?: 'UserPermission';
7749
8024
  role: Role;
@@ -7794,6 +8069,7 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
7794
8069
  name?: string | null;
7795
8070
  model?: string | null;
7796
8071
  deviceClass?: AppleDeviceClass | null;
8072
+ createdAt?: any | null;
7797
8073
  }>;
7798
8074
  } | null;
7799
8075
  }>;
@@ -7806,6 +8082,15 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
7806
8082
  __typename?: 'Account';
7807
8083
  id: string;
7808
8084
  name: string;
8085
+ ownerUserActor?: {
8086
+ __typename?: 'SSOUser';
8087
+ id: string;
8088
+ username: string;
8089
+ } | {
8090
+ __typename?: 'User';
8091
+ id: string;
8092
+ username: string;
8093
+ } | null;
7809
8094
  users: Array<{
7810
8095
  __typename?: 'UserPermission';
7811
8096
  role: Role;
@@ -7856,6 +8141,15 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
7856
8141
  __typename?: 'Account';
7857
8142
  id: string;
7858
8143
  name: string;
8144
+ ownerUserActor?: {
8145
+ __typename?: 'SSOUser';
8146
+ id: string;
8147
+ username: string;
8148
+ } | {
8149
+ __typename?: 'User';
8150
+ id: string;
8151
+ username: string;
8152
+ } | null;
7859
8153
  users: Array<{
7860
8154
  __typename?: 'UserPermission';
7861
8155
  role: Role;
@@ -7974,6 +8268,7 @@ export type CreateAndroidBuildMutation = {
7974
8268
  buildUrl?: string | null;
7975
8269
  xcodeBuildLogsUrl?: string | null;
7976
8270
  applicationArchiveUrl?: string | null;
8271
+ buildArtifactsUrl?: string | null;
7977
8272
  } | null;
7978
8273
  initiatingActor?: {
7979
8274
  __typename: 'Robot';
@@ -8062,6 +8357,7 @@ export type CreateIosBuildMutation = {
8062
8357
  buildUrl?: string | null;
8063
8358
  xcodeBuildLogsUrl?: string | null;
8064
8359
  applicationArchiveUrl?: string | null;
8360
+ buildArtifactsUrl?: string | null;
8065
8361
  } | null;
8066
8362
  initiatingActor?: {
8067
8363
  __typename: 'Robot';
@@ -8146,6 +8442,7 @@ export type UpdateBuildMetadataMutation = {
8146
8442
  buildUrl?: string | null;
8147
8443
  xcodeBuildLogsUrl?: string | null;
8148
8444
  applicationArchiveUrl?: string | null;
8445
+ buildArtifactsUrl?: string | null;
8149
8446
  } | null;
8150
8447
  initiatingActor?: {
8151
8448
  __typename: 'Robot';
@@ -8224,6 +8521,7 @@ export type RetryIosBuildMutation = {
8224
8521
  buildUrl?: string | null;
8225
8522
  xcodeBuildLogsUrl?: string | null;
8226
8523
  applicationArchiveUrl?: string | null;
8524
+ buildArtifactsUrl?: string | null;
8227
8525
  } | null;
8228
8526
  initiatingActor?: {
8229
8527
  __typename: 'Robot';
@@ -8574,6 +8872,15 @@ export type AppByIdQuery = {
8574
8872
  __typename?: 'Account';
8575
8873
  id: string;
8576
8874
  name: string;
8875
+ ownerUserActor?: {
8876
+ __typename?: 'SSOUser';
8877
+ id: string;
8878
+ username: string;
8879
+ } | {
8880
+ __typename?: 'User';
8881
+ id: string;
8882
+ username: string;
8883
+ } | null;
8577
8884
  users: Array<{
8578
8885
  __typename?: 'UserPermission';
8579
8886
  role: Role;
@@ -8608,6 +8915,15 @@ export type AppByFullNameQuery = {
8608
8915
  __typename?: 'Account';
8609
8916
  id: string;
8610
8917
  name: string;
8918
+ ownerUserActor?: {
8919
+ __typename?: 'SSOUser';
8920
+ id: string;
8921
+ username: string;
8922
+ } | {
8923
+ __typename?: 'User';
8924
+ id: string;
8925
+ username: string;
8926
+ } | null;
8611
8927
  users: Array<{
8612
8928
  __typename?: 'UserPermission';
8613
8929
  role: Role;
@@ -8865,6 +9181,7 @@ export type BuildsByIdQuery = {
8865
9181
  buildUrl?: string | null;
8866
9182
  xcodeBuildLogsUrl?: string | null;
8867
9183
  applicationArchiveUrl?: string | null;
9184
+ buildArtifactsUrl?: string | null;
8868
9185
  } | null;
8869
9186
  initiatingActor?: {
8870
9187
  __typename: 'Robot';
@@ -8977,6 +9294,7 @@ export type BuildsWithSubmissionsByIdQuery = {
8977
9294
  buildUrl?: string | null;
8978
9295
  xcodeBuildLogsUrl?: string | null;
8979
9296
  applicationArchiveUrl?: string | null;
9297
+ buildArtifactsUrl?: string | null;
8980
9298
  } | null;
8981
9299
  initiatingActor?: {
8982
9300
  __typename: 'Robot';
@@ -9060,6 +9378,7 @@ export type ViewBuildsOnAppQuery = {
9060
9378
  buildUrl?: string | null;
9061
9379
  xcodeBuildLogsUrl?: string | null;
9062
9380
  applicationArchiveUrl?: string | null;
9381
+ buildArtifactsUrl?: string | null;
9063
9382
  } | null;
9064
9383
  initiatingActor?: {
9065
9384
  __typename: 'Robot';
@@ -9650,6 +9969,15 @@ export type CurrentUserQuery = {
9650
9969
  __typename?: 'Account';
9651
9970
  id: string;
9652
9971
  name: string;
9972
+ ownerUserActor?: {
9973
+ __typename?: 'SSOUser';
9974
+ id: string;
9975
+ username: string;
9976
+ } | {
9977
+ __typename?: 'User';
9978
+ id: string;
9979
+ username: string;
9980
+ } | null;
9653
9981
  users: Array<{
9654
9982
  __typename?: 'UserPermission';
9655
9983
  role: Role;
@@ -9675,6 +10003,15 @@ export type CurrentUserQuery = {
9675
10003
  __typename?: 'Account';
9676
10004
  id: string;
9677
10005
  name: string;
10006
+ ownerUserActor?: {
10007
+ __typename?: 'SSOUser';
10008
+ id: string;
10009
+ username: string;
10010
+ } | {
10011
+ __typename?: 'User';
10012
+ id: string;
10013
+ username: string;
10014
+ } | null;
9678
10015
  users: Array<{
9679
10016
  __typename?: 'UserPermission';
9680
10017
  role: Role;
@@ -9694,6 +10031,15 @@ export type CurrentUserQuery = {
9694
10031
  __typename?: 'Account';
9695
10032
  id: string;
9696
10033
  name: string;
10034
+ ownerUserActor?: {
10035
+ __typename?: 'SSOUser';
10036
+ id: string;
10037
+ username: string;
10038
+ } | {
10039
+ __typename?: 'User';
10040
+ id: string;
10041
+ username: string;
10042
+ } | null;
9697
10043
  users: Array<{
9698
10044
  __typename?: 'UserPermission';
9699
10045
  role: Role;
@@ -9719,6 +10065,15 @@ export type CurrentUserQuery = {
9719
10065
  __typename?: 'Account';
9720
10066
  id: string;
9721
10067
  name: string;
10068
+ ownerUserActor?: {
10069
+ __typename?: 'SSOUser';
10070
+ id: string;
10071
+ username: string;
10072
+ } | {
10073
+ __typename?: 'User';
10074
+ id: string;
10075
+ username: string;
10076
+ } | null;
9722
10077
  users: Array<{
9723
10078
  __typename?: 'UserPermission';
9724
10079
  role: Role;
@@ -9738,6 +10093,15 @@ export type CurrentUserQuery = {
9738
10093
  __typename?: 'Account';
9739
10094
  id: string;
9740
10095
  name: string;
10096
+ ownerUserActor?: {
10097
+ __typename?: 'SSOUser';
10098
+ id: string;
10099
+ username: string;
10100
+ } | {
10101
+ __typename?: 'User';
10102
+ id: string;
10103
+ username: string;
10104
+ } | null;
9741
10105
  users: Array<{
9742
10106
  __typename?: 'UserPermission';
9743
10107
  role: Role;
@@ -9798,6 +10162,15 @@ export type AccountFragment = {
9798
10162
  __typename?: 'Account';
9799
10163
  id: string;
9800
10164
  name: string;
10165
+ ownerUserActor?: {
10166
+ __typename?: 'SSOUser';
10167
+ id: string;
10168
+ username: string;
10169
+ } | {
10170
+ __typename?: 'User';
10171
+ id: string;
10172
+ username: string;
10173
+ } | null;
9801
10174
  users: Array<{
9802
10175
  __typename?: 'UserPermission';
9803
10176
  role: Role;
@@ -9822,6 +10195,15 @@ export type AppFragment = {
9822
10195
  __typename?: 'Account';
9823
10196
  id: string;
9824
10197
  name: string;
10198
+ ownerUserActor?: {
10199
+ __typename?: 'SSOUser';
10200
+ id: string;
10201
+ username: string;
10202
+ } | {
10203
+ __typename?: 'User';
10204
+ id: string;
10205
+ username: string;
10206
+ } | null;
9825
10207
  users: Array<{
9826
10208
  __typename?: 'UserPermission';
9827
10209
  role: Role;
@@ -9875,6 +10257,7 @@ export type BuildFragment = {
9875
10257
  buildUrl?: string | null;
9876
10258
  xcodeBuildLogsUrl?: string | null;
9877
10259
  applicationArchiveUrl?: string | null;
10260
+ buildArtifactsUrl?: string | null;
9878
10261
  } | null;
9879
10262
  initiatingActor?: {
9880
10263
  __typename: 'Robot';
@@ -9978,6 +10361,7 @@ export type BuildWithSubmissionsFragment = {
9978
10361
  buildUrl?: string | null;
9979
10362
  xcodeBuildLogsUrl?: string | null;
9980
10363
  applicationArchiveUrl?: string | null;
10364
+ buildArtifactsUrl?: string | null;
9981
10365
  } | null;
9982
10366
  initiatingActor?: {
9983
10367
  __typename: 'Robot';
@@ -10203,6 +10587,15 @@ export type CommonAndroidAppCredentialsFragment = {
10203
10587
  __typename?: 'Account';
10204
10588
  id: string;
10205
10589
  name: string;
10590
+ ownerUserActor?: {
10591
+ __typename?: 'SSOUser';
10592
+ id: string;
10593
+ username: string;
10594
+ } | {
10595
+ __typename?: 'User';
10596
+ id: string;
10597
+ username: string;
10598
+ } | null;
10206
10599
  users: Array<{
10207
10600
  __typename?: 'UserPermission';
10208
10601
  role: Role;
@@ -10331,6 +10724,7 @@ export type AppleDeviceFragment = {
10331
10724
  name?: string | null;
10332
10725
  model?: string | null;
10333
10726
  deviceClass?: AppleDeviceClass | null;
10727
+ createdAt?: any | null;
10334
10728
  };
10335
10729
  export type AppleDeviceRegistrationRequestFragment = {
10336
10730
  __typename?: 'AppleDeviceRegistrationRequest';
@@ -10367,6 +10761,15 @@ export type AppleDistributionCertificateFragment = {
10367
10761
  __typename?: 'Account';
10368
10762
  id: string;
10369
10763
  name: string;
10764
+ ownerUserActor?: {
10765
+ __typename?: 'SSOUser';
10766
+ id: string;
10767
+ username: string;
10768
+ } | {
10769
+ __typename?: 'User';
10770
+ id: string;
10771
+ username: string;
10772
+ } | null;
10370
10773
  users: Array<{
10371
10774
  __typename?: 'UserPermission';
10372
10775
  role: Role;
@@ -10417,6 +10820,7 @@ export type AppleProvisioningProfileFragment = {
10417
10820
  name?: string | null;
10418
10821
  model?: string | null;
10419
10822
  deviceClass?: AppleDeviceClass | null;
10823
+ createdAt?: any | null;
10420
10824
  }>;
10421
10825
  };
10422
10826
  export type AppleProvisioningProfileIdentifiersFragment = {
@@ -10447,6 +10851,15 @@ export type ApplePushKeyFragment = {
10447
10851
  __typename?: 'Account';
10448
10852
  id: string;
10449
10853
  name: string;
10854
+ ownerUserActor?: {
10855
+ __typename?: 'SSOUser';
10856
+ id: string;
10857
+ username: string;
10858
+ } | {
10859
+ __typename?: 'User';
10860
+ id: string;
10861
+ username: string;
10862
+ } | null;
10450
10863
  users: Array<{
10451
10864
  __typename?: 'UserPermission';
10452
10865
  role: Role;
@@ -10521,6 +10934,15 @@ export type IosAppBuildCredentialsFragment = {
10521
10934
  __typename?: 'Account';
10522
10935
  id: string;
10523
10936
  name: string;
10937
+ ownerUserActor?: {
10938
+ __typename?: 'SSOUser';
10939
+ id: string;
10940
+ username: string;
10941
+ } | {
10942
+ __typename?: 'User';
10943
+ id: string;
10944
+ username: string;
10945
+ } | null;
10524
10946
  users: Array<{
10525
10947
  __typename?: 'UserPermission';
10526
10948
  role: Role;
@@ -10571,6 +10993,7 @@ export type IosAppBuildCredentialsFragment = {
10571
10993
  name?: string | null;
10572
10994
  model?: string | null;
10573
10995
  deviceClass?: AppleDeviceClass | null;
10996
+ createdAt?: any | null;
10574
10997
  }>;
10575
10998
  } | null;
10576
10999
  };
@@ -10586,6 +11009,15 @@ export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
10586
11009
  __typename?: 'Account';
10587
11010
  id: string;
10588
11011
  name: string;
11012
+ ownerUserActor?: {
11013
+ __typename?: 'SSOUser';
11014
+ id: string;
11015
+ username: string;
11016
+ } | {
11017
+ __typename?: 'User';
11018
+ id: string;
11019
+ username: string;
11020
+ } | null;
10589
11021
  users: Array<{
10590
11022
  __typename?: 'UserPermission';
10591
11023
  role: Role;
@@ -10636,6 +11068,15 @@ export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
10636
11068
  __typename?: 'Account';
10637
11069
  id: string;
10638
11070
  name: string;
11071
+ ownerUserActor?: {
11072
+ __typename?: 'SSOUser';
11073
+ id: string;
11074
+ username: string;
11075
+ } | {
11076
+ __typename?: 'User';
11077
+ id: string;
11078
+ username: string;
11079
+ } | null;
10639
11080
  users: Array<{
10640
11081
  __typename?: 'UserPermission';
10641
11082
  role: Role;
@@ -10714,6 +11155,15 @@ export type CommonIosAppCredentialsFragment = {
10714
11155
  __typename?: 'Account';
10715
11156
  id: string;
10716
11157
  name: string;
11158
+ ownerUserActor?: {
11159
+ __typename?: 'SSOUser';
11160
+ id: string;
11161
+ username: string;
11162
+ } | {
11163
+ __typename?: 'User';
11164
+ id: string;
11165
+ username: string;
11166
+ } | null;
10717
11167
  users: Array<{
10718
11168
  __typename?: 'UserPermission';
10719
11169
  role: Role;
@@ -10764,6 +11214,7 @@ export type CommonIosAppCredentialsFragment = {
10764
11214
  name?: string | null;
10765
11215
  model?: string | null;
10766
11216
  deviceClass?: AppleDeviceClass | null;
11217
+ createdAt?: any | null;
10767
11218
  }>;
10768
11219
  } | null;
10769
11220
  }>;
@@ -10776,6 +11227,15 @@ export type CommonIosAppCredentialsFragment = {
10776
11227
  __typename?: 'Account';
10777
11228
  id: string;
10778
11229
  name: string;
11230
+ ownerUserActor?: {
11231
+ __typename?: 'SSOUser';
11232
+ id: string;
11233
+ username: string;
11234
+ } | {
11235
+ __typename?: 'User';
11236
+ id: string;
11237
+ username: string;
11238
+ } | null;
10779
11239
  users: Array<{
10780
11240
  __typename?: 'UserPermission';
10781
11241
  role: Role;
@@ -10826,6 +11286,15 @@ export type CommonIosAppCredentialsFragment = {
10826
11286
  __typename?: 'Account';
10827
11287
  id: string;
10828
11288
  name: string;
11289
+ ownerUserActor?: {
11290
+ __typename?: 'SSOUser';
11291
+ id: string;
11292
+ username: string;
11293
+ } | {
11294
+ __typename?: 'User';
11295
+ id: string;
11296
+ username: string;
11297
+ } | null;
10829
11298
  users: Array<{
10830
11299
  __typename?: 'UserPermission';
10831
11300
  role: Role;