@forge/cli-shared 8.9.0-next.9 → 8.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +96 -0
- package/out/apps/create-an-app.d.ts +1 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +2 -2
- package/out/apps/register-app.d.ts +1 -0
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +1 -1
- package/out/graphql/graphql-types.d.ts +945 -110
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +98 -60
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +9 -5
- package/out/ui/text.d.ts +5 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +11 -7
- package/package.json +2 -2
|
@@ -549,6 +549,7 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
549
549
|
fromTemplate: Scalars['String']['input'];
|
|
550
550
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
551
551
|
productWorkspaceList?: InputMaybe<Array<AvpProductWorkspaceMapEntry>>;
|
|
552
|
+
templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
|
|
552
553
|
templateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
553
554
|
};
|
|
554
555
|
export declare type AvpDatasourceLocator = {
|
|
@@ -603,14 +604,6 @@ export declare type AvpEnvVar = {
|
|
|
603
604
|
name?: Maybe<Scalars['String']['output']>;
|
|
604
605
|
operator?: Maybe<Scalars['String']['output']>;
|
|
605
606
|
};
|
|
606
|
-
export declare enum AvpEnvVarChartType {
|
|
607
|
-
Calendar = "CALENDAR",
|
|
608
|
-
CategoricalDropdown = "CATEGORICAL_DROPDOWN",
|
|
609
|
-
DateBucket = "DATE_BUCKET",
|
|
610
|
-
DateSlider = "DATE_SLIDER",
|
|
611
|
-
InputWidget = "INPUT_WIDGET",
|
|
612
|
-
RangeInput = "RANGE_INPUT"
|
|
613
|
-
}
|
|
614
607
|
export declare enum AvpEnvVarDataType {
|
|
615
608
|
Boolean = "BOOLEAN",
|
|
616
609
|
Date = "DATE",
|
|
@@ -638,11 +631,6 @@ export declare type AvpFilterEnvVarInput = {
|
|
|
638
631
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
639
632
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
640
633
|
};
|
|
641
|
-
export declare type AvpFilterResponse = {
|
|
642
|
-
__typename?: 'AVPFilterResponse';
|
|
643
|
-
chart?: Maybe<AvpChart>;
|
|
644
|
-
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
645
|
-
};
|
|
646
634
|
export declare type AvpGetDashboardTemplatesInput = {
|
|
647
635
|
cloudId: Scalars['ID']['input'];
|
|
648
636
|
productKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -739,6 +727,42 @@ export declare type AvpMoveDashboardRowPayload = Payload & {
|
|
|
739
727
|
errors?: Maybe<Array<MutationError>>;
|
|
740
728
|
success: Scalars['Boolean']['output'];
|
|
741
729
|
};
|
|
730
|
+
export declare type AvpPermissionsDashboardUserAccess = {
|
|
731
|
+
accessLevel: AvpPermissionsDashboardUserAccessLevel;
|
|
732
|
+
accountId: Scalars['String']['input'];
|
|
733
|
+
};
|
|
734
|
+
export declare enum AvpPermissionsDashboardUserAccessLevel {
|
|
735
|
+
Manage = "MANAGE",
|
|
736
|
+
Read = "READ"
|
|
737
|
+
}
|
|
738
|
+
export declare type AvpPermissionsDashboardUserAccessResult = {
|
|
739
|
+
__typename?: 'AVPPermissionsDashboardUserAccessResult';
|
|
740
|
+
accessLevel: AvpPermissionsDashboardUserAccessLevel;
|
|
741
|
+
accountId: Scalars['String']['output'];
|
|
742
|
+
};
|
|
743
|
+
export declare type AvpPermissionsFailedDashboardUserAccess = {
|
|
744
|
+
__typename?: 'AVPPermissionsFailedDashboardUserAccess';
|
|
745
|
+
errorMessage: Scalars['String']['output'];
|
|
746
|
+
user: AvpPermissionsDashboardUserAccessResult;
|
|
747
|
+
};
|
|
748
|
+
export declare type AvpPermissionsHelloResponse = {
|
|
749
|
+
__typename?: 'AVPPermissionsHelloResponse';
|
|
750
|
+
hello?: Maybe<Scalars['String']['output']>;
|
|
751
|
+
};
|
|
752
|
+
export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
|
|
753
|
+
cloudId: Scalars['ID']['input'];
|
|
754
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
755
|
+
dashboardId: Scalars['ID']['input'];
|
|
756
|
+
users: Array<AvpPermissionsDashboardUserAccess>;
|
|
757
|
+
workspaceId: Scalars['ID']['input'];
|
|
758
|
+
};
|
|
759
|
+
export declare type AvpPermissionsUpdateDashboardUserAccessPayload = {
|
|
760
|
+
__typename?: 'AVPPermissionsUpdateDashboardUserAccessPayload';
|
|
761
|
+
errors?: Maybe<Array<MutationError>>;
|
|
762
|
+
failedUsers?: Maybe<Array<AvpPermissionsFailedDashboardUserAccess>>;
|
|
763
|
+
success: Scalars['Boolean']['output'];
|
|
764
|
+
updatedUsers?: Maybe<Array<AvpPermissionsDashboardUserAccessResult>>;
|
|
765
|
+
};
|
|
742
766
|
export declare type AvpProductWorkspaceMapEntry = {
|
|
743
767
|
product: Scalars['String']['input'];
|
|
744
768
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -769,6 +793,10 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
|
769
793
|
errors?: Maybe<Array<MutationError>>;
|
|
770
794
|
success: Scalars['Boolean']['output'];
|
|
771
795
|
};
|
|
796
|
+
export declare type AvpTemplatePlaceholderReplacement = {
|
|
797
|
+
placeholderName: Scalars['String']['input'];
|
|
798
|
+
replacementValue: Scalars['String']['input'];
|
|
799
|
+
};
|
|
772
800
|
export declare type AvpToggleCanvasElementExpandedInput = {
|
|
773
801
|
dashboardAri: Scalars['ID']['input'];
|
|
774
802
|
elementId: Scalars['ID']['input'];
|
|
@@ -1843,6 +1871,11 @@ export declare type AdminIcon = {
|
|
|
1843
1871
|
name: Scalars['String']['output'];
|
|
1844
1872
|
value: Scalars['String']['output'];
|
|
1845
1873
|
};
|
|
1874
|
+
export declare enum AdminIdentityProviderPublicCertificateExpiryStatus {
|
|
1875
|
+
Expired = "EXPIRED",
|
|
1876
|
+
ExpiringSoon = "EXPIRING_SOON",
|
|
1877
|
+
Valid = "VALID"
|
|
1878
|
+
}
|
|
1846
1879
|
export declare type AdminImpersonateUserInput = {
|
|
1847
1880
|
accountId: Scalars['String']['input'];
|
|
1848
1881
|
directoryId: Scalars['String']['input'];
|
|
@@ -1990,9 +2023,16 @@ export declare type AdminLicenseDataEdge = {
|
|
|
1990
2023
|
cursor: Scalars['String']['output'];
|
|
1991
2024
|
node: AdminLicenseData;
|
|
1992
2025
|
};
|
|
2026
|
+
export declare type AdminLicenseGroupInput = {
|
|
2027
|
+
groupId: Scalars['String']['input'];
|
|
2028
|
+
resourceIds: Array<Scalars['String']['input']>;
|
|
2029
|
+
};
|
|
1993
2030
|
export declare type AdminLicenseInput = {
|
|
1994
|
-
|
|
1995
|
-
|
|
2031
|
+
groups?: InputMaybe<Array<AdminLicenseGroupInput>>;
|
|
2032
|
+
resources?: InputMaybe<Array<AdminLicenseResourceInput>>;
|
|
2033
|
+
};
|
|
2034
|
+
export declare type AdminLicenseResourceInput = {
|
|
2035
|
+
resourceId: Scalars['String']['input'];
|
|
1996
2036
|
};
|
|
1997
2037
|
export declare type AdminLimit = {
|
|
1998
2038
|
__typename?: 'AdminLimit';
|
|
@@ -2120,6 +2160,23 @@ export declare type AdminRoleIdCounts = {
|
|
|
2120
2160
|
count: Scalars['Int']['output'];
|
|
2121
2161
|
roleId: Scalars['String']['output'];
|
|
2122
2162
|
};
|
|
2163
|
+
export declare type AdminSamlConfiguration = {
|
|
2164
|
+
__typename?: 'AdminSamlConfiguration';
|
|
2165
|
+
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
2166
|
+
samlConfiguration: AdminSamlConfigurationDetails;
|
|
2167
|
+
samlConfigurationId: Scalars['ID']['output'];
|
|
2168
|
+
};
|
|
2169
|
+
export declare type AdminSamlConfigurationDetails = {
|
|
2170
|
+
__typename?: 'AdminSamlConfigurationDetails';
|
|
2171
|
+
assertionConsumerServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
2172
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
2173
|
+
identityProviderPublicCertificate: Scalars['String']['output'];
|
|
2174
|
+
identityProviderPublicCertificateExpirationTimestamp?: Maybe<Scalars['String']['output']>;
|
|
2175
|
+
identityProviderPublicCertificateExpiryStatus?: Maybe<AdminIdentityProviderPublicCertificateExpiryStatus>;
|
|
2176
|
+
issuer: Scalars['String']['output'];
|
|
2177
|
+
serviceProviderSingleLogoutConfiguration?: Maybe<AdminServiceProviderSingleLogoutConfiguration>;
|
|
2178
|
+
singleSignOnUrl: Scalars['String']['output'];
|
|
2179
|
+
};
|
|
2123
2180
|
export declare type AdminSandbox = {
|
|
2124
2181
|
__typename?: 'AdminSandbox';
|
|
2125
2182
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2167,6 +2224,15 @@ export declare type AdminSeats = {
|
|
|
2167
2224
|
__typename?: 'AdminSeats';
|
|
2168
2225
|
usageInfo?: Maybe<AdminUsageInfo>;
|
|
2169
2226
|
};
|
|
2227
|
+
export declare type AdminServiceProviderSingleLogoutConfiguration = {
|
|
2228
|
+
__typename?: 'AdminServiceProviderSingleLogoutConfiguration';
|
|
2229
|
+
identityProviderUrl: Scalars['String']['output'];
|
|
2230
|
+
serviceProviderPublicCertificate?: Maybe<Scalars['String']['output']>;
|
|
2231
|
+
serviceProviderPublicCertificateExpiry?: Maybe<Scalars['String']['output']>;
|
|
2232
|
+
serviceProviderPublicCertificateId?: Maybe<Scalars['String']['output']>;
|
|
2233
|
+
serviceProviderUrl: Scalars['String']['output'];
|
|
2234
|
+
singleLogoutEnabled: Scalars['Boolean']['output'];
|
|
2235
|
+
};
|
|
2170
2236
|
export declare type AdminSingle = {
|
|
2171
2237
|
primitive?: InputMaybe<AdminPrimitive>;
|
|
2172
2238
|
};
|
|
@@ -2785,10 +2851,12 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
2785
2851
|
};
|
|
2786
2852
|
export declare type AgentStudioDataset = {
|
|
2787
2853
|
__typename?: 'AgentStudioDataset';
|
|
2854
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
2788
2855
|
createdAt: Scalars['String']['output'];
|
|
2789
2856
|
id: Scalars['ID']['output'];
|
|
2790
2857
|
name: Scalars['String']['output'];
|
|
2791
2858
|
projectId: Scalars['String']['output'];
|
|
2859
|
+
updatedAt: Scalars['String']['output'];
|
|
2792
2860
|
};
|
|
2793
2861
|
export declare type AgentStudioDatasetEdge = {
|
|
2794
2862
|
__typename?: 'AgentStudioDatasetEdge';
|
|
@@ -2932,7 +3000,8 @@ export declare enum AgentStudioJobRunStatus {
|
|
|
2932
3000
|
Completed = "COMPLETED",
|
|
2933
3001
|
Failed = "FAILED",
|
|
2934
3002
|
Pending = "PENDING",
|
|
2935
|
-
Running = "RUNNING"
|
|
3003
|
+
Running = "RUNNING",
|
|
3004
|
+
Timeout = "TIMEOUT"
|
|
2936
3005
|
}
|
|
2937
3006
|
export declare type AgentStudioJsmKnowledgeFilter = {
|
|
2938
3007
|
__typename?: 'AgentStudioJsmKnowledgeFilter';
|
|
@@ -3468,6 +3537,7 @@ export declare enum ApiContext {
|
|
|
3468
3537
|
}
|
|
3469
3538
|
export declare enum ApiGroup {
|
|
3470
3539
|
Actions = "ACTIONS",
|
|
3540
|
+
AdminUnit = "ADMIN_UNIT",
|
|
3471
3541
|
AgentStudio = "AGENT_STUDIO",
|
|
3472
3542
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
3473
3543
|
AtlassianStudio = "ATLASSIAN_STUDIO",
|
|
@@ -3899,6 +3969,7 @@ export declare type AppFeaturesExposedCredentialsInput = {
|
|
|
3899
3969
|
export declare type AppFeaturesInput = {
|
|
3900
3970
|
hasCustomLifecycle?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3901
3971
|
hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
|
|
3972
|
+
hasResourceRestrictedToken?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3902
3973
|
};
|
|
3903
3974
|
export declare type AppHostService = {
|
|
3904
3975
|
__typename?: 'AppHostService';
|
|
@@ -4108,7 +4179,7 @@ export declare type AppInstallationsFilter = {
|
|
|
4108
4179
|
appId: Scalars['ID']['input'];
|
|
4109
4180
|
environmentType?: InputMaybe<AppEnvironmentType>;
|
|
4110
4181
|
};
|
|
4111
|
-
export declare type AppLog = FunctionInvocationMetadata &
|
|
4182
|
+
export declare type AppLog = FunctionInvocationMetadata & {
|
|
4112
4183
|
__typename?: 'AppLog';
|
|
4113
4184
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
4114
4185
|
appVersion: Scalars['String']['output'];
|
|
@@ -5414,6 +5485,10 @@ export declare type AssetsDmDataSourceMergeGetByObjectIdResponse = {
|
|
|
5414
5485
|
step: Scalars['Int']['output'];
|
|
5415
5486
|
tenantId: Scalars['String']['output'];
|
|
5416
5487
|
};
|
|
5488
|
+
export declare type AssetsDmDataSourceMergeIsImportProgressingResponse = {
|
|
5489
|
+
__typename?: 'AssetsDMDataSourceMergeIsImportProgressingResponse';
|
|
5490
|
+
inProgress: Scalars['Boolean']['output'];
|
|
5491
|
+
};
|
|
5417
5492
|
export declare type AssetsDmDataSourceMergeObjectAttribute = {
|
|
5418
5493
|
__typename?: 'AssetsDMDataSourceMergeObjectAttribute';
|
|
5419
5494
|
dataType: Scalars['Int']['output'];
|
|
@@ -7128,6 +7203,7 @@ export declare enum CcpBillingInterval {
|
|
|
7128
7203
|
export declare type CcpBillingPeriodDetails = {
|
|
7129
7204
|
__typename?: 'CcpBillingPeriodDetails';
|
|
7130
7205
|
billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
7206
|
+
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
7131
7207
|
nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
7132
7208
|
};
|
|
7133
7209
|
export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
@@ -9370,6 +9446,7 @@ export declare type ChannelPlatformTranscriptEntry = {
|
|
|
9370
9446
|
};
|
|
9371
9447
|
export declare type ChannelPlatformTranscriptRequest = {
|
|
9372
9448
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
9449
|
+
isStaleTolerant?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9373
9450
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
9374
9451
|
role?: InputMaybe<ChannelPlatformRole>;
|
|
9375
9452
|
startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10761,6 +10838,7 @@ export declare type CompassComponent = Node & {
|
|
|
10761
10838
|
id: Scalars['ID']['output'];
|
|
10762
10839
|
labels?: Maybe<Array<CompassComponentLabel>>;
|
|
10763
10840
|
links?: Maybe<Array<CompassLink>>;
|
|
10841
|
+
logs?: Maybe<CompassComponentLogConnection>;
|
|
10764
10842
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
10765
10843
|
name: Scalars['String']['output'];
|
|
10766
10844
|
onCallSchedules?: Maybe<CompassComponentOnCallScheduleConnection>;
|
|
@@ -10792,6 +10870,10 @@ export declare type CompassComponentDeactivatedScorecardsArgs = {
|
|
|
10792
10870
|
export declare type CompassComponentEventsArgs = {
|
|
10793
10871
|
query?: InputMaybe<CompassEventsQuery>;
|
|
10794
10872
|
};
|
|
10873
|
+
export declare type CompassComponentLogsArgs = {
|
|
10874
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10876
|
+
};
|
|
10795
10877
|
export declare type CompassComponentMetricSourcesArgs = {
|
|
10796
10878
|
query?: InputMaybe<CompassComponentMetricSourcesQuery>;
|
|
10797
10879
|
};
|
|
@@ -11036,6 +11118,23 @@ export declare type CompassComponentLabel = {
|
|
|
11036
11118
|
name?: Maybe<Scalars['String']['output']>;
|
|
11037
11119
|
};
|
|
11038
11120
|
export declare type CompassComponentLabelsQueryResult = CompassSearchComponentLabelsConnection | QueryError;
|
|
11121
|
+
export declare type CompassComponentLog = {
|
|
11122
|
+
__typename?: 'CompassComponentLog';
|
|
11123
|
+
action: Scalars['String']['output'];
|
|
11124
|
+
actor: Scalars['ID']['output'];
|
|
11125
|
+
componentId: Scalars['ID']['output'];
|
|
11126
|
+
discoveryStrategy?: Maybe<Scalars['String']['output']>;
|
|
11127
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
11128
|
+
id: Scalars['ID']['output'];
|
|
11129
|
+
source?: Maybe<CompassAutoPopulationSource>;
|
|
11130
|
+
timestamp: Scalars['DateTime']['output'];
|
|
11131
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
11132
|
+
};
|
|
11133
|
+
export declare type CompassComponentLogConnection = {
|
|
11134
|
+
__typename?: 'CompassComponentLogConnection';
|
|
11135
|
+
nodes?: Maybe<Array<CompassComponentLog>>;
|
|
11136
|
+
pageInfo: PageInfo;
|
|
11137
|
+
};
|
|
11039
11138
|
export declare type CompassComponentMetricSourcesConnection = {
|
|
11040
11139
|
__typename?: 'CompassComponentMetricSourcesConnection';
|
|
11041
11140
|
edges?: Maybe<Array<CompassMetricSourceEdge>>;
|
|
@@ -15099,6 +15198,7 @@ export declare type ConfluenceAddTrackPayload = {
|
|
|
15099
15198
|
__typename?: 'ConfluenceAddTrackPayload';
|
|
15100
15199
|
errors?: Maybe<Array<ConfluenceAddTrackPayloadError>>;
|
|
15101
15200
|
success: Scalars['Boolean']['output'];
|
|
15201
|
+
track?: Maybe<ConfluenceTrack>;
|
|
15102
15202
|
};
|
|
15103
15203
|
export declare type ConfluenceAddTrackPayloadError = {
|
|
15104
15204
|
__typename?: 'ConfluenceAddTrackPayloadError';
|
|
@@ -15807,6 +15907,10 @@ export declare type ConfluenceContentBodyInput = {
|
|
|
15807
15907
|
representation: ConfluenceContentRepresentation;
|
|
15808
15908
|
value: Scalars['String']['input'];
|
|
15809
15909
|
};
|
|
15910
|
+
export declare type ConfluenceContentGeneralAccess = {
|
|
15911
|
+
__typename?: 'ConfluenceContentGeneralAccess';
|
|
15912
|
+
mode?: Maybe<ConfluenceContentRestrictionState>;
|
|
15913
|
+
};
|
|
15810
15914
|
export declare type ConfluenceContentInput = {
|
|
15811
15915
|
contentBody?: InputMaybe<Scalars['String']['input']>;
|
|
15812
15916
|
contentId: Scalars['ID']['input'];
|
|
@@ -15898,6 +16002,17 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
15898
16002
|
View = "VIEW",
|
|
15899
16003
|
Wiki = "WIKI"
|
|
15900
16004
|
}
|
|
16005
|
+
export declare enum ConfluenceContentRestrictionState {
|
|
16006
|
+
EditRestricted = "EDIT_RESTRICTED",
|
|
16007
|
+
Open = "OPEN",
|
|
16008
|
+
RestrictedByParent = "RESTRICTED_BY_PARENT",
|
|
16009
|
+
ViewRestricted = "VIEW_RESTRICTED"
|
|
16010
|
+
}
|
|
16011
|
+
export declare enum ConfluenceContentRestrictionStateInput {
|
|
16012
|
+
EditRestricted = "EDIT_RESTRICTED",
|
|
16013
|
+
Open = "OPEN",
|
|
16014
|
+
ViewRestricted = "VIEW_RESTRICTED"
|
|
16015
|
+
}
|
|
15901
16016
|
export declare type ConfluenceContentRestrictionUpdated = {
|
|
15902
16017
|
__typename?: 'ConfluenceContentRestrictionUpdated';
|
|
15903
16018
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -18870,6 +18985,16 @@ export declare type ConfluenceSearchResponseEdge = {
|
|
|
18870
18985
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18871
18986
|
node?: Maybe<ConfluenceSearchResponse>;
|
|
18872
18987
|
};
|
|
18988
|
+
export declare type ConfluenceSetContentGeneralAccessModeInput = {
|
|
18989
|
+
contentId: Scalars['ID']['input'];
|
|
18990
|
+
mode: ConfluenceContentRestrictionStateInput;
|
|
18991
|
+
};
|
|
18992
|
+
export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
|
|
18993
|
+
__typename?: 'ConfluenceSetContentGeneralAccessModePayload';
|
|
18994
|
+
contentGeneralAccess?: Maybe<ConfluenceContentGeneralAccess>;
|
|
18995
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18996
|
+
success: Scalars['Boolean']['output'];
|
|
18997
|
+
};
|
|
18873
18998
|
export declare type ConfluenceSetSubCalendarReminderInput = {
|
|
18874
18999
|
isReminder: Scalars['Boolean']['input'];
|
|
18875
19000
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -18960,6 +19085,7 @@ export declare type ConfluenceSpaceDetailsSpaceOwner = {
|
|
|
18960
19085
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
18961
19086
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
18962
19087
|
ownerType?: Maybe<ConfluenceSpaceOwnerType>;
|
|
19088
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
18963
19089
|
};
|
|
18964
19090
|
export declare type ConfluenceSpaceDetailsSpaceOwnerInput = {
|
|
18965
19091
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19029,6 +19155,14 @@ export declare enum ConfluenceSpacePermissionAuditReportType {
|
|
|
19029
19155
|
FullSitePermission = "FULL_SITE_PERMISSION",
|
|
19030
19156
|
PermissionCombination = "PERMISSION_COMBINATION"
|
|
19031
19157
|
}
|
|
19158
|
+
export declare type ConfluenceSpaceProperty = {
|
|
19159
|
+
__typename?: 'ConfluenceSpaceProperty';
|
|
19160
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19161
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
19162
|
+
space?: Maybe<Space>;
|
|
19163
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
19164
|
+
version?: Maybe<Version>;
|
|
19165
|
+
};
|
|
19032
19166
|
export declare type ConfluenceSpaceRecommendations = {
|
|
19033
19167
|
__typename?: 'ConfluenceSpaceRecommendations';
|
|
19034
19168
|
active?: Maybe<Array<Maybe<Space>>>;
|
|
@@ -22336,33 +22470,7 @@ export declare type ConvoAiAgentMessage = {
|
|
|
22336
22470
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22337
22471
|
timeCreated: Scalars['DateTime']['output'];
|
|
22338
22472
|
};
|
|
22339
|
-
export declare enum ConvoAiAgentMessageType {
|
|
22340
|
-
ConversationChannelData = "CONVERSATION_CHANNEL_DATA",
|
|
22341
|
-
EarlyStop = "EARLY_STOP",
|
|
22342
|
-
Empty = "EMPTY",
|
|
22343
|
-
Error = "ERROR",
|
|
22344
|
-
FinalMessage = "FINAL_MESSAGE",
|
|
22345
|
-
Trace = "TRACE"
|
|
22346
|
-
}
|
|
22347
|
-
export declare enum ConvoAiAgentSessionStatus {
|
|
22348
|
-
Completed = "COMPLETED",
|
|
22349
|
-
InputRequired = "INPUT_REQUIRED",
|
|
22350
|
-
Unknown = "UNKNOWN",
|
|
22351
|
-
Working = "WORKING"
|
|
22352
|
-
}
|
|
22353
22473
|
export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
22354
|
-
export declare type ConvoAiAsyncAgentUpdate = {
|
|
22355
|
-
__typename?: 'ConvoAiAsyncAgentUpdate';
|
|
22356
|
-
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22357
|
-
agentMessageType: ConvoAiAgentMessageType;
|
|
22358
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
22359
|
-
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22360
|
-
messageId?: Maybe<Scalars['String']['output']>;
|
|
22361
|
-
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
22362
|
-
messageTemplate?: Maybe<Scalars['String']['output']>;
|
|
22363
|
-
status: ConvoAiAgentSessionStatus;
|
|
22364
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22365
|
-
};
|
|
22366
22474
|
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
22367
22475
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
22368
22476
|
id: Scalars['ID']['output'];
|
|
@@ -22401,8 +22509,17 @@ export declare type ConvoAiHomeThreadSource = ConvoAiHomeThreadsFirstPartySource
|
|
|
22401
22509
|
export declare type ConvoAiHomeThreadSuggestedAction = {
|
|
22402
22510
|
__typename?: 'ConvoAiHomeThreadSuggestedAction';
|
|
22403
22511
|
action?: Maybe<ConvoAiHomeThreadSuggestedActionType>;
|
|
22512
|
+
origin?: Maybe<ConvoAiHomeThreadSuggestedActionOriginType>;
|
|
22404
22513
|
source?: Maybe<ConvoAiHomeThreadSource>;
|
|
22405
22514
|
};
|
|
22515
|
+
export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
22516
|
+
CommentRule = "COMMENT_RULE",
|
|
22517
|
+
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
22518
|
+
JiraIssueRule = "JIRA_ISSUE_RULE",
|
|
22519
|
+
Llm = "LLM",
|
|
22520
|
+
LoomVideoRule = "LOOM_VIDEO_RULE",
|
|
22521
|
+
PullRequestRule = "PULL_REQUEST_RULE"
|
|
22522
|
+
}
|
|
22406
22523
|
export declare enum ConvoAiHomeThreadSuggestedActionType {
|
|
22407
22524
|
Delete = "DELETE",
|
|
22408
22525
|
Reply = "REPLY",
|
|
@@ -22443,6 +22560,8 @@ export declare type ConvoAiJira3pRelatedLinksResult = {
|
|
|
22443
22560
|
__typename?: 'ConvoAiJira3pRelatedLinksResult';
|
|
22444
22561
|
edges?: Maybe<Array<ConvoAiJira3pRelatedLinksEdge>>;
|
|
22445
22562
|
errors?: Maybe<Array<QueryError>>;
|
|
22563
|
+
no3pConnectorEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22564
|
+
no3pConnectorOauthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22446
22565
|
};
|
|
22447
22566
|
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
22448
22567
|
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
@@ -22514,6 +22633,7 @@ export declare type ConvoAiThirdPartyRelatedLink = {
|
|
|
22514
22633
|
id: Scalars['String']['output'];
|
|
22515
22634
|
name: Scalars['String']['output'];
|
|
22516
22635
|
productSource?: Maybe<Scalars['String']['output']>;
|
|
22636
|
+
thirdPartySourceProduct?: Maybe<Scalars['String']['output']>;
|
|
22517
22637
|
url: Scalars['String']['output'];
|
|
22518
22638
|
};
|
|
22519
22639
|
export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
@@ -22593,8 +22713,7 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
22593
22713
|
user: Scalars['Int']['output'];
|
|
22594
22714
|
};
|
|
22595
22715
|
export declare type CplsAddContributionInput = {
|
|
22596
|
-
contributorDataId
|
|
22597
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22716
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22598
22717
|
endDate: Scalars['Date']['input'];
|
|
22599
22718
|
startDate: Scalars['Date']['input'];
|
|
22600
22719
|
value: Scalars['Float']['input'];
|
|
@@ -22614,8 +22733,7 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
22614
22733
|
};
|
|
22615
22734
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
22616
22735
|
cloudId: Scalars['ID']['input'];
|
|
22617
|
-
contributorDataIds
|
|
22618
|
-
contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22736
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
22619
22737
|
scopeId: Scalars['ID']['input'];
|
|
22620
22738
|
};
|
|
22621
22739
|
export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
@@ -22675,7 +22793,6 @@ export declare type CplsContributor = {
|
|
|
22675
22793
|
contributionAggregations: Array<CplsContributionAggregation>;
|
|
22676
22794
|
contributorData?: Maybe<CplsContributorData>;
|
|
22677
22795
|
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
22678
|
-
contributorId: Scalars['ID']['output'];
|
|
22679
22796
|
contributorWork: CplsContributorWorkConnection;
|
|
22680
22797
|
id: Scalars['ID']['output'];
|
|
22681
22798
|
worksByIds: Array<CplsContributorWorkEdge>;
|
|
@@ -22701,8 +22818,7 @@ export declare type CplsContributorEdge = {
|
|
|
22701
22818
|
node: CplsContributor;
|
|
22702
22819
|
};
|
|
22703
22820
|
export declare type CplsContributorWorkAssociation = {
|
|
22704
|
-
contributorDataId
|
|
22705
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22821
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22706
22822
|
workId: Scalars['ID']['input'];
|
|
22707
22823
|
};
|
|
22708
22824
|
export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
@@ -22728,8 +22844,7 @@ export declare type CplsCreateCustomContributionTargetPayload = Payload & {
|
|
|
22728
22844
|
};
|
|
22729
22845
|
export declare type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
|
|
22730
22846
|
cloudId: Scalars['ID']['input'];
|
|
22731
|
-
contributorDataId
|
|
22732
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22847
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22733
22848
|
name: Scalars['String']['input'];
|
|
22734
22849
|
};
|
|
22735
22850
|
export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload = Payload & {
|
|
@@ -22755,8 +22870,7 @@ export declare type CplsCustomContributionTargetEdge = {
|
|
|
22755
22870
|
};
|
|
22756
22871
|
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
22757
22872
|
cloudId: Scalars['ID']['input'];
|
|
22758
|
-
contributorDataIds
|
|
22759
|
-
contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22873
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
22760
22874
|
scopeId: Scalars['ID']['input'];
|
|
22761
22875
|
};
|
|
22762
22876
|
export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
|
|
@@ -22781,6 +22895,13 @@ export declare type CplsMutationErrorExtension = MutationErrorExtension & {
|
|
|
22781
22895
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
22782
22896
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
22783
22897
|
};
|
|
22898
|
+
export declare type CplsPeopleView = CplsCapacityPlanningPeopleView | QueryError;
|
|
22899
|
+
export declare type CplsQueryErrorExtension = QueryErrorExtension & {
|
|
22900
|
+
__typename?: 'CplsQueryErrorExtension';
|
|
22901
|
+
errorId?: Maybe<Scalars['String']['output']>;
|
|
22902
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
22903
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
22904
|
+
};
|
|
22784
22905
|
export declare type CplsSearchCustomContributionTargetsInput = {
|
|
22785
22906
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
22786
22907
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22867,6 +22988,7 @@ export declare type CreateAppEnvironmentResponse = Payload & {
|
|
|
22867
22988
|
};
|
|
22868
22989
|
export declare type CreateAppInput = {
|
|
22869
22990
|
appFeatures?: InputMaybe<AppFeaturesInput>;
|
|
22991
|
+
billingConsent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22870
22992
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
22871
22993
|
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
22872
22994
|
name: Scalars['String']['input'];
|
|
@@ -26604,6 +26726,18 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
|
26604
26726
|
session?: Maybe<DevAiRovoDevSession>;
|
|
26605
26727
|
success: Scalars['Boolean']['output'];
|
|
26606
26728
|
};
|
|
26729
|
+
export declare type DevAiRovoDevIssueViewResponse = {
|
|
26730
|
+
__typename?: 'DevAiRovoDevIssueViewResponse';
|
|
26731
|
+
checks?: Maybe<DevAiEntitlementCheckResultResponse>;
|
|
26732
|
+
isFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26733
|
+
sessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
26734
|
+
};
|
|
26735
|
+
export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
|
|
26736
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26737
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
26738
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26739
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
26740
|
+
};
|
|
26607
26741
|
export declare enum DevAiRovoDevPrStatus {
|
|
26608
26742
|
Declined = "DECLINED",
|
|
26609
26743
|
Draft = "DRAFT",
|
|
@@ -26855,13 +26989,13 @@ export declare type DevConsoleAppResourceUsageFiltersInput = {
|
|
|
26855
26989
|
export declare type DevConsoleAppResourceUsageFlatResponse = {
|
|
26856
26990
|
__typename?: 'DevConsoleAppResourceUsageFlatResponse';
|
|
26857
26991
|
error?: Maybe<QueryError>;
|
|
26858
|
-
pagination
|
|
26992
|
+
pagination?: Maybe<DevConsolePagination>;
|
|
26859
26993
|
resourceUsage: Array<DevConsoleResourceUsage>;
|
|
26860
26994
|
};
|
|
26861
26995
|
export declare type DevConsoleAppResourceUsageGroupedResponse = {
|
|
26862
26996
|
__typename?: 'DevConsoleAppResourceUsageGroupedResponse';
|
|
26863
26997
|
error?: Maybe<QueryError>;
|
|
26864
|
-
pagination
|
|
26998
|
+
pagination?: Maybe<DevConsolePagination>;
|
|
26865
26999
|
resourceUsage: Array<DevConsoleResourceUsagePeriod>;
|
|
26866
27000
|
};
|
|
26867
27001
|
export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
|
|
@@ -26919,6 +27053,7 @@ export declare type DevConsoleDeveloperSpace = {
|
|
|
26919
27053
|
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26920
27054
|
status: Scalars['String']['output'];
|
|
26921
27055
|
type: DevConsoleDeveloperSpaceType;
|
|
27056
|
+
vendorId: Scalars['String']['output'];
|
|
26922
27057
|
version: Scalars['Int']['output'];
|
|
26923
27058
|
versionId: Scalars['Int']['output'];
|
|
26924
27059
|
};
|
|
@@ -26927,6 +27062,7 @@ export declare type DevConsoleDeveloperSpaceDetails = {
|
|
|
26927
27062
|
logo?: Maybe<Scalars['String']['output']>;
|
|
26928
27063
|
name: Scalars['String']['output'];
|
|
26929
27064
|
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
27065
|
+
vendorId: Scalars['String']['output'];
|
|
26930
27066
|
};
|
|
26931
27067
|
export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
26932
27068
|
__typename?: 'DevConsoleDeveloperSpaceDetailsResult';
|
|
@@ -26940,21 +27076,13 @@ export declare type DevConsoleDeveloperSpaceMember = {
|
|
|
26940
27076
|
email?: Maybe<Scalars['String']['output']>;
|
|
26941
27077
|
name?: Maybe<Scalars['String']['output']>;
|
|
26942
27078
|
picture?: Maybe<Scalars['String']['output']>;
|
|
26943
|
-
|
|
26944
|
-
export declare type DevConsoleDeveloperSpaceMemberInput = {
|
|
26945
|
-
developerSpaceId: Scalars['String']['input'];
|
|
26946
|
-
memberEmail: Scalars['String']['input'];
|
|
26947
|
-
role: DevConsoleDeveloperSpaceMemberRole;
|
|
27079
|
+
roles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26948
27080
|
};
|
|
26949
27081
|
export declare type DevConsoleDeveloperSpaceMemberPayload = Payload & {
|
|
26950
27082
|
__typename?: 'DevConsoleDeveloperSpaceMemberPayload';
|
|
26951
|
-
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
26952
27083
|
errors?: Maybe<Array<MutationError>>;
|
|
26953
27084
|
success: Scalars['Boolean']['output'];
|
|
26954
27085
|
};
|
|
26955
|
-
export declare enum DevConsoleDeveloperSpaceMemberRole {
|
|
26956
|
-
Admin = "ADMIN"
|
|
26957
|
-
}
|
|
26958
27086
|
export declare type DevConsoleDeveloperSpaceMembersResponse = {
|
|
26959
27087
|
__typename?: 'DevConsoleDeveloperSpaceMembersResponse';
|
|
26960
27088
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -26983,7 +27111,6 @@ export declare enum DevConsoleDeveloperSpacePublishStatus {
|
|
|
26983
27111
|
}
|
|
26984
27112
|
export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
|
|
26985
27113
|
__typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
|
|
26986
|
-
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
26987
27114
|
errors?: Maybe<Array<MutationError>>;
|
|
26988
27115
|
success: Scalars['Boolean']['output'];
|
|
26989
27116
|
};
|
|
@@ -27012,21 +27139,16 @@ export declare type DevConsoleHasConsoleAdminResponse = {
|
|
|
27012
27139
|
export declare type DevConsoleMutation = {
|
|
27013
27140
|
__typename?: 'DevConsoleMutation';
|
|
27014
27141
|
acceptAppBillingConsent: DevConsoleResponsePayload;
|
|
27015
|
-
addDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27016
27142
|
archiveDeveloperSpace: DevConsoleResponsePayload;
|
|
27017
27143
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
27018
27144
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
27019
|
-
|
|
27020
|
-
updateDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27145
|
+
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27021
27146
|
updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
|
|
27022
27147
|
};
|
|
27023
27148
|
export declare type DevConsoleMutationAcceptAppBillingConsentArgs = {
|
|
27024
27149
|
appIds: Array<Scalars['String']['input']>;
|
|
27025
27150
|
developerSpaceId: Scalars['String']['input'];
|
|
27026
27151
|
};
|
|
27027
|
-
export declare type DevConsoleMutationAddDeveloperSpaceMemberArgs = {
|
|
27028
|
-
input: DevConsoleDeveloperSpaceMemberInput;
|
|
27029
|
-
};
|
|
27030
27152
|
export declare type DevConsoleMutationArchiveDeveloperSpaceArgs = {
|
|
27031
27153
|
input: DevConsoleArchiveDeveloperSpaceInput;
|
|
27032
27154
|
};
|
|
@@ -27036,11 +27158,8 @@ export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
|
|
|
27036
27158
|
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
27037
27159
|
input: DevConsoleCreateDeveloperSpaceInput;
|
|
27038
27160
|
};
|
|
27039
|
-
export declare type
|
|
27040
|
-
input:
|
|
27041
|
-
};
|
|
27042
|
-
export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
|
|
27043
|
-
input: DevConsoleUpdateDeveloperSpaceMemberInput;
|
|
27161
|
+
export declare type DevConsoleMutationUpdateDeveloperSpaceMemberRolesArgs = {
|
|
27162
|
+
input: DevConsoleUpdateDeveloperSpaceMemberRolesInput;
|
|
27044
27163
|
};
|
|
27045
27164
|
export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
|
|
27046
27165
|
input: DevConsoleUpdateDeveloperSpaceSettingsInput;
|
|
@@ -27104,10 +27223,6 @@ export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
|
|
|
27104
27223
|
export declare type DevConsoleQueryTenantContextsArgs = {
|
|
27105
27224
|
ids: Array<Scalars['ID']['input']>;
|
|
27106
27225
|
};
|
|
27107
|
-
export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
|
|
27108
|
-
developerSpaceId: Scalars['String']['input'];
|
|
27109
|
-
memberId: Scalars['String']['input'];
|
|
27110
|
-
};
|
|
27111
27226
|
export declare enum DevConsoleResource {
|
|
27112
27227
|
FunctionCompute = "FUNCTION_COMPUTE",
|
|
27113
27228
|
KvsRead = "KVS_READ",
|
|
@@ -27188,10 +27303,12 @@ export declare type DevConsoleTransactionAccountResponse = {
|
|
|
27188
27303
|
paymentMethod?: Maybe<DevConsoleTransactionAccountPaymentMethod>;
|
|
27189
27304
|
transactionAccount?: Maybe<DevConsoleTransactionAccountData>;
|
|
27190
27305
|
};
|
|
27191
|
-
export declare type
|
|
27306
|
+
export declare type DevConsoleUpdateDeveloperSpaceMemberRolesInput = {
|
|
27307
|
+
addRoles: Array<Scalars['String']['input']>;
|
|
27192
27308
|
developerSpaceId: Scalars['String']['input'];
|
|
27193
|
-
|
|
27194
|
-
|
|
27309
|
+
memberEmail?: InputMaybe<Scalars['String']['input']>;
|
|
27310
|
+
memberId?: InputMaybe<Scalars['String']['input']>;
|
|
27311
|
+
removeRoles: Array<Scalars['String']['input']>;
|
|
27195
27312
|
};
|
|
27196
27313
|
export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
|
|
27197
27314
|
developerSpaceId: Scalars['String']['input'];
|
|
@@ -36896,6 +37013,8 @@ export declare type GraphStore = {
|
|
|
36896
37013
|
userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
36897
37014
|
userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
|
|
36898
37015
|
userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
37016
|
+
userFavoritedTownsquareGoal?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection>;
|
|
37017
|
+
userFavoritedTownsquareGoalInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection>;
|
|
36899
37018
|
userFavoritedTownsquareProject?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection>;
|
|
36900
37019
|
userFavoritedTownsquareProjectInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection>;
|
|
36901
37020
|
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
@@ -36984,6 +37103,7 @@ export declare type GraphStore = {
|
|
|
36984
37103
|
userUpdatedIssueBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
|
|
36985
37104
|
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
36986
37105
|
userUpdatedIssueInverseBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
|
|
37106
|
+
userViewed3pRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection>;
|
|
36987
37107
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
36988
37108
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
36989
37109
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -41434,6 +41554,20 @@ export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
|
|
|
41434
41554
|
ids: Array<Scalars['ID']['input']>;
|
|
41435
41555
|
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
41436
41556
|
};
|
|
41557
|
+
export declare type GraphStoreUserFavoritedTownsquareGoalArgs = {
|
|
41558
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41559
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41560
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41561
|
+
id: Scalars['ID']['input'];
|
|
41562
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareGoalSortInput>;
|
|
41563
|
+
};
|
|
41564
|
+
export declare type GraphStoreUserFavoritedTownsquareGoalInverseArgs = {
|
|
41565
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41566
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41567
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41568
|
+
id: Scalars['ID']['input'];
|
|
41569
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareGoalSortInput>;
|
|
41570
|
+
};
|
|
41437
41571
|
export declare type GraphStoreUserFavoritedTownsquareProjectArgs = {
|
|
41438
41572
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41439
41573
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42052,6 +42186,13 @@ export declare type GraphStoreUserUpdatedIssueInverseBatchArgs = {
|
|
|
42052
42186
|
ids: Array<Scalars['ID']['input']>;
|
|
42053
42187
|
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
42054
42188
|
};
|
|
42189
|
+
export declare type GraphStoreUserViewed3pRemoteLinkInverseArgs = {
|
|
42190
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42191
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42192
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42193
|
+
id: Scalars['ID']['input'];
|
|
42194
|
+
sort?: InputMaybe<GraphStoreUserViewed3pRemoteLinkSortInput>;
|
|
42195
|
+
};
|
|
42055
42196
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
42056
42197
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
42057
42198
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44361,6 +44502,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44361
44502
|
to: Scalars['ID']['input'];
|
|
44362
44503
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44363
44504
|
};
|
|
44505
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareGoalInput = {
|
|
44506
|
+
relationships: Array<GraphStoreCreateUserFavoritedTownsquareGoalRelationshipInput>;
|
|
44507
|
+
};
|
|
44508
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareGoalPayload = Payload & {
|
|
44509
|
+
__typename?: 'GraphStoreCreateUserFavoritedTownsquareGoalPayload';
|
|
44510
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44511
|
+
success: Scalars['Boolean']['output'];
|
|
44512
|
+
};
|
|
44513
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareGoalRelationshipInput = {
|
|
44514
|
+
from: Scalars['ID']['input'];
|
|
44515
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
44516
|
+
to: Scalars['ID']['input'];
|
|
44517
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44518
|
+
};
|
|
44364
44519
|
export declare type GraphStoreCreateUserFavoritedTownsquareProjectInput = {
|
|
44365
44520
|
relationships: Array<GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44366
44521
|
};
|
|
@@ -44962,6 +45117,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44962
45117
|
from: Scalars['ID']['input'];
|
|
44963
45118
|
to: Scalars['ID']['input'];
|
|
44964
45119
|
};
|
|
45120
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareGoalInput = {
|
|
45121
|
+
relationships: Array<GraphStoreDeleteUserFavoritedTownsquareGoalRelationshipInput>;
|
|
45122
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45123
|
+
};
|
|
45124
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareGoalPayload = Payload & {
|
|
45125
|
+
__typename?: 'GraphStoreDeleteUserFavoritedTownsquareGoalPayload';
|
|
45126
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45127
|
+
success: Scalars['Boolean']['output'];
|
|
45128
|
+
};
|
|
45129
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareGoalRelationshipInput = {
|
|
45130
|
+
from: Scalars['ID']['input'];
|
|
45131
|
+
to: Scalars['ID']['input'];
|
|
45132
|
+
};
|
|
44965
45133
|
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectInput = {
|
|
44966
45134
|
relationships: Array<GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44967
45135
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48951,6 +49119,7 @@ export declare type GraphStoreMutation = {
|
|
|
48951
49119
|
createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
|
|
48952
49120
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
48953
49121
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
49122
|
+
createUserFavoritedTownsquareGoal?: Maybe<GraphStoreCreateUserFavoritedTownsquareGoalPayload>;
|
|
48954
49123
|
createUserFavoritedTownsquareProject?: Maybe<GraphStoreCreateUserFavoritedTownsquareProjectPayload>;
|
|
48955
49124
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
48956
49125
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
@@ -48980,6 +49149,7 @@ export declare type GraphStoreMutation = {
|
|
|
48980
49149
|
deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
|
|
48981
49150
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
48982
49151
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
49152
|
+
deleteUserFavoritedTownsquareGoal?: Maybe<GraphStoreDeleteUserFavoritedTownsquareGoalPayload>;
|
|
48983
49153
|
deleteUserFavoritedTownsquareProject?: Maybe<GraphStoreDeleteUserFavoritedTownsquareProjectPayload>;
|
|
48984
49154
|
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
48985
49155
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
@@ -49060,6 +49230,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
|
49060
49230
|
export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
49061
49231
|
input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
49062
49232
|
};
|
|
49233
|
+
export declare type GraphStoreMutationCreateUserFavoritedTownsquareGoalArgs = {
|
|
49234
|
+
input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareGoalInput>;
|
|
49235
|
+
};
|
|
49063
49236
|
export declare type GraphStoreMutationCreateUserFavoritedTownsquareProjectArgs = {
|
|
49064
49237
|
input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareProjectInput>;
|
|
49065
49238
|
};
|
|
@@ -49147,6 +49320,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
|
49147
49320
|
export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
49148
49321
|
input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
49149
49322
|
};
|
|
49323
|
+
export declare type GraphStoreMutationDeleteUserFavoritedTownsquareGoalArgs = {
|
|
49324
|
+
input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareGoalInput>;
|
|
49325
|
+
};
|
|
49150
49326
|
export declare type GraphStoreMutationDeleteUserFavoritedTownsquareProjectArgs = {
|
|
49151
49327
|
input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareProjectInput>;
|
|
49152
49328
|
};
|
|
@@ -56491,6 +56667,38 @@ export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
|
|
|
56491
56667
|
};
|
|
56492
56668
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56493
56669
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
|
|
56670
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection = HasPageInfo & HasTotal & {
|
|
56671
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection';
|
|
56672
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge>>>;
|
|
56673
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56674
|
+
pageInfo: PageInfo;
|
|
56675
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56676
|
+
};
|
|
56677
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge = {
|
|
56678
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge';
|
|
56679
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56680
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56681
|
+
id: Scalars['ID']['output'];
|
|
56682
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56683
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalUnion>;
|
|
56684
|
+
};
|
|
56685
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection = HasPageInfo & HasTotal & {
|
|
56686
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection';
|
|
56687
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge>>>;
|
|
56688
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56689
|
+
pageInfo: PageInfo;
|
|
56690
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56691
|
+
};
|
|
56692
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge = {
|
|
56693
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge';
|
|
56694
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56695
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56696
|
+
id: Scalars['ID']['output'];
|
|
56697
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56698
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseUnion>;
|
|
56699
|
+
};
|
|
56700
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56701
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalUnion = TownsquareGoal;
|
|
56494
56702
|
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection = HasPageInfo & HasTotal & {
|
|
56495
56703
|
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection';
|
|
56496
56704
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge>>>;
|
|
@@ -57715,6 +57923,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
|
57715
57923
|
};
|
|
57716
57924
|
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
57717
57925
|
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
57926
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection = HasPageInfo & {
|
|
57927
|
+
__typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection';
|
|
57928
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge>>>;
|
|
57929
|
+
pageInfo: PageInfo;
|
|
57930
|
+
};
|
|
57931
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge = {
|
|
57932
|
+
__typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge';
|
|
57933
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57934
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57935
|
+
id: Scalars['ID']['output'];
|
|
57936
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57937
|
+
node?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseUnion>;
|
|
57938
|
+
};
|
|
57939
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
57718
57940
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
57719
57941
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
57720
57942
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -58975,6 +59197,12 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
|
58975
59197
|
export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
|
|
58976
59198
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58977
59199
|
};
|
|
59200
|
+
export declare type GraphStoreUserFavoritedTownsquareGoalSortInput = {
|
|
59201
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
59202
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
59203
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59204
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
59205
|
+
};
|
|
58978
59206
|
export declare type GraphStoreUserFavoritedTownsquareProjectSortInput = {
|
|
58979
59207
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
58980
59208
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -59147,6 +59375,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
|
59147
59375
|
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
59148
59376
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59149
59377
|
};
|
|
59378
|
+
export declare type GraphStoreUserViewed3pRemoteLinkSortInput = {
|
|
59379
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59380
|
+
};
|
|
59150
59381
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
59151
59382
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59152
59383
|
};
|
|
@@ -65028,7 +65259,7 @@ export declare enum JiraBoardType {
|
|
|
65028
65259
|
Kanban = "KANBAN",
|
|
65029
65260
|
Scrum = "SCRUM"
|
|
65030
65261
|
}
|
|
65031
|
-
export declare type JiraBoardView = {
|
|
65262
|
+
export declare type JiraBoardView = JiraView & Node & {
|
|
65032
65263
|
__typename?: 'JiraBoardView';
|
|
65033
65264
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
65034
65265
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65309,9 +65540,10 @@ export declare type JiraBulkCreateIssueLinksInput = {
|
|
|
65309
65540
|
};
|
|
65310
65541
|
export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
65311
65542
|
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
65543
|
+
destinationIssues?: Maybe<Array<JiraIssue>>;
|
|
65312
65544
|
errors?: Maybe<Array<MutationError>>;
|
|
65313
65545
|
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
65314
|
-
|
|
65546
|
+
sourceIssue?: Maybe<JiraIssue>;
|
|
65315
65547
|
success: Scalars['Boolean']['output'];
|
|
65316
65548
|
};
|
|
65317
65549
|
export declare type JiraBulkDeleteInput = {
|
|
@@ -67775,10 +68007,11 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
|
|
|
67775
68007
|
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
67776
68008
|
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
67777
68009
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
68010
|
+
destinationIssue?: Maybe<JiraIssue>;
|
|
67778
68011
|
errors?: Maybe<Array<MutationError>>;
|
|
67779
68012
|
id?: Maybe<Scalars['ID']['output']>;
|
|
67780
|
-
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
67781
68013
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
68014
|
+
sourceIssue?: Maybe<JiraIssue>;
|
|
67782
68015
|
success: Scalars['Boolean']['output'];
|
|
67783
68016
|
};
|
|
67784
68017
|
export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
@@ -68251,6 +68484,7 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
|
68251
68484
|
__typename?: 'JiraDiscardUserIssueSearchConfigPayload';
|
|
68252
68485
|
errors?: Maybe<Array<MutationError>>;
|
|
68253
68486
|
success: Scalars['Boolean']['output'];
|
|
68487
|
+
view?: Maybe<JiraView>;
|
|
68254
68488
|
};
|
|
68255
68489
|
export declare type JiraDiscardUserViewConfigInput = {
|
|
68256
68490
|
viewId: Scalars['ID']['input'];
|
|
@@ -68614,6 +68848,7 @@ export declare type JiraFieldAssociationWithIssueTypesConnection = {
|
|
|
68614
68848
|
__typename?: 'JiraFieldAssociationWithIssueTypesConnection';
|
|
68615
68849
|
edges?: Maybe<Array<Maybe<JiraFieldAssociationWithIssueTypesEdge>>>;
|
|
68616
68850
|
pageInfo: PageInfo;
|
|
68851
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
68617
68852
|
};
|
|
68618
68853
|
export declare type JiraFieldAssociationWithIssueTypesEdge = {
|
|
68619
68854
|
__typename?: 'JiraFieldAssociationWithIssueTypesEdge';
|
|
@@ -69723,6 +69958,7 @@ export declare type JiraGetIssueResourceInput = {
|
|
|
69723
69958
|
first: Scalars['Int']['input'];
|
|
69724
69959
|
orderDirection?: InputMaybe<JiraResourcesSortDirection>;
|
|
69725
69960
|
orderField?: InputMaybe<JiraResourcesOrderField>;
|
|
69961
|
+
pagination?: InputMaybe<JiraResourcePaginationInput>;
|
|
69726
69962
|
};
|
|
69727
69963
|
export declare enum JiraGlobalIssueCreateView {
|
|
69728
69964
|
FullModal = "FULL_MODAL",
|
|
@@ -70043,6 +70279,7 @@ export declare type JiraHistoryAssigneeFieldValue = {
|
|
|
70043
70279
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
70044
70280
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
70045
70281
|
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
70282
|
+
user?: Maybe<User>;
|
|
70046
70283
|
value?: Maybe<Scalars['String']['output']>;
|
|
70047
70284
|
};
|
|
70048
70285
|
export declare type JiraHistoryFieldSchema = {
|
|
@@ -70192,6 +70429,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
70192
70429
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
70193
70430
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
70194
70431
|
canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
|
|
70432
|
+
canDownloadAttachment?: Maybe<Scalars['Boolean']['output']>;
|
|
70195
70433
|
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
70196
70434
|
childIssues?: Maybe<JiraChildIssues>;
|
|
70197
70435
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
@@ -70207,6 +70445,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
70207
70445
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
70208
70446
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
70209
70447
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
70448
|
+
deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
|
|
70210
70449
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
70211
70450
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
70212
70451
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -70244,6 +70483,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
70244
70483
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
70245
70484
|
issueColorField?: Maybe<JiraColorField>;
|
|
70246
70485
|
issueId: Scalars['String']['output'];
|
|
70486
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
70247
70487
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
70248
70488
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
70249
70489
|
issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
|
|
@@ -71665,6 +71905,10 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
71665
71905
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
71666
71906
|
success: Scalars['Boolean']['output'];
|
|
71667
71907
|
};
|
|
71908
|
+
export declare type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
71909
|
+
__typename?: 'JiraIssueNoEnrichmentStreamHubPayload';
|
|
71910
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
71911
|
+
};
|
|
71668
71912
|
export declare type JiraIssuePickerInput = {
|
|
71669
71913
|
currentIssueId: Scalars['ID']['input'];
|
|
71670
71914
|
currentJQL?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71911,6 +72155,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
71911
72155
|
};
|
|
71912
72156
|
export declare type JiraIssueSearchCustomInput = {
|
|
71913
72157
|
jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
|
|
72158
|
+
jiraTimelineInput?: InputMaybe<JiraTimelineIssueSearchCustomInput>;
|
|
71914
72159
|
};
|
|
71915
72160
|
export declare type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
71916
72161
|
export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
@@ -72069,6 +72314,7 @@ export declare type JiraIssueSearchStatus = {
|
|
|
72069
72314
|
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
72070
72315
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
72071
72316
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
72317
|
+
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
72072
72318
|
};
|
|
72073
72319
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
72074
72320
|
__typename?: 'JiraIssueSearchView';
|
|
@@ -73741,6 +73987,40 @@ export declare type JiraMentionableEdge = {
|
|
|
73741
73987
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
73742
73988
|
node?: Maybe<JiraMentionable>;
|
|
73743
73989
|
};
|
|
73990
|
+
export declare type JiraMergeIssueError = {
|
|
73991
|
+
__typename?: 'JiraMergeIssueError';
|
|
73992
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
73993
|
+
step?: Maybe<Scalars['String']['output']>;
|
|
73994
|
+
};
|
|
73995
|
+
export declare type JiraMergeIssuesInput = {
|
|
73996
|
+
mergeAttachments: Scalars['Boolean']['input'];
|
|
73997
|
+
mergeComments: Scalars['Boolean']['input'];
|
|
73998
|
+
mergeDescriptionFrom: Scalars['ID']['input'];
|
|
73999
|
+
mergeFieldsFrom: Scalars['ID']['input'];
|
|
74000
|
+
mergeLinks: Scalars['Boolean']['input'];
|
|
74001
|
+
mergeSubtasks: Scalars['Boolean']['input'];
|
|
74002
|
+
sourceIds: Array<Scalars['ID']['input']>;
|
|
74003
|
+
targetId: Scalars['ID']['input'];
|
|
74004
|
+
};
|
|
74005
|
+
export declare type JiraMergeIssuesOperationProgress = {
|
|
74006
|
+
__typename?: 'JiraMergeIssuesOperationProgress';
|
|
74007
|
+
errors?: Maybe<Array<JiraMergeIssueError>>;
|
|
74008
|
+
id: Scalars['ID']['output'];
|
|
74009
|
+
status?: Maybe<JiraLongRunningTaskStatus>;
|
|
74010
|
+
submittedTime?: Maybe<Scalars['DateTime']['output']>;
|
|
74011
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
74012
|
+
};
|
|
74013
|
+
export declare type JiraMergeIssuesOperationProgressInput = {
|
|
74014
|
+
cloudId: Scalars['ID']['input'];
|
|
74015
|
+
taskId: Scalars['ID']['input'];
|
|
74016
|
+
};
|
|
74017
|
+
export declare type JiraMergeIssuesOperationProgressResult = JiraMergeIssuesOperationProgress | QueryError;
|
|
74018
|
+
export declare type JiraMergeIssuesPayload = Payload & {
|
|
74019
|
+
__typename?: 'JiraMergeIssuesPayload';
|
|
74020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74021
|
+
progress?: Maybe<JiraMergeIssuesOperationProgress>;
|
|
74022
|
+
success: Scalars['Boolean']['output'];
|
|
74023
|
+
};
|
|
73744
74024
|
export declare type JiraMergeVersionInput = {
|
|
73745
74025
|
id: Scalars['ID']['input'];
|
|
73746
74026
|
targetVersionId: Scalars['ID']['input'];
|
|
@@ -75788,6 +76068,10 @@ export declare type JiraPageCursors = {
|
|
|
75788
76068
|
last?: Maybe<JiraPageCursor>;
|
|
75789
76069
|
previous?: Maybe<JiraPageCursor>;
|
|
75790
76070
|
};
|
|
76071
|
+
export declare enum JiraPaginationStyle {
|
|
76072
|
+
Cursor = "CURSOR",
|
|
76073
|
+
Offset = "OFFSET"
|
|
76074
|
+
}
|
|
75791
76075
|
export declare type JiraParentFieldInput = {
|
|
75792
76076
|
issueId: Scalars['ID']['input'];
|
|
75793
76077
|
};
|
|
@@ -77694,6 +77978,7 @@ export declare type JiraQuery = {
|
|
|
77694
77978
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
77695
77979
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
77696
77980
|
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
77981
|
+
limitValues?: Maybe<Array<Maybe<JiraResourceUsageMetricLimitValue>>>;
|
|
77697
77982
|
linkedWorkItems?: Maybe<JiraIssueConnection>;
|
|
77698
77983
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
77699
77984
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
@@ -78476,6 +78761,10 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
78476
78761
|
export declare type JiraQueryLabelsInBoardArgs = {
|
|
78477
78762
|
boardId: Scalars['ID']['input'];
|
|
78478
78763
|
};
|
|
78764
|
+
export declare type JiraQueryLimitValuesArgs = {
|
|
78765
|
+
cloudId: Scalars['ID']['input'];
|
|
78766
|
+
filterKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
78767
|
+
};
|
|
78479
78768
|
export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
78480
78769
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78481
78770
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79422,6 +79711,16 @@ export declare type JiraResourceNode = {
|
|
|
79422
79711
|
__typename?: 'JiraResourceNode';
|
|
79423
79712
|
node?: Maybe<JiraResource>;
|
|
79424
79713
|
};
|
|
79714
|
+
export declare type JiraResourcePaginationInput = {
|
|
79715
|
+
currentPageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
79716
|
+
isLast?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79717
|
+
pageCursor?: InputMaybe<Scalars['String']['input']>;
|
|
79718
|
+
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
79719
|
+
pageSize: Scalars['Int']['input'];
|
|
79720
|
+
style: JiraPaginationStyle;
|
|
79721
|
+
totalCount?: InputMaybe<Scalars['Long']['input']>;
|
|
79722
|
+
totalLinks?: InputMaybe<Scalars['Long']['input']>;
|
|
79723
|
+
};
|
|
79425
79724
|
export declare enum JiraResourceParentName {
|
|
79426
79725
|
Comment = "COMMENT",
|
|
79427
79726
|
Customfield = "CUSTOMFIELD",
|
|
@@ -79502,6 +79801,11 @@ export declare type JiraResourceUsageMetricEdgeV2 = {
|
|
|
79502
79801
|
cursor: Scalars['String']['output'];
|
|
79503
79802
|
node?: Maybe<JiraResourceUsageMetricV2>;
|
|
79504
79803
|
};
|
|
79804
|
+
export declare type JiraResourceUsageMetricLimitValue = {
|
|
79805
|
+
__typename?: 'JiraResourceUsageMetricLimitValue';
|
|
79806
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
79807
|
+
limitValue?: Maybe<Scalars['Int']['output']>;
|
|
79808
|
+
};
|
|
79505
79809
|
export declare type JiraResourceUsageMetricV2 = {
|
|
79506
79810
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
79507
79811
|
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -79566,6 +79870,16 @@ export declare enum JiraResourcesSortDirection {
|
|
|
79566
79870
|
Asc = "ASC",
|
|
79567
79871
|
Desc = "DESC"
|
|
79568
79872
|
}
|
|
79873
|
+
export declare type JiraRestoreCustomFieldsInput = {
|
|
79874
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
79875
|
+
};
|
|
79876
|
+
export declare type JiraRestoreCustomFieldsPayload = Payload & {
|
|
79877
|
+
__typename?: 'JiraRestoreCustomFieldsPayload';
|
|
79878
|
+
errors?: Maybe<Array<MutationError>>;
|
|
79879
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
79880
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
79881
|
+
success: Scalars['Boolean']['output'];
|
|
79882
|
+
};
|
|
79569
79883
|
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
79570
79884
|
fieldIds: Array<Scalars['String']['input']>;
|
|
79571
79885
|
};
|
|
@@ -82201,6 +82515,10 @@ export declare type JiraSubscription = {
|
|
|
82201
82515
|
onCalendarIssueCreated?: Maybe<JiraIssueWithScenario>;
|
|
82202
82516
|
onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
|
|
82203
82517
|
onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
|
|
82518
|
+
onChildIssueAddedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
82519
|
+
onChildIssueCreatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
82520
|
+
onChildIssueRemovedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
82521
|
+
onChildIssueUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
82204
82522
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
82205
82523
|
onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
82206
82524
|
onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
@@ -82260,6 +82578,22 @@ export declare type JiraSubscriptionOnCalendarIssueUpdatedArgs = {
|
|
|
82260
82578
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
82261
82579
|
unscheduledIssuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
82262
82580
|
};
|
|
82581
|
+
export declare type JiraSubscriptionOnChildIssueAddedNoEnrichmentArgs = {
|
|
82582
|
+
cloudId: Scalars['ID']['input'];
|
|
82583
|
+
parentIssueId: Scalars['String']['input'];
|
|
82584
|
+
};
|
|
82585
|
+
export declare type JiraSubscriptionOnChildIssueCreatedNoEnrichmentArgs = {
|
|
82586
|
+
cloudId: Scalars['ID']['input'];
|
|
82587
|
+
parentIssueId: Scalars['String']['input'];
|
|
82588
|
+
};
|
|
82589
|
+
export declare type JiraSubscriptionOnChildIssueRemovedNoEnrichmentArgs = {
|
|
82590
|
+
cloudId: Scalars['ID']['input'];
|
|
82591
|
+
parentIssueId: Scalars['String']['input'];
|
|
82592
|
+
};
|
|
82593
|
+
export declare type JiraSubscriptionOnChildIssueUpdatedNoEnrichmentArgs = {
|
|
82594
|
+
cloudId: Scalars['ID']['input'];
|
|
82595
|
+
parentIssueId: Scalars['String']['input'];
|
|
82596
|
+
};
|
|
82263
82597
|
export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
|
|
82264
82598
|
cloudId: Scalars['ID']['input'];
|
|
82265
82599
|
projectId: Scalars['String']['input'];
|
|
@@ -82744,6 +83078,12 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
|
82744
83078
|
outwardItem?: Maybe<JiraIssue>;
|
|
82745
83079
|
success: Scalars['Boolean']['output'];
|
|
82746
83080
|
};
|
|
83081
|
+
export declare type JiraTimelineIssueSearchCustomInput = {
|
|
83082
|
+
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
83083
|
+
boardId: Scalars['ID']['input'];
|
|
83084
|
+
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
83085
|
+
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
83086
|
+
};
|
|
82747
83087
|
export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
82748
83088
|
__typename?: 'JiraTimelineView';
|
|
82749
83089
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -82904,6 +83244,16 @@ export declare enum JiraTransitionSortOption {
|
|
|
82904
83244
|
OpsBar = "OPS_BAR",
|
|
82905
83245
|
OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY"
|
|
82906
83246
|
}
|
|
83247
|
+
export declare type JiraTrashCustomFieldsInput = {
|
|
83248
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
83249
|
+
};
|
|
83250
|
+
export declare type JiraTrashCustomFieldsPayload = Payload & {
|
|
83251
|
+
__typename?: 'JiraTrashCustomFieldsPayload';
|
|
83252
|
+
errors?: Maybe<Array<MutationError>>;
|
|
83253
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
83254
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
83255
|
+
success: Scalars['Boolean']['output'];
|
|
83256
|
+
};
|
|
82907
83257
|
export declare type JiraTrashGlobalCustomFieldsInput = {
|
|
82908
83258
|
fieldIds: Array<Scalars['String']['input']>;
|
|
82909
83259
|
};
|
|
@@ -83080,6 +83430,19 @@ export declare type JiraUpdateCustomBackgroundPayload = Payload & {
|
|
|
83080
83430
|
errors?: Maybe<Array<MutationError>>;
|
|
83081
83431
|
success: Scalars['Boolean']['output'];
|
|
83082
83432
|
};
|
|
83433
|
+
export declare type JiraUpdateCustomFieldInput = {
|
|
83434
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
83435
|
+
fieldId: Scalars['String']['input'];
|
|
83436
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
83437
|
+
name: Scalars['String']['input'];
|
|
83438
|
+
searcherKey?: InputMaybe<Scalars['String']['input']>;
|
|
83439
|
+
};
|
|
83440
|
+
export declare type JiraUpdateCustomFieldPayload = Payload & {
|
|
83441
|
+
__typename?: 'JiraUpdateCustomFieldPayload';
|
|
83442
|
+
errors?: Maybe<Array<MutationError>>;
|
|
83443
|
+
field?: Maybe<JiraIssueFieldConfig>;
|
|
83444
|
+
success: Scalars['Boolean']['output'];
|
|
83445
|
+
};
|
|
83083
83446
|
export declare type JiraUpdateCustomFilterDetailsInput = {
|
|
83084
83447
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
83085
83448
|
editGrants: Array<InputMaybe<JiraShareableEntityEditGrantInput>>;
|
|
@@ -88289,6 +88652,18 @@ export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
|
|
|
88289
88652
|
Private = "PRIVATE",
|
|
88290
88653
|
Public = "PUBLIC"
|
|
88291
88654
|
}
|
|
88655
|
+
export declare type MarketplaceConsoleAppInput = {
|
|
88656
|
+
appKey: Scalars['ID']['input'];
|
|
88657
|
+
appName: Scalars['String']['input'];
|
|
88658
|
+
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
88659
|
+
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
88660
|
+
onDemandPaymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
88661
|
+
parentProductKey?: InputMaybe<Scalars['ID']['input']>;
|
|
88662
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
88663
|
+
vendorId: Scalars['Int']['input'];
|
|
88664
|
+
vendorLinks?: InputMaybe<MarketplaceConsoleAppVendorLinksInput>;
|
|
88665
|
+
version: MarketplaceConsoleAppSoftwareVersionInput;
|
|
88666
|
+
};
|
|
88292
88667
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
88293
88668
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
88294
88669
|
appKey: Scalars['ID']['output'];
|
|
@@ -88458,6 +88833,13 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
88458
88833
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
88459
88834
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
88460
88835
|
};
|
|
88836
|
+
export declare type MarketplaceConsoleAppVendorLinksInput = {
|
|
88837
|
+
appStatusPage?: InputMaybe<Scalars['String']['input']>;
|
|
88838
|
+
forums?: InputMaybe<Scalars['String']['input']>;
|
|
88839
|
+
issueTracker?: InputMaybe<Scalars['String']['input']>;
|
|
88840
|
+
privacy?: InputMaybe<Scalars['String']['input']>;
|
|
88841
|
+
supportTicketSystem?: InputMaybe<Scalars['String']['input']>;
|
|
88842
|
+
};
|
|
88461
88843
|
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
88462
88844
|
assets?: InputMaybe<MarketplaceConsoleCreateVersionAssetsInput>;
|
|
88463
88845
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -88535,6 +88917,11 @@ export declare type MarketplaceConsoleCreateAppSoftwareVersionMutationResponse =
|
|
|
88535
88917
|
success: Scalars['Boolean']['output'];
|
|
88536
88918
|
versionType: MarketplaceConsoleVersionType;
|
|
88537
88919
|
};
|
|
88920
|
+
export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = MarketplaceConsoleCreatePrivateAppMutationResponse | MarketplaceConsoleDomainErrorResponse;
|
|
88921
|
+
export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
|
|
88922
|
+
__typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
|
|
88923
|
+
success: Scalars['Boolean']['output'];
|
|
88924
|
+
};
|
|
88538
88925
|
export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
|
|
88539
88926
|
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionError';
|
|
88540
88927
|
id: Scalars['ID']['output'];
|
|
@@ -88646,6 +89033,18 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
88646
89033
|
Platinum = "PLATINUM",
|
|
88647
89034
|
Silver = "SILVER"
|
|
88648
89035
|
}
|
|
89036
|
+
export declare type MarketplaceConsoleDomainError = {
|
|
89037
|
+
__typename?: 'MarketplaceConsoleDomainError';
|
|
89038
|
+
code: Scalars['String']['output'];
|
|
89039
|
+
detail: Scalars['String']['output'];
|
|
89040
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
89041
|
+
status: Scalars['String']['output'];
|
|
89042
|
+
title: Scalars['String']['output'];
|
|
89043
|
+
};
|
|
89044
|
+
export declare type MarketplaceConsoleDomainErrorResponse = {
|
|
89045
|
+
__typename?: 'MarketplaceConsoleDomainErrorResponse';
|
|
89046
|
+
errors?: Maybe<Array<Maybe<MarketplaceConsoleDomainError>>>;
|
|
89047
|
+
};
|
|
88649
89048
|
export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
88650
89049
|
appKey: Scalars['ID']['input'];
|
|
88651
89050
|
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89048,6 +89447,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
89048
89447
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
89049
89448
|
createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
89050
89449
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
89450
|
+
createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
|
|
89051
89451
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
89052
89452
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
89053
89453
|
deleteMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
@@ -89082,6 +89482,9 @@ export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersion
|
|
|
89082
89482
|
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
89083
89483
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
89084
89484
|
};
|
|
89485
|
+
export declare type MarketplaceConsoleMutationApiCreatePrivateAppWithVersionArgs = {
|
|
89486
|
+
app: MarketplaceConsoleAppInput;
|
|
89487
|
+
};
|
|
89085
89488
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
89086
89489
|
appSoftwareId: Scalars['String']['input'];
|
|
89087
89490
|
token: Scalars['String']['input'];
|
|
@@ -90097,6 +90500,11 @@ export declare type MarketplaceStoreGeoIpResponse = {
|
|
|
90097
90500
|
__typename?: 'MarketplaceStoreGeoIPResponse';
|
|
90098
90501
|
countryCode: Scalars['String']['output'];
|
|
90099
90502
|
};
|
|
90503
|
+
export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
90504
|
+
__typename?: 'MarketplaceStoreGetUserPreferencesResponse';
|
|
90505
|
+
preferences: MarketplaceStoreUserPreferences;
|
|
90506
|
+
version: Scalars['Int']['output'];
|
|
90507
|
+
};
|
|
90100
90508
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
90101
90509
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
90102
90510
|
description: Scalars['String']['output'];
|
|
@@ -90287,6 +90695,7 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
90287
90695
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
90288
90696
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
90289
90697
|
updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
90698
|
+
updateUserPreferences: MarketplaceStoreUpdateUserPreferencesResponse;
|
|
90290
90699
|
};
|
|
90291
90700
|
export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
|
|
90292
90701
|
input: MarketplaceStoreCreateOrUpdateReviewInput;
|
|
@@ -90312,6 +90721,9 @@ export declare type MarketplaceStoreMutationApiUpdateReviewFlagArgs = {
|
|
|
90312
90721
|
export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
|
|
90313
90722
|
input: MarketplaceStoreUpdateReviewVoteInput;
|
|
90314
90723
|
};
|
|
90724
|
+
export declare type MarketplaceStoreMutationApiUpdateUserPreferencesArgs = {
|
|
90725
|
+
input: MarketplaceStoreUpdateUserPreferencesInput;
|
|
90726
|
+
};
|
|
90315
90727
|
export declare type MarketplaceStoreOfferingDetails = {
|
|
90316
90728
|
__typename?: 'MarketplaceStoreOfferingDetails';
|
|
90317
90729
|
id: Scalars['ID']['output'];
|
|
@@ -90533,6 +90945,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
90533
90945
|
orgId: MarketplaceStoreOrgIdResponse;
|
|
90534
90946
|
partner: MarketplaceStorePartnerResponse;
|
|
90535
90947
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
90948
|
+
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
90536
90949
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
90537
90950
|
};
|
|
90538
90951
|
export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
|
|
@@ -90709,6 +91122,26 @@ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
|
|
|
90709
91122
|
id: Scalars['ID']['output'];
|
|
90710
91123
|
status?: Maybe<Scalars['String']['output']>;
|
|
90711
91124
|
};
|
|
91125
|
+
export declare type MarketplaceStoreUpdateUserPreferencesInput = {
|
|
91126
|
+
preferences: MarketplaceStoreUserPreferencesInput;
|
|
91127
|
+
version: Scalars['Int']['input'];
|
|
91128
|
+
};
|
|
91129
|
+
export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
91130
|
+
__typename?: 'MarketplaceStoreUpdateUserPreferencesResponse';
|
|
91131
|
+
status: Scalars['String']['output'];
|
|
91132
|
+
version: Scalars['Int']['output'];
|
|
91133
|
+
};
|
|
91134
|
+
export declare type MarketplaceStoreUserPreferences = {
|
|
91135
|
+
__typename?: 'MarketplaceStoreUserPreferences';
|
|
91136
|
+
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
91137
|
+
notifyOnAppUninstallDisableFeedback?: Maybe<Scalars['Boolean']['output']>;
|
|
91138
|
+
notifyOnReviewResponseOrUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
91139
|
+
};
|
|
91140
|
+
export declare type MarketplaceStoreUserPreferencesInput = {
|
|
91141
|
+
notifyOnAppArchivalSchedule: Scalars['Boolean']['input'];
|
|
91142
|
+
notifyOnAppUninstallDisableFeedback: Scalars['Boolean']['input'];
|
|
91143
|
+
notifyOnReviewResponseOrUpdate: Scalars['Boolean']['input'];
|
|
91144
|
+
};
|
|
90712
91145
|
export declare type MarketplaceStoreUserProfileResponse = {
|
|
90713
91146
|
__typename?: 'MarketplaceStoreUserProfileResponse';
|
|
90714
91147
|
developerSpaces?: Maybe<Array<MarketplaceStoreLoggedInUserDeveloperSpace>>;
|
|
@@ -91863,6 +92296,17 @@ export declare type MercuryFocusAreaIcon = {
|
|
|
91863
92296
|
__typename?: 'MercuryFocusAreaIcon';
|
|
91864
92297
|
url: Scalars['String']['output'];
|
|
91865
92298
|
};
|
|
92299
|
+
export declare type MercuryFocusAreaInsight = MercuryInsight & {
|
|
92300
|
+
__typename?: 'MercuryFocusAreaInsight';
|
|
92301
|
+
ari: Scalars['ID']['output'];
|
|
92302
|
+
id: Scalars['ID']['output'];
|
|
92303
|
+
insightData?: Maybe<MercuryFocusArea>;
|
|
92304
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92305
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92306
|
+
};
|
|
92307
|
+
export declare type MercuryFocusAreaInsightsFilter = {
|
|
92308
|
+
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
92309
|
+
};
|
|
91866
92310
|
export declare type MercuryFocusAreaLink = Node & {
|
|
91867
92311
|
__typename?: 'MercuryFocusAreaLink';
|
|
91868
92312
|
childFocusAreaId: Scalars['String']['output'];
|
|
@@ -92221,6 +92665,14 @@ export declare type MercuryGoalAggregatedStatusCount = {
|
|
|
92221
92665
|
latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
92222
92666
|
subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
92223
92667
|
};
|
|
92668
|
+
export declare type MercuryGoalInsight = MercuryInsight & {
|
|
92669
|
+
__typename?: 'MercuryGoalInsight';
|
|
92670
|
+
ari: Scalars['ID']['output'];
|
|
92671
|
+
id: Scalars['ID']['output'];
|
|
92672
|
+
insightData?: Maybe<TownsquareGoal>;
|
|
92673
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92674
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92675
|
+
};
|
|
92224
92676
|
export declare type MercuryGoalStatusCount = {
|
|
92225
92677
|
__typename?: 'MercuryGoalStatusCount';
|
|
92226
92678
|
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
@@ -92242,6 +92694,25 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
92242
92694
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
92243
92695
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92244
92696
|
};
|
|
92697
|
+
export declare type MercuryInsight = {
|
|
92698
|
+
id: Scalars['ID']['output'];
|
|
92699
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92700
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92701
|
+
};
|
|
92702
|
+
export declare type MercuryInsightObject = MercuryFocusAreaInsight | MercuryGoalInsight | MercuryJiraAlignProjectInsight | MercuryJiraIssueInsight | MercuryTownsquareProjectInsight;
|
|
92703
|
+
export declare enum MercuryInsightTypeEnum {
|
|
92704
|
+
FocusArea = "FOCUS_AREA",
|
|
92705
|
+
Goal = "GOAL",
|
|
92706
|
+
Work = "WORK"
|
|
92707
|
+
}
|
|
92708
|
+
export declare type MercuryInsightsQueryApi = {
|
|
92709
|
+
__typename?: 'MercuryInsightsQueryApi';
|
|
92710
|
+
focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
|
|
92711
|
+
};
|
|
92712
|
+
export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
|
|
92713
|
+
filter?: InputMaybe<MercuryFocusAreaInsightsFilter>;
|
|
92714
|
+
focusAreaId: Scalars['ID']['input'];
|
|
92715
|
+
};
|
|
92245
92716
|
export declare type MercuryInvestmentCategory = Node & {
|
|
92246
92717
|
__typename?: 'MercuryInvestmentCategory';
|
|
92247
92718
|
createdBy?: Maybe<User>;
|
|
@@ -92282,6 +92753,14 @@ export declare type MercuryInvestmentCategorySetSort = {
|
|
|
92282
92753
|
export declare enum MercuryInvestmentCategorySetSortField {
|
|
92283
92754
|
Name = "NAME"
|
|
92284
92755
|
}
|
|
92756
|
+
export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
92757
|
+
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
92758
|
+
ari: Scalars['ID']['output'];
|
|
92759
|
+
id: Scalars['ID']['output'];
|
|
92760
|
+
insightData?: Maybe<JiraAlignAggProject>;
|
|
92761
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92762
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92763
|
+
};
|
|
92285
92764
|
export declare type MercuryJiraAlignProjectType = {
|
|
92286
92765
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
92287
92766
|
displayName: Scalars['String']['output'];
|
|
@@ -92303,6 +92782,14 @@ export declare type MercuryJiraAlignProviderQueryApiIsJaConnectedArgs = {
|
|
|
92303
92782
|
export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesArgs = {
|
|
92304
92783
|
cloudId: Scalars['ID']['input'];
|
|
92305
92784
|
};
|
|
92785
|
+
export declare type MercuryJiraIssueInsight = MercuryInsight & {
|
|
92786
|
+
__typename?: 'MercuryJiraIssueInsight';
|
|
92787
|
+
ari: Scalars['ID']['output'];
|
|
92788
|
+
id: Scalars['ID']['output'];
|
|
92789
|
+
insightData?: Maybe<JiraIssue>;
|
|
92790
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92791
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92792
|
+
};
|
|
92306
92793
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
92307
92794
|
focusAreaAri: Scalars['String']['input'];
|
|
92308
92795
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -93720,6 +94207,14 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
93720
94207
|
export declare type MercuryTextCustomFieldInput = {
|
|
93721
94208
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
93722
94209
|
};
|
|
94210
|
+
export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
94211
|
+
__typename?: 'MercuryTownsquareProjectInsight';
|
|
94212
|
+
ari: Scalars['ID']['output'];
|
|
94213
|
+
id: Scalars['ID']['output'];
|
|
94214
|
+
insightData?: Maybe<TownsquareProject>;
|
|
94215
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
94216
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
94217
|
+
};
|
|
93723
94218
|
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
93724
94219
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
93725
94220
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -94369,6 +94864,7 @@ export declare type Mutation = {
|
|
|
94369
94864
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
94370
94865
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
94371
94866
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
94867
|
+
agentStudio_createAndRunBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
94372
94868
|
agentStudio_createBatchEvaluationJob: AgentStudioCreateBatchEvaluationJobPayload;
|
|
94373
94869
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
94374
94870
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
@@ -94418,6 +94914,7 @@ export declare type Mutation = {
|
|
|
94418
94914
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
94419
94915
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
94420
94916
|
attachDanglingComment?: Maybe<Comment>;
|
|
94917
|
+
avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
|
|
94421
94918
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
94422
94919
|
avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
|
|
94423
94920
|
avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
|
|
@@ -94521,6 +95018,7 @@ export declare type Mutation = {
|
|
|
94521
95018
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
94522
95019
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
94523
95020
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
95021
|
+
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
94524
95022
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
94525
95023
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
94526
95024
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
@@ -94715,6 +95213,9 @@ export declare type Mutation = {
|
|
|
94715
95213
|
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
94716
95214
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
94717
95215
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
95216
|
+
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
95217
|
+
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
95218
|
+
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
94718
95219
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
94719
95220
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
94720
95221
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
@@ -94788,6 +95289,7 @@ export declare type Mutation = {
|
|
|
94788
95289
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
94789
95290
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
94790
95291
|
jira_listSettingMigrationMutation?: Maybe<JiraListSettingMigrationPayload>;
|
|
95292
|
+
jira_mergeIssues?: Maybe<JiraMergeIssuesPayload>;
|
|
94791
95293
|
jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
|
|
94792
95294
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
94793
95295
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -94797,6 +95299,7 @@ export declare type Mutation = {
|
|
|
94797
95299
|
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
94798
95300
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
94799
95301
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
95302
|
+
jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
|
|
94800
95303
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
94801
95304
|
jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
94802
95305
|
jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
@@ -94838,8 +95341,10 @@ export declare type Mutation = {
|
|
|
94838
95341
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
94839
95342
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
94840
95343
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
95344
|
+
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
94841
95345
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
94842
95346
|
jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
|
|
95347
|
+
jira_updateCustomField?: Maybe<JiraUpdateCustomFieldPayload>;
|
|
94843
95348
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
94844
95349
|
jira_updateFieldToFieldSchemeAssociations?: Maybe<JiraFieldToFieldSchemeAssociationsPayload>;
|
|
94845
95350
|
jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
|
|
@@ -95033,6 +95538,7 @@ export declare type Mutation = {
|
|
|
95033
95538
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
95034
95539
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
95035
95540
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
95541
|
+
stakeholderComms_createSubscriber?: Maybe<StakeholderCommsSubscriberResponse>;
|
|
95036
95542
|
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95037
95543
|
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95038
95544
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -95042,6 +95548,7 @@ export declare type Mutation = {
|
|
|
95042
95548
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
95043
95549
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
95044
95550
|
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
95551
|
+
stakeholderComms_unsubscribeSubscriber?: Maybe<StakeholderCommsUnsubscribeSubscriberResponse>;
|
|
95045
95552
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
95046
95553
|
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
95047
95554
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -95226,6 +95733,12 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
95226
95733
|
cloudId: Scalars['String']['input'];
|
|
95227
95734
|
input: AgentStudioCreateAgentInput;
|
|
95228
95735
|
};
|
|
95736
|
+
export declare type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
|
|
95737
|
+
cloudId: Scalars['String']['input'];
|
|
95738
|
+
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
95739
|
+
productType: AgentStudioProductType;
|
|
95740
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
95741
|
+
};
|
|
95229
95742
|
export declare type MutationAgentStudio_CreateBatchEvaluationJobArgs = {
|
|
95230
95743
|
cloudId: Scalars['String']['input'];
|
|
95231
95744
|
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
@@ -95442,6 +95955,9 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
95442
95955
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
95443
95956
|
input: ReattachInlineCommentInput;
|
|
95444
95957
|
};
|
|
95958
|
+
export declare type MutationAvpPermissions_UpdateDashboardUserAccessArgs = {
|
|
95959
|
+
input: AvpPermissionsUpdateDashboardUserAccessInput;
|
|
95960
|
+
};
|
|
95445
95961
|
export declare type MutationAvp_AddDashboardElementArgs = {
|
|
95446
95962
|
input: AvpAddDashboardElementInput;
|
|
95447
95963
|
};
|
|
@@ -95806,6 +96322,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
|
95806
96322
|
cloudId: Scalars['ID']['input'];
|
|
95807
96323
|
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
95808
96324
|
};
|
|
96325
|
+
export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
|
|
96326
|
+
cloudId: Scalars['ID']['input'];
|
|
96327
|
+
input: ConfluenceSetContentGeneralAccessModeInput;
|
|
96328
|
+
};
|
|
95809
96329
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
95810
96330
|
cloudId: Scalars['ID']['input'];
|
|
95811
96331
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -96493,6 +97013,15 @@ export declare type MutationGoals_CloneArgs = {
|
|
|
96493
97013
|
export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
|
|
96494
97014
|
input: TownsquareGoalsCreateAddMetricTargetInput;
|
|
96495
97015
|
};
|
|
97016
|
+
export declare type MutationGoals_CreateDecisionArgs = {
|
|
97017
|
+
input: TownsquareGoalsCreateDecisionInput;
|
|
97018
|
+
};
|
|
97019
|
+
export declare type MutationGoals_CreateLearningArgs = {
|
|
97020
|
+
input: TownsquareGoalsCreateLearningInput;
|
|
97021
|
+
};
|
|
97022
|
+
export declare type MutationGoals_CreateRiskArgs = {
|
|
97023
|
+
input: TownsquareGoalsCreateRiskInput;
|
|
97024
|
+
};
|
|
96496
97025
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
96497
97026
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
96498
97027
|
};
|
|
@@ -96706,6 +97235,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
|
|
|
96706
97235
|
export declare type MutationJira_ListSettingMigrationMutationArgs = {
|
|
96707
97236
|
input: JiraListSettingMigrationInput;
|
|
96708
97237
|
};
|
|
97238
|
+
export declare type MutationJira_MergeIssuesArgs = {
|
|
97239
|
+
input: JiraMergeIssuesInput;
|
|
97240
|
+
};
|
|
96709
97241
|
export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
|
|
96710
97242
|
input: JiraMoveBoardViewIssueToCellEndInput;
|
|
96711
97243
|
};
|
|
@@ -96735,6 +97267,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
96735
97267
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
96736
97268
|
input: JiraReorderSidebarMenuItemInput;
|
|
96737
97269
|
};
|
|
97270
|
+
export declare type MutationJira_RestoreCustomFieldsArgs = {
|
|
97271
|
+
cloudId: Scalars['ID']['input'];
|
|
97272
|
+
input: JiraRestoreCustomFieldsInput;
|
|
97273
|
+
};
|
|
96738
97274
|
export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
|
|
96739
97275
|
cloudId: Scalars['ID']['input'];
|
|
96740
97276
|
input: JiraRestoreGlobalCustomFieldsInput;
|
|
@@ -96862,6 +97398,10 @@ export declare type MutationJira_SetViewFilterArgs = {
|
|
|
96862
97398
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
96863
97399
|
input: JiraSetViewGroupByInput;
|
|
96864
97400
|
};
|
|
97401
|
+
export declare type MutationJira_TrashCustomFieldsArgs = {
|
|
97402
|
+
cloudId: Scalars['ID']['input'];
|
|
97403
|
+
input: JiraTrashCustomFieldsInput;
|
|
97404
|
+
};
|
|
96865
97405
|
export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
96866
97406
|
cloudId: Scalars['ID']['input'];
|
|
96867
97407
|
input: JiraTrashGlobalCustomFieldsInput;
|
|
@@ -96869,6 +97409,10 @@ export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
|
96869
97409
|
export declare type MutationJira_UnarchiveIssueArgs = {
|
|
96870
97410
|
input: JiraIssueUnarchiveInput;
|
|
96871
97411
|
};
|
|
97412
|
+
export declare type MutationJira_UpdateCustomFieldArgs = {
|
|
97413
|
+
cloudId: Scalars['ID']['input'];
|
|
97414
|
+
input: JiraUpdateCustomFieldInput;
|
|
97415
|
+
};
|
|
96872
97416
|
export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
96873
97417
|
cloudId: Scalars['ID']['input'];
|
|
96874
97418
|
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
@@ -97456,6 +98000,9 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
|
|
|
97456
98000
|
stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
|
|
97457
98001
|
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
97458
98002
|
};
|
|
98003
|
+
export declare type MutationStakeholderComms_CreateSubscriberArgs = {
|
|
98004
|
+
subscriptionRequest: StakeholderCommsSubscriptionRequest;
|
|
98005
|
+
};
|
|
97459
98006
|
export declare type MutationStakeholderComms_DeleteDraftPageArgs = {
|
|
97460
98007
|
pageId: Scalars['String']['input'];
|
|
97461
98008
|
};
|
|
@@ -97484,6 +98031,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
|
97484
98031
|
export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
97485
98032
|
resendInviteInput: StakeholderCommsResendInviteInput;
|
|
97486
98033
|
};
|
|
98034
|
+
export declare type MutationStakeholderComms_UnsubscribeSubscriberArgs = {
|
|
98035
|
+
subscriberId: Scalars['String']['input'];
|
|
98036
|
+
};
|
|
97487
98037
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
97488
98038
|
page: StakeholderCommsUpdatePageInputType;
|
|
97489
98039
|
};
|
|
@@ -100661,6 +101211,7 @@ export declare type Query = {
|
|
|
100661
101211
|
admin_eventLocations?: Maybe<AdminEventLocationConnection>;
|
|
100662
101212
|
admin_group?: Maybe<AdminGroup>;
|
|
100663
101213
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
101214
|
+
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
100664
101215
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
100665
101216
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
100666
101217
|
admin_org?: Maybe<AdminOrganization>;
|
|
@@ -100681,6 +101232,7 @@ export declare type Query = {
|
|
|
100681
101232
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
100682
101233
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
100683
101234
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
101235
|
+
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
100684
101236
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
100685
101237
|
agentStudio_batchEvaluationJobsResult: AgentStudioBatchEvaluationJobsResult;
|
|
100686
101238
|
agentStudio_batchEvaluationResults: AgentStudioEvaluationResultsResult;
|
|
@@ -100692,7 +101244,6 @@ export declare type Query = {
|
|
|
100692
101244
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
100693
101245
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
100694
101246
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
100695
|
-
agentStudio_getAgentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
100696
101247
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
100697
101248
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
100698
101249
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -100749,6 +101300,7 @@ export declare type Query = {
|
|
|
100749
101300
|
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
100750
101301
|
assetsDM_dataSourceMergeGetByObjectId?: Maybe<AssetsDmDataSourceMergeGetByObjectIdResponse>;
|
|
100751
101302
|
assetsDM_dataSourceMergeGetObjectsForImport?: Maybe<Array<AssetsDmDataSourceMergeObjectForImportInfo>>;
|
|
101303
|
+
assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
|
|
100752
101304
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
100753
101305
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
100754
101306
|
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
@@ -100774,6 +101326,7 @@ export declare type Query = {
|
|
|
100774
101326
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
100775
101327
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
100776
101328
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
101329
|
+
avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
|
|
100777
101330
|
avp_getChart?: Maybe<AvpChart>;
|
|
100778
101331
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
100779
101332
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
@@ -100872,6 +101425,7 @@ export declare type Query = {
|
|
|
100872
101425
|
confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
|
|
100873
101426
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
100874
101427
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
101428
|
+
confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
|
|
100875
101429
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
100876
101430
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
100877
101431
|
confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
|
|
@@ -100895,6 +101449,7 @@ export declare type Query = {
|
|
|
100895
101449
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
100896
101450
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
100897
101451
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
101452
|
+
confluence_spaceProperty?: Maybe<ConfluenceSpaceProperty>;
|
|
100898
101453
|
confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
|
|
100899
101454
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
100900
101455
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
@@ -100957,6 +101512,7 @@ export declare type Query = {
|
|
|
100957
101512
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
100958
101513
|
cpls_customContributionTargets: CplsCustomContributionTargetConnection;
|
|
100959
101514
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
101515
|
+
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
100960
101516
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
100961
101517
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100962
101518
|
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -101011,6 +101567,7 @@ export declare type Query = {
|
|
|
101011
101567
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
101012
101568
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
101013
101569
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
101570
|
+
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
101014
101571
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
101015
101572
|
devai_containerConfig?: Maybe<DevAiContainerConfig>;
|
|
101016
101573
|
devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
|
|
@@ -101025,6 +101582,7 @@ export declare type Query = {
|
|
|
101025
101582
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
101026
101583
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
101027
101584
|
devai_rovoDevEntitlements?: Maybe<DevAiEntitlementCheckResultResponse>;
|
|
101585
|
+
devai_rovodevIssueViewQuery?: Maybe<DevAiRovoDevIssueViewResponse>;
|
|
101028
101586
|
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
101029
101587
|
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
101030
101588
|
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
@@ -101086,8 +101644,11 @@ export declare type Query = {
|
|
|
101086
101644
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
101087
101645
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
101088
101646
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
101647
|
+
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
101089
101648
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
101090
101649
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
101650
|
+
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
101651
|
+
goals_metricSearch?: Maybe<TownsquareMetricConnection>;
|
|
101091
101652
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
101092
101653
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
101093
101654
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
@@ -101176,6 +101737,7 @@ export declare type Query = {
|
|
|
101176
101737
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
101177
101738
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
101178
101739
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
101740
|
+
jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
|
|
101179
101741
|
jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
|
|
101180
101742
|
jira_onboardingConfigByTarget?: Maybe<JiraOnboardingConfig>;
|
|
101181
101743
|
jira_onboardingConfigs?: Maybe<JiraOnboardingConfigConnection>;
|
|
@@ -101245,6 +101807,7 @@ export declare type Query = {
|
|
|
101245
101807
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
101246
101808
|
mercury?: Maybe<MercuryQueryApi>;
|
|
101247
101809
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
101810
|
+
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
101248
101811
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
101249
101812
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
101250
101813
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
@@ -101310,6 +101873,7 @@ export declare type Query = {
|
|
|
101310
101873
|
pricings: ContentPlatformPricingSearchConnection;
|
|
101311
101874
|
productListing?: Maybe<ProductListingResult>;
|
|
101312
101875
|
productListings: Array<ProductListingResult>;
|
|
101876
|
+
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
101313
101877
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
101314
101878
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
101315
101879
|
projects_byId?: Maybe<TownsquareProject>;
|
|
@@ -101459,6 +102023,7 @@ export declare type Query = {
|
|
|
101459
102023
|
team?: Maybe<TeamQuery>;
|
|
101460
102024
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
101461
102025
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
102026
|
+
teamworkGraph_activitiesLinkedToProject?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101462
102027
|
teamworkGraph_getProjectContext?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101463
102028
|
teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101464
102029
|
teamworkGraph_teamProjects?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -101590,6 +102155,10 @@ export declare type QueryAdmin_GroupsArgs = {
|
|
|
101590
102155
|
input?: InputMaybe<AdminSearchGroupInput>;
|
|
101591
102156
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
101592
102157
|
};
|
|
102158
|
+
export declare type QueryAdmin_IdentityProviderDirectorySamlConfigurationArgs = {
|
|
102159
|
+
identityProviderDirectoryId: Scalars['ID']['input'];
|
|
102160
|
+
orgId: Scalars['ID']['input'];
|
|
102161
|
+
};
|
|
101593
102162
|
export declare type QueryAdmin_InvitePoliciesArgs = {
|
|
101594
102163
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101595
102164
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101691,11 +102260,15 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
101691
102260
|
};
|
|
101692
102261
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
101693
102262
|
id: Scalars['ID']['input'];
|
|
102263
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
101694
102264
|
};
|
|
101695
102265
|
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
101696
102266
|
cloudId: Scalars['String']['input'];
|
|
101697
102267
|
id: Scalars['ID']['input'];
|
|
101698
102268
|
};
|
|
102269
|
+
export declare type QueryAgentStudio_AgentsByIdsArgs = {
|
|
102270
|
+
ids: Array<Scalars['ID']['input']>;
|
|
102271
|
+
};
|
|
101699
102272
|
export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
|
|
101700
102273
|
cloudId: Scalars['String']['input'];
|
|
101701
102274
|
jobId: Scalars['ID']['input'];
|
|
@@ -101770,9 +102343,6 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
101770
102343
|
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
101771
102344
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
101772
102345
|
};
|
|
101773
|
-
export declare type QueryAgentStudio_GetAgentsByIdsArgs = {
|
|
101774
|
-
ids: Array<Scalars['ID']['input']>;
|
|
101775
|
-
};
|
|
101776
102346
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
101777
102347
|
cloudId: Scalars['String']['input'];
|
|
101778
102348
|
externalReference: Scalars['String']['input'];
|
|
@@ -101782,6 +102352,7 @@ export declare type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
|
|
|
101782
102352
|
};
|
|
101783
102353
|
export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
|
|
101784
102354
|
cloudId: Scalars['String']['input'];
|
|
102355
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
101785
102356
|
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
101786
102357
|
};
|
|
101787
102358
|
export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
|
|
@@ -101816,12 +102387,14 @@ export declare type QueryAgentStudio_ToolIntegrationsArgs = {
|
|
|
101816
102387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101817
102388
|
cloudId: Scalars['String']['input'];
|
|
101818
102389
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102390
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
101819
102391
|
};
|
|
101820
102392
|
export declare type QueryAgentStudio_ToolsArgs = {
|
|
101821
102393
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101822
102394
|
cloudId: Scalars['String']['input'];
|
|
101823
102395
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101824
102396
|
integrationKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
102397
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
101825
102398
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
101826
102399
|
};
|
|
101827
102400
|
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
@@ -102040,6 +102613,10 @@ export declare type QueryAssetsDm_DataSourceMergeGetObjectsForImportArgs = {
|
|
|
102040
102613
|
dataSourceId: Scalars['ID']['input'];
|
|
102041
102614
|
workspaceId: Scalars['ID']['input'];
|
|
102042
102615
|
};
|
|
102616
|
+
export declare type QueryAssetsDm_DataSourceMergeIsImportProgressingArgs = {
|
|
102617
|
+
cloudId: Scalars['ID']['input'];
|
|
102618
|
+
workspaceId: Scalars['ID']['input'];
|
|
102619
|
+
};
|
|
102043
102620
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
102044
102621
|
cloudID: Scalars['ID']['input'];
|
|
102045
102622
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -102166,6 +102743,10 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
|
102166
102743
|
export declare type QueryAvailableContentStatesArgs = {
|
|
102167
102744
|
contentId: Scalars['ID']['input'];
|
|
102168
102745
|
};
|
|
102746
|
+
export declare type QueryAvpPermissions_HelloArgs = {
|
|
102747
|
+
cloudId: Scalars['ID']['input'];
|
|
102748
|
+
integrationId: Scalars['String']['input'];
|
|
102749
|
+
};
|
|
102169
102750
|
export declare type QueryAvp_GetChartArgs = {
|
|
102170
102751
|
chartAri: Scalars['ID']['input'];
|
|
102171
102752
|
};
|
|
@@ -102597,6 +103178,12 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
102597
103178
|
export declare type QueryConfluence_MediaTokenDataArgs = {
|
|
102598
103179
|
noteId: Scalars['ID']['input'];
|
|
102599
103180
|
};
|
|
103181
|
+
export declare type QueryConfluence_NbmPerfReportListArgs = {
|
|
103182
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103183
|
+
cloudId: Scalars['ID']['input'];
|
|
103184
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103185
|
+
status?: InputMaybe<ConfluenceNbmScanStatus>;
|
|
103186
|
+
};
|
|
102600
103187
|
export declare type QueryConfluence_NbmScanListArgs = {
|
|
102601
103188
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102602
103189
|
cloudId: Scalars['ID']['input'];
|
|
@@ -102722,6 +103309,11 @@ export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
|
102722
103309
|
contentType: Scalars['String']['input'];
|
|
102723
103310
|
spaceKey: Scalars['String']['input'];
|
|
102724
103311
|
};
|
|
103312
|
+
export declare type QueryConfluence_SpacePropertyArgs = {
|
|
103313
|
+
cloudId: Scalars['ID']['input'];
|
|
103314
|
+
key: Scalars['String']['input'];
|
|
103315
|
+
spaceId: Scalars['ID']['input'];
|
|
103316
|
+
};
|
|
102725
103317
|
export declare type QueryConfluence_SpaceRecommendationsArgs = {
|
|
102726
103318
|
cloudId: Scalars['ID']['input'];
|
|
102727
103319
|
eventTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -103080,6 +103672,9 @@ export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
|
103080
103672
|
export declare type QueryCpls_CustomContributionTargetsByIdsArgs = {
|
|
103081
103673
|
ids: Array<Scalars['ID']['input']>;
|
|
103082
103674
|
};
|
|
103675
|
+
export declare type QueryCpls_PeopleViewArgs = {
|
|
103676
|
+
id: Scalars['ID']['input'];
|
|
103677
|
+
};
|
|
103083
103678
|
export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
103084
103679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103085
103680
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -103301,6 +103896,10 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
103301
103896
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
103302
103897
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
103303
103898
|
};
|
|
103899
|
+
export declare type QueryDevai_CheckEntitlementsArgs = {
|
|
103900
|
+
cloudId: Scalars['ID']['input'];
|
|
103901
|
+
xid: Scalars['String']['input'];
|
|
103902
|
+
};
|
|
103304
103903
|
export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
103305
103904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103306
103905
|
cloudId: Scalars['ID']['input'];
|
|
@@ -103362,6 +103961,13 @@ export declare type QueryDevai_RovoDevEntitlementsArgs = {
|
|
|
103362
103961
|
cloudId: Scalars['ID']['input'];
|
|
103363
103962
|
includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103364
103963
|
};
|
|
103964
|
+
export declare type QueryDevai_RovodevIssueViewQueryArgs = {
|
|
103965
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103966
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
103967
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103968
|
+
includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103969
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
103970
|
+
};
|
|
103365
103971
|
export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
103366
103972
|
id: Scalars['ID']['input'];
|
|
103367
103973
|
};
|
|
@@ -103578,12 +104184,25 @@ export declare type QueryGetSummaryArgs = {
|
|
|
103578
104184
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
103579
104185
|
responseType?: InputMaybe<ResponseType>;
|
|
103580
104186
|
};
|
|
104187
|
+
export declare type QueryGoals_AppSettingsArgs = {
|
|
104188
|
+
containerId: Scalars['ID']['input'];
|
|
104189
|
+
};
|
|
103581
104190
|
export declare type QueryGoals_ByIdArgs = {
|
|
103582
104191
|
goalId: Scalars['ID']['input'];
|
|
103583
104192
|
};
|
|
103584
104193
|
export declare type QueryGoals_ByIdsArgs = {
|
|
103585
104194
|
goalIds: Array<Scalars['ID']['input']>;
|
|
103586
104195
|
};
|
|
104196
|
+
export declare type QueryGoals_GoalTypeByIdArgs = {
|
|
104197
|
+
goalTypeId: Scalars['ID']['input'];
|
|
104198
|
+
};
|
|
104199
|
+
export declare type QueryGoals_MetricSearchArgs = {
|
|
104200
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104201
|
+
containerId: Scalars['ID']['input'];
|
|
104202
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104203
|
+
searchString: Scalars['String']['input'];
|
|
104204
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareMetricSortEnum>>>;
|
|
104205
|
+
};
|
|
103587
104206
|
export declare type QueryGoals_MetricTargetsByIdsArgs = {
|
|
103588
104207
|
metricTargetIds: Array<Scalars['ID']['input']>;
|
|
103589
104208
|
};
|
|
@@ -103897,6 +104516,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
|
|
|
103897
104516
|
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
103898
104517
|
cloudId: Scalars['ID']['input'];
|
|
103899
104518
|
};
|
|
104519
|
+
export declare type QueryJira_MergeIssuesOperationProgressArgs = {
|
|
104520
|
+
input: JiraMergeIssuesOperationProgressInput;
|
|
104521
|
+
};
|
|
103900
104522
|
export declare type QueryJira_OnboardingConfigByIdArgs = {
|
|
103901
104523
|
cloudId: Scalars['ID']['input'];
|
|
103902
104524
|
id: Scalars['ID']['input'];
|
|
@@ -104329,6 +104951,9 @@ export declare type QueryProductListingsArgs = {
|
|
|
104329
104951
|
ids: Array<Scalars['ID']['input']>;
|
|
104330
104952
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
104331
104953
|
};
|
|
104954
|
+
export declare type QueryProjects_AppSettingsArgs = {
|
|
104955
|
+
containerId: Scalars['ID']['input'];
|
|
104956
|
+
};
|
|
104332
104957
|
export declare type QueryProjects_ByAriArgs = {
|
|
104333
104958
|
ari: Scalars['String']['input'];
|
|
104334
104959
|
};
|
|
@@ -104750,13 +105375,13 @@ export declare type QueryStakeholderComms_GetComponentUptimePercentageArgs = {
|
|
|
104750
105375
|
};
|
|
104751
105376
|
export declare type QueryStakeholderComms_GetComponentWithUptimeByComponentIdArgs = {
|
|
104752
105377
|
componentId: Scalars['String']['input'];
|
|
104753
|
-
endDate
|
|
104754
|
-
startDate
|
|
105378
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
105379
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
104755
105380
|
};
|
|
104756
105381
|
export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdArgs = {
|
|
104757
|
-
endDate
|
|
105382
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
104758
105383
|
pageId: Scalars['String']['input'];
|
|
104759
|
-
startDate
|
|
105384
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
104760
105385
|
};
|
|
104761
105386
|
export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdV2Args = {
|
|
104762
105387
|
nestedComponentWithUptimeConnectionInput: StakeholderCommsNestedComponentWithUptimeConnectionInput;
|
|
@@ -104904,6 +105529,11 @@ export declare type QueryTeamLabelsArgs = {
|
|
|
104904
105529
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104905
105530
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
104906
105531
|
};
|
|
105532
|
+
export declare type QueryTeamworkGraph_ActivitiesLinkedToProjectArgs = {
|
|
105533
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
105534
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105535
|
+
projectId: Scalars['ID']['input'];
|
|
105536
|
+
};
|
|
104907
105537
|
export declare type QueryTeamworkGraph_GetProjectContextArgs = {
|
|
104908
105538
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104909
105539
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -107775,6 +108405,7 @@ export declare type SearchFilterInput = {
|
|
|
107775
108405
|
jiraFilters?: InputMaybe<SearchJiraFilter>;
|
|
107776
108406
|
locations: Array<Scalars['String']['input']>;
|
|
107777
108407
|
mercuryFilters?: InputMaybe<SearchMercuryFilter>;
|
|
108408
|
+
talentFilters?: InputMaybe<SearchTalentFilter>;
|
|
107778
108409
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
107779
108410
|
trelloFilters?: InputMaybe<SearchTrelloFilter>;
|
|
107780
108411
|
};
|
|
@@ -107908,6 +108539,7 @@ export declare type SearchProductInfo = {
|
|
|
107908
108539
|
};
|
|
107909
108540
|
export declare enum SearchProjectType {
|
|
107910
108541
|
Business = "business",
|
|
108542
|
+
CustomerService = "customer_service",
|
|
107911
108543
|
ProductDiscovery = "product_discovery",
|
|
107912
108544
|
ServiceDesk = "service_desk",
|
|
107913
108545
|
Software = "software"
|
|
@@ -108533,6 +109165,7 @@ export declare type SearchThirdPartyProduct = {
|
|
|
108533
109165
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
108534
109166
|
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
108535
109167
|
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
109168
|
+
entities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
108536
109169
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
108537
109170
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
108538
109171
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -129521,6 +130154,7 @@ export declare type StakeholderCommsIncidentCreateRequest = {
|
|
|
129521
130154
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
129522
130155
|
name: Scalars['String']['input'];
|
|
129523
130156
|
pageId: Scalars['String']['input'];
|
|
130157
|
+
shouldSendNotifications?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129524
130158
|
status?: InputMaybe<StakeholderCommsIncidentStatus>;
|
|
129525
130159
|
};
|
|
129526
130160
|
export declare enum StakeholderCommsIncidentImpact {
|
|
@@ -129569,6 +130203,7 @@ export declare type StakeholderCommsIncidentUpdate = {
|
|
|
129569
130203
|
incidentId?: Maybe<Scalars['String']['output']>;
|
|
129570
130204
|
oldStatus?: Maybe<StakeholderCommsIncidentStatus>;
|
|
129571
130205
|
scheduledAt?: Maybe<Scalars['String']['output']>;
|
|
130206
|
+
shouldSendNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
129572
130207
|
status?: Maybe<StakeholderCommsIncidentStatus>;
|
|
129573
130208
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
129574
130209
|
};
|
|
@@ -129579,6 +130214,7 @@ export declare type StakeholderCommsIncidentUpdateRequest = {
|
|
|
129579
130214
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
129580
130215
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
129581
130216
|
pageId: Scalars['String']['input'];
|
|
130217
|
+
shouldSendNotifications?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129582
130218
|
status?: InputMaybe<StakeholderCommsIncidentStatus>;
|
|
129583
130219
|
};
|
|
129584
130220
|
export declare type StakeholderCommsIncidentWithUpdates = {
|
|
@@ -129689,6 +130325,7 @@ export declare type StakeholderCommsNestedComponentEdge = {
|
|
|
129689
130325
|
};
|
|
129690
130326
|
export declare type StakeholderCommsNestedComponentWithUptime = {
|
|
129691
130327
|
__typename?: 'StakeholderCommsNestedComponentWithUptime';
|
|
130328
|
+
componentUptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
129692
130329
|
components?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
|
|
129693
130330
|
dailyUptimes?: Maybe<Array<Maybe<StakeholderCommsDailyComponentUptime>>>;
|
|
129694
130331
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -129712,12 +130349,12 @@ export declare type StakeholderCommsNestedComponentWithUptimeConnection = {
|
|
|
129712
130349
|
export declare type StakeholderCommsNestedComponentWithUptimeConnectionInput = {
|
|
129713
130350
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129714
130351
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
129715
|
-
endDate
|
|
130352
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
129716
130353
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129717
130354
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129718
130355
|
pageId: Scalars['String']['input'];
|
|
129719
130356
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
129720
|
-
startDate
|
|
130357
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
129721
130358
|
statusFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
129722
130359
|
};
|
|
129723
130360
|
export declare type StakeholderCommsNestedComponentWithUptimeEdge = {
|
|
@@ -130140,6 +130777,60 @@ export declare enum StakeholderCommsStakeholderType {
|
|
|
130140
130777
|
Internal = "INTERNAL",
|
|
130141
130778
|
Team = "TEAM"
|
|
130142
130779
|
}
|
|
130780
|
+
export declare type StakeholderCommsSubscriber = {
|
|
130781
|
+
__typename?: 'StakeholderCommsSubscriber';
|
|
130782
|
+
additionalInformation?: Maybe<Array<Scalars['String']['output']>>;
|
|
130783
|
+
componentIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
130784
|
+
confirmationCode?: Maybe<Scalars['String']['output']>;
|
|
130785
|
+
confirmedAt?: Maybe<Scalars['String']['output']>;
|
|
130786
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
130787
|
+
deactivatedAt?: Maybe<Scalars['String']['output']>;
|
|
130788
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
130789
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
130790
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
130791
|
+
lastRemindedAt?: Maybe<Scalars['String']['output']>;
|
|
130792
|
+
orphanedAt?: Maybe<Scalars['String']['output']>;
|
|
130793
|
+
pageAccessUserId?: Maybe<Scalars['String']['output']>;
|
|
130794
|
+
phoneCountry?: Maybe<Scalars['String']['output']>;
|
|
130795
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
130796
|
+
phoneNumberDisplay?: Maybe<Scalars['String']['output']>;
|
|
130797
|
+
quarantinedAt?: Maybe<Scalars['String']['output']>;
|
|
130798
|
+
shortCodeSubscriptionId?: Maybe<Scalars['String']['output']>;
|
|
130799
|
+
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
130800
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
130801
|
+
slackUserId?: Maybe<Scalars['String']['output']>;
|
|
130802
|
+
subscriptionType?: Maybe<Scalars['String']['output']>;
|
|
130803
|
+
type?: Maybe<StakeholderCommsSubscriberItemType>;
|
|
130804
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
130805
|
+
webhookEndpoint?: Maybe<Scalars['String']['output']>;
|
|
130806
|
+
};
|
|
130807
|
+
export declare enum StakeholderCommsSubscriberItemType {
|
|
130808
|
+
ComponentSubscriber = "COMPONENT_SUBSCRIBER",
|
|
130809
|
+
IncidentSubscriber = "INCIDENT_SUBSCRIBER",
|
|
130810
|
+
PageSubscriber = "PAGE_SUBSCRIBER"
|
|
130811
|
+
}
|
|
130812
|
+
export declare type StakeholderCommsSubscriberResponse = {
|
|
130813
|
+
__typename?: 'StakeholderCommsSubscriberResponse';
|
|
130814
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
130815
|
+
subscriber?: Maybe<StakeholderCommsSubscriber>;
|
|
130816
|
+
};
|
|
130817
|
+
export declare enum StakeholderCommsSubscriptionChannel {
|
|
130818
|
+
Email = "EMAIL",
|
|
130819
|
+
Slack = "SLACK",
|
|
130820
|
+
Sms = "SMS",
|
|
130821
|
+
Webhook = "WEBHOOK"
|
|
130822
|
+
}
|
|
130823
|
+
export declare type StakeholderCommsSubscriptionData = {
|
|
130824
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
130825
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
130826
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
130827
|
+
};
|
|
130828
|
+
export declare type StakeholderCommsSubscriptionRequest = {
|
|
130829
|
+
itemId: Scalars['String']['input'];
|
|
130830
|
+
itemType: StakeholderCommsSubscriberItemType;
|
|
130831
|
+
subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
|
|
130832
|
+
subscriptionType: StakeholderCommsSubscriptionChannel;
|
|
130833
|
+
};
|
|
130143
130834
|
export declare type StakeholderCommsUnifiedSearchInput = {
|
|
130144
130835
|
filters?: InputMaybe<Array<InputMaybe<StakeholderCommsSearchFilterType>>>;
|
|
130145
130836
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130151,6 +130842,11 @@ export declare type StakeholderCommsUnifiedSearchResults = {
|
|
|
130151
130842
|
error?: Maybe<Scalars['String']['output']>;
|
|
130152
130843
|
results?: Maybe<Array<Maybe<StakeholderCommsSearchResult>>>;
|
|
130153
130844
|
};
|
|
130845
|
+
export declare type StakeholderCommsUnsubscribeSubscriberResponse = {
|
|
130846
|
+
__typename?: 'StakeholderCommsUnsubscribeSubscriberResponse';
|
|
130847
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
130848
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
130849
|
+
};
|
|
130154
130850
|
export declare type StakeholderCommsUpdatePageInputType = {
|
|
130155
130851
|
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
130156
130852
|
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -130348,7 +131044,6 @@ export declare type Subscription = {
|
|
|
130348
131044
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
130349
131045
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
130350
131046
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
130351
|
-
convoai_onAsyncAgentUpdate?: Maybe<ConvoAiAsyncAgentUpdate>;
|
|
130352
131047
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
130353
131048
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
130354
131049
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -130379,10 +131074,6 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
|
130379
131074
|
cloudId: Scalars['ID']['input'];
|
|
130380
131075
|
conversationId: Scalars['ID']['input'];
|
|
130381
131076
|
};
|
|
130382
|
-
export declare type SubscriptionConvoai_OnAsyncAgentUpdateArgs = {
|
|
130383
|
-
cloudId: Scalars['ID']['input'];
|
|
130384
|
-
conversationId: Scalars['ID']['input'];
|
|
130385
|
-
};
|
|
130386
131077
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
130387
131078
|
cloudId: Scalars['ID']['input'];
|
|
130388
131079
|
jobId: Scalars['ID']['input'];
|
|
@@ -132466,6 +133157,11 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
|
132466
133157
|
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
132467
133158
|
success: Scalars['Boolean']['output'];
|
|
132468
133159
|
};
|
|
133160
|
+
export declare type TownsquareGoalsAppSettings = {
|
|
133161
|
+
__typename?: 'TownsquareGoalsAppSettings';
|
|
133162
|
+
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
133163
|
+
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
133164
|
+
};
|
|
132469
133165
|
export declare type TownsquareGoalsArchiveMetricInput = {
|
|
132470
133166
|
metricId: Scalars['ID']['input'];
|
|
132471
133167
|
};
|
|
@@ -132500,6 +133196,39 @@ export declare type TownsquareGoalsCreateAddMetricTargetPayload = {
|
|
|
132500
133196
|
goal?: Maybe<TownsquareGoal>;
|
|
132501
133197
|
success: Scalars['Boolean']['output'];
|
|
132502
133198
|
};
|
|
133199
|
+
export declare type TownsquareGoalsCreateDecisionInput = {
|
|
133200
|
+
description: Scalars['String']['input'];
|
|
133201
|
+
goalId: Scalars['ID']['input'];
|
|
133202
|
+
summary: Scalars['String']['input'];
|
|
133203
|
+
};
|
|
133204
|
+
export declare type TownsquareGoalsCreateDecisionPayload = {
|
|
133205
|
+
__typename?: 'TownsquareGoalsCreateDecisionPayload';
|
|
133206
|
+
decision?: Maybe<TownsquareDecision>;
|
|
133207
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133208
|
+
success: Scalars['Boolean']['output'];
|
|
133209
|
+
};
|
|
133210
|
+
export declare type TownsquareGoalsCreateLearningInput = {
|
|
133211
|
+
description: Scalars['String']['input'];
|
|
133212
|
+
goalId: Scalars['ID']['input'];
|
|
133213
|
+
summary: Scalars['String']['input'];
|
|
133214
|
+
};
|
|
133215
|
+
export declare type TownsquareGoalsCreateLearningPayload = {
|
|
133216
|
+
__typename?: 'TownsquareGoalsCreateLearningPayload';
|
|
133217
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133218
|
+
learning?: Maybe<TownsquareLearning>;
|
|
133219
|
+
success: Scalars['Boolean']['output'];
|
|
133220
|
+
};
|
|
133221
|
+
export declare type TownsquareGoalsCreateRiskInput = {
|
|
133222
|
+
description: Scalars['String']['input'];
|
|
133223
|
+
goalId: Scalars['ID']['input'];
|
|
133224
|
+
summary: Scalars['String']['input'];
|
|
133225
|
+
};
|
|
133226
|
+
export declare type TownsquareGoalsCreateRiskPayload = {
|
|
133227
|
+
__typename?: 'TownsquareGoalsCreateRiskPayload';
|
|
133228
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133229
|
+
risk?: Maybe<TownsquareRisk>;
|
|
133230
|
+
success: Scalars['Boolean']['output'];
|
|
133231
|
+
};
|
|
132503
133232
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
132504
133233
|
goalId: Scalars['ID']['input'];
|
|
132505
133234
|
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
|
|
@@ -132603,6 +133332,7 @@ export declare type TownsquareGoalsRemoveMetricTargetInput = {
|
|
|
132603
133332
|
};
|
|
132604
133333
|
export declare type TownsquareGoalsRemoveMetricTargetPayload = {
|
|
132605
133334
|
__typename?: 'TownsquareGoalsRemoveMetricTargetPayload';
|
|
133335
|
+
deletedMetricTargetId?: Maybe<Scalars['ID']['output']>;
|
|
132606
133336
|
errors?: Maybe<Array<MutationError>>;
|
|
132607
133337
|
goal?: Maybe<TownsquareGoal>;
|
|
132608
133338
|
success: Scalars['Boolean']['output'];
|
|
@@ -132771,6 +133501,22 @@ export declare type TownsquareMetricValuesArgs = {
|
|
|
132771
133501
|
sort?: InputMaybe<Array<InputMaybe<TownsquareMetricValueSortEnum>>>;
|
|
132772
133502
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
132773
133503
|
};
|
|
133504
|
+
export declare type TownsquareMetricConnection = {
|
|
133505
|
+
__typename?: 'TownsquareMetricConnection';
|
|
133506
|
+
edges?: Maybe<Array<Maybe<TownsquareMetricEdge>>>;
|
|
133507
|
+
pageInfo: PageInfo;
|
|
133508
|
+
};
|
|
133509
|
+
export declare type TownsquareMetricEdge = {
|
|
133510
|
+
__typename?: 'TownsquareMetricEdge';
|
|
133511
|
+
cursor: Scalars['String']['output'];
|
|
133512
|
+
node?: Maybe<TownsquareMetric>;
|
|
133513
|
+
};
|
|
133514
|
+
export declare enum TownsquareMetricSortEnum {
|
|
133515
|
+
IdAsc = "ID_ASC",
|
|
133516
|
+
IdDesc = "ID_DESC",
|
|
133517
|
+
NameAsc = "NAME_ASC",
|
|
133518
|
+
NameDesc = "NAME_DESC"
|
|
133519
|
+
}
|
|
132774
133520
|
export declare type TownsquareMetricTarget = Node & {
|
|
132775
133521
|
__typename?: 'TownsquareMetricTarget';
|
|
132776
133522
|
id: Scalars['ID']['output'];
|
|
@@ -133207,6 +133953,7 @@ export declare type TownsquareProjectsAddJiraWorkItemLinkPayload = {
|
|
|
133207
133953
|
errors?: Maybe<Array<MutationError>>;
|
|
133208
133954
|
success: Scalars['Boolean']['output'];
|
|
133209
133955
|
successMessage?: Maybe<TownsquareProjectsAddJiraWorkItemLinkSuccessMessage>;
|
|
133956
|
+
unlinkedWorkItems?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
133210
133957
|
workItem?: Maybe<JiraIssue>;
|
|
133211
133958
|
};
|
|
133212
133959
|
export declare type TownsquareProjectsAddJiraWorkItemLinkSuccessMessage = {
|
|
@@ -133239,6 +133986,10 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
|
133239
133986
|
project?: Maybe<TownsquareProject>;
|
|
133240
133987
|
success: Scalars['Boolean']['output'];
|
|
133241
133988
|
};
|
|
133989
|
+
export declare type TownsquareProjectsAppSettings = {
|
|
133990
|
+
__typename?: 'TownsquareProjectsAppSettings';
|
|
133991
|
+
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
133992
|
+
};
|
|
133242
133993
|
export declare type TownsquareProjectsCanCreateProjectFusionInput = {
|
|
133243
133994
|
issueId: Scalars['ID']['input'];
|
|
133244
133995
|
projectId: Scalars['ID']['input'];
|
|
@@ -134063,6 +134814,16 @@ export declare type TrelloAddChecklistToCardDisplayEntities = {
|
|
|
134063
134814
|
checklist?: Maybe<TrelloActionChecklistEntity>;
|
|
134064
134815
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
134065
134816
|
};
|
|
134817
|
+
export declare type TrelloAddLabelsToCardInput = {
|
|
134818
|
+
cardId: Scalars['ID']['input'];
|
|
134819
|
+
labelIds: Array<Scalars['ID']['input']>;
|
|
134820
|
+
};
|
|
134821
|
+
export declare type TrelloAddLabelsToCardPayload = Payload & {
|
|
134822
|
+
__typename?: 'TrelloAddLabelsToCardPayload';
|
|
134823
|
+
card?: Maybe<TrelloCard>;
|
|
134824
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134825
|
+
success: Scalars['Boolean']['output'];
|
|
134826
|
+
};
|
|
134066
134827
|
export declare type TrelloAddMemberInput = {
|
|
134067
134828
|
cardId: Scalars['ID']['input'];
|
|
134068
134829
|
userId: Scalars['ID']['input'];
|
|
@@ -134983,10 +135744,22 @@ export declare enum TrelloCardCoverColor {
|
|
|
134983
135744
|
Sky = "SKY",
|
|
134984
135745
|
Yellow = "YELLOW"
|
|
134985
135746
|
}
|
|
135747
|
+
export declare type TrelloCardCoverInput = {
|
|
135748
|
+
brightness?: InputMaybe<Scalars['String']['input']>;
|
|
135749
|
+
size?: InputMaybe<Scalars['String']['input']>;
|
|
135750
|
+
type: TrelloCardCoverTypeInput;
|
|
135751
|
+
yPosition?: InputMaybe<Scalars['Float']['input']>;
|
|
135752
|
+
};
|
|
134986
135753
|
export declare enum TrelloCardCoverSize {
|
|
134987
135754
|
Full = "FULL",
|
|
134988
135755
|
Normal = "NORMAL"
|
|
134989
135756
|
}
|
|
135757
|
+
export declare type TrelloCardCoverTypeInput = {
|
|
135758
|
+
attachmentId?: InputMaybe<Scalars['String']['input']>;
|
|
135759
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
135760
|
+
uploadedBackgroundId?: InputMaybe<Scalars['String']['input']>;
|
|
135761
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
135762
|
+
};
|
|
134990
135763
|
export declare type TrelloCardCoverUpdated = {
|
|
134991
135764
|
__typename?: 'TrelloCardCoverUpdated';
|
|
134992
135765
|
attachment?: Maybe<TrelloAttachmentUpdated>;
|
|
@@ -135983,6 +136756,15 @@ export declare type TrelloListViewer = {
|
|
|
135983
136756
|
__typename?: 'TrelloListViewer';
|
|
135984
136757
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
135985
136758
|
};
|
|
136759
|
+
export declare type TrelloMarkCardCompleteInput = {
|
|
136760
|
+
cardId: Scalars['ID']['input'];
|
|
136761
|
+
};
|
|
136762
|
+
export declare type TrelloMarkCardCompletePayload = Payload & {
|
|
136763
|
+
__typename?: 'TrelloMarkCardCompletePayload';
|
|
136764
|
+
card?: Maybe<TrelloCard>;
|
|
136765
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136766
|
+
success: Scalars['Boolean']['output'];
|
|
136767
|
+
};
|
|
135986
136768
|
export declare type TrelloMarkInboxNotificationsReadInput = {
|
|
135987
136769
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
135988
136770
|
read?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -136236,6 +137018,7 @@ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
|
|
|
136236
137018
|
export declare type TrelloMutationApi = {
|
|
136237
137019
|
__typename?: 'TrelloMutationApi';
|
|
136238
137020
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
137021
|
+
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
136239
137022
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
136240
137023
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
136241
137024
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
@@ -136251,12 +137034,14 @@ export declare type TrelloMutationApi = {
|
|
|
136251
137034
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
136252
137035
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
136253
137036
|
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
137037
|
+
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
136254
137038
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
136255
137039
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
136256
137040
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
136257
137041
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
136258
137042
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
136259
137043
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
137044
|
+
removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
|
|
136260
137045
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
136261
137046
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
136262
137047
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
@@ -136279,8 +137064,10 @@ export declare type TrelloMutationApi = {
|
|
|
136279
137064
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
136280
137065
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
136281
137066
|
updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
|
|
137067
|
+
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
136282
137068
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
136283
137069
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
137070
|
+
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
136284
137071
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
136285
137072
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
136286
137073
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
@@ -136291,6 +137078,9 @@ export declare type TrelloMutationApi = {
|
|
|
136291
137078
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
136292
137079
|
input: TrelloAddBoardStarInput;
|
|
136293
137080
|
};
|
|
137081
|
+
export declare type TrelloMutationApiAddLabelsToCardArgs = {
|
|
137082
|
+
input: TrelloAddLabelsToCardInput;
|
|
137083
|
+
};
|
|
136294
137084
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
136295
137085
|
input: TrelloAddMemberInput;
|
|
136296
137086
|
};
|
|
@@ -136336,6 +137126,9 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
136336
137126
|
export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
|
|
136337
137127
|
input: TrelloGenerateChecklistsForCardInput;
|
|
136338
137128
|
};
|
|
137129
|
+
export declare type TrelloMutationApiMarkCardCompleteArgs = {
|
|
137130
|
+
input: TrelloMarkCardCompleteInput;
|
|
137131
|
+
};
|
|
136339
137132
|
export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
136340
137133
|
input?: InputMaybe<TrelloMarkInboxNotificationsReadInput>;
|
|
136341
137134
|
};
|
|
@@ -136354,6 +137147,9 @@ export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
|
136354
137147
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
136355
137148
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
136356
137149
|
};
|
|
137150
|
+
export declare type TrelloMutationApiRemoveLabelsFromCardArgs = {
|
|
137151
|
+
input: TrelloRemoveLabelsFromCardInput;
|
|
137152
|
+
};
|
|
136357
137153
|
export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
136358
137154
|
input: TrelloRemoveMemberInput;
|
|
136359
137155
|
};
|
|
@@ -136420,12 +137216,18 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
|
136420
137216
|
export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
|
|
136421
137217
|
input: TrelloUpdateBoardVisibilityInput;
|
|
136422
137218
|
};
|
|
137219
|
+
export declare type TrelloMutationApiUpdateCardCoverArgs = {
|
|
137220
|
+
input: TrelloUpdateCardCoverInput;
|
|
137221
|
+
};
|
|
136423
137222
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
136424
137223
|
input: TrelloUpdateCardNameInput;
|
|
136425
137224
|
};
|
|
136426
137225
|
export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArgs = {
|
|
136427
137226
|
input: TrelloUpdateCardPositionOnPlannerCalendarEventInput;
|
|
136428
137227
|
};
|
|
137228
|
+
export declare type TrelloMutationApiUpdateCardRoleArgs = {
|
|
137229
|
+
input: TrelloUpdateCardRoleInput;
|
|
137230
|
+
};
|
|
136429
137231
|
export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
136430
137232
|
input: TrelloUpdateInboxBackgroundInput;
|
|
136431
137233
|
};
|
|
@@ -136444,6 +137246,13 @@ export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
|
136444
137246
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
136445
137247
|
input: TrelloWatchCardInput;
|
|
136446
137248
|
};
|
|
137249
|
+
export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
|
|
137250
|
+
__typename?: 'TrelloMutationErrorExtension';
|
|
137251
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
137252
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
137253
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
137254
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
137255
|
+
};
|
|
136447
137256
|
export declare type TrelloNotification = TrelloQuickCaptureNotification;
|
|
136448
137257
|
export declare type TrelloNotificationConnection = {
|
|
136449
137258
|
__typename?: 'TrelloNotificationConnection';
|
|
@@ -136462,6 +137271,10 @@ export declare type TrelloNotificationFilter = {
|
|
|
136462
137271
|
};
|
|
136463
137272
|
export declare type TrelloOAuth2Client = {
|
|
136464
137273
|
__typename?: 'TrelloOAuth2Client';
|
|
137274
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
137275
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
137276
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
137277
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
136465
137278
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
136466
137279
|
clientId: Scalars['String']['output'];
|
|
136467
137280
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
@@ -137176,6 +137989,16 @@ export declare type TrelloRemoveChecklistFromCardDisplayEntities = {
|
|
|
137176
137989
|
checklist?: Maybe<TrelloActionChecklistEntity>;
|
|
137177
137990
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
137178
137991
|
};
|
|
137992
|
+
export declare type TrelloRemoveLabelsFromCardInput = {
|
|
137993
|
+
cardId: Scalars['ID']['input'];
|
|
137994
|
+
labelIds: Array<Scalars['ID']['input']>;
|
|
137995
|
+
};
|
|
137996
|
+
export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
|
|
137997
|
+
__typename?: 'TrelloRemoveLabelsFromCardPayload';
|
|
137998
|
+
card?: Maybe<TrelloCard>;
|
|
137999
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138000
|
+
success: Scalars['Boolean']['output'];
|
|
138001
|
+
};
|
|
137179
138002
|
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
137180
138003
|
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
137181
138004
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -137549,6 +138372,16 @@ export declare type TrelloUpdateCardCompleteActionDisplayEntities = {
|
|
|
137549
138372
|
card?: Maybe<TrelloActionCardEntity>;
|
|
137550
138373
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
137551
138374
|
};
|
|
138375
|
+
export declare type TrelloUpdateCardCoverInput = {
|
|
138376
|
+
cardId: Scalars['ID']['input'];
|
|
138377
|
+
cover: TrelloCardCoverInput;
|
|
138378
|
+
};
|
|
138379
|
+
export declare type TrelloUpdateCardCoverPayload = Payload & {
|
|
138380
|
+
__typename?: 'TrelloUpdateCardCoverPayload';
|
|
138381
|
+
cardId?: Maybe<Scalars['ID']['output']>;
|
|
138382
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138383
|
+
success: Scalars['Boolean']['output'];
|
|
138384
|
+
};
|
|
137552
138385
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
137553
138386
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
137554
138387
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -137610,6 +138443,16 @@ export declare type TrelloUpdateCardRecurrenceRuleActionDisplayEntities = {
|
|
|
137610
138443
|
card?: Maybe<TrelloActionCardEntity>;
|
|
137611
138444
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
137612
138445
|
};
|
|
138446
|
+
export declare type TrelloUpdateCardRoleInput = {
|
|
138447
|
+
cardId: Scalars['ID']['input'];
|
|
138448
|
+
cardRole?: InputMaybe<TrelloCardRole>;
|
|
138449
|
+
};
|
|
138450
|
+
export declare type TrelloUpdateCardRolePayload = Payload & {
|
|
138451
|
+
__typename?: 'TrelloUpdateCardRolePayload';
|
|
138452
|
+
card?: Maybe<TrelloCard>;
|
|
138453
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138454
|
+
success: Scalars['Boolean']['output'];
|
|
138455
|
+
};
|
|
137613
138456
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
137614
138457
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
137615
138458
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -137688,16 +138531,8 @@ export declare type TrelloUpdateOAuth2ClientInput = {
|
|
|
137688
138531
|
};
|
|
137689
138532
|
export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
137690
138533
|
__typename?: 'TrelloUpdateOAuth2ClientPayload';
|
|
137691
|
-
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
137692
|
-
appDescription?: Maybe<Scalars['String']['output']>;
|
|
137693
|
-
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
137694
|
-
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
137695
138534
|
application?: Maybe<TrelloApplication>;
|
|
137696
|
-
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
137697
|
-
clientType?: Maybe<Scalars['String']['output']>;
|
|
137698
138535
|
errors?: Maybe<Array<MutationError>>;
|
|
137699
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
137700
|
-
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
137701
138536
|
success: Scalars['Boolean']['output'];
|
|
137702
138537
|
};
|
|
137703
138538
|
export declare type TrelloUpdatePrimaryPlannerAccountInput = {
|