@forge/cli-shared 6.0.2-next.0 → 6.0.2-next.2
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 +17 -0
- package/out/graphql/graphql-types.d.ts +251 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -14
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.0.2-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [81831c1]
|
|
8
|
+
- Updated dependencies [fea8467]
|
|
9
|
+
- Updated dependencies [0962638]
|
|
10
|
+
- @forge/manifest@7.10.0-next.2
|
|
11
|
+
|
|
12
|
+
## 6.0.2-next.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [84b20e6]
|
|
17
|
+
- Updated dependencies [cdbb366]
|
|
18
|
+
- @forge/manifest@7.10.0-next.1
|
|
19
|
+
|
|
3
20
|
## 6.0.2-next.0
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -2855,6 +2855,7 @@ export declare enum CcpSubscriptionStatus {
|
|
|
2855
2855
|
Processing = "PROCESSING"
|
|
2856
2856
|
}
|
|
2857
2857
|
export declare enum CcpSupportedBillingSystems {
|
|
2858
|
+
BackOffice = "BACK_OFFICE",
|
|
2858
2859
|
Ccp = "CCP",
|
|
2859
2860
|
Hams = "HAMS",
|
|
2860
2861
|
Opsgenie = "OPSGENIE"
|
|
@@ -4084,12 +4085,14 @@ export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
|
4084
4085
|
export declare type CompassComponentInstancePermissions = {
|
|
4085
4086
|
__typename?: 'CompassComponentInstancePermissions';
|
|
4086
4087
|
applyScorecard?: Maybe<CompassPermissionResult>;
|
|
4088
|
+
archive?: Maybe<CompassPermissionResult>;
|
|
4087
4089
|
connectEventSource?: Maybe<CompassPermissionResult>;
|
|
4088
4090
|
connectMetricSource?: Maybe<CompassPermissionResult>;
|
|
4089
4091
|
createAnnouncement?: Maybe<CompassPermissionResult>;
|
|
4090
4092
|
delete?: Maybe<CompassPermissionResult>;
|
|
4091
4093
|
edit?: Maybe<CompassPermissionResult>;
|
|
4092
4094
|
modifyAnnouncement?: Maybe<CompassPermissionResult>;
|
|
4095
|
+
publish?: Maybe<CompassPermissionResult>;
|
|
4093
4096
|
pushMetricValues?: Maybe<CompassPermissionResult>;
|
|
4094
4097
|
viewAnnouncement?: Maybe<CompassPermissionResult>;
|
|
4095
4098
|
};
|
|
@@ -5220,6 +5223,7 @@ export declare type CompassFilteredComponentsCount = {
|
|
|
5220
5223
|
};
|
|
5221
5224
|
export declare type CompassFilteredComponentsCountQuery = {
|
|
5222
5225
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
5226
|
+
componentCustomFieldFilters?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
5223
5227
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
5224
5228
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
5225
5229
|
lifecycleFilter?: InputMaybe<CompassLifecycleFilterInput>;
|
|
@@ -17295,6 +17299,7 @@ export declare type DevAiGetSupportedReposArgs = {
|
|
|
17295
17299
|
};
|
|
17296
17300
|
export declare type DevAiAutodevLog = {
|
|
17297
17301
|
id: Scalars['ID']['output'];
|
|
17302
|
+
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
17298
17303
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17299
17304
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17300
17305
|
};
|
|
@@ -17343,6 +17348,14 @@ export declare enum DevAiAutodevLogGroupStatus {
|
|
|
17343
17348
|
Failed = "FAILED",
|
|
17344
17349
|
InProgress = "IN_PROGRESS"
|
|
17345
17350
|
}
|
|
17351
|
+
export declare enum DevAiAutodevLogPhase {
|
|
17352
|
+
CodeGenerating = "CODE_GENERATING",
|
|
17353
|
+
CodeReview = "CODE_REVIEW",
|
|
17354
|
+
CodeReGenerating = "CODE_RE_GENERATING",
|
|
17355
|
+
PlanGenerating = "PLAN_GENERATING",
|
|
17356
|
+
PlanReview = "PLAN_REVIEW",
|
|
17357
|
+
PlanReGenerating = "PLAN_RE_GENERATING"
|
|
17358
|
+
}
|
|
17346
17359
|
export declare enum DevAiAutodevLogStatus {
|
|
17347
17360
|
Completed = "COMPLETED",
|
|
17348
17361
|
Failed = "FAILED",
|
|
@@ -17495,6 +17508,7 @@ export declare type DevAiGenericAutodevLog = DevAiAutodevLog & {
|
|
|
17495
17508
|
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
17496
17509
|
id: Scalars['ID']['output'];
|
|
17497
17510
|
kind?: Maybe<Scalars['String']['output']>;
|
|
17511
|
+
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
17498
17512
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17499
17513
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17500
17514
|
};
|
|
@@ -17530,6 +17544,7 @@ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
|
17530
17544
|
__typename?: 'DevAiPlaintextAutodevLog';
|
|
17531
17545
|
id: Scalars['ID']['output'];
|
|
17532
17546
|
message?: Maybe<Scalars['String']['output']>;
|
|
17547
|
+
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
17533
17548
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17534
17549
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17535
17550
|
};
|
|
@@ -36587,6 +36602,14 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
|
36587
36602
|
Platimun = "PLATIMUN",
|
|
36588
36603
|
Silver = "SILVER"
|
|
36589
36604
|
}
|
|
36605
|
+
export declare type GrowthUnifiedProfileEntitlement = {
|
|
36606
|
+
__typename?: 'GrowthUnifiedProfileEntitlement';
|
|
36607
|
+
d0Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36608
|
+
d1tod6Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36609
|
+
productEdition?: Maybe<Scalars['String']['output']>;
|
|
36610
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
36611
|
+
productName?: Maybe<Scalars['String']['output']>;
|
|
36612
|
+
};
|
|
36590
36613
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
36591
36614
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
36592
36615
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -36684,11 +36707,21 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
36684
36707
|
onboardingContext?: Maybe<GrowthUnifiedProfileOnboardingContext>;
|
|
36685
36708
|
paidChannelContext?: Maybe<Array<Maybe<GrowthUnifiedProfilePaidChannelContext>>>;
|
|
36686
36709
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
36710
|
+
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
36687
36711
|
};
|
|
36688
36712
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
36689
36713
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
36690
36714
|
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
36691
36715
|
};
|
|
36716
|
+
export declare type GrowthUnifiedProfileSiteDetails = {
|
|
36717
|
+
__typename?: 'GrowthUnifiedProfileSiteDetails';
|
|
36718
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
36719
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
36720
|
+
hasAdminAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
36721
|
+
products?: Maybe<Array<Maybe<GrowthUnifiedProfileEntitlement>>>;
|
|
36722
|
+
siteCreatedAt?: Maybe<Scalars['Int']['output']>;
|
|
36723
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
36724
|
+
};
|
|
36692
36725
|
export declare enum GrowthUnifiedProfileTeamType {
|
|
36693
36726
|
CustomerService = "CUSTOMER_SERVICE",
|
|
36694
36727
|
DataScience = "DATA_SCIENCE",
|
|
@@ -39987,6 +40020,7 @@ export declare type JiraAutodevJob = {
|
|
|
39987
40020
|
id: Scalars['ID']['output'];
|
|
39988
40021
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
39989
40022
|
logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
40023
|
+
logs?: Maybe<DevAiAutodevLogConnection>;
|
|
39990
40024
|
phase?: Maybe<JiraAutodevPhase>;
|
|
39991
40025
|
plan?: Maybe<JiraAutodevPlan>;
|
|
39992
40026
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
@@ -41801,6 +41835,21 @@ export declare type JiraCustomRemoteIssueLink = {
|
|
|
41801
41835
|
summary?: Maybe<Scalars['String']['output']>;
|
|
41802
41836
|
title?: Maybe<Scalars['String']['output']>;
|
|
41803
41837
|
};
|
|
41838
|
+
export declare type JiraCustomerServiceOrganizationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
41839
|
+
__typename?: 'JiraCustomerServiceOrganizationField';
|
|
41840
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
41841
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
41842
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
41843
|
+
fieldId: Scalars['String']['output'];
|
|
41844
|
+
id: Scalars['ID']['output'];
|
|
41845
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41846
|
+
issue?: Maybe<JiraIssue>;
|
|
41847
|
+
name: Scalars['String']['output'];
|
|
41848
|
+
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
41849
|
+
selectedOrganization?: Maybe<JiraServiceManagementOrganization>;
|
|
41850
|
+
type: Scalars['String']['output'];
|
|
41851
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
41852
|
+
};
|
|
41804
41853
|
export declare type JiraDashboard = Node & {
|
|
41805
41854
|
__typename?: 'JiraDashboard';
|
|
41806
41855
|
dashboardId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -42586,7 +42635,9 @@ export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssocia
|
|
|
42586
42635
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
42587
42636
|
field?: Maybe<JiraField>;
|
|
42588
42637
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
42638
|
+
hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
42589
42639
|
id: Scalars['ID']['output'];
|
|
42640
|
+
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
42590
42641
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
42591
42642
|
};
|
|
42592
42643
|
export declare type JiraFieldAssociationWithIssueTypesConnection = {
|
|
@@ -43377,6 +43428,7 @@ export declare type JiraGroupedListView = JiraSpreadsheetView & JiraView & Node
|
|
|
43377
43428
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
43378
43429
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
43379
43430
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
43431
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
43380
43432
|
};
|
|
43381
43433
|
export declare type JiraGroupedListViewFieldSetsArgs = {
|
|
43382
43434
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -44124,6 +44176,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
44124
44176
|
security?: InputMaybe<JiraSecurityLevelInput>;
|
|
44125
44177
|
singleGroupPickerFields?: InputMaybe<Array<JiraSingleGroupPickerFieldInput>>;
|
|
44126
44178
|
singleLineTextFields?: InputMaybe<Array<JiraSingleLineTextFieldInput>>;
|
|
44179
|
+
singleOrganizationField?: InputMaybe<JiraSingleOrganizationFieldInput>;
|
|
44127
44180
|
singleSelectClearableUserPickerFields?: InputMaybe<Array<JiraUserFieldInput>>;
|
|
44128
44181
|
singleSelectFields?: InputMaybe<Array<JiraSingleSelectFieldInput>>;
|
|
44129
44182
|
singleSelectUserPickerFields?: InputMaybe<Array<JiraSingleSelectUserPickerFieldInput>>;
|
|
@@ -44636,6 +44689,7 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
|
44636
44689
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44637
44690
|
};
|
|
44638
44691
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
44692
|
+
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44639
44693
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44640
44694
|
};
|
|
44641
44695
|
export declare type JiraIssueSearchStatus = {
|
|
@@ -44669,7 +44723,11 @@ export declare type JiraIssueSearchViewConfigInput = {
|
|
|
44669
44723
|
};
|
|
44670
44724
|
export declare type JiraIssueSearchViewConfigSettings = {
|
|
44671
44725
|
__typename?: 'JiraIssueSearchViewConfigSettings';
|
|
44726
|
+
canEnableGrouping?: Maybe<Scalars['Boolean']['output']>;
|
|
44672
44727
|
canEnableHierarchy?: Maybe<Scalars['Boolean']['output']>;
|
|
44728
|
+
groupByConfig?: Maybe<JiraSpreadsheetGroupByConfig>;
|
|
44729
|
+
hideDone?: Maybe<Scalars['Boolean']['output']>;
|
|
44730
|
+
isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44673
44731
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44674
44732
|
};
|
|
44675
44733
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
@@ -44728,11 +44786,13 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
44728
44786
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
44729
44787
|
JiraForgeDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
44730
44788
|
JiraForgeDatetimeField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
44789
|
+
JiraForgeGroupField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
|
|
44731
44790
|
JiraForgeNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
44732
44791
|
JiraForgeObjectField?: InputMaybe<Array<JiraUpdateForgeObjectFieldInput>>;
|
|
44733
44792
|
JiraForgeStringField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44734
44793
|
JiraForgeStringsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
44735
44794
|
JiraForgeUserField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
44795
|
+
JiraForgeUsersField?: InputMaybe<Array<JiraUpdateMultipleSelectUserPickerFieldInput>>;
|
|
44736
44796
|
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
44737
44797
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
44738
44798
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
@@ -45642,6 +45702,7 @@ export declare type JiraListView = JiraSpreadsheetView & JiraView & Node & {
|
|
|
45642
45702
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
45643
45703
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
45644
45704
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
45705
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
45645
45706
|
};
|
|
45646
45707
|
export declare type JiraListViewFieldSetsArgs = {
|
|
45647
45708
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46070,6 +46131,9 @@ export declare type JiraMutation = {
|
|
|
46070
46131
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
46071
46132
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
46072
46133
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
46134
|
+
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
46135
|
+
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
46136
|
+
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
46073
46137
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
46074
46138
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
46075
46139
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
@@ -46343,6 +46407,18 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
|
|
|
46343
46407
|
cloudId: Scalars['ID']['input'];
|
|
46344
46408
|
input: JiraInitializeProjectNotificationPreferencesInput;
|
|
46345
46409
|
};
|
|
46410
|
+
export declare type JiraMutationJiraServiceManagementCreateRequestTypeCategoryArgs = {
|
|
46411
|
+
cloudId: Scalars['ID']['input'];
|
|
46412
|
+
input: JiraServiceManagementCreateRequestTypeCategoryInput;
|
|
46413
|
+
};
|
|
46414
|
+
export declare type JiraMutationJiraServiceManagementDeleteRequestTypeCategoryArgs = {
|
|
46415
|
+
cloudId: Scalars['ID']['input'];
|
|
46416
|
+
requestTypeCategoryId: Scalars['ID']['input'];
|
|
46417
|
+
};
|
|
46418
|
+
export declare type JiraMutationJiraServiceManagementUpdateRequestTypeCategoryArgs = {
|
|
46419
|
+
cloudId: Scalars['ID']['input'];
|
|
46420
|
+
input: JiraServiceManagementUpdateRequestTypeCategoryInput;
|
|
46421
|
+
};
|
|
46346
46422
|
export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
|
|
46347
46423
|
input: JiraWorkManagementCreateCustomBackgroundInput;
|
|
46348
46424
|
};
|
|
@@ -48535,6 +48611,7 @@ export declare type JiraQuery = {
|
|
|
48535
48611
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
48536
48612
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
48537
48613
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
48614
|
+
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
48538
48615
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
48539
48616
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
48540
48617
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
@@ -49046,9 +49123,9 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
|
49046
49123
|
};
|
|
49047
49124
|
export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
49048
49125
|
cloudId: Scalars['ID']['input'];
|
|
49049
|
-
|
|
49050
|
-
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49126
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
49051
49127
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
49128
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
49052
49129
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
49053
49130
|
};
|
|
49054
49131
|
export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
@@ -49078,6 +49155,12 @@ export declare type JiraQueryJiraProjectsMappedToHelpCenterArgs = {
|
|
|
49078
49155
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49079
49156
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49080
49157
|
};
|
|
49158
|
+
export declare type JiraQueryJiraServiceManagementRequestTypeCategoriesByProjectArgs = {
|
|
49159
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49160
|
+
cloudId: Scalars['ID']['input'];
|
|
49161
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49162
|
+
projectId: Scalars['ID']['input'];
|
|
49163
|
+
};
|
|
49081
49164
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
49082
49165
|
cloudId: Scalars['ID']['input'];
|
|
49083
49166
|
};
|
|
@@ -50494,6 +50577,13 @@ export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateP
|
|
|
50494
50577
|
success: Scalars['Boolean']['output'];
|
|
50495
50578
|
workflowAndIssueSummary?: Maybe<JiraServiceManagementWorkflowAndIssueSummary>;
|
|
50496
50579
|
};
|
|
50580
|
+
export declare type JiraServiceManagementCreateRequestTypeCategoryInput = {
|
|
50581
|
+
name: Scalars['String']['input'];
|
|
50582
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
50583
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
50584
|
+
restriction?: InputMaybe<JiraServiceManagementRequestTypeCategoryRestriction>;
|
|
50585
|
+
status?: InputMaybe<JiraServiceManagementRequestTypeCategoryStatus>;
|
|
50586
|
+
};
|
|
50497
50587
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateInput = {
|
|
50498
50588
|
clientMutationId: Scalars['String']['input'];
|
|
50499
50589
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -50952,6 +51042,53 @@ export declare type JiraServiceManagementRequestType = Node & {
|
|
|
50952
51042
|
practices?: Maybe<Array<Maybe<JiraServiceManagementRequestTypePractice>>>;
|
|
50953
51043
|
requestTypeId: Scalars['String']['output'];
|
|
50954
51044
|
};
|
|
51045
|
+
export declare type JiraServiceManagementRequestTypeCategory = {
|
|
51046
|
+
__typename?: 'JiraServiceManagementRequestTypeCategory';
|
|
51047
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
51048
|
+
id: Scalars['ID']['output'];
|
|
51049
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
51050
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
51051
|
+
projectId?: Maybe<Scalars['Long']['output']>;
|
|
51052
|
+
requestTypes?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
51053
|
+
restriction?: Maybe<JiraServiceManagementRequestTypeCategoryRestriction>;
|
|
51054
|
+
status?: Maybe<JiraServiceManagementRequestTypeCategoryStatus>;
|
|
51055
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
51056
|
+
};
|
|
51057
|
+
export declare type JiraServiceManagementRequestTypeCategoryRequestTypesArgs = {
|
|
51058
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51059
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51060
|
+
};
|
|
51061
|
+
export declare type JiraServiceManagementRequestTypeCategoryConnection = {
|
|
51062
|
+
__typename?: 'JiraServiceManagementRequestTypeCategoryConnection';
|
|
51063
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementRequestTypeCategoryEdge>>>;
|
|
51064
|
+
nodes?: Maybe<Array<Maybe<JiraServiceManagementRequestTypeCategory>>>;
|
|
51065
|
+
pageInfo: PageInfo;
|
|
51066
|
+
};
|
|
51067
|
+
export declare type JiraServiceManagementRequestTypeCategoryDefaultPayload = Payload & {
|
|
51068
|
+
__typename?: 'JiraServiceManagementRequestTypeCategoryDefaultPayload';
|
|
51069
|
+
errors?: Maybe<Array<MutationError>>;
|
|
51070
|
+
success: Scalars['Boolean']['output'];
|
|
51071
|
+
};
|
|
51072
|
+
export declare type JiraServiceManagementRequestTypeCategoryEdge = {
|
|
51073
|
+
__typename?: 'JiraServiceManagementRequestTypeCategoryEdge';
|
|
51074
|
+
cursor: Scalars['String']['output'];
|
|
51075
|
+
node?: Maybe<JiraServiceManagementRequestTypeCategory>;
|
|
51076
|
+
};
|
|
51077
|
+
export declare type JiraServiceManagementRequestTypeCategoryPayload = Payload & {
|
|
51078
|
+
__typename?: 'JiraServiceManagementRequestTypeCategoryPayload';
|
|
51079
|
+
errors?: Maybe<Array<MutationError>>;
|
|
51080
|
+
requestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategory>;
|
|
51081
|
+
success: Scalars['Boolean']['output'];
|
|
51082
|
+
};
|
|
51083
|
+
export declare enum JiraServiceManagementRequestTypeCategoryRestriction {
|
|
51084
|
+
Open = "OPEN",
|
|
51085
|
+
Restricted = "RESTRICTED"
|
|
51086
|
+
}
|
|
51087
|
+
export declare enum JiraServiceManagementRequestTypeCategoryStatus {
|
|
51088
|
+
Active = "ACTIVE",
|
|
51089
|
+
Draft = "DRAFT",
|
|
51090
|
+
Inactive = "INACTIVE"
|
|
51091
|
+
}
|
|
50955
51092
|
export declare type JiraServiceManagementRequestTypeConnection = {
|
|
50956
51093
|
__typename?: 'JiraServiceManagementRequestTypeConnection';
|
|
50957
51094
|
edges?: Maybe<Array<Maybe<JiraServiceManagementRequestTypeEdge>>>;
|
|
@@ -51154,6 +51291,13 @@ export declare type JiraServiceManagementUpdateOrganizationFieldInput = {
|
|
|
51154
51291
|
id: Scalars['ID']['input'];
|
|
51155
51292
|
operations: Array<JiraServiceManagementOrganizationFieldOperationInput>;
|
|
51156
51293
|
};
|
|
51294
|
+
export declare type JiraServiceManagementUpdateRequestTypeCategoryInput = {
|
|
51295
|
+
id: Scalars['ID']['input'];
|
|
51296
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
51297
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
51298
|
+
restriction?: InputMaybe<JiraServiceManagementRequestTypeCategoryRestriction>;
|
|
51299
|
+
status?: InputMaybe<JiraServiceManagementRequestTypeCategoryStatus>;
|
|
51300
|
+
};
|
|
51157
51301
|
export declare type JiraServiceManagementUpdateSentimentFieldInput = {
|
|
51158
51302
|
id: Scalars['ID']['input'];
|
|
51159
51303
|
operation?: InputMaybe<JiraServiceManagementUpdateSentimentOperationInput>;
|
|
@@ -51457,6 +51601,10 @@ export declare type JiraSingleLineTextFieldPayload = Payload & {
|
|
|
51457
51601
|
field?: Maybe<JiraSingleLineTextField>;
|
|
51458
51602
|
success: Scalars['Boolean']['output'];
|
|
51459
51603
|
};
|
|
51604
|
+
export declare type JiraSingleOrganizationFieldInput = {
|
|
51605
|
+
fieldId: Scalars['ID']['input'];
|
|
51606
|
+
organization: JiraOrganizationsInput;
|
|
51607
|
+
};
|
|
51460
51608
|
export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & JiraHasSingleSelectedValue & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
51461
51609
|
__typename?: 'JiraSingleSelectField';
|
|
51462
51610
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -51681,6 +51829,7 @@ export declare type JiraSpreadsheetView = {
|
|
|
51681
51829
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
51682
51830
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
51683
51831
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
51832
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
51684
51833
|
};
|
|
51685
51834
|
export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
51686
51835
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59102,6 +59251,7 @@ export declare type Mutation = {
|
|
|
59102
59251
|
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
59103
59252
|
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
59104
59253
|
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
59254
|
+
settings_updateNavigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
|
|
59105
59255
|
shepherd?: Maybe<ShepherdMutation>;
|
|
59106
59256
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
59107
59257
|
startSprint?: Maybe<SprintResponse>;
|
|
@@ -59947,6 +60097,9 @@ export declare type MutationSetSwimlaneStrategyArgs = {
|
|
|
59947
60097
|
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
59948
60098
|
input?: InputMaybe<SetSwimlaneStrategyInput>;
|
|
59949
60099
|
};
|
|
60100
|
+
export declare type MutationSettings_UpdateNavigationCustomisationArgs = {
|
|
60101
|
+
input: SettingsNavigationCustomisationInput;
|
|
60102
|
+
};
|
|
59950
60103
|
export declare type MutationSplitIssueArgs = {
|
|
59951
60104
|
input?: InputMaybe<SplitIssueInput>;
|
|
59952
60105
|
};
|
|
@@ -61979,6 +62132,7 @@ export declare type Query = {
|
|
|
61979
62132
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
61980
62133
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
61981
62134
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
62135
|
+
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
61982
62136
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
61983
62137
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
61984
62138
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -62081,6 +62235,7 @@ export declare type Query = {
|
|
|
62081
62235
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
62082
62236
|
sandbox: SandboxQuery;
|
|
62083
62237
|
search?: Maybe<SearchQueryApi>;
|
|
62238
|
+
settings_navigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
|
|
62084
62239
|
shepherd?: Maybe<ShepherdQuery>;
|
|
62085
62240
|
signup?: Maybe<SignupQueryApi>;
|
|
62086
62241
|
smarts?: Maybe<SmartsQueryApi>;
|
|
@@ -62102,6 +62257,7 @@ export declare type Query = {
|
|
|
62102
62257
|
unified?: Maybe<UnifiedQuery>;
|
|
62103
62258
|
user?: Maybe<User>;
|
|
62104
62259
|
userContext?: Maybe<SupportInquiryUserContext>;
|
|
62260
|
+
userDna?: Maybe<UserFingerprintQuery>;
|
|
62105
62261
|
users?: Maybe<Array<User>>;
|
|
62106
62262
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
62107
62263
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -63229,6 +63385,12 @@ export declare type QueryDevai_AutodevJobLogGroupsArgs = {
|
|
|
63229
63385
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63230
63386
|
jobId: Scalars['ID']['input'];
|
|
63231
63387
|
};
|
|
63388
|
+
export declare type QueryDevai_AutodevJobLogsArgs = {
|
|
63389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63390
|
+
cloudId: Scalars['ID']['input'];
|
|
63391
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63392
|
+
jobId: Scalars['ID']['input'];
|
|
63393
|
+
};
|
|
63232
63394
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
63233
63395
|
appId: Scalars['ID']['input'];
|
|
63234
63396
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -63510,6 +63672,10 @@ export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
|
63510
63672
|
id: Scalars['ID']['input'];
|
|
63511
63673
|
sort?: InputMaybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
63512
63674
|
};
|
|
63675
|
+
export declare type QuerySettings_NavigationCustomisationArgs = {
|
|
63676
|
+
entityAri?: InputMaybe<Scalars['ID']['input']>;
|
|
63677
|
+
ownerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
63678
|
+
};
|
|
63513
63679
|
export declare type QuerySoftwareBoardsArgs = {
|
|
63514
63680
|
projectAri: Scalars['ID']['input'];
|
|
63515
63681
|
};
|
|
@@ -65256,7 +65422,7 @@ export declare type SearchJiraIssueFilter = {
|
|
|
65256
65422
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
65257
65423
|
};
|
|
65258
65424
|
export declare type SearchJiraProjectFilter = {
|
|
65259
|
-
|
|
65425
|
+
projectTypes?: InputMaybe<Array<SearchProjectType>>;
|
|
65260
65426
|
};
|
|
65261
65427
|
export declare type SearchL2Feature = {
|
|
65262
65428
|
__typename?: 'SearchL2Feature';
|
|
@@ -65835,6 +66001,39 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
65835
66001
|
strategy: SwimlaneStrategy;
|
|
65836
66002
|
success: Scalars['Boolean']['output'];
|
|
65837
66003
|
};
|
|
66004
|
+
export declare type SettingsMenuItem = {
|
|
66005
|
+
__typename?: 'SettingsMenuItem';
|
|
66006
|
+
menuId?: Maybe<Scalars['ID']['output']>;
|
|
66007
|
+
visible?: Maybe<Scalars['Boolean']['output']>;
|
|
66008
|
+
};
|
|
66009
|
+
export declare type SettingsMenuItemConnection = {
|
|
66010
|
+
__typename?: 'SettingsMenuItemConnection';
|
|
66011
|
+
edges?: Maybe<Array<SettingsMenuItemEdge>>;
|
|
66012
|
+
nodes?: Maybe<Array<Maybe<SettingsMenuItem>>>;
|
|
66013
|
+
pageInfo: PageInfo;
|
|
66014
|
+
};
|
|
66015
|
+
export declare type SettingsMenuItemEdge = {
|
|
66016
|
+
__typename?: 'SettingsMenuItemEdge';
|
|
66017
|
+
cursor: Scalars['String']['output'];
|
|
66018
|
+
node?: Maybe<SettingsMenuItem>;
|
|
66019
|
+
};
|
|
66020
|
+
export declare type SettingsMenuItemInput = {
|
|
66021
|
+
menuId: Scalars['ID']['input'];
|
|
66022
|
+
visible: Scalars['Boolean']['input'];
|
|
66023
|
+
};
|
|
66024
|
+
export declare type SettingsNavigationCustomisation = {
|
|
66025
|
+
__typename?: 'SettingsNavigationCustomisation';
|
|
66026
|
+
sidebar?: Maybe<SettingsMenuItemConnection>;
|
|
66027
|
+
};
|
|
66028
|
+
export declare type SettingsNavigationCustomisationSidebarArgs = {
|
|
66029
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66030
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66031
|
+
};
|
|
66032
|
+
export declare type SettingsNavigationCustomisationInput = {
|
|
66033
|
+
entityAri: Scalars['ID']['input'];
|
|
66034
|
+
ownerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
66035
|
+
sidebar?: InputMaybe<Array<InputMaybe<SettingsMenuItemInput>>>;
|
|
66036
|
+
};
|
|
65838
66037
|
export declare enum ShepherdActionType {
|
|
65839
66038
|
Activate = "ACTIVATE",
|
|
65840
66039
|
Archive = "ARCHIVE",
|
|
@@ -67577,6 +67776,8 @@ export declare type Subscription = {
|
|
|
67577
67776
|
__typename?: 'Subscription';
|
|
67578
67777
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
67579
67778
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
67779
|
+
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
67780
|
+
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
67580
67781
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
67581
67782
|
jira?: Maybe<JiraSubscription>;
|
|
67582
67783
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
@@ -67591,6 +67792,14 @@ export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
|
67591
67792
|
cloudId: Scalars['ID']['input'];
|
|
67592
67793
|
jobId: Scalars['ID']['input'];
|
|
67593
67794
|
};
|
|
67795
|
+
export declare type SubscriptionDevai_OnAutodevJobLogsListUpdatedArgs = {
|
|
67796
|
+
cloudId: Scalars['ID']['input'];
|
|
67797
|
+
jobId: Scalars['ID']['input'];
|
|
67798
|
+
};
|
|
67799
|
+
export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
67800
|
+
cloudId: Scalars['ID']['input'];
|
|
67801
|
+
jobId: Scalars['ID']['input'];
|
|
67802
|
+
};
|
|
67594
67803
|
export declare type SupportInquiryEntitlement = {
|
|
67595
67804
|
__typename?: 'SupportInquiryEntitlement';
|
|
67596
67805
|
cloudURL?: Maybe<Scalars['String']['output']>;
|
|
@@ -68887,6 +69096,11 @@ export declare type TownsquareLocalizationField = {
|
|
|
68887
69096
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
68888
69097
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
68889
69098
|
};
|
|
69099
|
+
export declare type TownsquareMercuryProjectStatusDto = MercuryProjectStatus & {
|
|
69100
|
+
__typename?: 'TownsquareMercuryProjectStatusDto';
|
|
69101
|
+
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
69102
|
+
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
69103
|
+
};
|
|
68890
69104
|
export declare type TownsquareMutationApi = {
|
|
68891
69105
|
__typename?: 'TownsquareMutationApi';
|
|
68892
69106
|
archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
@@ -68922,7 +69136,7 @@ export declare type TownsquareMutationApiSetParentGoalArgs = {
|
|
|
68922
69136
|
export declare type TownsquareMutationApiUnarchiveGoalArgs = {
|
|
68923
69137
|
input: TownsquareArchiveGoalInput;
|
|
68924
69138
|
};
|
|
68925
|
-
export declare type TownsquareProject = Node & {
|
|
69139
|
+
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
68926
69140
|
__typename?: 'TownsquareProject';
|
|
68927
69141
|
archived: Scalars['Boolean']['output'];
|
|
68928
69142
|
description?: Maybe<TownsquareProjectDescription>;
|
|
@@ -68932,6 +69146,17 @@ export declare type TownsquareProject = Node & {
|
|
|
68932
69146
|
isArchived: Scalars['Boolean']['output'];
|
|
68933
69147
|
isPrivate: Scalars['Boolean']['output'];
|
|
68934
69148
|
key: Scalars['String']['output'];
|
|
69149
|
+
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
69150
|
+
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
69151
|
+
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
69152
|
+
mercuryProjectOwner?: Maybe<User>;
|
|
69153
|
+
mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
|
|
69154
|
+
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
69155
|
+
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
69156
|
+
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
69157
|
+
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
69158
|
+
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
69159
|
+
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
68935
69160
|
name: Scalars['String']['output'];
|
|
68936
69161
|
owner?: Maybe<User>;
|
|
68937
69162
|
state?: Maybe<TownsquareProjectState>;
|
|
@@ -70124,6 +70349,7 @@ export declare type TrelloPinCardPayload = Payload & {
|
|
|
70124
70349
|
export declare type TrelloPlanner = {
|
|
70125
70350
|
__typename?: 'TrelloPlanner';
|
|
70126
70351
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
70352
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
70127
70353
|
};
|
|
70128
70354
|
export declare type TrelloPlannerAccountsArgs = {
|
|
70129
70355
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70153,6 +70379,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
70153
70379
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
70154
70380
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
70155
70381
|
id: Scalars['ID']['output'];
|
|
70382
|
+
outboundAuthId?: Maybe<Scalars['ID']['output']>;
|
|
70156
70383
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
70157
70384
|
};
|
|
70158
70385
|
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
@@ -70220,7 +70447,6 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
70220
70447
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
70221
70448
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
70222
70449
|
title?: Maybe<Scalars['String']['output']>;
|
|
70223
|
-
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70224
70450
|
visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
|
|
70225
70451
|
};
|
|
70226
70452
|
export declare type TrelloPlannerCalendarEventCardsArgs = {
|
|
@@ -71864,6 +72090,26 @@ export declare type UserConsentExtensionUser = {
|
|
|
71864
72090
|
__typename?: 'UserConsentExtensionUser';
|
|
71865
72091
|
aaid: Scalars['ID']['output'];
|
|
71866
72092
|
};
|
|
72093
|
+
export declare type UserFingerprint = {
|
|
72094
|
+
__typename?: 'UserFingerprint';
|
|
72095
|
+
anonymousId?: Maybe<Scalars['String']['output']>;
|
|
72096
|
+
anonymousIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
72097
|
+
atlassianAccountId?: Maybe<Scalars['String']['output']>;
|
|
72098
|
+
atlassianAccountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
72099
|
+
persona?: Maybe<Scalars['String']['output']>;
|
|
72100
|
+
personas?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
72101
|
+
};
|
|
72102
|
+
export declare type UserFingerprintQuery = {
|
|
72103
|
+
__typename?: 'UserFingerprintQuery';
|
|
72104
|
+
userFingerprint?: Maybe<UserFingerprint>;
|
|
72105
|
+
};
|
|
72106
|
+
export declare type UserFingerprintQueryUserFingerprintArgs = {
|
|
72107
|
+
anonymousId?: InputMaybe<Scalars['String']['input']>;
|
|
72108
|
+
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
72109
|
+
expandIdentity?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72110
|
+
identityRecencyHrs?: InputMaybe<Scalars['Int']['input']>;
|
|
72111
|
+
identityResolution?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72112
|
+
};
|
|
71867
72113
|
export declare type UserGrant = {
|
|
71868
72114
|
__typename?: 'UserGrant';
|
|
71869
72115
|
accountId: Scalars['ID']['output'];
|