eas-cli 16.30.0 → 16.32.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.
@@ -164,6 +164,8 @@ export type Account = {
164
164
  billingPeriod: BillingPeriod;
165
165
  createdAt: Scalars['DateTime']['output'];
166
166
  displayName?: Maybe<Scalars['String']['output']>;
167
+ /** Echo projects for this account (paginated, most recent first) */
168
+ echoProjects: EchoProjectConnection;
167
169
  /** Environment secrets for an account */
168
170
  environmentSecrets: Array<EnvironmentSecret>;
169
171
  environmentVariableEnvironments: Array<Scalars['EnvironmentVariableEnvironment']['output']>;
@@ -188,6 +190,10 @@ export type Account = {
188
190
  isSSOEnabled: Scalars['Boolean']['output'];
189
191
  lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
190
192
  logRocketOrganization?: Maybe<LogRocketOrganization>;
193
+ /** Aggregate statistics about account members. */
194
+ memberStats: AccountMemberStats;
195
+ /** Paginated list of members (actors) associated with this account and their permissions */
196
+ membersPaginated: AccountMembersConnection;
191
197
  name: Scalars['String']['output'];
192
198
  /** Offers set on this account */
193
199
  offers?: Maybe<Array<Offer>>;
@@ -230,7 +236,10 @@ export type Account = {
230
236
  /** Pending user invitations for this account */
231
237
  userInvitations: Array<UserInvitation>;
232
238
  userSpecifiedAccountUsage?: Maybe<UserSpecifiedAccountUsage>;
233
- /** Actors associated with this account and permissions they hold */
239
+ /**
240
+ * Actors associated with this account and permissions they hold
241
+ * @deprecated Deprecated in favor of membersPaginated and memberStats
242
+ */
234
243
  users: Array<UserPermission>;
235
244
  /** Vexo account connection for this account */
236
245
  vexoAccountConnection?: Maybe<VexoAccountConnection>;
@@ -389,6 +398,14 @@ export type AccountAuditLogsPaginatedArgs = {
389
398
  export type AccountBillingPeriodArgs = {
390
399
  date: Scalars['DateTime']['input'];
391
400
  };
401
+ /**
402
+ * An account is a container owning projects, credentials, billing and other organization
403
+ * data and settings. Actors may own and be members of accounts.
404
+ */
405
+ export type AccountEchoProjectsArgs = {
406
+ after?: InputMaybe<Scalars['String']['input']>;
407
+ first?: InputMaybe<Scalars['Int']['input']>;
408
+ };
392
409
  /**
393
410
  * An account is a container owning projects, credentials, billing and other organization
394
411
  * data and settings. Actors may own and be members of accounts.
@@ -422,6 +439,17 @@ export type AccountGoogleServiceAccountKeysPaginatedArgs = {
422
439
  first?: InputMaybe<Scalars['Int']['input']>;
423
440
  last?: InputMaybe<Scalars['Int']['input']>;
424
441
  };
442
+ /**
443
+ * An account is a container owning projects, credentials, billing and other organization
444
+ * data and settings. Actors may own and be members of accounts.
445
+ */
446
+ export type AccountMembersPaginatedArgs = {
447
+ after?: InputMaybe<Scalars['String']['input']>;
448
+ before?: InputMaybe<Scalars['String']['input']>;
449
+ first?: InputMaybe<Scalars['Int']['input']>;
450
+ last?: InputMaybe<Scalars['Int']['input']>;
451
+ memberType?: InputMaybe<AccountMemberType>;
452
+ };
425
453
  /**
426
454
  * An account is a container owning projects, credentials, billing and other organization
427
455
  * data and settings. Actors may own and be members of accounts.
@@ -538,6 +566,46 @@ export type AccountGoogleServiceAccountKeysEdge = {
538
566
  cursor: Scalars['String']['output'];
539
567
  node: GoogleServiceAccountKey;
540
568
  };
569
+ /** Aggregate statistics about account members */
570
+ export type AccountMemberStats = {
571
+ __typename?: 'AccountMemberStats';
572
+ /**
573
+ * Whether all human members (Users only, not SSO) have 2FA enabled.
574
+ * Also checks the implicit account owner for personal accounts.
575
+ */
576
+ allHave2FAEnabled: Scalars['Boolean']['output'];
577
+ /** Count of human members (Users + SSOUsers) */
578
+ humanCount: Scalars['Int']['output'];
579
+ /** Count of members with OWN permission */
580
+ ownerCount: Scalars['Int']['output'];
581
+ /** Count of robot members */
582
+ robotCount: Scalars['Int']['output'];
583
+ /** Count of SSO users only */
584
+ ssoUserCount: Scalars['Int']['output'];
585
+ /** Total count of all members */
586
+ totalCount: Scalars['Int']['output'];
587
+ };
588
+ /** Filter for account member types in membersPaginated query */
589
+ export declare enum AccountMemberType {
590
+ /** All members (default) */
591
+ All = "ALL",
592
+ /** Human members (Users + SSOUsers) */
593
+ Human = "HUMAN",
594
+ /** Robot members only */
595
+ Robot = "ROBOT",
596
+ /** SSO users only */
597
+ SsoUser = "SSO_USER"
598
+ }
599
+ export type AccountMembersConnection = {
600
+ __typename?: 'AccountMembersConnection';
601
+ edges: Array<AccountMembersEdge>;
602
+ pageInfo: PageInfo;
603
+ };
604
+ export type AccountMembersEdge = {
605
+ __typename?: 'AccountMembersEdge';
606
+ cursor: Scalars['String']['output'];
607
+ node: UserPermission;
608
+ };
541
609
  export type AccountMutation = {
542
610
  __typename?: 'AccountMutation';
543
611
  /** Cancels all subscriptions immediately */
@@ -1712,11 +1780,8 @@ export type AppNotificationPreferenceInput = {
1712
1780
  };
1713
1781
  export type AppObserve = {
1714
1782
  __typename?: 'AppObserve';
1715
- byAppVersion: Array<AppVersionMetrics>;
1716
1783
  events: AppObserveEventsConnection;
1717
- };
1718
- export type AppObserveByAppVersionArgs = {
1719
- eventNames?: InputMaybe<Array<AppObserveEventName>>;
1784
+ timeSeries: AppObserveTimeSeries;
1720
1785
  };
1721
1786
  export type AppObserveEventsArgs = {
1722
1787
  after?: InputMaybe<Scalars['String']['input']>;
@@ -1726,13 +1791,16 @@ export type AppObserveEventsArgs = {
1726
1791
  last?: InputMaybe<Scalars['Int']['input']>;
1727
1792
  orderBy?: InputMaybe<AppObserveEventsOrderBy>;
1728
1793
  };
1794
+ export type AppObserveTimeSeriesArgs = {
1795
+ input: AppObserveTimeSeriesInput;
1796
+ };
1729
1797
  export type AppObserveEvent = {
1730
1798
  __typename?: 'AppObserveEvent';
1731
1799
  appBuildNumber: Scalars['String']['output'];
1732
1800
  appIdentifier: Scalars['String']['output'];
1733
1801
  appName: Scalars['String']['output'];
1802
+ appUpdateId?: Maybe<Scalars['String']['output']>;
1734
1803
  appVersion: Scalars['String']['output'];
1735
- category: Scalars['String']['output'];
1736
1804
  clientVersion?: Maybe<Scalars['String']['output']>;
1737
1805
  countryCode?: Maybe<Scalars['String']['output']>;
1738
1806
  deviceLanguageTag?: Maybe<Scalars['String']['output']>;
@@ -1747,34 +1815,33 @@ export type AppObserveEvent = {
1747
1815
  ingestedAt?: Maybe<Scalars['DateTime']['output']>;
1748
1816
  metricName: Scalars['String']['output'];
1749
1817
  metricValue: Scalars['Float']['output'];
1750
- name: Scalars['String']['output'];
1751
1818
  parentSessionId?: Maybe<Scalars['String']['output']>;
1752
1819
  reactNativeVersion?: Maybe<Scalars['String']['output']>;
1820
+ sessionEventCount?: Maybe<Scalars['Int']['output']>;
1753
1821
  sessionId?: Maybe<Scalars['String']['output']>;
1754
1822
  tags: Scalars['JSON']['output'];
1755
1823
  timestamp: Scalars['DateTime']['output'];
1824
+ userEventCount?: Maybe<Scalars['Int']['output']>;
1756
1825
  };
1757
1826
  export type AppObserveEventEdge = {
1758
1827
  __typename?: 'AppObserveEventEdge';
1759
1828
  cursor: Scalars['String']['output'];
1760
1829
  node: AppObserveEvent;
1761
1830
  };
1762
- export declare enum AppObserveEventName {
1763
- BundleLoadTime = "BUNDLE_LOAD_TIME",
1764
- LaunchTime = "LAUNCH_TIME",
1765
- LoadTime = "LOAD_TIME",
1766
- TimeToFirstRender = "TIME_TO_FIRST_RENDER",
1767
- TimeToInteractive = "TIME_TO_INTERACTIVE"
1768
- }
1769
1831
  export type AppObserveEventsConnection = {
1770
1832
  __typename?: 'AppObserveEventsConnection';
1771
1833
  edges: Array<AppObserveEventEdge>;
1772
1834
  pageInfo: PageInfo;
1773
1835
  };
1774
1836
  export type AppObserveEventsFilter = {
1837
+ appUpdateId?: InputMaybe<Scalars['String']['input']>;
1775
1838
  appVersion?: InputMaybe<Scalars['String']['input']>;
1776
- eventName?: InputMaybe<AppObserveEventName>;
1839
+ easClientId?: InputMaybe<Scalars['String']['input']>;
1840
+ endTime?: InputMaybe<Scalars['DateTime']['input']>;
1841
+ metricName?: InputMaybe<Scalars['String']['input']>;
1777
1842
  platform?: InputMaybe<AppObservePlatform>;
1843
+ sessionId?: InputMaybe<Scalars['String']['input']>;
1844
+ startTime?: InputMaybe<Scalars['DateTime']['input']>;
1778
1845
  };
1779
1846
  export type AppObserveEventsOrderBy = {
1780
1847
  direction: AppObserveEventsOrderByDirection;
@@ -1792,6 +1859,77 @@ export declare enum AppObservePlatform {
1792
1859
  Android = "ANDROID",
1793
1860
  Ios = "IOS"
1794
1861
  }
1862
+ export type AppObserveTimeSeries = {
1863
+ __typename?: 'AppObserveTimeSeries';
1864
+ buckets: Array<AppObserveTimeSeriesBucket>;
1865
+ eventCount: Scalars['Int']['output'];
1866
+ latestVersionStatistics?: Maybe<AppObserveVersionStatistics>;
1867
+ previousVersionStatistics?: Maybe<AppObserveVersionStatistics>;
1868
+ statistics: AppObserveTimeSeriesStatistics;
1869
+ updateMarkers: Array<AppObserveUpdateMarker>;
1870
+ versionMarkers: Array<AppObserveVersionMarker>;
1871
+ };
1872
+ export type AppObserveTimeSeriesBucket = {
1873
+ __typename?: 'AppObserveTimeSeriesBucket';
1874
+ average?: Maybe<Scalars['Float']['output']>;
1875
+ bucket: Scalars['DateTime']['output'];
1876
+ count: Scalars['Int']['output'];
1877
+ max?: Maybe<Scalars['Float']['output']>;
1878
+ median?: Maybe<Scalars['Float']['output']>;
1879
+ min?: Maybe<Scalars['Float']['output']>;
1880
+ p80?: Maybe<Scalars['Float']['output']>;
1881
+ p90?: Maybe<Scalars['Float']['output']>;
1882
+ p99?: Maybe<Scalars['Float']['output']>;
1883
+ };
1884
+ export type AppObserveTimeSeriesInput = {
1885
+ appUpdateId?: InputMaybe<Scalars['String']['input']>;
1886
+ appVersion?: InputMaybe<Scalars['String']['input']>;
1887
+ bucketIntervalMinutes?: InputMaybe<Scalars['Int']['input']>;
1888
+ endTime: Scalars['DateTime']['input'];
1889
+ metricName: Scalars['String']['input'];
1890
+ platform: AppObservePlatform;
1891
+ startTime: Scalars['DateTime']['input'];
1892
+ };
1893
+ export type AppObserveTimeSeriesStatistics = {
1894
+ __typename?: 'AppObserveTimeSeriesStatistics';
1895
+ average?: Maybe<Scalars['Float']['output']>;
1896
+ count: Scalars['Int']['output'];
1897
+ max?: Maybe<Scalars['Float']['output']>;
1898
+ median?: Maybe<Scalars['Float']['output']>;
1899
+ min?: Maybe<Scalars['Float']['output']>;
1900
+ p80?: Maybe<Scalars['Float']['output']>;
1901
+ p90?: Maybe<Scalars['Float']['output']>;
1902
+ p99?: Maybe<Scalars['Float']['output']>;
1903
+ };
1904
+ export type AppObserveUpdateMarker = {
1905
+ __typename?: 'AppObserveUpdateMarker';
1906
+ appUpdateId: Scalars['String']['output'];
1907
+ appVersion: Scalars['String']['output'];
1908
+ eventCount: Scalars['Int']['output'];
1909
+ firstSeenAt: Scalars['DateTime']['output'];
1910
+ };
1911
+ export type AppObserveVersionMarker = {
1912
+ __typename?: 'AppObserveVersionMarker';
1913
+ appVersion: Scalars['String']['output'];
1914
+ eventCount: Scalars['Int']['output'];
1915
+ firstSeenAt: Scalars['DateTime']['output'];
1916
+ statistics: AppObserveVersionMarkerStatistics;
1917
+ };
1918
+ export type AppObserveVersionMarkerStatistics = {
1919
+ __typename?: 'AppObserveVersionMarkerStatistics';
1920
+ average?: Maybe<Scalars['Float']['output']>;
1921
+ max?: Maybe<Scalars['Float']['output']>;
1922
+ median?: Maybe<Scalars['Float']['output']>;
1923
+ min?: Maybe<Scalars['Float']['output']>;
1924
+ p80?: Maybe<Scalars['Float']['output']>;
1925
+ p90?: Maybe<Scalars['Float']['output']>;
1926
+ p99?: Maybe<Scalars['Float']['output']>;
1927
+ };
1928
+ export type AppObserveVersionStatistics = {
1929
+ __typename?: 'AppObserveVersionStatistics';
1930
+ appVersion: Scalars['String']['output'];
1931
+ statistics: AppObserveVersionMarkerStatistics;
1932
+ };
1795
1933
  export declare enum AppPlatform {
1796
1934
  Android = "ANDROID",
1797
1935
  Ios = "IOS"
@@ -2032,12 +2170,6 @@ export type AppVersionInput = {
2032
2170
  runtimeVersion?: InputMaybe<Scalars['String']['input']>;
2033
2171
  storeVersion: Scalars['String']['input'];
2034
2172
  };
2035
- export type AppVersionMetrics = {
2036
- __typename?: 'AppVersionMetrics';
2037
- android: Array<PlatformMetrics>;
2038
- appVersion: Scalars['String']['output'];
2039
- ios: Array<PlatformMetrics>;
2040
- };
2041
2173
  export type AppVersionMutation = {
2042
2174
  __typename?: 'AppVersionMutation';
2043
2175
  /** Create an app version */
@@ -2552,6 +2684,8 @@ export declare enum AuthProviderIdentifier {
2552
2684
  export type AverageAssetMetrics = {
2553
2685
  __typename?: 'AverageAssetMetrics';
2554
2686
  averageDownloadSizeBytes: Scalars['Int']['output'];
2687
+ baseUpdate?: Maybe<Update>;
2688
+ baseUpdateId?: Maybe<Scalars['ID']['output']>;
2555
2689
  count: Scalars['Int']['output'];
2556
2690
  storageKey: Scalars['String']['output'];
2557
2691
  };
@@ -3221,6 +3355,55 @@ export type CreateBuildResult = {
3221
3355
  build: Build;
3222
3356
  deprecationInfo?: Maybe<EasBuildDeprecationInfo>;
3223
3357
  };
3358
+ export type CreateEchoChatInput = {
3359
+ agentMetadata?: InputMaybe<Scalars['JSONObject']['input']>;
3360
+ agentType?: InputMaybe<EchoAgentType>;
3361
+ echoProjectId: Scalars['ID']['input'];
3362
+ state?: InputMaybe<EchoChatState>;
3363
+ title?: InputMaybe<Scalars['String']['input']>;
3364
+ };
3365
+ export type CreateEchoMessageInput = {
3366
+ echoChatId: Scalars['ID']['input'];
3367
+ metadata?: InputMaybe<Scalars['JSONObject']['input']>;
3368
+ parentEchoMessageId?: InputMaybe<Scalars['ID']['input']>;
3369
+ role: EchoMessageRole;
3370
+ turnId?: InputMaybe<Scalars['ID']['input']>;
3371
+ userId?: InputMaybe<Scalars['ID']['input']>;
3372
+ };
3373
+ export type CreateEchoMessagePartInput = {
3374
+ data: Scalars['JSONObject']['input'];
3375
+ echoMessageId: Scalars['ID']['input'];
3376
+ index?: InputMaybe<Scalars['Int']['input']>;
3377
+ type: EchoMessagePartType;
3378
+ };
3379
+ export type CreateEchoProjectInput = {
3380
+ accountId: Scalars['ID']['input'];
3381
+ currentPreviewEchoVersionId?: InputMaybe<Scalars['ID']['input']>;
3382
+ description?: InputMaybe<Scalars['String']['input']>;
3383
+ displayName?: InputMaybe<Scalars['String']['input']>;
3384
+ githubInfo?: InputMaybe<EchoProjectGitHubInfoInput>;
3385
+ icon?: InputMaybe<EchoProjectIconInput>;
3386
+ initFromEchoProjectId?: InputMaybe<Scalars['ID']['input']>;
3387
+ initFromGitHubUrl?: InputMaybe<Scalars['String']['input']>;
3388
+ slug?: InputMaybe<Scalars['String']['input']>;
3389
+ thumbnail?: InputMaybe<EchoProjectThumbnailInput>;
3390
+ visibility?: InputMaybe<EchoProjectVisibility>;
3391
+ };
3392
+ export type CreateEchoVersionInput = {
3393
+ buildError?: InputMaybe<Scalars['String']['input']>;
3394
+ buildStatus: EchoBuildStatus;
3395
+ diffs: Scalars['JSON']['input'];
3396
+ echoChatId?: InputMaybe<Scalars['ID']['input']>;
3397
+ echoProjectId: Scalars['ID']['input'];
3398
+ gitBranch?: InputMaybe<Scalars['String']['input']>;
3399
+ gitCommitHash?: InputMaybe<Scalars['String']['input']>;
3400
+ gitCommitMessage?: InputMaybe<Scalars['String']['input']>;
3401
+ previewDeployment?: InputMaybe<Scalars['JSONObject']['input']>;
3402
+ revertedFromEchoVersionId?: InputMaybe<Scalars['ID']['input']>;
3403
+ source: EchoVersionSource;
3404
+ thumbnail?: InputMaybe<EchoVersionThumbnailInput>;
3405
+ turnId?: InputMaybe<Scalars['ID']['input']>;
3406
+ };
3224
3407
  export type CreateEnvironmentSecretInput = {
3225
3408
  name: Scalars['String']['input'];
3226
3409
  type?: InputMaybe<EnvironmentSecretType>;
@@ -3695,6 +3878,378 @@ export declare enum EasTotalPlanEnablementUnit {
3695
3878
  Updater = "UPDATER",
3696
3879
  User = "USER"
3697
3880
  }
3881
+ export declare enum EchoAgentType {
3882
+ ClaudeCode = "CLAUDE_CODE",
3883
+ Codex = "CODEX",
3884
+ Gemini = "GEMINI"
3885
+ }
3886
+ export declare enum EchoBuildStatus {
3887
+ Building = "BUILDING",
3888
+ Failed = "FAILED",
3889
+ Pending = "PENDING",
3890
+ Success = "SUCCESS"
3891
+ }
3892
+ export declare enum EchoChangeType {
3893
+ Added = "ADDED",
3894
+ Deleted = "DELETED",
3895
+ Modified = "MODIFIED",
3896
+ Renamed = "RENAMED"
3897
+ }
3898
+ export type EchoChat = {
3899
+ __typename?: 'EchoChat';
3900
+ agentMetadata?: Maybe<Scalars['JSONObject']['output']>;
3901
+ agentType?: Maybe<EchoAgentType>;
3902
+ /** Messages belonging to this chat (paginated, most recent first) */
3903
+ echoMessages: EchoMessageConnection;
3904
+ /** Parent project */
3905
+ echoProject: EchoProject;
3906
+ id: Scalars['ID']['output'];
3907
+ state: EchoChatState;
3908
+ stats?: Maybe<Scalars['JSONObject']['output']>;
3909
+ title?: Maybe<Scalars['String']['output']>;
3910
+ };
3911
+ export type EchoChatEchoMessagesArgs = {
3912
+ after?: InputMaybe<Scalars['String']['input']>;
3913
+ first?: InputMaybe<Scalars['Int']['input']>;
3914
+ };
3915
+ export type EchoChatConnection = {
3916
+ __typename?: 'EchoChatConnection';
3917
+ edges: Array<EchoChatEdge>;
3918
+ pageInfo: PageInfo;
3919
+ };
3920
+ export type EchoChatEdge = {
3921
+ __typename?: 'EchoChatEdge';
3922
+ cursor: Scalars['String']['output'];
3923
+ node: EchoChat;
3924
+ };
3925
+ export type EchoChatMutation = {
3926
+ __typename?: 'EchoChatMutation';
3927
+ /** Create a new chat */
3928
+ createChat: EchoChat;
3929
+ /** Delete a chat and all its messages/parts */
3930
+ deleteChat: EchoChat;
3931
+ /** Update a chat */
3932
+ updateChat: EchoChat;
3933
+ };
3934
+ export type EchoChatMutationCreateChatArgs = {
3935
+ input: CreateEchoChatInput;
3936
+ };
3937
+ export type EchoChatMutationDeleteChatArgs = {
3938
+ id: Scalars['ID']['input'];
3939
+ };
3940
+ export type EchoChatMutationUpdateChatArgs = {
3941
+ id: Scalars['ID']['input'];
3942
+ input: UpdateEchoChatInput;
3943
+ };
3944
+ export type EchoChatQuery = {
3945
+ __typename?: 'EchoChatQuery';
3946
+ /** Get chat by ID - entry point to the graph */
3947
+ byId?: Maybe<EchoChat>;
3948
+ };
3949
+ export type EchoChatQueryByIdArgs = {
3950
+ id: Scalars['ID']['input'];
3951
+ };
3952
+ export declare enum EchoChatState {
3953
+ Active = "ACTIVE",
3954
+ Archived = "ARCHIVED"
3955
+ }
3956
+ export type EchoMessage = {
3957
+ __typename?: 'EchoMessage';
3958
+ completedAt?: Maybe<Scalars['DateTime']['output']>;
3959
+ /** Parent chat */
3960
+ echoChat: EchoChat;
3961
+ /** Message parts (text, tool calls, etc.) ordered by index */
3962
+ echoMessageParts: Array<EchoMessagePart>;
3963
+ id: Scalars['ID']['output'];
3964
+ metadata?: Maybe<Scalars['JSONObject']['output']>;
3965
+ /** Parent message (for conversation branching) */
3966
+ parentEchoMessage?: Maybe<EchoMessage>;
3967
+ role: EchoMessageRole;
3968
+ /** Turn ID for grouping user message + assistant response (UUID) */
3969
+ turnId?: Maybe<Scalars['ID']['output']>;
3970
+ /** User who sent the message (for user messages) */
3971
+ user?: Maybe<User>;
3972
+ };
3973
+ export type EchoMessageConnection = {
3974
+ __typename?: 'EchoMessageConnection';
3975
+ edges: Array<EchoMessageEdge>;
3976
+ pageInfo: PageInfo;
3977
+ totalCount?: Maybe<Scalars['Int']['output']>;
3978
+ };
3979
+ export type EchoMessageEdge = {
3980
+ __typename?: 'EchoMessageEdge';
3981
+ cursor: Scalars['String']['output'];
3982
+ node: EchoMessage;
3983
+ };
3984
+ export type EchoMessageMutation = {
3985
+ __typename?: 'EchoMessageMutation';
3986
+ /** Mark a message as completed (sets completedAt) */
3987
+ completeMessage: EchoMessage;
3988
+ /** Create a new message */
3989
+ createMessage: EchoMessage;
3990
+ };
3991
+ export type EchoMessageMutationCompleteMessageArgs = {
3992
+ id: Scalars['ID']['input'];
3993
+ };
3994
+ export type EchoMessageMutationCreateMessageArgs = {
3995
+ input: CreateEchoMessageInput;
3996
+ };
3997
+ export type EchoMessagePart = {
3998
+ __typename?: 'EchoMessagePart';
3999
+ data: Scalars['JSONObject']['output'];
4000
+ /** Parent message */
4001
+ echoMessage: EchoMessage;
4002
+ id: Scalars['ID']['output'];
4003
+ index: Scalars['Int']['output'];
4004
+ type: EchoMessagePartType;
4005
+ };
4006
+ export type EchoMessagePartMutation = {
4007
+ __typename?: 'EchoMessagePartMutation';
4008
+ /** Create a new message part */
4009
+ createPart: EchoMessagePart;
4010
+ /** Create multiple message parts in batch */
4011
+ createParts: Array<EchoMessagePart>;
4012
+ /** Update a message part (for streaming updates) */
4013
+ updatePart: EchoMessagePart;
4014
+ };
4015
+ export type EchoMessagePartMutationCreatePartArgs = {
4016
+ input: CreateEchoMessagePartInput;
4017
+ };
4018
+ export type EchoMessagePartMutationCreatePartsArgs = {
4019
+ inputs: Array<CreateEchoMessagePartInput>;
4020
+ };
4021
+ export type EchoMessagePartMutationUpdatePartArgs = {
4022
+ id: Scalars['ID']['input'];
4023
+ input: UpdateEchoMessagePartInput;
4024
+ };
4025
+ export type EchoMessagePartQuery = {
4026
+ __typename?: 'EchoMessagePartQuery';
4027
+ /** Get all parts for a message (sorted by index ascending) */
4028
+ byEchoMessageId: Array<EchoMessagePart>;
4029
+ /** Get part by ID - entry point to the graph */
4030
+ byId?: Maybe<EchoMessagePart>;
4031
+ };
4032
+ export type EchoMessagePartQueryByEchoMessageIdArgs = {
4033
+ echoMessageId: Scalars['ID']['input'];
4034
+ };
4035
+ export type EchoMessagePartQueryByIdArgs = {
4036
+ id: Scalars['ID']['input'];
4037
+ };
4038
+ export declare enum EchoMessagePartType {
4039
+ Compaction = "COMPACTION",
4040
+ Data = "DATA",
4041
+ File = "FILE",
4042
+ Reasoning = "REASONING",
4043
+ Source = "SOURCE",
4044
+ Step = "STEP",
4045
+ Subtask = "SUBTASK",
4046
+ Text = "TEXT",
4047
+ Tool = "TOOL"
4048
+ }
4049
+ export type EchoMessageQuery = {
4050
+ __typename?: 'EchoMessageQuery';
4051
+ /** Get message by ID - entry point to the graph */
4052
+ byId?: Maybe<EchoMessage>;
4053
+ };
4054
+ export type EchoMessageQueryByIdArgs = {
4055
+ id: Scalars['ID']['input'];
4056
+ };
4057
+ /** Echo message role */
4058
+ export declare enum EchoMessageRole {
4059
+ Assistant = "ASSISTANT",
4060
+ User = "USER"
4061
+ }
4062
+ export type EchoProject = {
4063
+ __typename?: 'EchoProject';
4064
+ account: Account;
4065
+ createdByActor?: Maybe<Actor>;
4066
+ currentPreviewEchoVersion?: Maybe<EchoVersion>;
4067
+ description?: Maybe<Scalars['String']['output']>;
4068
+ displayName?: Maybe<Scalars['String']['output']>;
4069
+ echoChats: EchoChatConnection;
4070
+ echoVersions: EchoVersionConnection;
4071
+ githubInfo?: Maybe<EchoProjectGithubInfo>;
4072
+ icon?: Maybe<EchoProjectIcon>;
4073
+ id: Scalars['ID']['output'];
4074
+ initFromEchoProject?: Maybe<EchoProject>;
4075
+ initFromGitHubUrl?: Maybe<Scalars['String']['output']>;
4076
+ lastMessageAt?: Maybe<Scalars['DateTime']['output']>;
4077
+ slug?: Maybe<Scalars['String']['output']>;
4078
+ thumbnail?: Maybe<EchoProjectThumbnail>;
4079
+ updatedAt: Scalars['DateTime']['output'];
4080
+ visibility: EchoProjectVisibility;
4081
+ };
4082
+ export type EchoProjectEchoChatsArgs = {
4083
+ after?: InputMaybe<Scalars['String']['input']>;
4084
+ first?: InputMaybe<Scalars['Int']['input']>;
4085
+ };
4086
+ export type EchoProjectEchoVersionsArgs = {
4087
+ after?: InputMaybe<Scalars['String']['input']>;
4088
+ first?: InputMaybe<Scalars['Int']['input']>;
4089
+ };
4090
+ export type EchoProjectConnection = {
4091
+ __typename?: 'EchoProjectConnection';
4092
+ edges: Array<EchoProjectEdge>;
4093
+ pageInfo: PageInfo;
4094
+ };
4095
+ export type EchoProjectEdge = {
4096
+ __typename?: 'EchoProjectEdge';
4097
+ cursor: Scalars['String']['output'];
4098
+ node: EchoProject;
4099
+ };
4100
+ export type EchoProjectGitHubInfoInput = {
4101
+ accountType?: InputMaybe<Scalars['String']['input']>;
4102
+ branch: Scalars['String']['input'];
4103
+ installationId: Scalars['Int']['input'];
4104
+ repoName: Scalars['String']['input'];
4105
+ repoOwner: Scalars['String']['input'];
4106
+ repoUrl: Scalars['String']['input'];
4107
+ };
4108
+ export type EchoProjectGithubInfo = {
4109
+ __typename?: 'EchoProjectGithubInfo';
4110
+ accountType?: Maybe<Scalars['String']['output']>;
4111
+ branch: Scalars['String']['output'];
4112
+ installationId: Scalars['Int']['output'];
4113
+ repoName: Scalars['String']['output'];
4114
+ repoOwner: Scalars['String']['output'];
4115
+ repoUrl: Scalars['String']['output'];
4116
+ };
4117
+ export type EchoProjectIcon = {
4118
+ __typename?: 'EchoProjectIcon';
4119
+ accentColor?: Maybe<Scalars['String']['output']>;
4120
+ url: Scalars['String']['output'];
4121
+ };
4122
+ export type EchoProjectIconInput = {
4123
+ accentColor?: InputMaybe<Scalars['String']['input']>;
4124
+ url: Scalars['String']['input'];
4125
+ };
4126
+ export type EchoProjectMutation = {
4127
+ __typename?: 'EchoProjectMutation';
4128
+ /** Create a new Echo project */
4129
+ createEchoProject: EchoProject;
4130
+ /** Delete an Echo project by ID */
4131
+ deleteEchoProject: EchoProject;
4132
+ /** Update an Echo project */
4133
+ updateEchoProject: EchoProject;
4134
+ };
4135
+ export type EchoProjectMutationCreateEchoProjectArgs = {
4136
+ input: CreateEchoProjectInput;
4137
+ };
4138
+ export type EchoProjectMutationDeleteEchoProjectArgs = {
4139
+ id: Scalars['ID']['input'];
4140
+ };
4141
+ export type EchoProjectMutationUpdateEchoProjectArgs = {
4142
+ id: Scalars['ID']['input'];
4143
+ input: UpdateEchoProjectInput;
4144
+ };
4145
+ export type EchoProjectQuery = {
4146
+ __typename?: 'EchoProjectQuery';
4147
+ /** Get an Echo project by ID */
4148
+ byId?: Maybe<EchoProject>;
4149
+ /** Get an Echo project by slug (globally unique) */
4150
+ bySlug?: Maybe<EchoProject>;
4151
+ };
4152
+ export type EchoProjectQueryByIdArgs = {
4153
+ id: Scalars['ID']['input'];
4154
+ };
4155
+ export type EchoProjectQueryBySlugArgs = {
4156
+ slug: Scalars['String']['input'];
4157
+ };
4158
+ export type EchoProjectThumbnail = {
4159
+ __typename?: 'EchoProjectThumbnail';
4160
+ accentColor?: Maybe<Scalars['String']['output']>;
4161
+ height?: Maybe<Scalars['Int']['output']>;
4162
+ url: Scalars['String']['output'];
4163
+ visualHash?: Maybe<Scalars['String']['output']>;
4164
+ width?: Maybe<Scalars['Int']['output']>;
4165
+ };
4166
+ export type EchoProjectThumbnailInput = {
4167
+ accentColor?: InputMaybe<Scalars['String']['input']>;
4168
+ height?: InputMaybe<Scalars['Int']['input']>;
4169
+ url: Scalars['String']['input'];
4170
+ visualHash?: InputMaybe<Scalars['String']['input']>;
4171
+ width?: InputMaybe<Scalars['Int']['input']>;
4172
+ };
4173
+ export declare enum EchoProjectVisibility {
4174
+ Private = "PRIVATE",
4175
+ Public = "PUBLIC"
4176
+ }
4177
+ export type EchoVersion = {
4178
+ __typename?: 'EchoVersion';
4179
+ buildError?: Maybe<Scalars['String']['output']>;
4180
+ buildStatus: EchoBuildStatus;
4181
+ diffs: Scalars['JSON']['output'];
4182
+ /** Chat that created this version (optional) */
4183
+ echoChat?: Maybe<EchoChat>;
4184
+ /** Parent project */
4185
+ echoProject: EchoProject;
4186
+ gitBranch: Scalars['String']['output'];
4187
+ gitCommitHash?: Maybe<Scalars['String']['output']>;
4188
+ gitCommitMessage?: Maybe<Scalars['String']['output']>;
4189
+ id: Scalars['ID']['output'];
4190
+ previewDeployment?: Maybe<Scalars['JSONObject']['output']>;
4191
+ /** Version this was reverted from (if applicable) */
4192
+ revertedFromEchoVersion?: Maybe<EchoVersion>;
4193
+ source: EchoVersionSource;
4194
+ thumbnail?: Maybe<EchoVersionThumbnail>;
4195
+ /** Turn ID that created this version (UUID, optional) */
4196
+ turnId?: Maybe<Scalars['ID']['output']>;
4197
+ };
4198
+ export type EchoVersionConnection = {
4199
+ __typename?: 'EchoVersionConnection';
4200
+ edges: Array<EchoVersionEdge>;
4201
+ pageInfo: PageInfo;
4202
+ totalCount?: Maybe<Scalars['Int']['output']>;
4203
+ };
4204
+ export type EchoVersionEdge = {
4205
+ __typename?: 'EchoVersionEdge';
4206
+ cursor: Scalars['String']['output'];
4207
+ node: EchoVersion;
4208
+ };
4209
+ export type EchoVersionMutation = {
4210
+ __typename?: 'EchoVersionMutation';
4211
+ /** Create a new version */
4212
+ createVersion: EchoVersion;
4213
+ /** Update a version */
4214
+ updateVersion: EchoVersion;
4215
+ };
4216
+ export type EchoVersionMutationCreateVersionArgs = {
4217
+ input: CreateEchoVersionInput;
4218
+ };
4219
+ export type EchoVersionMutationUpdateVersionArgs = {
4220
+ id: Scalars['ID']['input'];
4221
+ input: UpdateEchoVersionInput;
4222
+ };
4223
+ export type EchoVersionQuery = {
4224
+ __typename?: 'EchoVersionQuery';
4225
+ /** Get version by ID - entry point to the graph */
4226
+ byId?: Maybe<EchoVersion>;
4227
+ };
4228
+ export type EchoVersionQueryByIdArgs = {
4229
+ id: Scalars['ID']['input'];
4230
+ };
4231
+ export declare enum EchoVersionSource {
4232
+ Agent = "AGENT",
4233
+ Github = "GITHUB",
4234
+ Manual = "MANUAL",
4235
+ Revert = "REVERT"
4236
+ }
4237
+ /** Visual metadata for version screenshots (thumbnail) */
4238
+ export type EchoVersionThumbnail = {
4239
+ __typename?: 'EchoVersionThumbnail';
4240
+ accentColor?: Maybe<Scalars['String']['output']>;
4241
+ height?: Maybe<Scalars['Int']['output']>;
4242
+ url: Scalars['String']['output'];
4243
+ visualHash?: Maybe<Scalars['String']['output']>;
4244
+ width?: Maybe<Scalars['Int']['output']>;
4245
+ };
4246
+ export type EchoVersionThumbnailInput = {
4247
+ accentColor?: InputMaybe<Scalars['String']['input']>;
4248
+ height?: InputMaybe<Scalars['Int']['input']>;
4249
+ url: Scalars['String']['input'];
4250
+ visualHash?: InputMaybe<Scalars['String']['input']>;
4251
+ width?: InputMaybe<Scalars['Int']['input']>;
4252
+ };
3698
4253
  export type EditUpdateBranchInput = {
3699
4254
  appId?: InputMaybe<Scalars['ID']['input']>;
3700
4255
  id?: InputMaybe<Scalars['ID']['input']>;
@@ -3722,17 +4277,25 @@ export declare enum EntityTypeName {
3722
4277
  BranchEntity = "BranchEntity",
3723
4278
  ChannelEntity = "ChannelEntity",
3724
4279
  CustomerEntity = "CustomerEntity",
4280
+ EchoChatEntity = "EchoChatEntity",
4281
+ EchoMessageEntity = "EchoMessageEntity",
4282
+ EchoMessagePartEntity = "EchoMessagePartEntity",
4283
+ EchoProjectEntity = "EchoProjectEntity",
4284
+ EchoVersionEntity = "EchoVersionEntity",
3725
4285
  GoogleServiceAccountKeyEntity = "GoogleServiceAccountKeyEntity",
3726
4286
  IosAppCredentialsEntity = "IosAppCredentialsEntity",
3727
4287
  LogRocketOrganizationEntity = "LogRocketOrganizationEntity",
3728
4288
  LogRocketProjectEntity = "LogRocketProjectEntity",
3729
4289
  UserInvitationEntity = "UserInvitationEntity",
3730
4290
  UserPermissionEntity = "UserPermissionEntity",
4291
+ VexoAccountConnectionEntity = "VexoAccountConnectionEntity",
4292
+ VexoAppEntity = "VexoAppEntity",
3731
4293
  WorkerCustomDomainEntity = "WorkerCustomDomainEntity",
3732
4294
  WorkerDeploymentAliasEntity = "WorkerDeploymentAliasEntity",
3733
4295
  WorkerEntity = "WorkerEntity",
3734
4296
  WorkflowEntity = "WorkflowEntity",
3735
- WorkflowRevisionEntity = "WorkflowRevisionEntity"
4297
+ WorkflowRevisionEntity = "WorkflowRevisionEntity",
4298
+ WorkflowScheduleEntity = "WorkflowScheduleEntity"
3736
4299
  }
3737
4300
  export type EnvironmentSecret = {
3738
4301
  __typename?: 'EnvironmentSecret';
@@ -3908,6 +4471,11 @@ export declare enum Experiment {
3908
4471
  }
3909
4472
  export type ExperimentationQuery = {
3910
4473
  __typename?: 'ExperimentationQuery';
4474
+ /**
4475
+ * Get account experimentation config for account-level A/B testing.
4476
+ * All users in the same account will be bucketed together.
4477
+ */
4478
+ accountConfig: Scalars['JSONObject']['output'];
3911
4479
  /** Get device experimentation config */
3912
4480
  deviceConfig: Scalars['JSONObject']['output'];
3913
4481
  /** Get experimentation unit to use for device experiments. In this case, it is the IP address. */
@@ -4999,17 +5567,6 @@ export type MeteredBillingStatus = {
4999
5567
  EAS_BUILD: Scalars['Boolean']['output'];
5000
5568
  EAS_UPDATE: Scalars['Boolean']['output'];
5001
5569
  };
5002
- export type MetricStatistics = {
5003
- __typename?: 'MetricStatistics';
5004
- average?: Maybe<Scalars['Float']['output']>;
5005
- count?: Maybe<Scalars['Int']['output']>;
5006
- max?: Maybe<Scalars['Float']['output']>;
5007
- median?: Maybe<Scalars['Float']['output']>;
5008
- min?: Maybe<Scalars['Float']['output']>;
5009
- p80?: Maybe<Scalars['Float']['output']>;
5010
- p95?: Maybe<Scalars['Float']['output']>;
5011
- p99?: Maybe<Scalars['Float']['output']>;
5012
- };
5013
5570
  export type Notification = {
5014
5571
  __typename?: 'Notification';
5015
5572
  accountName: Scalars['String']['output'];
@@ -5147,12 +5704,6 @@ export type PinnedDashboardView = {
5147
5704
  view: DashboardViewPin;
5148
5705
  };
5149
5706
  export type PlanEnablement = Concurrencies | EasTotalPlanEnablement;
5150
- export type PlatformMetrics = {
5151
- __typename?: 'PlatformMetrics';
5152
- category: Scalars['String']['output'];
5153
- name: Scalars['String']['output'];
5154
- statistics?: Maybe<MetricStatistics>;
5155
- };
5156
5707
  export type Project = {
5157
5708
  description: Scalars['String']['output'];
5158
5709
  fullName: Scalars['String']['output'];
@@ -5407,6 +5958,16 @@ export type RootMutation = {
5407
5958
  devDomainName: AppDevDomainNameMutation;
5408
5959
  /** Mutations for Discord users */
5409
5960
  discordUser: DiscordUserMutation;
5961
+ /** Mutations for Echo chats */
5962
+ echoChat: EchoChatMutation;
5963
+ /** Mutations for Echo messages */
5964
+ echoMessage: EchoMessageMutation;
5965
+ /** Mutations for Echo message parts */
5966
+ echoMessagePart: EchoMessagePartMutation;
5967
+ /** Mutations for Echo projects */
5968
+ echoProject: EchoProjectMutation;
5969
+ /** Mutations for Echo versions */
5970
+ echoVersion: EchoVersionMutation;
5410
5971
  /** Mutations that modify an EmailSubscription */
5411
5972
  emailSubscription: EmailSubscriptionMutation;
5412
5973
  /** Mutations that create and delete EnvironmentSecrets */
@@ -5540,6 +6101,16 @@ export type RootQuery = {
5540
6101
  channels: ChannelQuery;
5541
6102
  /** Top-level query object for querying Deployments. */
5542
6103
  deployments: DeploymentQuery;
6104
+ /** Top-level query object for querying Echo chats. */
6105
+ echoChat: EchoChatQuery;
6106
+ /** Top-level query object for querying Echo messages. */
6107
+ echoMessage: EchoMessageQuery;
6108
+ /** Top-level query object for querying Echo message parts. */
6109
+ echoMessagePart: EchoMessagePartQuery;
6110
+ /** Top-level query object for querying Echo projects. */
6111
+ echoProject: EchoProjectQuery;
6112
+ /** Top-level query object for querying Echo versions. */
6113
+ echoVersion: EchoVersionQuery;
5543
6114
  /** Top-level query object for querying Experimentation configuration. */
5544
6115
  experimentation: ExperimentationQuery;
5545
6116
  /** Top-level query object for querying GitHub App information and resources it has access to. */
@@ -6424,6 +6995,37 @@ export type UpdateDeploymentsConnection = {
6424
6995
  edges: Array<UpdateDeploymentEdge>;
6425
6996
  pageInfo: PageInfo;
6426
6997
  };
6998
+ export type UpdateEchoChatInput = {
6999
+ agentMetadata?: InputMaybe<Scalars['JSONObject']['input']>;
7000
+ agentType?: InputMaybe<EchoAgentType>;
7001
+ state?: InputMaybe<EchoChatState>;
7002
+ stats?: InputMaybe<Scalars['JSONObject']['input']>;
7003
+ title?: InputMaybe<Scalars['String']['input']>;
7004
+ };
7005
+ export type UpdateEchoMessagePartInput = {
7006
+ data: Scalars['JSONObject']['input'];
7007
+ };
7008
+ export type UpdateEchoProjectInput = {
7009
+ currentPreviewEchoVersionId?: InputMaybe<Scalars['ID']['input']>;
7010
+ description?: InputMaybe<Scalars['String']['input']>;
7011
+ displayName?: InputMaybe<Scalars['String']['input']>;
7012
+ githubInfo?: InputMaybe<EchoProjectGitHubInfoInput>;
7013
+ icon?: InputMaybe<EchoProjectIconInput>;
7014
+ initFromEchoProjectId?: InputMaybe<Scalars['ID']['input']>;
7015
+ initFromGitHubUrl?: InputMaybe<Scalars['String']['input']>;
7016
+ slug?: InputMaybe<Scalars['String']['input']>;
7017
+ thumbnail?: InputMaybe<EchoProjectThumbnailInput>;
7018
+ visibility?: InputMaybe<EchoProjectVisibility>;
7019
+ };
7020
+ export type UpdateEchoVersionInput = {
7021
+ buildError?: InputMaybe<Scalars['String']['input']>;
7022
+ buildStatus?: InputMaybe<EchoBuildStatus>;
7023
+ gitBranch?: InputMaybe<Scalars['String']['input']>;
7024
+ gitCommitHash?: InputMaybe<Scalars['String']['input']>;
7025
+ gitCommitMessage?: InputMaybe<Scalars['String']['input']>;
7026
+ previewDeployment?: InputMaybe<Scalars['JSONObject']['input']>;
7027
+ thumbnail?: InputMaybe<EchoVersionThumbnailInput>;
7028
+ };
6427
7029
  export type UpdateEnvironmentVariableInput = {
6428
7030
  environments?: InputMaybe<Array<Scalars['EnvironmentVariableEnvironment']['input']>>;
6429
7031
  fileName?: InputMaybe<Scalars['String']['input']>;
@@ -7091,6 +7693,8 @@ export type UserLogNameTypeMapping = {
7091
7693
  export type UserPermission = {
7092
7694
  __typename?: 'UserPermission';
7093
7695
  actor: Actor;
7696
+ /** Composite identifier for this account membership (accountId:actorId) */
7697
+ id: Scalars['ID']['output'];
7094
7698
  permissions: Array<Permission>;
7095
7699
  role: Role;
7096
7700
  /** @deprecated User type is deprecated */
@@ -8054,6 +8658,7 @@ export type WorkflowsInsightsMutationExportWorkflowRunsArgs = {
8054
8658
  export type WorkflowsInsightsOverviewMetrics = {
8055
8659
  __typename?: 'WorkflowsInsightsOverviewMetrics';
8056
8660
  activeWorkflows: WorkflowsInsightsMetric;
8661
+ canceledRuns: WorkflowsInsightsMetric;
8057
8662
  failedRuns: WorkflowsInsightsMetric;
8058
8663
  successfulRuns: WorkflowsInsightsMetric;
8059
8664
  totalRuns: WorkflowsInsightsMetric;
@@ -8083,6 +8688,7 @@ export type WorkflowsInsightsWorkflowEdge = {
8083
8688
  };
8084
8689
  export type WorkflowsInsightsWorkflowMetrics = {
8085
8690
  __typename?: 'WorkflowsInsightsWorkflowMetrics';
8691
+ canceledRuns: WorkflowsInsightsMetric;
8086
8692
  failedRuns: WorkflowsInsightsMetric;
8087
8693
  lastRunAt?: Maybe<Scalars['DateTime']['output']>;
8088
8694
  successfulRuns: WorkflowsInsightsMetric;
@@ -8090,6 +8696,7 @@ export type WorkflowsInsightsWorkflowMetrics = {
8090
8696
  };
8091
8697
  export type WorkflowsInsightsWorkflowNode = {
8092
8698
  __typename?: 'WorkflowsInsightsWorkflowNode';
8699
+ canceledRuns: Scalars['Int']['output'];
8093
8700
  failedRuns: Scalars['Int']['output'];
8094
8701
  lastRunAt: Scalars['DateTime']['output'];
8095
8702
  name: Scalars['String']['output'];
@@ -13038,6 +13645,211 @@ export type CancelWorkflowRunMutation = {
13038
13645
  };
13039
13646
  };
13040
13647
  };
13648
+ export type AccountByNameQueryVariables = Exact<{
13649
+ accountName: Scalars['String']['input'];
13650
+ }>;
13651
+ export type AccountByNameQuery = {
13652
+ __typename?: 'RootQuery';
13653
+ account: {
13654
+ __typename?: 'AccountQuery';
13655
+ byName: {
13656
+ __typename?: 'Account';
13657
+ id: string;
13658
+ name: string;
13659
+ };
13660
+ };
13661
+ };
13662
+ export type AccountFullUsageQueryVariables = Exact<{
13663
+ accountId: Scalars['String']['input'];
13664
+ currentDate: Scalars['DateTime']['input'];
13665
+ startDate: Scalars['DateTime']['input'];
13666
+ endDate: Scalars['DateTime']['input'];
13667
+ }>;
13668
+ export type AccountFullUsageQuery = {
13669
+ __typename?: 'RootQuery';
13670
+ account: {
13671
+ __typename?: 'AccountQuery';
13672
+ byId: {
13673
+ __typename?: 'Account';
13674
+ id: string;
13675
+ name: string;
13676
+ subscription?: {
13677
+ __typename?: 'SubscriptionDetails';
13678
+ id: string;
13679
+ name?: string | null;
13680
+ status?: string | null;
13681
+ nextInvoice?: any | null;
13682
+ nextInvoiceAmountDueCents?: number | null;
13683
+ recurringCents?: number | null;
13684
+ price: number;
13685
+ concurrencies?: {
13686
+ __typename?: 'Concurrencies';
13687
+ total: number;
13688
+ android: number;
13689
+ ios: number;
13690
+ } | null;
13691
+ addons: Array<{
13692
+ __typename?: 'AddonDetails';
13693
+ id: string;
13694
+ name: string;
13695
+ quantity?: number | null;
13696
+ }>;
13697
+ upcomingInvoice?: {
13698
+ __typename?: 'Invoice';
13699
+ id: string;
13700
+ total: number;
13701
+ lineItems: Array<{
13702
+ __typename?: 'InvoiceLineItem';
13703
+ id: string;
13704
+ description: string;
13705
+ amount: number;
13706
+ period: {
13707
+ __typename?: 'InvoicePeriod';
13708
+ start: any;
13709
+ end: any;
13710
+ };
13711
+ }>;
13712
+ } | null;
13713
+ } | null;
13714
+ billingPeriod: {
13715
+ __typename?: 'BillingPeriod';
13716
+ id: string;
13717
+ start: any;
13718
+ end: any;
13719
+ anchor: any;
13720
+ };
13721
+ usageMetrics: {
13722
+ __typename?: 'AccountUsageMetrics';
13723
+ MEDIUM_ANDROID_BUILDS: Array<{
13724
+ __typename?: 'AccountUsageMetric';
13725
+ id: string;
13726
+ serviceMetric: EasServiceMetric;
13727
+ metricType: UsageMetricType;
13728
+ value: number;
13729
+ }>;
13730
+ LARGE_ANDROID_BUILDS: Array<{
13731
+ __typename?: 'AccountUsageMetric';
13732
+ id: string;
13733
+ serviceMetric: EasServiceMetric;
13734
+ metricType: UsageMetricType;
13735
+ value: number;
13736
+ }>;
13737
+ MEDIUM_IOS_BUILDS: Array<{
13738
+ __typename?: 'AccountUsageMetric';
13739
+ id: string;
13740
+ serviceMetric: EasServiceMetric;
13741
+ metricType: UsageMetricType;
13742
+ value: number;
13743
+ }>;
13744
+ LARGE_IOS_BUILDS: Array<{
13745
+ __typename?: 'AccountUsageMetric';
13746
+ id: string;
13747
+ serviceMetric: EasServiceMetric;
13748
+ metricType: UsageMetricType;
13749
+ value: number;
13750
+ }>;
13751
+ EAS_BUILD: {
13752
+ __typename?: 'UsageMetricTotal';
13753
+ id: string;
13754
+ totalCost: number;
13755
+ billingPeriod: {
13756
+ __typename?: 'BillingPeriod';
13757
+ id: string;
13758
+ start: any;
13759
+ end: any;
13760
+ anchor: any;
13761
+ };
13762
+ planMetrics: Array<{
13763
+ __typename?: 'EstimatedUsage';
13764
+ id: string;
13765
+ service: EasService;
13766
+ serviceMetric: EasServiceMetric;
13767
+ metricType: UsageMetricType;
13768
+ value: number;
13769
+ limit: number;
13770
+ platformBreakdown?: {
13771
+ __typename?: 'EstimatedUsagePlatformBreakdown';
13772
+ ios: {
13773
+ __typename?: 'EstimatedUsagePlatformDetail';
13774
+ value: number;
13775
+ limit: number;
13776
+ };
13777
+ android: {
13778
+ __typename?: 'EstimatedUsagePlatformDetail';
13779
+ value: number;
13780
+ limit: number;
13781
+ };
13782
+ } | null;
13783
+ }>;
13784
+ overageMetrics: Array<{
13785
+ __typename?: 'EstimatedOverageAndCost';
13786
+ id: string;
13787
+ service: EasService;
13788
+ serviceMetric: EasServiceMetric;
13789
+ metricType: UsageMetricType;
13790
+ value: number;
13791
+ limit: number;
13792
+ totalCost: number;
13793
+ metadata?: {
13794
+ __typename?: 'AccountUsageEASBuildMetadata';
13795
+ billingResourceClass?: EasBuildBillingResourceClass | null;
13796
+ platform?: AppPlatform | null;
13797
+ } | null;
13798
+ }>;
13799
+ };
13800
+ EAS_UPDATE: {
13801
+ __typename?: 'UsageMetricTotal';
13802
+ id: string;
13803
+ totalCost: number;
13804
+ billingPeriod: {
13805
+ __typename?: 'BillingPeriod';
13806
+ id: string;
13807
+ start: any;
13808
+ end: any;
13809
+ anchor: any;
13810
+ };
13811
+ planMetrics: Array<{
13812
+ __typename?: 'EstimatedUsage';
13813
+ id: string;
13814
+ service: EasService;
13815
+ serviceMetric: EasServiceMetric;
13816
+ metricType: UsageMetricType;
13817
+ value: number;
13818
+ limit: number;
13819
+ platformBreakdown?: {
13820
+ __typename?: 'EstimatedUsagePlatformBreakdown';
13821
+ ios: {
13822
+ __typename?: 'EstimatedUsagePlatformDetail';
13823
+ value: number;
13824
+ limit: number;
13825
+ };
13826
+ android: {
13827
+ __typename?: 'EstimatedUsagePlatformDetail';
13828
+ value: number;
13829
+ limit: number;
13830
+ };
13831
+ } | null;
13832
+ }>;
13833
+ overageMetrics: Array<{
13834
+ __typename?: 'EstimatedOverageAndCost';
13835
+ id: string;
13836
+ service: EasService;
13837
+ serviceMetric: EasServiceMetric;
13838
+ metricType: UsageMetricType;
13839
+ value: number;
13840
+ limit: number;
13841
+ totalCost: number;
13842
+ metadata?: {
13843
+ __typename?: 'AccountUsageEASBuildMetadata';
13844
+ billingResourceClass?: EasBuildBillingResourceClass | null;
13845
+ platform?: AppPlatform | null;
13846
+ } | null;
13847
+ }>;
13848
+ };
13849
+ };
13850
+ };
13851
+ };
13852
+ };
13041
13853
  export type AccountUsageForOverageWarningQueryVariables = Exact<{
13042
13854
  accountId: Scalars['String']['input'];
13043
13855
  currentDate: Scalars['DateTime']['input'];
@@ -13072,6 +13884,28 @@ export type AccountUsageForOverageWarningQuery = {
13072
13884
  };
13073
13885
  };
13074
13886
  };
13887
+ export type AccountBillingPeriodQueryVariables = Exact<{
13888
+ accountId: Scalars['String']['input'];
13889
+ currentDate: Scalars['DateTime']['input'];
13890
+ }>;
13891
+ export type AccountBillingPeriodQuery = {
13892
+ __typename?: 'RootQuery';
13893
+ account: {
13894
+ __typename?: 'AccountQuery';
13895
+ byId: {
13896
+ __typename?: 'Account';
13897
+ id: string;
13898
+ name: string;
13899
+ billingPeriod: {
13900
+ __typename?: 'BillingPeriod';
13901
+ id: string;
13902
+ start: any;
13903
+ end: any;
13904
+ anchor: any;
13905
+ };
13906
+ };
13907
+ };
13908
+ };
13075
13909
  export type AppByIdQueryVariables = Exact<{
13076
13910
  appId: Scalars['String']['input'];
13077
13911
  }>;
@@ -15598,6 +16432,196 @@ export type AccountFragment = {
15598
16432
  };
15599
16433
  }>;
15600
16434
  };
16435
+ export type InvoiceLineItemFragment = {
16436
+ __typename?: 'InvoiceLineItem';
16437
+ id: string;
16438
+ description: string;
16439
+ amount: number;
16440
+ period: {
16441
+ __typename?: 'InvoicePeriod';
16442
+ start: any;
16443
+ end: any;
16444
+ };
16445
+ };
16446
+ export type InvoiceFragment = {
16447
+ __typename?: 'Invoice';
16448
+ id: string;
16449
+ total: number;
16450
+ lineItems: Array<{
16451
+ __typename?: 'InvoiceLineItem';
16452
+ id: string;
16453
+ description: string;
16454
+ amount: number;
16455
+ period: {
16456
+ __typename?: 'InvoicePeriod';
16457
+ start: any;
16458
+ end: any;
16459
+ };
16460
+ }>;
16461
+ };
16462
+ export type ConcurrenciesFragment = {
16463
+ __typename?: 'Concurrencies';
16464
+ total: number;
16465
+ android: number;
16466
+ ios: number;
16467
+ };
16468
+ export type AddonDetailsFragment = {
16469
+ __typename?: 'AddonDetails';
16470
+ id: string;
16471
+ name: string;
16472
+ quantity?: number | null;
16473
+ };
16474
+ export type SubscriptionDetailsFragment = {
16475
+ __typename?: 'SubscriptionDetails';
16476
+ id: string;
16477
+ name?: string | null;
16478
+ status?: string | null;
16479
+ nextInvoice?: any | null;
16480
+ nextInvoiceAmountDueCents?: number | null;
16481
+ recurringCents?: number | null;
16482
+ price: number;
16483
+ concurrencies?: {
16484
+ __typename?: 'Concurrencies';
16485
+ total: number;
16486
+ android: number;
16487
+ ios: number;
16488
+ } | null;
16489
+ addons: Array<{
16490
+ __typename?: 'AddonDetails';
16491
+ id: string;
16492
+ name: string;
16493
+ quantity?: number | null;
16494
+ }>;
16495
+ upcomingInvoice?: {
16496
+ __typename?: 'Invoice';
16497
+ id: string;
16498
+ total: number;
16499
+ lineItems: Array<{
16500
+ __typename?: 'InvoiceLineItem';
16501
+ id: string;
16502
+ description: string;
16503
+ amount: number;
16504
+ period: {
16505
+ __typename?: 'InvoicePeriod';
16506
+ start: any;
16507
+ end: any;
16508
+ };
16509
+ }>;
16510
+ } | null;
16511
+ };
16512
+ export type BillingPeriodFragment = {
16513
+ __typename?: 'BillingPeriod';
16514
+ id: string;
16515
+ start: any;
16516
+ end: any;
16517
+ anchor: any;
16518
+ };
16519
+ export type EstimatedUsagePlatformBreakdownFragment = {
16520
+ __typename?: 'EstimatedUsagePlatformBreakdown';
16521
+ ios: {
16522
+ __typename?: 'EstimatedUsagePlatformDetail';
16523
+ value: number;
16524
+ limit: number;
16525
+ };
16526
+ android: {
16527
+ __typename?: 'EstimatedUsagePlatformDetail';
16528
+ value: number;
16529
+ limit: number;
16530
+ };
16531
+ };
16532
+ export type EstimatedUsageFragment = {
16533
+ __typename?: 'EstimatedUsage';
16534
+ id: string;
16535
+ service: EasService;
16536
+ serviceMetric: EasServiceMetric;
16537
+ metricType: UsageMetricType;
16538
+ value: number;
16539
+ limit: number;
16540
+ platformBreakdown?: {
16541
+ __typename?: 'EstimatedUsagePlatformBreakdown';
16542
+ ios: {
16543
+ __typename?: 'EstimatedUsagePlatformDetail';
16544
+ value: number;
16545
+ limit: number;
16546
+ };
16547
+ android: {
16548
+ __typename?: 'EstimatedUsagePlatformDetail';
16549
+ value: number;
16550
+ limit: number;
16551
+ };
16552
+ } | null;
16553
+ };
16554
+ export type EstimatedOverageAndCostFragment = {
16555
+ __typename?: 'EstimatedOverageAndCost';
16556
+ id: string;
16557
+ service: EasService;
16558
+ serviceMetric: EasServiceMetric;
16559
+ metricType: UsageMetricType;
16560
+ value: number;
16561
+ limit: number;
16562
+ totalCost: number;
16563
+ metadata?: {
16564
+ __typename?: 'AccountUsageEASBuildMetadata';
16565
+ billingResourceClass?: EasBuildBillingResourceClass | null;
16566
+ platform?: AppPlatform | null;
16567
+ } | null;
16568
+ };
16569
+ export type UsageMetricTotalFragment = {
16570
+ __typename?: 'UsageMetricTotal';
16571
+ id: string;
16572
+ totalCost: number;
16573
+ billingPeriod: {
16574
+ __typename?: 'BillingPeriod';
16575
+ id: string;
16576
+ start: any;
16577
+ end: any;
16578
+ anchor: any;
16579
+ };
16580
+ planMetrics: Array<{
16581
+ __typename?: 'EstimatedUsage';
16582
+ id: string;
16583
+ service: EasService;
16584
+ serviceMetric: EasServiceMetric;
16585
+ metricType: UsageMetricType;
16586
+ value: number;
16587
+ limit: number;
16588
+ platformBreakdown?: {
16589
+ __typename?: 'EstimatedUsagePlatformBreakdown';
16590
+ ios: {
16591
+ __typename?: 'EstimatedUsagePlatformDetail';
16592
+ value: number;
16593
+ limit: number;
16594
+ };
16595
+ android: {
16596
+ __typename?: 'EstimatedUsagePlatformDetail';
16597
+ value: number;
16598
+ limit: number;
16599
+ };
16600
+ } | null;
16601
+ }>;
16602
+ overageMetrics: Array<{
16603
+ __typename?: 'EstimatedOverageAndCost';
16604
+ id: string;
16605
+ service: EasService;
16606
+ serviceMetric: EasServiceMetric;
16607
+ metricType: UsageMetricType;
16608
+ value: number;
16609
+ limit: number;
16610
+ totalCost: number;
16611
+ metadata?: {
16612
+ __typename?: 'AccountUsageEASBuildMetadata';
16613
+ billingResourceClass?: EasBuildBillingResourceClass | null;
16614
+ platform?: AppPlatform | null;
16615
+ } | null;
16616
+ }>;
16617
+ };
16618
+ export type AccountUsageMetricFragment = {
16619
+ __typename?: 'AccountUsageMetric';
16620
+ id: string;
16621
+ serviceMetric: EasServiceMetric;
16622
+ metricType: UsageMetricType;
16623
+ value: number;
16624
+ };
15601
16625
  export type AppFragment = {
15602
16626
  __typename?: 'App';
15603
16627
  id: string;