@forge/cli-shared 3.18.1-next.3 → 3.19.0-next.10
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 +54 -0
- package/out/graphql/graphql-types.d.ts +581 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +53 -6
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- package/package.json +5 -5
|
@@ -1072,6 +1072,31 @@ export type AppLogLines = {
|
|
|
1072
1072
|
nodes?: Maybe<Array<Maybe<AppLogLine>>>;
|
|
1073
1073
|
pageInfo: PageInfo;
|
|
1074
1074
|
};
|
|
1075
|
+
export type AppLogsWithMetaData = {
|
|
1076
|
+
__typename?: 'AppLogsWithMetaData';
|
|
1077
|
+
invocationId: Scalars['String'];
|
|
1078
|
+
appId: Scalars['String'];
|
|
1079
|
+
environmentId: Scalars['String'];
|
|
1080
|
+
appVersion: Scalars['String'];
|
|
1081
|
+
installationContext: Scalars['String'];
|
|
1082
|
+
ts: Scalars['String'];
|
|
1083
|
+
message?: Maybe<Scalars['String']>;
|
|
1084
|
+
lvl?: Maybe<Scalars['String']>;
|
|
1085
|
+
functionKey?: Maybe<Scalars['String']>;
|
|
1086
|
+
cloudwatchId?: Maybe<Scalars['String']>;
|
|
1087
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
1088
|
+
moduleType?: Maybe<Scalars['String']>;
|
|
1089
|
+
other?: Maybe<Scalars['String']>;
|
|
1090
|
+
traceId?: Maybe<Scalars['String']>;
|
|
1091
|
+
p?: Maybe<Scalars['String']>;
|
|
1092
|
+
error?: Maybe<Scalars['String']>;
|
|
1093
|
+
};
|
|
1094
|
+
export type AppLogsWithMetaDataResponse = {
|
|
1095
|
+
__typename?: 'AppLogsWithMetaDataResponse';
|
|
1096
|
+
appLogs: Array<AppLogsWithMetaData>;
|
|
1097
|
+
hasNextPage: Scalars['Boolean'];
|
|
1098
|
+
totalLogs: Scalars['Int'];
|
|
1099
|
+
};
|
|
1075
1100
|
export type AppNetworkEgressPermission = {
|
|
1076
1101
|
__typename?: 'AppNetworkEgressPermission';
|
|
1077
1102
|
type?: Maybe<AppNetworkPermissionType>;
|
|
@@ -1614,6 +1639,7 @@ export type ArjConfiguration = {
|
|
|
1614
1639
|
__typename?: 'ArjConfiguration';
|
|
1615
1640
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
1616
1641
|
epicLinkCustomFieldId?: Maybe<Scalars['String']>;
|
|
1642
|
+
storyPointEstimateCustomFieldId?: Maybe<Scalars['String']>;
|
|
1617
1643
|
};
|
|
1618
1644
|
export type ArjHierarchyConfigurationLevel = {
|
|
1619
1645
|
__typename?: 'ArjHierarchyConfigurationLevel';
|
|
@@ -2291,6 +2317,7 @@ export type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2291
2317
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']>;
|
|
2292
2318
|
entitlementId?: Maybe<Scalars['ID']>;
|
|
2293
2319
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
2320
|
+
experienceCapabilities?: Maybe<CcpEntitlementExperienceCapabilities>;
|
|
2294
2321
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2295
2322
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2296
2323
|
id: Scalars['ID'];
|
|
@@ -2309,6 +2336,13 @@ export type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2309
2336
|
version?: Maybe<Scalars['Int']>;
|
|
2310
2337
|
context?: Maybe<CcpContext>;
|
|
2311
2338
|
};
|
|
2339
|
+
export type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
2340
|
+
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
2341
|
+
changeOffering?: Maybe<CcpExperienceCapability>;
|
|
2342
|
+
};
|
|
2343
|
+
export type CcpEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
2344
|
+
offeringKey: Scalars['ID'];
|
|
2345
|
+
};
|
|
2312
2346
|
export type CcpEntitlementRelationship = {
|
|
2313
2347
|
__typename?: 'CcpEntitlementRelationship';
|
|
2314
2348
|
entitlementId?: Maybe<Scalars['ID']>;
|
|
@@ -2326,6 +2360,11 @@ export type CcpEntitlementTemplate = {
|
|
|
2326
2360
|
provisionedBy?: Maybe<Scalars['String']>;
|
|
2327
2361
|
version?: Maybe<Scalars['Int']>;
|
|
2328
2362
|
};
|
|
2363
|
+
export type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
2364
|
+
__typename?: 'CcpExperienceCapability';
|
|
2365
|
+
experienceUrl?: Maybe<Scalars['String']>;
|
|
2366
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']>;
|
|
2367
|
+
};
|
|
2329
2368
|
export type CcpMapEntry = {
|
|
2330
2369
|
__typename?: 'CcpMapEntry';
|
|
2331
2370
|
key?: Maybe<Scalars['String']>;
|
|
@@ -2648,6 +2687,13 @@ export type ColumnsConfig = {
|
|
|
2648
2687
|
export type CommerceEntitlement = {
|
|
2649
2688
|
id: Scalars['ID'];
|
|
2650
2689
|
subscription?: Maybe<CommerceSubscription>;
|
|
2690
|
+
experienceCapabilities?: Maybe<CommerceEntitlementExperienceCapabilities>;
|
|
2691
|
+
};
|
|
2692
|
+
export type CommerceEntitlementExperienceCapabilities = {
|
|
2693
|
+
changeOffering?: Maybe<CommerceExperienceCapability>;
|
|
2694
|
+
};
|
|
2695
|
+
export type CommerceEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
2696
|
+
offeringKey: Scalars['ID'];
|
|
2651
2697
|
};
|
|
2652
2698
|
export type CommerceEntitlementInfo = {
|
|
2653
2699
|
entitlement?: Maybe<CommerceEntitlement>;
|
|
@@ -2663,6 +2709,10 @@ export type CommerceEntitlementInfoHams = CommerceEntitlementInfo & {
|
|
|
2663
2709
|
entitlement?: Maybe<HamsEntitlement>;
|
|
2664
2710
|
entitlementId: Scalars['ID'];
|
|
2665
2711
|
};
|
|
2712
|
+
export type CommerceExperienceCapability = {
|
|
2713
|
+
experienceUrl?: Maybe<Scalars['String']>;
|
|
2714
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']>;
|
|
2715
|
+
};
|
|
2666
2716
|
export type CommercePricingPlan = {
|
|
2667
2717
|
primaryCycle?: Maybe<CommercePrimaryCycle>;
|
|
2668
2718
|
};
|
|
@@ -4489,6 +4539,7 @@ export declare enum CompassScorecardImportance {
|
|
|
4489
4539
|
export type CompassScorecardQueryFilter = {
|
|
4490
4540
|
name?: Maybe<Scalars['String']>;
|
|
4491
4541
|
componentTypeIds?: Maybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
4542
|
+
type?: Maybe<CompassScorecardTypesFilter>;
|
|
4492
4543
|
};
|
|
4493
4544
|
export type CompassScorecardQuerySort = {
|
|
4494
4545
|
name: Scalars['String'];
|
|
@@ -4508,6 +4559,9 @@ export type CompassScorecardScore = {
|
|
|
4508
4559
|
export type CompassScorecardScoreQuery = {
|
|
4509
4560
|
componentId: Scalars['ID'];
|
|
4510
4561
|
};
|
|
4562
|
+
export type CompassScorecardTypesFilter = {
|
|
4563
|
+
in: Array<Scalars['String']>;
|
|
4564
|
+
};
|
|
4511
4565
|
export type CompassScorecardsQuery = {
|
|
4512
4566
|
first?: Maybe<Scalars['Int']>;
|
|
4513
4567
|
after?: Maybe<Scalars['String']>;
|
|
@@ -5914,11 +5968,16 @@ export type ConnectAppScope = {
|
|
|
5914
5968
|
export type ConnectedDataQuery = {
|
|
5915
5969
|
__typename?: 'ConnectedDataQuery';
|
|
5916
5970
|
services?: Maybe<DevOpsService>;
|
|
5971
|
+
incidentWithId?: Maybe<JsmIncident>;
|
|
5917
5972
|
};
|
|
5918
5973
|
export type ConnectedDataQueryServicesArgs = {
|
|
5919
5974
|
id: Scalars['ID'];
|
|
5920
5975
|
cloudId: Scalars['ID'];
|
|
5921
5976
|
};
|
|
5977
|
+
export type ConnectedDataQueryIncidentWithIdArgs = {
|
|
5978
|
+
id: Scalars['ID'];
|
|
5979
|
+
cloudId: Scalars['ID'];
|
|
5980
|
+
};
|
|
5922
5981
|
export type ContainerEventObject = {
|
|
5923
5982
|
__typename?: 'ContainerEventObject';
|
|
5924
5983
|
id: Scalars['ID'];
|
|
@@ -6188,7 +6247,7 @@ export type ContributorFailed = {
|
|
|
6188
6247
|
};
|
|
6189
6248
|
export type ContributorRolesFailed = {
|
|
6190
6249
|
__typename?: 'ContributorRolesFailed';
|
|
6191
|
-
|
|
6250
|
+
accountId: Scalars['ID'];
|
|
6192
6251
|
failed: Array<FailedRoles>;
|
|
6193
6252
|
};
|
|
6194
6253
|
export type CopyPolarisInsightsContainerInput = {
|
|
@@ -6955,6 +7014,7 @@ export declare enum CustomerServiceAttributeTypeName {
|
|
|
6955
7014
|
Url = "URL",
|
|
6956
7015
|
Date = "DATE",
|
|
6957
7016
|
Number = "NUMBER",
|
|
7017
|
+
Boolean = "BOOLEAN",
|
|
6958
7018
|
Phone = "PHONE",
|
|
6959
7019
|
Select = "SELECT",
|
|
6960
7020
|
Multiselect = "MULTISELECT"
|
|
@@ -7004,6 +7064,11 @@ export type CustomerServiceIndividual = Node & {
|
|
|
7004
7064
|
name: Scalars['String'];
|
|
7005
7065
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7006
7066
|
organizations: Array<CustomerServiceOrganization>;
|
|
7067
|
+
notes: Array<CustomerServiceNote>;
|
|
7068
|
+
};
|
|
7069
|
+
export type CustomerServiceIndividualNotesArgs = {
|
|
7070
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
7071
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
7007
7072
|
};
|
|
7008
7073
|
export type CustomerServiceIndividualDeletePayload = Payload & {
|
|
7009
7074
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -7050,6 +7115,9 @@ export type CustomerServiceMutationApi = {
|
|
|
7050
7115
|
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
7051
7116
|
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
7052
7117
|
updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
7118
|
+
createNote?: Maybe<CustomerServiceNoteCreatePayload>;
|
|
7119
|
+
updateNote?: Maybe<CustomerServiceNoteUpdatePayload>;
|
|
7120
|
+
deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
|
|
7053
7121
|
};
|
|
7054
7122
|
export type CustomerServiceMutationApiCreateOrganizationArgs = {
|
|
7055
7123
|
input: CustomerServiceOrganizationCreateInput;
|
|
@@ -7099,11 +7167,81 @@ export type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs =
|
|
|
7099
7167
|
export type CustomerServiceMutationApiUpdateIndividualAttributeMultiValueByNameArgs = {
|
|
7100
7168
|
input: CustomerServiceIndividualUpdateAttributeMultiValueByNameInput;
|
|
7101
7169
|
};
|
|
7170
|
+
export type CustomerServiceMutationApiCreateNoteArgs = {
|
|
7171
|
+
input?: Maybe<CustomerServiceNoteCreateInput>;
|
|
7172
|
+
};
|
|
7173
|
+
export type CustomerServiceMutationApiUpdateNoteArgs = {
|
|
7174
|
+
input?: Maybe<CustomerServiceNoteUpdateInput>;
|
|
7175
|
+
};
|
|
7176
|
+
export type CustomerServiceMutationApiDeleteNoteArgs = {
|
|
7177
|
+
input?: Maybe<CustomerServiceNoteDeleteInput>;
|
|
7178
|
+
};
|
|
7179
|
+
export type CustomerServiceNote = {
|
|
7180
|
+
__typename?: 'CustomerServiceNote';
|
|
7181
|
+
id: Scalars['ID'];
|
|
7182
|
+
author: CustomerServiceNoteAuthor;
|
|
7183
|
+
created: Scalars['String'];
|
|
7184
|
+
updated: Scalars['String'];
|
|
7185
|
+
body: Scalars['String'];
|
|
7186
|
+
canEdit: Scalars['Boolean'];
|
|
7187
|
+
canDelete: Scalars['Boolean'];
|
|
7188
|
+
};
|
|
7189
|
+
export type CustomerServiceNoteAuthor = {
|
|
7190
|
+
__typename?: 'CustomerServiceNoteAuthor';
|
|
7191
|
+
id: Scalars['ID'];
|
|
7192
|
+
avatarUrl: Scalars['String'];
|
|
7193
|
+
displayName: Scalars['String'];
|
|
7194
|
+
name: Scalars['String'];
|
|
7195
|
+
emailAddress: Scalars['String'];
|
|
7196
|
+
isDeleted: Scalars['Boolean'];
|
|
7197
|
+
};
|
|
7198
|
+
export type CustomerServiceNoteCreateInput = {
|
|
7199
|
+
entityType: CustomerServiceNoteEntity;
|
|
7200
|
+
entityId: Scalars['ID'];
|
|
7201
|
+
body: Scalars['String'];
|
|
7202
|
+
};
|
|
7203
|
+
export type CustomerServiceNoteCreatePayload = Payload & {
|
|
7204
|
+
__typename?: 'CustomerServiceNoteCreatePayload';
|
|
7205
|
+
success: Scalars['Boolean'];
|
|
7206
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7207
|
+
successfullyCreatedNote?: Maybe<CustomerServiceNote>;
|
|
7208
|
+
};
|
|
7209
|
+
export type CustomerServiceNoteDeleteInput = {
|
|
7210
|
+
entityType: CustomerServiceNoteEntity;
|
|
7211
|
+
entityId: Scalars['ID'];
|
|
7212
|
+
noteId: Scalars['ID'];
|
|
7213
|
+
};
|
|
7214
|
+
export type CustomerServiceNoteDeletePayload = Payload & {
|
|
7215
|
+
__typename?: 'CustomerServiceNoteDeletePayload';
|
|
7216
|
+
success: Scalars['Boolean'];
|
|
7217
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7218
|
+
};
|
|
7219
|
+
export declare enum CustomerServiceNoteEntity {
|
|
7220
|
+
Organization = "ORGANIZATION",
|
|
7221
|
+
Customer = "CUSTOMER"
|
|
7222
|
+
}
|
|
7223
|
+
export type CustomerServiceNoteUpdateInput = {
|
|
7224
|
+
entityType: CustomerServiceNoteEntity;
|
|
7225
|
+
entityId: Scalars['ID'];
|
|
7226
|
+
noteId: Scalars['ID'];
|
|
7227
|
+
body: Scalars['String'];
|
|
7228
|
+
};
|
|
7229
|
+
export type CustomerServiceNoteUpdatePayload = Payload & {
|
|
7230
|
+
__typename?: 'CustomerServiceNoteUpdatePayload';
|
|
7231
|
+
success: Scalars['Boolean'];
|
|
7232
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7233
|
+
successfullyUpdatedNote?: Maybe<CustomerServiceNote>;
|
|
7234
|
+
};
|
|
7102
7235
|
export type CustomerServiceOrganization = Node & {
|
|
7103
7236
|
__typename?: 'CustomerServiceOrganization';
|
|
7104
7237
|
id: Scalars['ID'];
|
|
7105
7238
|
name: Scalars['String'];
|
|
7106
7239
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7240
|
+
notes: Array<CustomerServiceNote>;
|
|
7241
|
+
};
|
|
7242
|
+
export type CustomerServiceOrganizationNotesArgs = {
|
|
7243
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
7244
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
7107
7245
|
};
|
|
7108
7246
|
export type CustomerServiceOrganizationCreateInput = {
|
|
7109
7247
|
id: Scalars['ID'];
|
|
@@ -7732,6 +7870,10 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
7732
7870
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7733
7871
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7734
7872
|
providerType?: Maybe<DevOpsProviderType>;
|
|
7873
|
+
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
7874
|
+
};
|
|
7875
|
+
export type DevOpsDevInfoProviderWorkspacesArgs = {
|
|
7876
|
+
cloudId: Scalars['ID'];
|
|
7735
7877
|
};
|
|
7736
7878
|
export type DevOpsDocument = Node & {
|
|
7737
7879
|
__typename?: 'DevOpsDocument';
|
|
@@ -8899,6 +9041,35 @@ export type EarliestViewViewedForUser = {
|
|
|
8899
9041
|
__typename?: 'EarliestViewViewedForUser';
|
|
8900
9042
|
datetime?: Maybe<Scalars['String']>;
|
|
8901
9043
|
};
|
|
9044
|
+
export type EcosystemAppPolicies = {
|
|
9045
|
+
__typename?: 'EcosystemAppPolicies';
|
|
9046
|
+
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
9047
|
+
};
|
|
9048
|
+
export type EcosystemAppPoliciesDataClassificationsArgs = {
|
|
9049
|
+
id: Scalars['ID'];
|
|
9050
|
+
};
|
|
9051
|
+
export type EcosystemDataClassificationPolicyContainer = {
|
|
9052
|
+
__typename?: 'EcosystemDataClassificationPolicyContainer';
|
|
9053
|
+
decision: EcosystemDataClassificationPolicyDecision;
|
|
9054
|
+
id: Scalars['ID'];
|
|
9055
|
+
};
|
|
9056
|
+
export type EcosystemDataClassificationPolicyDecision = {
|
|
9057
|
+
__typename?: 'EcosystemDataClassificationPolicyDecision';
|
|
9058
|
+
status: EcosystemDataClassificationPolicyDecisionStatus;
|
|
9059
|
+
};
|
|
9060
|
+
export declare enum EcosystemDataClassificationPolicyDecisionStatus {
|
|
9061
|
+
Allowed = "ALLOWED",
|
|
9062
|
+
Blocked = "BLOCKED"
|
|
9063
|
+
}
|
|
9064
|
+
export type EcosystemDataClassificationsContext = {
|
|
9065
|
+
__typename?: 'EcosystemDataClassificationsContext';
|
|
9066
|
+
containers?: Maybe<Array<Maybe<EcosystemDataClassificationPolicyContainer>>>;
|
|
9067
|
+
hasConstraints?: Maybe<Scalars['Boolean']>;
|
|
9068
|
+
id: Scalars['ID'];
|
|
9069
|
+
};
|
|
9070
|
+
export type EcosystemDataClassificationsContextContainersArgs = {
|
|
9071
|
+
ids: Array<Scalars['ID']>;
|
|
9072
|
+
};
|
|
8902
9073
|
export type EcosystemMutation = {
|
|
8903
9074
|
__typename?: 'EcosystemMutation';
|
|
8904
9075
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
@@ -8961,6 +9132,7 @@ export type EcosystemQuery = {
|
|
|
8961
9132
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
8962
9133
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
8963
9134
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
9135
|
+
appPolicies?: Maybe<EcosystemAppPolicies>;
|
|
8964
9136
|
};
|
|
8965
9137
|
export type EcosystemQueryUserGrantsArgs = {
|
|
8966
9138
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9411,7 +9583,8 @@ export type ForgeAuditLogEdge = {
|
|
|
9411
9583
|
export declare enum ForgeAuditLogsActionType {
|
|
9412
9584
|
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
9413
9585
|
ContributorRemoved = "CONTRIBUTOR_REMOVED",
|
|
9414
|
-
OwnershipTransferred = "OWNERSHIP_TRANSFERRED"
|
|
9586
|
+
OwnershipTransferred = "OWNERSHIP_TRANSFERRED",
|
|
9587
|
+
ContributorRoleUpdated = "CONTRIBUTOR_ROLE_UPDATED"
|
|
9415
9588
|
}
|
|
9416
9589
|
export type ForgeAuditLogsAppContributor = {
|
|
9417
9590
|
__typename?: 'ForgeAuditLogsAppContributor';
|
|
@@ -9842,6 +10015,7 @@ export declare enum GrantCheckProduct {
|
|
|
9842
10015
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
9843
10016
|
Confluence = "CONFLUENCE",
|
|
9844
10017
|
Compass = "COMPASS",
|
|
10018
|
+
Townsquare = "TOWNSQUARE",
|
|
9845
10019
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
9846
10020
|
}
|
|
9847
10021
|
export type Graph = {
|
|
@@ -10793,6 +10967,7 @@ export type HamsEntitlement = CommerceEntitlement & {
|
|
|
10793
10967
|
entitlementId?: Maybe<Scalars['String']>;
|
|
10794
10968
|
entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
|
|
10795
10969
|
entitlementSource?: Maybe<Scalars['String']>;
|
|
10970
|
+
experienceCapabilities?: Maybe<HamsEntitlementExperienceCapabilities>;
|
|
10796
10971
|
futureEdition?: Maybe<Scalars['String']>;
|
|
10797
10972
|
futureEditionTransition?: Maybe<Scalars['String']>;
|
|
10798
10973
|
id: Scalars['ID'];
|
|
@@ -10810,12 +10985,24 @@ export type HamsEntitlement = CommerceEntitlement & {
|
|
|
10810
10985
|
trialEditionEndDate?: Maybe<Scalars['String']>;
|
|
10811
10986
|
trialEndDate?: Maybe<Scalars['String']>;
|
|
10812
10987
|
};
|
|
10988
|
+
export type HamsEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
10989
|
+
__typename?: 'HamsEntitlementExperienceCapabilities';
|
|
10990
|
+
changeOffering?: Maybe<HamsExperienceCapability>;
|
|
10991
|
+
};
|
|
10992
|
+
export type HamsEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
10993
|
+
offeringKey: Scalars['ID'];
|
|
10994
|
+
};
|
|
10813
10995
|
export type HamsEntitlementMigrationEvaluation = {
|
|
10814
10996
|
__typename?: 'HamsEntitlementMigrationEvaluation';
|
|
10815
10997
|
btfSourceAccountId?: Maybe<Scalars['String']>;
|
|
10816
10998
|
usageLimit?: Maybe<Scalars['Int']>;
|
|
10817
10999
|
usageType?: Maybe<Scalars['String']>;
|
|
10818
11000
|
};
|
|
11001
|
+
export type HamsExperienceCapability = CommerceExperienceCapability & {
|
|
11002
|
+
__typename?: 'HamsExperienceCapability';
|
|
11003
|
+
experienceUrl?: Maybe<Scalars['String']>;
|
|
11004
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']>;
|
|
11005
|
+
};
|
|
10819
11006
|
export type HamsPricingPlan = CommercePricingPlan & {
|
|
10820
11007
|
__typename?: 'HamsPricingPlan';
|
|
10821
11008
|
primaryCycle?: Maybe<HamsPrimaryCycle>;
|
|
@@ -10848,6 +11035,10 @@ export type HelpCenter = Node & {
|
|
|
10848
11035
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
10849
11036
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
10850
11037
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
11038
|
+
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
11039
|
+
};
|
|
11040
|
+
export type HelpCenterHelpDesksArgs = {
|
|
11041
|
+
helpCenterAri: Scalars['ID'];
|
|
10851
11042
|
};
|
|
10852
11043
|
export type HelpCenterBranding = {
|
|
10853
11044
|
__typename?: 'HelpCenterBranding';
|
|
@@ -10894,6 +11085,43 @@ export type HelpCenterDeleteUpdateTopicPayload = Payload & {
|
|
|
10894
11085
|
errors?: Maybe<Array<MutationError>>;
|
|
10895
11086
|
topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
|
|
10896
11087
|
};
|
|
11088
|
+
export type HelpCenterHelpDesk = Node & {
|
|
11089
|
+
__typename?: 'HelpCenterHelpDesk';
|
|
11090
|
+
id: Scalars['ID'];
|
|
11091
|
+
name: Scalars['String'];
|
|
11092
|
+
description?: Maybe<Scalars['String']>;
|
|
11093
|
+
contactInfo?: Maybe<Scalars['String']>;
|
|
11094
|
+
};
|
|
11095
|
+
export type HelpCenterHelpDeskCreateInput = {
|
|
11096
|
+
helpCenterAri: Scalars['String'];
|
|
11097
|
+
name: Scalars['String'];
|
|
11098
|
+
description?: Maybe<Scalars['String']>;
|
|
11099
|
+
contactInfo?: Maybe<Scalars['String']>;
|
|
11100
|
+
};
|
|
11101
|
+
export type HelpCenterHelpDeskItemConnection = {
|
|
11102
|
+
__typename?: 'HelpCenterHelpDeskItemConnection';
|
|
11103
|
+
edges?: Maybe<Array<Maybe<HelpCenterHelpDeskItemEdge>>>;
|
|
11104
|
+
pageInfo: PageInfo;
|
|
11105
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
11106
|
+
};
|
|
11107
|
+
export type HelpCenterHelpDeskItemEdge = {
|
|
11108
|
+
__typename?: 'HelpCenterHelpDeskItemEdge';
|
|
11109
|
+
cursor: Scalars['String'];
|
|
11110
|
+
node?: Maybe<HelpCenterHelpDesk>;
|
|
11111
|
+
};
|
|
11112
|
+
export type HelpCenterHelpDeskPayload = Payload & {
|
|
11113
|
+
__typename?: 'HelpCenterHelpDeskPayload';
|
|
11114
|
+
success: Scalars['Boolean'];
|
|
11115
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11116
|
+
helpDeskId?: Maybe<Scalars['ID']>;
|
|
11117
|
+
};
|
|
11118
|
+
export type HelpCenterHelpDeskQueryResult = HelpCenterHelpDesk | QueryError;
|
|
11119
|
+
export type HelpCenterHelpDeskUpdateInput = {
|
|
11120
|
+
helpDeskAri: Scalars['String'];
|
|
11121
|
+
name: Scalars['String'];
|
|
11122
|
+
description?: Maybe<Scalars['String']>;
|
|
11123
|
+
contactInfo?: Maybe<Scalars['String']>;
|
|
11124
|
+
};
|
|
10897
11125
|
export type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError;
|
|
10898
11126
|
export type HelpCenterHomePageLayout = {
|
|
10899
11127
|
__typename?: 'HelpCenterHomePageLayout';
|
|
@@ -10922,6 +11150,8 @@ export type HelpCenterMutationApi = {
|
|
|
10922
11150
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
10923
11151
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
10924
11152
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
11153
|
+
createHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
11154
|
+
updateHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
10925
11155
|
};
|
|
10926
11156
|
export type HelpCenterMutationApiCreateTopicArgs = {
|
|
10927
11157
|
input: HelpCenterBulkCreateTopicsInput;
|
|
@@ -10938,6 +11168,12 @@ export type HelpCenterMutationApiDeleteTopicArgs = {
|
|
|
10938
11168
|
export type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
10939
11169
|
input: HelpCenterUpdateInput;
|
|
10940
11170
|
};
|
|
11171
|
+
export type HelpCenterMutationApiCreateHelpDeskArgs = {
|
|
11172
|
+
input: HelpCenterHelpDeskCreateInput;
|
|
11173
|
+
};
|
|
11174
|
+
export type HelpCenterMutationApiUpdateHelpDeskArgs = {
|
|
11175
|
+
input: HelpCenterHelpDeskUpdateInput;
|
|
11176
|
+
};
|
|
10941
11177
|
export type HelpCenterName = {
|
|
10942
11178
|
__typename?: 'HelpCenterName';
|
|
10943
11179
|
default: Scalars['String'];
|
|
@@ -10953,6 +11189,7 @@ export type HelpCenterQueryApi = {
|
|
|
10953
11189
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
10954
11190
|
helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
|
|
10955
11191
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
11192
|
+
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
10956
11193
|
};
|
|
10957
11194
|
export type HelpCenterQueryApiHelpCenterFromProductNameArgs = {
|
|
10958
11195
|
productName: Scalars['String'];
|
|
@@ -10971,6 +11208,10 @@ export type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
|
10971
11208
|
export type HelpCenterQueryApiMediaConfigArgs = {
|
|
10972
11209
|
helpCenterAri: Scalars['ID'];
|
|
10973
11210
|
};
|
|
11211
|
+
export type HelpCenterQueryApiHelpDeskByIdArgs = {
|
|
11212
|
+
helpCenterAri: Scalars['ID'];
|
|
11213
|
+
helpDeskAri: Scalars['ID'];
|
|
11214
|
+
};
|
|
10974
11215
|
export type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
10975
11216
|
export type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
10976
11217
|
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
@@ -11024,7 +11265,8 @@ export type HelpCenterTopicItemInput = {
|
|
|
11024
11265
|
export type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
11025
11266
|
export declare enum HelpCenterType {
|
|
11026
11267
|
Advanced = "ADVANCED",
|
|
11027
|
-
Basic = "BASIC"
|
|
11268
|
+
Basic = "BASIC",
|
|
11269
|
+
Unified = "UNIFIED"
|
|
11028
11270
|
}
|
|
11029
11271
|
export type HelpCenterUpdateInput = {
|
|
11030
11272
|
helpCenterAri: Scalars['String'];
|
|
@@ -12180,6 +12422,75 @@ export type IssueDevOpsTestSummary = {
|
|
|
12180
12422
|
numberFailed?: Maybe<Scalars['Int']>;
|
|
12181
12423
|
numberSkipped?: Maybe<Scalars['Int']>;
|
|
12182
12424
|
};
|
|
12425
|
+
export type JsmAssignee = {
|
|
12426
|
+
__typename?: 'JSMAssignee';
|
|
12427
|
+
id: Scalars['ID'];
|
|
12428
|
+
};
|
|
12429
|
+
export type JsmIncident = {
|
|
12430
|
+
__typename?: 'JSMIncident';
|
|
12431
|
+
id: Scalars['ID'];
|
|
12432
|
+
summary?: Maybe<Scalars['String']>;
|
|
12433
|
+
description?: Maybe<Scalars['String']>;
|
|
12434
|
+
reporter?: Maybe<User>;
|
|
12435
|
+
assignee?: Maybe<User>;
|
|
12436
|
+
priority?: Maybe<JsmPriority>;
|
|
12437
|
+
status?: Maybe<JsmStatus>;
|
|
12438
|
+
participants?: Maybe<Array<Maybe<User>>>;
|
|
12439
|
+
issueLinks?: Maybe<Array<Maybe<JsmIssueLink>>>;
|
|
12440
|
+
majorIncident?: Maybe<JsmMajorIncident>;
|
|
12441
|
+
affectedServices?: Maybe<Array<Maybe<DevOpsService>>>;
|
|
12442
|
+
responders?: Maybe<Array<Maybe<JsmResponder>>>;
|
|
12443
|
+
linkedAlerts?: Maybe<Array<Maybe<JsmLinkedAlerts>>>;
|
|
12444
|
+
};
|
|
12445
|
+
export type JsmIssueKey = {
|
|
12446
|
+
__typename?: 'JSMIssueKey';
|
|
12447
|
+
key?: Maybe<Scalars['String']>;
|
|
12448
|
+
};
|
|
12449
|
+
export type JsmIssueLink = {
|
|
12450
|
+
__typename?: 'JSMIssueLink';
|
|
12451
|
+
type?: Maybe<JsmIssueLinkType>;
|
|
12452
|
+
inwardIssue?: Maybe<JiraIssue>;
|
|
12453
|
+
outwardIssue?: Maybe<JiraIssue>;
|
|
12454
|
+
};
|
|
12455
|
+
export type JsmIssueLinkInwardIssueArgs = {
|
|
12456
|
+
cloudId: Scalars['ID'];
|
|
12457
|
+
};
|
|
12458
|
+
export type JsmIssueLinkOutwardIssueArgs = {
|
|
12459
|
+
cloudId: Scalars['ID'];
|
|
12460
|
+
};
|
|
12461
|
+
export type JsmIssueLinkType = {
|
|
12462
|
+
__typename?: 'JSMIssueLinkType';
|
|
12463
|
+
id: Scalars['ID'];
|
|
12464
|
+
};
|
|
12465
|
+
export type JsmLinkedAlerts = {
|
|
12466
|
+
__typename?: 'JSMLinkedAlerts';
|
|
12467
|
+
id: Scalars['ID'];
|
|
12468
|
+
};
|
|
12469
|
+
export declare enum JsmMajorIncident {
|
|
12470
|
+
MajorIncident = "MAJOR_INCIDENT"
|
|
12471
|
+
}
|
|
12472
|
+
export type JsmPriority = {
|
|
12473
|
+
__typename?: 'JSMPriority';
|
|
12474
|
+
id: Scalars['ID'];
|
|
12475
|
+
name?: Maybe<Scalars['String']>;
|
|
12476
|
+
};
|
|
12477
|
+
export type JsmReporter = {
|
|
12478
|
+
__typename?: 'JSMReporter';
|
|
12479
|
+
id: Scalars['ID'];
|
|
12480
|
+
};
|
|
12481
|
+
export type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam;
|
|
12482
|
+
export type JsmStatus = {
|
|
12483
|
+
__typename?: 'JSMStatus';
|
|
12484
|
+
id: Scalars['ID'];
|
|
12485
|
+
name?: Maybe<Scalars['String']>;
|
|
12486
|
+
statusCategory?: Maybe<JsmStatusCategory>;
|
|
12487
|
+
};
|
|
12488
|
+
export type JsmStatusCategory = {
|
|
12489
|
+
__typename?: 'JSMStatusCategory';
|
|
12490
|
+
id: Scalars['ID'];
|
|
12491
|
+
key?: Maybe<Scalars['String']>;
|
|
12492
|
+
name?: Maybe<Scalars['String']>;
|
|
12493
|
+
};
|
|
12183
12494
|
export type JiraAdf = {
|
|
12184
12495
|
__typename?: 'JiraADF';
|
|
12185
12496
|
json?: Maybe<Scalars['JSON']>;
|
|
@@ -12205,6 +12516,18 @@ export type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
|
12205
12516
|
issuesWithMissingResolvePermission?: Maybe<Array<Scalars['String']>>;
|
|
12206
12517
|
issuesWithMissingEditPermission?: Maybe<Array<Scalars['String']>>;
|
|
12207
12518
|
};
|
|
12519
|
+
export type JiraAddPostIncidentReviewLinkMutationInput = {
|
|
12520
|
+
incidentId: Scalars['ID'];
|
|
12521
|
+
projectId: Scalars['ID'];
|
|
12522
|
+
postIncidentReviewUrl: Scalars['URL'];
|
|
12523
|
+
postIncidentReviewTitle?: Maybe<Scalars['String']>;
|
|
12524
|
+
};
|
|
12525
|
+
export type JiraAddPostIncidentReviewLinkMutationPayload = Payload & {
|
|
12526
|
+
__typename?: 'JiraAddPostIncidentReviewLinkMutationPayload';
|
|
12527
|
+
success: Scalars['Boolean'];
|
|
12528
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12529
|
+
postIncidentReviewLink?: Maybe<JiraPostIncidentReviewLink>;
|
|
12530
|
+
};
|
|
12208
12531
|
export type JiraAddRelatedWorkToVersionInput = {
|
|
12209
12532
|
versionId: Scalars['ID'];
|
|
12210
12533
|
relatedWorkId: Scalars['ID'];
|
|
@@ -14385,6 +14708,16 @@ export type JiraIssueFieldSetEdge = {
|
|
|
14385
14708
|
node?: Maybe<JiraIssueFieldSet>;
|
|
14386
14709
|
cursor: Scalars['String'];
|
|
14387
14710
|
};
|
|
14711
|
+
export type JiraIssueFieldUnsupportedErrorExtension = QueryErrorExtension & {
|
|
14712
|
+
__typename?: 'JiraIssueFieldUnsupportedErrorExtension';
|
|
14713
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
14714
|
+
errorType?: Maybe<Scalars['String']>;
|
|
14715
|
+
fieldId?: Maybe<Scalars['String']>;
|
|
14716
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
14717
|
+
fieldType?: Maybe<Scalars['String']>;
|
|
14718
|
+
isRequiredField?: Maybe<Scalars['Boolean']>;
|
|
14719
|
+
isUserPreferredField?: Maybe<Scalars['Boolean']>;
|
|
14720
|
+
};
|
|
14388
14721
|
export type JiraIssueFieldsInput = {
|
|
14389
14722
|
priority?: Maybe<JiraPriorityInput>;
|
|
14390
14723
|
multiselectComponents?: Maybe<JiraMultiSelectComponentFieldInput>;
|
|
@@ -14988,7 +15321,8 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
14988
15321
|
}
|
|
14989
15322
|
export declare enum JiraIteration {
|
|
14990
15323
|
Iteration_1 = "ITERATION_1",
|
|
14991
|
-
Iteration_2 = "ITERATION_2"
|
|
15324
|
+
Iteration_2 = "ITERATION_2",
|
|
15325
|
+
IterationDynamic = "ITERATION_DYNAMIC"
|
|
14992
15326
|
}
|
|
14993
15327
|
export declare enum JiraJqlBuilderSearchMode {
|
|
14994
15328
|
Basic = "BASIC",
|
|
@@ -15828,6 +16162,8 @@ export type JiraMutation = {
|
|
|
15828
16162
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
15829
16163
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
15830
16164
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
16165
|
+
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
16166
|
+
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
15831
16167
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
15832
16168
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
15833
16169
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
@@ -15989,6 +16325,12 @@ export type JiraMutationDeleteGlobalPermissionGrantArgs = {
|
|
|
15989
16325
|
cloudId: Scalars['ID'];
|
|
15990
16326
|
input: JiraGlobalPermissionDeleteGroupGrantInput;
|
|
15991
16327
|
};
|
|
16328
|
+
export type JiraMutationAddPostIncidentReviewLinkArgs = {
|
|
16329
|
+
input: JiraAddPostIncidentReviewLinkMutationInput;
|
|
16330
|
+
};
|
|
16331
|
+
export type JiraMutationRemovePostIncidentReviewLinkArgs = {
|
|
16332
|
+
input: JiraRemovePostIncidentReviewLinkMutationInput;
|
|
16333
|
+
};
|
|
15992
16334
|
export type JiraMutationUpdateLabelsFieldArgs = {
|
|
15993
16335
|
input: JiraUpdateLabelsFieldInput;
|
|
15994
16336
|
};
|
|
@@ -16690,6 +17032,12 @@ export type JiraPlatformComment = JiraComment & Node & {
|
|
|
16690
17032
|
updated?: Maybe<Scalars['DateTime']>;
|
|
16691
17033
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
16692
17034
|
};
|
|
17035
|
+
export type JiraPostIncidentReviewLink = Node & {
|
|
17036
|
+
__typename?: 'JiraPostIncidentReviewLink';
|
|
17037
|
+
id: Scalars['ID'];
|
|
17038
|
+
url?: Maybe<Scalars['URL']>;
|
|
17039
|
+
title?: Maybe<Scalars['String']>;
|
|
17040
|
+
};
|
|
16693
17041
|
export type JiraPriority = Node & {
|
|
16694
17042
|
__typename?: 'JiraPriority';
|
|
16695
17043
|
id: Scalars['ID'];
|
|
@@ -17315,6 +17663,7 @@ export type JiraQuery = {
|
|
|
17315
17663
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
17316
17664
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
17317
17665
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
17666
|
+
resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
|
|
17318
17667
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
17319
17668
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
17320
17669
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
@@ -17344,6 +17693,7 @@ export type JiraQuery = {
|
|
|
17344
17693
|
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
17345
17694
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
17346
17695
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
17696
|
+
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
17347
17697
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
17348
17698
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
17349
17699
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -17542,6 +17892,14 @@ export type JiraQueryResourceUsageMetricsArgs = {
|
|
|
17542
17892
|
last?: Maybe<Scalars['Int']>;
|
|
17543
17893
|
before?: Maybe<Scalars['String']>;
|
|
17544
17894
|
};
|
|
17895
|
+
export type JiraQueryResourceUsageCustomFieldRecommendationsArgs = {
|
|
17896
|
+
cloudId: Scalars['ID'];
|
|
17897
|
+
statuses?: Maybe<Array<Maybe<JiraResourceUsageRecommendationStatus>>>;
|
|
17898
|
+
first?: Maybe<Scalars['Int']>;
|
|
17899
|
+
after?: Maybe<Scalars['String']>;
|
|
17900
|
+
last?: Maybe<Scalars['Int']>;
|
|
17901
|
+
before?: Maybe<Scalars['String']>;
|
|
17902
|
+
};
|
|
17545
17903
|
export type JiraQueryUserPreferencesArgs = {
|
|
17546
17904
|
cloudId: Scalars['ID'];
|
|
17547
17905
|
};
|
|
@@ -17666,6 +18024,9 @@ export type JiraQueryJwmViewItemsArgs = {
|
|
|
17666
18024
|
last?: Maybe<Scalars['Int']>;
|
|
17667
18025
|
before?: Maybe<Scalars['String']>;
|
|
17668
18026
|
};
|
|
18027
|
+
export type JiraQueryPostIncidentReviewLinksByIdsArgs = {
|
|
18028
|
+
ids: Array<Scalars['ID']>;
|
|
18029
|
+
};
|
|
17669
18030
|
export type JiraQueryAllGrantTypeKeysArgs = {
|
|
17670
18031
|
cloudId: Scalars['ID'];
|
|
17671
18032
|
};
|
|
@@ -17980,6 +18341,15 @@ export type JiraRemoveIssuesFromFixVersionPayload = Payload & {
|
|
|
17980
18341
|
issuesWithMissingResolvePermission?: Maybe<Array<Scalars['String']>>;
|
|
17981
18342
|
issuesWithMissingEditPermission?: Maybe<Array<Scalars['String']>>;
|
|
17982
18343
|
};
|
|
18344
|
+
export type JiraRemovePostIncidentReviewLinkMutationInput = {
|
|
18345
|
+
incidentId: Scalars['ID'];
|
|
18346
|
+
postIncidentReviewLinkId: Scalars['ID'];
|
|
18347
|
+
};
|
|
18348
|
+
export type JiraRemovePostIncidentReviewLinkMutationPayload = Payload & {
|
|
18349
|
+
__typename?: 'JiraRemovePostIncidentReviewLinkMutationPayload';
|
|
18350
|
+
success: Scalars['Boolean'];
|
|
18351
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18352
|
+
};
|
|
17983
18353
|
export type JiraRemoveRelatedWorkFromVersionInput = {
|
|
17984
18354
|
versionId: Scalars['ID'];
|
|
17985
18355
|
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
@@ -18049,6 +18419,33 @@ export type JiraResolutionFieldPayload = Payload & {
|
|
|
18049
18419
|
export type JiraResolutionInput = {
|
|
18050
18420
|
resolutionId: Scalars['ID'];
|
|
18051
18421
|
};
|
|
18422
|
+
export type JiraResourceUsageCustomFieldRecommendation = Node & {
|
|
18423
|
+
__typename?: 'JiraResourceUsageCustomFieldRecommendation';
|
|
18424
|
+
id: Scalars['ID'];
|
|
18425
|
+
recommendationId: Scalars['Long'];
|
|
18426
|
+
status: JiraResourceUsageRecommendationStatus;
|
|
18427
|
+
impact: Scalars['Float'];
|
|
18428
|
+
customFieldTarget?: Maybe<Scalars['String']>;
|
|
18429
|
+
customFieldName?: Maybe<Scalars['String']>;
|
|
18430
|
+
customFieldType?: Maybe<Scalars['String']>;
|
|
18431
|
+
customFieldDescription?: Maybe<Scalars['String']>;
|
|
18432
|
+
customFieldAction: JiraResourceUsageCustomFieldRecommendationAction;
|
|
18433
|
+
};
|
|
18434
|
+
export declare enum JiraResourceUsageCustomFieldRecommendationAction {
|
|
18435
|
+
Trash = "TRASH"
|
|
18436
|
+
}
|
|
18437
|
+
export type JiraResourceUsageCustomFieldRecommendationConnection = {
|
|
18438
|
+
__typename?: 'JiraResourceUsageCustomFieldRecommendationConnection';
|
|
18439
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
18440
|
+
pageInfo: PageInfo;
|
|
18441
|
+
edges?: Maybe<Array<Maybe<JiraResourceUsageCustomFieldRecommendationEdge>>>;
|
|
18442
|
+
nodes?: Maybe<Array<Maybe<JiraResourceUsageCustomFieldRecommendation>>>;
|
|
18443
|
+
};
|
|
18444
|
+
export type JiraResourceUsageCustomFieldRecommendationEdge = {
|
|
18445
|
+
__typename?: 'JiraResourceUsageCustomFieldRecommendationEdge';
|
|
18446
|
+
node?: Maybe<JiraResourceUsageCustomFieldRecommendation>;
|
|
18447
|
+
cursor: Scalars['String'];
|
|
18448
|
+
};
|
|
18052
18449
|
export type JiraResourceUsageMetric = Node & {
|
|
18053
18450
|
__typename?: 'JiraResourceUsageMetric';
|
|
18054
18451
|
id: Scalars['ID'];
|
|
@@ -18095,6 +18492,11 @@ export type JiraResourceUsageMetricValueEdge = {
|
|
|
18095
18492
|
node?: Maybe<JiraResourceUsageMetricValue>;
|
|
18096
18493
|
cursor: Scalars['String'];
|
|
18097
18494
|
};
|
|
18495
|
+
export declare enum JiraResourceUsageRecommendationStatus {
|
|
18496
|
+
New = "NEW",
|
|
18497
|
+
Obsolete = "OBSOLETE",
|
|
18498
|
+
Executed = "EXECUTED"
|
|
18499
|
+
}
|
|
18098
18500
|
export declare enum JiraReviewState {
|
|
18099
18501
|
Review = "REVIEW",
|
|
18100
18502
|
Approval = "APPROVAL",
|
|
@@ -22330,6 +22732,18 @@ export type PageInfo = {
|
|
|
22330
22732
|
startCursor?: Maybe<Scalars['String']>;
|
|
22331
22733
|
endCursor?: Maybe<Scalars['String']>;
|
|
22332
22734
|
};
|
|
22735
|
+
export type Partner = {
|
|
22736
|
+
__typename?: 'Partner';
|
|
22737
|
+
invoiceJson?: Maybe<PartnerInvoiceJson>;
|
|
22738
|
+
offeringCatalog?: Maybe<PartnerOfferingListResponse>;
|
|
22739
|
+
offeringDetails?: Maybe<PartnerOfferingDetailsResponse>;
|
|
22740
|
+
};
|
|
22741
|
+
export type PartnerInvoiceJsonArgs = {
|
|
22742
|
+
where?: Maybe<PartnerInvoiceJsonFilter>;
|
|
22743
|
+
};
|
|
22744
|
+
export type PartnerOfferingDetailsArgs = {
|
|
22745
|
+
where?: Maybe<PartnerOfferingFilter>;
|
|
22746
|
+
};
|
|
22333
22747
|
export type PartnerBillingCycle = {
|
|
22334
22748
|
__typename?: 'PartnerBillingCycle';
|
|
22335
22749
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -22380,14 +22794,6 @@ export type PartnerBtfProductNode = {
|
|
|
22380
22794
|
productDescription?: Maybe<Scalars['String']>;
|
|
22381
22795
|
productKey: Scalars['ID'];
|
|
22382
22796
|
};
|
|
22383
|
-
export type PartnerCatalogApi = {
|
|
22384
|
-
__typename?: 'PartnerCatalogApi';
|
|
22385
|
-
partnerOfferingCatalog?: Maybe<PartnerOfferingListResponse>;
|
|
22386
|
-
partnerOfferingDetails?: Maybe<PartnerOfferingDetailsResponse>;
|
|
22387
|
-
};
|
|
22388
|
-
export type PartnerCatalogApiPartnerOfferingDetailsArgs = {
|
|
22389
|
-
where?: Maybe<PartnerOfferingFilter>;
|
|
22390
|
-
};
|
|
22391
22797
|
export type PartnerCloudApp = PartnerOfferingNode & {
|
|
22392
22798
|
__typename?: 'PartnerCloudApp';
|
|
22393
22799
|
id: Scalars['ID'];
|
|
@@ -22432,6 +22838,105 @@ export declare enum PartnerCurrency {
|
|
|
22432
22838
|
Jpy = "JPY",
|
|
22433
22839
|
Usd = "USD"
|
|
22434
22840
|
}
|
|
22841
|
+
export type PartnerInvoiceJson = {
|
|
22842
|
+
__typename?: 'PartnerInvoiceJson';
|
|
22843
|
+
billTo?: Maybe<PartnerInvoiceJsonBillToParty>;
|
|
22844
|
+
createdDate?: Maybe<Scalars['Long']>;
|
|
22845
|
+
currency?: Maybe<PartnerInvoiceJsonCurrency>;
|
|
22846
|
+
dueDate?: Maybe<Scalars['Long']>;
|
|
22847
|
+
id?: Maybe<Scalars['ID']>;
|
|
22848
|
+
items?: Maybe<Array<Maybe<PartnerInvoiceJsonInvoiceItem>>>;
|
|
22849
|
+
number?: Maybe<Scalars['ID']>;
|
|
22850
|
+
purchaseOrderNumber?: Maybe<Scalars['String']>;
|
|
22851
|
+
shipTo?: Maybe<PartnerInvoiceJsonShipToParty>;
|
|
22852
|
+
status?: Maybe<Scalars['String']>;
|
|
22853
|
+
totalExTax?: Maybe<Scalars['Float']>;
|
|
22854
|
+
totalIncTax?: Maybe<Scalars['Float']>;
|
|
22855
|
+
totalTax?: Maybe<Scalars['Float']>;
|
|
22856
|
+
version?: Maybe<Scalars['Long']>;
|
|
22857
|
+
};
|
|
22858
|
+
export type PartnerInvoiceJsonBillToParty = {
|
|
22859
|
+
__typename?: 'PartnerInvoiceJsonBillToParty';
|
|
22860
|
+
name?: Maybe<Scalars['String']>;
|
|
22861
|
+
postalAddress?: Maybe<PartnerInvoiceJsonPostalAddress>;
|
|
22862
|
+
priceEligibility?: Maybe<Scalars['JSON']>;
|
|
22863
|
+
taxId?: Maybe<Scalars['String']>;
|
|
22864
|
+
taxIds?: Maybe<Array<Maybe<PartnerInvoiceJsonTaxId>>>;
|
|
22865
|
+
};
|
|
22866
|
+
export declare enum PartnerInvoiceJsonCurrency {
|
|
22867
|
+
Aud = "AUD",
|
|
22868
|
+
Eur = "EUR",
|
|
22869
|
+
Gbp = "GBP",
|
|
22870
|
+
Jpy = "JPY",
|
|
22871
|
+
Usd = "USD"
|
|
22872
|
+
}
|
|
22873
|
+
export type PartnerInvoiceJsonFilter = {
|
|
22874
|
+
id?: Maybe<Scalars['ID']>;
|
|
22875
|
+
number?: Maybe<Scalars['ID']>;
|
|
22876
|
+
};
|
|
22877
|
+
export type PartnerInvoiceJsonInvoiceItem = {
|
|
22878
|
+
__typename?: 'PartnerInvoiceJsonInvoiceItem';
|
|
22879
|
+
adjustments?: Maybe<Array<Maybe<PartnerInvoiceJsonInvoiceItemAdjustments>>>;
|
|
22880
|
+
description?: Maybe<Scalars['String']>;
|
|
22881
|
+
entitlementNumber?: Maybe<Scalars['String']>;
|
|
22882
|
+
hostingType?: Maybe<Scalars['String']>;
|
|
22883
|
+
id?: Maybe<Scalars['String']>;
|
|
22884
|
+
isTrailPeriod?: Maybe<Scalars['Boolean']>;
|
|
22885
|
+
licenseType?: Maybe<Scalars['String']>;
|
|
22886
|
+
licensedTo?: Maybe<Scalars['String']>;
|
|
22887
|
+
period?: Maybe<PartnerInvoiceJsonInvoiceItemPeriod>;
|
|
22888
|
+
productName?: Maybe<Scalars['String']>;
|
|
22889
|
+
quantity: Scalars['Int'];
|
|
22890
|
+
saleType?: Maybe<Scalars['String']>;
|
|
22891
|
+
total: Scalars['Float'];
|
|
22892
|
+
unitAmount?: Maybe<Scalars['Float']>;
|
|
22893
|
+
upgradeCredit?: Maybe<Scalars['Float']>;
|
|
22894
|
+
};
|
|
22895
|
+
export type PartnerInvoiceJsonInvoiceItemAdjustments = {
|
|
22896
|
+
__typename?: 'PartnerInvoiceJsonInvoiceItemAdjustments';
|
|
22897
|
+
amount?: Maybe<Scalars['Float']>;
|
|
22898
|
+
percent?: Maybe<Scalars['Float']>;
|
|
22899
|
+
promotionId?: Maybe<Scalars['String']>;
|
|
22900
|
+
reason?: Maybe<Scalars['String']>;
|
|
22901
|
+
reasonCode?: Maybe<Scalars['String']>;
|
|
22902
|
+
type?: Maybe<Scalars['String']>;
|
|
22903
|
+
};
|
|
22904
|
+
export type PartnerInvoiceJsonInvoiceItemPeriod = {
|
|
22905
|
+
__typename?: 'PartnerInvoiceJsonInvoiceItemPeriod';
|
|
22906
|
+
endAt: Scalars['Long'];
|
|
22907
|
+
startAt: Scalars['Long'];
|
|
22908
|
+
};
|
|
22909
|
+
export type PartnerInvoiceJsonPostalAddress = {
|
|
22910
|
+
__typename?: 'PartnerInvoiceJsonPostalAddress';
|
|
22911
|
+
city?: Maybe<Scalars['String']>;
|
|
22912
|
+
country?: Maybe<Scalars['String']>;
|
|
22913
|
+
line1?: Maybe<Scalars['String']>;
|
|
22914
|
+
line2?: Maybe<Scalars['String']>;
|
|
22915
|
+
phone?: Maybe<Scalars['String']>;
|
|
22916
|
+
postcode?: Maybe<Scalars['String']>;
|
|
22917
|
+
state?: Maybe<Scalars['String']>;
|
|
22918
|
+
};
|
|
22919
|
+
export type PartnerInvoiceJsonShipToParty = {
|
|
22920
|
+
__typename?: 'PartnerInvoiceJsonShipToParty';
|
|
22921
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
22922
|
+
id?: Maybe<Scalars['String']>;
|
|
22923
|
+
name?: Maybe<Scalars['String']>;
|
|
22924
|
+
postalAddress?: Maybe<PartnerInvoiceJsonPostalAddress>;
|
|
22925
|
+
priceEligibility?: Maybe<Scalars['JSON']>;
|
|
22926
|
+
taxId?: Maybe<Scalars['String']>;
|
|
22927
|
+
taxIds?: Maybe<Array<Maybe<PartnerInvoiceJsonTaxId>>>;
|
|
22928
|
+
transactionAccountId?: Maybe<Scalars['String']>;
|
|
22929
|
+
updatedAt?: Maybe<Scalars['Long']>;
|
|
22930
|
+
version?: Maybe<Scalars['Long']>;
|
|
22931
|
+
};
|
|
22932
|
+
export type PartnerInvoiceJsonTaxId = {
|
|
22933
|
+
__typename?: 'PartnerInvoiceJsonTaxId';
|
|
22934
|
+
id?: Maybe<Scalars['String']>;
|
|
22935
|
+
label?: Maybe<Scalars['String']>;
|
|
22936
|
+
metadata?: Maybe<Scalars['JSON']>;
|
|
22937
|
+
taxIdDescription?: Maybe<Scalars['String']>;
|
|
22938
|
+
taxIdLabel?: Maybe<Scalars['String']>;
|
|
22939
|
+
};
|
|
22435
22940
|
export type PartnerOfferingBtfInput = {
|
|
22436
22941
|
currency?: Maybe<Array<Maybe<PartnerCurrency>>>;
|
|
22437
22942
|
licenseType?: Maybe<Array<Maybe<PartnerBtfLicenseType>>>;
|
|
@@ -23835,7 +24340,7 @@ export type Query = {
|
|
|
23835
24340
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
23836
24341
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
23837
24342
|
codeInJira?: Maybe<CodeInJira>;
|
|
23838
|
-
|
|
24343
|
+
partner?: Maybe<Partner>;
|
|
23839
24344
|
jira?: Maybe<JiraQuery>;
|
|
23840
24345
|
testing?: Maybe<Testing>;
|
|
23841
24346
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
@@ -23921,6 +24426,7 @@ export type Query = {
|
|
|
23921
24426
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
23922
24427
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
23923
24428
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
24429
|
+
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
23924
24430
|
team?: Maybe<TeamQuery>;
|
|
23925
24431
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
23926
24432
|
jwmOverview?: Maybe<JiraWorkManagementOverviewResult>;
|
|
@@ -24293,6 +24799,14 @@ export type QueryDeveloperLogAccessArgs = {
|
|
|
24293
24799
|
export type QueryInstallationContextsWithLogAccessArgs = {
|
|
24294
24800
|
appId: Scalars['ID'];
|
|
24295
24801
|
};
|
|
24802
|
+
export type QueryAppLogsWithMetaDataArgs = {
|
|
24803
|
+
appId: Scalars['String'];
|
|
24804
|
+
environmentId: Scalars['String'];
|
|
24805
|
+
offset: Scalars['Int'];
|
|
24806
|
+
limit: Scalars['Int'];
|
|
24807
|
+
queryStartTime: Scalars['String'];
|
|
24808
|
+
query?: Maybe<LogQueryInput>;
|
|
24809
|
+
};
|
|
24296
24810
|
export type QueryJwmOverviewArgs = {
|
|
24297
24811
|
id: Scalars['ID'];
|
|
24298
24812
|
};
|
|
@@ -25575,6 +26089,10 @@ export declare enum Scope {
|
|
|
25575
26089
|
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
25576
26090
|
ReadTeam = "READ_TEAM",
|
|
25577
26091
|
ReadTeamMembers = "READ_TEAM_MEMBERS",
|
|
26092
|
+
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
26093
|
+
ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
|
|
26094
|
+
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
26095
|
+
ReadTownsquareComment = "READ_TOWNSQUARE_COMMENT",
|
|
25578
26096
|
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
25579
26097
|
CatalogRead = "CATALOG_READ",
|
|
25580
26098
|
ApiAccess = "API_ACCESS"
|
|
@@ -26065,6 +26583,10 @@ export type ShepherdAlert = Node & {
|
|
|
26065
26583
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
26066
26584
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
26067
26585
|
};
|
|
26586
|
+
export declare enum ShepherdAlertDetectionCategory {
|
|
26587
|
+
Data = "DATA",
|
|
26588
|
+
Threat = "THREAT"
|
|
26589
|
+
}
|
|
26068
26590
|
export type ShepherdAlertEdge = {
|
|
26069
26591
|
__typename?: 'ShepherdAlertEdge';
|
|
26070
26592
|
cursor?: Maybe<Scalars['String']>;
|
|
@@ -26138,6 +26660,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
26138
26660
|
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
26139
26661
|
UserAddedToBeacon = "USER_ADDED_TO_BEACON",
|
|
26140
26662
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
26663
|
+
UserRemovedFromBeacon = "USER_REMOVED_FROM_BEACON",
|
|
26141
26664
|
UserRevokedRole = "USER_REVOKED_ROLE",
|
|
26142
26665
|
VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
|
|
26143
26666
|
}
|
|
@@ -26228,9 +26751,12 @@ export type ShepherdDescriptionTemplate = {
|
|
|
26228
26751
|
};
|
|
26229
26752
|
export type ShepherdDetection = {
|
|
26230
26753
|
__typename?: 'ShepherdDetection';
|
|
26754
|
+
businessTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
26755
|
+
category: ShepherdAlertDetectionCategory;
|
|
26231
26756
|
description?: Maybe<Scalars['JSON']>;
|
|
26232
26757
|
id: Scalars['ID'];
|
|
26233
26758
|
product: ShepherdAtlassianProduct;
|
|
26759
|
+
regions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
26234
26760
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
26235
26761
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
26236
26762
|
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
@@ -28036,6 +28562,7 @@ export type TownsquareQueryApi = {
|
|
|
28036
28562
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
28037
28563
|
projectTql?: Maybe<TownsquareProjectConnection>;
|
|
28038
28564
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
28565
|
+
allWorkspacesForOrg?: Maybe<TownsquareWorkspaceConnection>;
|
|
28039
28566
|
};
|
|
28040
28567
|
export type TownsquareQueryApiProjectArgs = {
|
|
28041
28568
|
ari: Scalars['String'];
|
|
@@ -28081,6 +28608,12 @@ export type TownsquareQueryApiGoalTqlArgs = {
|
|
|
28081
28608
|
first?: Maybe<Scalars['Int']>;
|
|
28082
28609
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
28083
28610
|
};
|
|
28611
|
+
export type TownsquareQueryApiAllWorkspacesForOrgArgs = {
|
|
28612
|
+
first?: Maybe<Scalars['Int']>;
|
|
28613
|
+
after?: Maybe<Scalars['String']>;
|
|
28614
|
+
organisationId?: Maybe<Scalars['String']>;
|
|
28615
|
+
cloudId?: Maybe<Scalars['String']>;
|
|
28616
|
+
};
|
|
28084
28617
|
export type TownsquareTag = Node & {
|
|
28085
28618
|
__typename?: 'TownsquareTag';
|
|
28086
28619
|
description?: Maybe<Scalars['String']>;
|
|
@@ -28120,6 +28653,22 @@ export type TownsquareTeam = Node & {
|
|
|
28120
28653
|
id: Scalars['ID'];
|
|
28121
28654
|
name?: Maybe<Scalars['String']>;
|
|
28122
28655
|
};
|
|
28656
|
+
export type TownsquareWorkspace = Node & {
|
|
28657
|
+
__typename?: 'TownsquareWorkspace';
|
|
28658
|
+
cloudId: Scalars['String'];
|
|
28659
|
+
id: Scalars['ID'];
|
|
28660
|
+
name: Scalars['String'];
|
|
28661
|
+
};
|
|
28662
|
+
export type TownsquareWorkspaceConnection = {
|
|
28663
|
+
__typename?: 'TownsquareWorkspaceConnection';
|
|
28664
|
+
edges?: Maybe<Array<Maybe<TownsquareWorkspaceEdge>>>;
|
|
28665
|
+
pageInfo: PageInfo;
|
|
28666
|
+
};
|
|
28667
|
+
export type TownsquareWorkspaceEdge = {
|
|
28668
|
+
__typename?: 'TownsquareWorkspaceEdge';
|
|
28669
|
+
cursor: Scalars['String'];
|
|
28670
|
+
node?: Maybe<TownsquareWorkspace>;
|
|
28671
|
+
};
|
|
28123
28672
|
export type TransitionFilter = {
|
|
28124
28673
|
from: Scalars['String'];
|
|
28125
28674
|
to: Scalars['String'];
|
|
@@ -28177,6 +28726,7 @@ export type TrelloBoard = Node & {
|
|
|
28177
28726
|
__typename?: 'TrelloBoard';
|
|
28178
28727
|
closed: Scalars['Boolean'];
|
|
28179
28728
|
creationMethod?: Maybe<Scalars['String']>;
|
|
28729
|
+
creator?: Maybe<TrelloMember>;
|
|
28180
28730
|
description?: Maybe<TrelloDescription>;
|
|
28181
28731
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
28182
28732
|
enterpriseOwned: Scalars['Boolean'];
|
|
@@ -28189,10 +28739,12 @@ export type TrelloBoard = Node & {
|
|
|
28189
28739
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
28190
28740
|
name: Scalars['String'];
|
|
28191
28741
|
objectId: Scalars['ID'];
|
|
28742
|
+
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
28192
28743
|
prefs: TrelloBoardPrefs;
|
|
28193
28744
|
premiumFeatures?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
28194
28745
|
shortLink: Scalars['TrelloShortLink'];
|
|
28195
28746
|
shortUrl?: Maybe<Scalars['URL']>;
|
|
28747
|
+
tags?: Maybe<TrelloTagConnection>;
|
|
28196
28748
|
url?: Maybe<Scalars['URL']>;
|
|
28197
28749
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
28198
28750
|
workspace?: Maybe<TrelloWorkspace>;
|
|
@@ -28211,6 +28763,10 @@ export type TrelloBoardMembersArgs = {
|
|
|
28211
28763
|
filter?: Maybe<TrelloBoardMembershipFilterInput>;
|
|
28212
28764
|
first?: Maybe<Scalars['Int']>;
|
|
28213
28765
|
};
|
|
28766
|
+
export type TrelloBoardTagsArgs = {
|
|
28767
|
+
after?: Maybe<Scalars['String']>;
|
|
28768
|
+
first?: Maybe<Scalars['Int']>;
|
|
28769
|
+
};
|
|
28214
28770
|
export type TrelloBoardAttachmentsLimits = {
|
|
28215
28771
|
__typename?: 'TrelloBoardAttachmentsLimits';
|
|
28216
28772
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -28920,6 +29476,11 @@ export declare enum TrelloPluginDataScope {
|
|
|
28920
29476
|
Card = "CARD",
|
|
28921
29477
|
Organization = "ORGANIZATION"
|
|
28922
29478
|
}
|
|
29479
|
+
export type TrelloPopularLabelForColor = {
|
|
29480
|
+
__typename?: 'TrelloPopularLabelForColor';
|
|
29481
|
+
color?: Maybe<Scalars['String']>;
|
|
29482
|
+
labelName?: Maybe<Scalars['String']>;
|
|
29483
|
+
};
|
|
28923
29484
|
export type TrelloQueryApi = {
|
|
28924
29485
|
__typename?: 'TrelloQueryApi';
|
|
28925
29486
|
board?: Maybe<TrelloBoard>;
|
|
@@ -29134,12 +29695,14 @@ export type TrelloWorkspace = Node & {
|
|
|
29134
29695
|
__typename?: 'TrelloWorkspace';
|
|
29135
29696
|
description: Scalars['String'];
|
|
29136
29697
|
displayName: Scalars['String'];
|
|
29698
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
29137
29699
|
id: Scalars['ID'];
|
|
29138
29700
|
logoHash?: Maybe<Scalars['String']>;
|
|
29139
29701
|
logoUrl?: Maybe<Scalars['String']>;
|
|
29140
29702
|
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
29141
29703
|
name: Scalars['String'];
|
|
29142
29704
|
objectId: Scalars['ID'];
|
|
29705
|
+
prefs: TrelloWorkspacePrefs;
|
|
29143
29706
|
tags?: Maybe<TrelloTagConnection>;
|
|
29144
29707
|
url: Scalars['String'];
|
|
29145
29708
|
website?: Maybe<Scalars['String']>;
|
|
@@ -29176,6 +29739,10 @@ export type TrelloWorkspaceMembershipsConnection = {
|
|
|
29176
29739
|
nodes?: Maybe<Array<TrelloMember>>;
|
|
29177
29740
|
pageInfo: PageInfo;
|
|
29178
29741
|
};
|
|
29742
|
+
export type TrelloWorkspacePrefs = {
|
|
29743
|
+
__typename?: 'TrelloWorkspacePrefs';
|
|
29744
|
+
associatedDomain?: Maybe<Scalars['String']>;
|
|
29745
|
+
};
|
|
29179
29746
|
export type TunnelDefinitionsInput = {
|
|
29180
29747
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
29181
29748
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|
|
@@ -29217,7 +29784,7 @@ export type UpdateAppContributorRoleInput = {
|
|
|
29217
29784
|
updates: Array<UpdateAppContributorRolePayload>;
|
|
29218
29785
|
};
|
|
29219
29786
|
export type UpdateAppContributorRolePayload = {
|
|
29220
|
-
|
|
29787
|
+
accountId: Scalars['ID'];
|
|
29221
29788
|
add: Array<Maybe<AppContributorRole>>;
|
|
29222
29789
|
remove: Array<Maybe<AppContributorRole>>;
|
|
29223
29790
|
};
|