@forge/cli-shared 6.4.0-next.6 → 6.4.0-next.8
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
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.4.0-next.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 34fe2fa: Changing the default value of feature gate forge-cli-enable-atlas-product-support to false
|
|
8
|
+
- Updated dependencies [c3a2fca]
|
|
9
|
+
- @forge/manifest@8.1.0-next.6
|
|
10
|
+
|
|
11
|
+
## 6.4.0-next.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [2993e98]
|
|
16
|
+
- @forge/manifest@8.1.0-next.5
|
|
17
|
+
|
|
3
18
|
## 6.4.0-next.6
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -17123,6 +17123,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
17123
17123
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
17124
17124
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
17125
17125
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
17126
|
+
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
17126
17127
|
};
|
|
17127
17128
|
export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
17128
17129
|
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -17149,11 +17150,33 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
17149
17150
|
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
17150
17151
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17151
17152
|
};
|
|
17153
|
+
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
17154
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17155
|
+
templateFormId: Scalars['ID']['input'];
|
|
17156
|
+
};
|
|
17157
|
+
export declare type CustomerServiceRoutingRule = {
|
|
17158
|
+
__typename?: 'CustomerServiceRoutingRule';
|
|
17159
|
+
id: Scalars['ID']['output'];
|
|
17160
|
+
issueTypeIconUrl?: Maybe<Scalars['String']['output']>;
|
|
17161
|
+
issueTypeId?: Maybe<Scalars['ID']['output']>;
|
|
17162
|
+
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
17163
|
+
project?: Maybe<JiraProject>;
|
|
17164
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
17165
|
+
};
|
|
17152
17166
|
export declare type CustomerServiceStatusPayload = Payload & {
|
|
17153
17167
|
__typename?: 'CustomerServiceStatusPayload';
|
|
17154
17168
|
errors?: Maybe<Array<MutationError>>;
|
|
17155
17169
|
success: Scalars['Boolean']['output'];
|
|
17156
17170
|
};
|
|
17171
|
+
export declare type CustomerServiceTemplateForm = Node & {
|
|
17172
|
+
__typename?: 'CustomerServiceTemplateForm';
|
|
17173
|
+
defaultRouteRule?: Maybe<CustomerServiceRoutingRule>;
|
|
17174
|
+
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
17175
|
+
helpCenterId: Scalars['ID']['output'];
|
|
17176
|
+
id: Scalars['ID']['output'];
|
|
17177
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
17178
|
+
};
|
|
17179
|
+
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
17157
17180
|
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
17158
17181
|
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
17159
17182
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -19839,7 +19862,7 @@ export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
|
19839
19862
|
export declare type EcosystemQueryUserAccessArgs = {
|
|
19840
19863
|
contextId: Scalars['ID']['input'];
|
|
19841
19864
|
definitionId: Scalars['ID']['input'];
|
|
19842
|
-
userAaid
|
|
19865
|
+
userAaid?: InputMaybe<Scalars['ID']['input']>;
|
|
19843
19866
|
};
|
|
19844
19867
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
19845
19868
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19971,7 +19994,7 @@ export declare type ExtensionDataClassificationPolicyDecisionArgs = {
|
|
|
19971
19994
|
input: DataClassificationPolicyDecisionInput;
|
|
19972
19995
|
};
|
|
19973
19996
|
export declare type ExtensionUserAccessArgs = {
|
|
19974
|
-
userAaid
|
|
19997
|
+
userAaid?: InputMaybe<Scalars['ID']['input']>;
|
|
19975
19998
|
};
|
|
19976
19999
|
export declare type ExtensionContext = {
|
|
19977
20000
|
__typename?: 'ExtensionContext';
|
|
@@ -25374,6 +25397,8 @@ export declare type GraphStore = {
|
|
|
25374
25397
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
25375
25398
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
25376
25399
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
25400
|
+
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
25401
|
+
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
25377
25402
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
25378
25403
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
25379
25404
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -26005,6 +26030,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
26005
26030
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26006
26031
|
id: Scalars['ID']['input'];
|
|
26007
26032
|
};
|
|
26033
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
26034
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26035
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26036
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26037
|
+
id: Scalars['ID']['input'];
|
|
26038
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
26039
|
+
};
|
|
26040
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
26041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26042
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26044
|
+
id: Scalars['ID']['input'];
|
|
26045
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
26046
|
+
};
|
|
26008
26047
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
26009
26048
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26010
26049
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28369,7 +28408,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
28369
28408
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
28370
28409
|
id: Scalars['ID']['output'];
|
|
28371
28410
|
};
|
|
28372
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
28411
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28373
28412
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
28374
28413
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
28375
28414
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -28394,7 +28433,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
28394
28433
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
28395
28434
|
id: Scalars['ID']['output'];
|
|
28396
28435
|
};
|
|
28397
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
28436
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28398
28437
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
28399
28438
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
28400
28439
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -28900,7 +28939,7 @@ export declare type GraphStoreBatchMediaAttachedToContentEndNode = {
|
|
|
28900
28939
|
data?: Maybe<GraphStoreBatchMediaAttachedToContentEndUnion>;
|
|
28901
28940
|
id: Scalars['ID']['output'];
|
|
28902
28941
|
};
|
|
28903
|
-
export declare type GraphStoreBatchMediaAttachedToContentEndUnion = ConfluencePage | JiraIssue;
|
|
28942
|
+
export declare type GraphStoreBatchMediaAttachedToContentEndUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28904
28943
|
export declare type GraphStoreBatchMediaAttachedToContentInnerConnection = {
|
|
28905
28944
|
__typename?: 'GraphStoreBatchMediaAttachedToContentInnerConnection';
|
|
28906
28945
|
edges: Array<Maybe<GraphStoreBatchMediaAttachedToContentInnerEdge>>;
|
|
@@ -29020,6 +29059,9 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
29020
29059
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
29021
29060
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
29022
29061
|
};
|
|
29062
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
29063
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
29064
|
+
};
|
|
29023
29065
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
29024
29066
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
29025
29067
|
};
|
|
@@ -29965,7 +30007,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
29965
30007
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
29966
30008
|
id: Scalars['ID']['output'];
|
|
29967
30009
|
};
|
|
29968
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
30010
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29969
30011
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
29970
30012
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
29971
30013
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -29979,7 +30021,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
29979
30021
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
29980
30022
|
id: Scalars['ID']['output'];
|
|
29981
30023
|
};
|
|
29982
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
30024
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29983
30025
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
29984
30026
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
29985
30027
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -34437,6 +34479,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
34437
34479
|
};
|
|
34438
34480
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
34439
34481
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
34482
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
34483
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
34484
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
34485
|
+
pageInfo: PageInfo;
|
|
34486
|
+
};
|
|
34487
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge = {
|
|
34488
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge';
|
|
34489
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34490
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34491
|
+
id: Scalars['ID']['output'];
|
|
34492
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34493
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion>;
|
|
34494
|
+
};
|
|
34495
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection = HasPageInfo & {
|
|
34496
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection';
|
|
34497
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge>>>;
|
|
34498
|
+
pageInfo: PageInfo;
|
|
34499
|
+
};
|
|
34500
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge = {
|
|
34501
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge';
|
|
34502
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34503
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34504
|
+
id: Scalars['ID']['output'];
|
|
34505
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34506
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion>;
|
|
34507
|
+
};
|
|
34508
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
34509
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
34440
34510
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
34441
34511
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
34442
34512
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -34463,8 +34533,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
34463
34533
|
lastUpdated: Scalars['DateTime']['output'];
|
|
34464
34534
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
34465
34535
|
};
|
|
34466
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
|
|
34467
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
34536
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34537
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34468
34538
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitConnection = HasPageInfo & {
|
|
34469
34539
|
__typename?: 'GraphStoreSimplifiedDeploymentContainsCommitConnection';
|
|
34470
34540
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitEdge>>>;
|
|
@@ -35368,7 +35438,7 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
35368
35438
|
lastUpdated: Scalars['DateTime']['output'];
|
|
35369
35439
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
35370
35440
|
};
|
|
35371
|
-
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluencePage | JiraIssue;
|
|
35441
|
+
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
35372
35442
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
35373
35443
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
35374
35444
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -37740,12 +37810,14 @@ export declare enum GrowthUnifiedProfileJtbd {
|
|
|
37740
37810
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
37741
37811
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
37742
37812
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
37813
|
+
RunSprints = "RUN_SPRINTS",
|
|
37743
37814
|
Stakeholders = "STAKEHOLDERS",
|
|
37744
37815
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
37745
37816
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
37746
37817
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
37747
37818
|
TrackBugs = "TRACK_BUGS",
|
|
37748
|
-
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
37819
|
+
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
37820
|
+
WorkInScrum = "WORK_IN_SCRUM"
|
|
37749
37821
|
}
|
|
37750
37822
|
export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
37751
37823
|
Experience = "EXPERIENCE",
|
|
@@ -58170,7 +58242,7 @@ export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
|
58170
58242
|
};
|
|
58171
58243
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
58172
58244
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
58173
|
-
binary
|
|
58245
|
+
binary?: Maybe<MarketplaceConsoleLink>;
|
|
58174
58246
|
remote?: Maybe<MarketplaceConsoleLink>;
|
|
58175
58247
|
self: MarketplaceConsoleLink;
|
|
58176
58248
|
};
|
|
@@ -70936,6 +71008,7 @@ export declare type TrelloAssignCardToPlannerCalendarEventInput = {
|
|
|
70936
71008
|
export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
70937
71009
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
|
|
70938
71010
|
errors?: Maybe<Array<MutationError>>;
|
|
71011
|
+
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
70939
71012
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
70940
71013
|
success: Scalars['Boolean']['output'];
|
|
70941
71014
|
};
|
|
@@ -72142,7 +72215,6 @@ export declare type TrelloQueryApi = {
|
|
|
72142
72215
|
board?: Maybe<TrelloBoard>;
|
|
72143
72216
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
72144
72217
|
card?: Maybe<TrelloCard>;
|
|
72145
|
-
cardsForPlannerEvent?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
72146
72218
|
echo?: Maybe<Scalars['String']['output']>;
|
|
72147
72219
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
72148
72220
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -72171,13 +72243,6 @@ export declare type TrelloQueryApiBoardByShortLinkArgs = {
|
|
|
72171
72243
|
export declare type TrelloQueryApiCardArgs = {
|
|
72172
72244
|
id: Scalars['ID']['input'];
|
|
72173
72245
|
};
|
|
72174
|
-
export declare type TrelloQueryApiCardsForPlannerEventArgs = {
|
|
72175
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
72176
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72177
|
-
providerAccountId: Scalars['ID']['input'];
|
|
72178
|
-
providerEventId: Scalars['ID']['input'];
|
|
72179
|
-
workspaceId: Scalars['ID']['input'];
|
|
72180
|
-
};
|
|
72181
72246
|
export declare type TrelloQueryApiEchosArgs = {
|
|
72182
72247
|
echo: Array<Scalars['String']['input']>;
|
|
72183
72248
|
};
|
|
@@ -72855,7 +72920,7 @@ export declare type UnifiedLearningCertificationEdge = UnifiedIEdge & {
|
|
|
72855
72920
|
export declare type UnifiedLinkTransaction = {
|
|
72856
72921
|
__typename?: 'UnifiedLinkTransaction';
|
|
72857
72922
|
id: Scalars['ID']['output'];
|
|
72858
|
-
|
|
72923
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
72859
72924
|
};
|
|
72860
72925
|
export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
72861
72926
|
__typename?: 'UnifiedLinkedAccount';
|
|
@@ -72887,9 +72952,9 @@ export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
|
72887
72952
|
};
|
|
72888
72953
|
export declare type UnifiedLinkingMutation = {
|
|
72889
72954
|
__typename?: 'UnifiedLinkingMutation';
|
|
72890
|
-
authenticateTransaction?: Maybe<
|
|
72891
|
-
completeTransaction?: Maybe<
|
|
72892
|
-
initializeTransaction?: Maybe<
|
|
72955
|
+
authenticateTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
72956
|
+
completeTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
72957
|
+
initializeTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
72893
72958
|
};
|
|
72894
72959
|
export declare type UnifiedLinkingMutationAuthenticateTransactionArgs = {
|
|
72895
72960
|
isLoggedInPrimary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72902,6 +72967,12 @@ export declare type UnifiedLinkingMutationInitializeTransactionArgs = {
|
|
|
72902
72967
|
account2Aaid?: InputMaybe<Scalars['String']['input']>;
|
|
72903
72968
|
primaryAccountType?: InputMaybe<UnifiedPrimaryAccountType>;
|
|
72904
72969
|
};
|
|
72970
|
+
export declare type UnifiedLinkingPayload = UnifiedPayload & {
|
|
72971
|
+
__typename?: 'UnifiedLinkingPayload';
|
|
72972
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72973
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
72974
|
+
success: Scalars['Boolean']['output'];
|
|
72975
|
+
};
|
|
72905
72976
|
export declare type UnifiedMutation = {
|
|
72906
72977
|
__typename?: 'UnifiedMutation';
|
|
72907
72978
|
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
@@ -73115,7 +73186,7 @@ export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQu
|
|
|
73115
73186
|
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|
|
73116
73187
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
73117
73188
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
73118
|
-
export declare type
|
|
73189
|
+
export declare type UnifiedULinkTransactionPayload = UnifiedLinkTransaction | UnifiedLinkingPayload;
|
|
73119
73190
|
export declare type UnifiedULinkedAccount2Result = UnifiedLinkedAccount2Connection | UnifiedQueryError;
|
|
73120
73191
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
73121
73192
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
@@ -74448,7 +74519,6 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
74448
74519
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
74449
74520
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
74450
74521
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
74451
|
-
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
74452
74522
|
stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
|
|
74453
74523
|
};
|
|
74454
74524
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
@@ -74670,10 +74740,6 @@ export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtensi
|
|
|
74670
74740
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
74671
74741
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
74672
74742
|
};
|
|
74673
|
-
export declare type WorkSuggestionsOrder = {
|
|
74674
|
-
__typename?: 'WorkSuggestionsOrder';
|
|
74675
|
-
defaultOrder: Array<Scalars['ID']['output']>;
|
|
74676
|
-
};
|
|
74677
74743
|
export declare type WorkSuggestionsOrderScore = {
|
|
74678
74744
|
__typename?: 'WorkSuggestionsOrderScore';
|
|
74679
74745
|
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|