@forge/cli-shared 8.2.0-next.5 → 8.2.0-next.5-experimental-255e232
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 +16 -0
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/file-system/file-system-reader.js +6 -9
- package/out/graphql/graphql-types.d.ts +327 -6
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +29 -6
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.2.0-next.5-experimental-255e232
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- adb270d: Upgraded archiver from 6.0.2 to 7.0.1, moved atlassian-openapi to @atlassian/atlassian-openapi, bumped get-folder-size from 2.0.1 to 5.0.0
|
|
8
|
+
- d544fc6: separate 2 options license-modes and users-with-access
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- a26c603: revert package upgrades
|
|
13
|
+
- 73f3108: Add tip about variables only changing after deployment
|
|
14
|
+
- Updated dependencies [7abca30]
|
|
15
|
+
- Updated dependencies [e029de1]
|
|
16
|
+
- @forge/util@2.0.0-next.0-experimental-255e232
|
|
17
|
+
- @forge/manifest@10.1.1-next.0-experimental-255e232
|
|
18
|
+
|
|
3
19
|
## 8.2.0-next.5
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-system-reader.d.ts","sourceRoot":"","sources":["../../src/file-system/file-system-reader.ts"],"names":[],"mappings":";;;AAAA,OAAO,EAA4B,MAAM,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"file-system-reader.d.ts","sourceRoot":"","sources":["../../src/file-system/file-system-reader.ts"],"names":[],"mappings":";;;AAAA,OAAO,EAA4B,MAAM,IAAI,CAAC;AAU9C,aAAK,cAAc,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,OAAO,CAAC;AAEjE,qBAAa,gBAAgB;IACpB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO;IAIrC,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAQxC,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAS5D,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,aAAa,CAAC,MAAM,GAAG,cAAc,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAgBtG,QAAQ,CAAC,EAAE,OAAO,EAAE,SAAiB,EAAE,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAmB3G,mBAAmB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO;IAI7C,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAQ9C,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IASxE,gBAAgB,IAAI,MAAM;IAI1B,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM;IAO3C,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAQvC,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAU/E,OAAO,CAAC,eAAe;IAQV,eAAe,CAAC,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;CAIpE"}
|
|
@@ -8,7 +8,6 @@ const os_1 = require("os");
|
|
|
8
8
|
const path_1 = tslib_1.__importStar(require("path"));
|
|
9
9
|
const util_1 = require("util");
|
|
10
10
|
const recursive_readdir_1 = tslib_1.__importDefault(require("recursive-readdir"));
|
|
11
|
-
const get_folder_size_1 = tslib_1.__importDefault(require("get-folder-size"));
|
|
12
11
|
const shared_1 = require("../shared");
|
|
13
12
|
const FILE_NOT_FOUND_CODE = 'ENOENT';
|
|
14
13
|
class FileSystemReader {
|
|
@@ -97,14 +96,12 @@ class FileSystemReader {
|
|
|
97
96
|
}
|
|
98
97
|
}
|
|
99
98
|
async getFolderSizeAsync(directory) {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
});
|
|
107
|
-
});
|
|
99
|
+
const getFolderSize = (await import('get-folder-size')).default;
|
|
100
|
+
const result = await getFolderSize(directory);
|
|
101
|
+
if (result.errors) {
|
|
102
|
+
return undefined;
|
|
103
|
+
}
|
|
104
|
+
return result.size;
|
|
108
105
|
}
|
|
109
106
|
handleFileError(error) {
|
|
110
107
|
if (error && error.code === FILE_NOT_FOUND_CODE) {
|
|
@@ -1358,10 +1358,11 @@ export declare type AgentStudioKnowledgeConfigurationInput = {
|
|
|
1358
1358
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1359
1359
|
sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
|
|
1360
1360
|
};
|
|
1361
|
-
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter;
|
|
1361
|
+
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter | AgentStudioSlackKnowledgeFilter;
|
|
1362
1362
|
export declare type AgentStudioKnowledgeFiltersInput = {
|
|
1363
1363
|
confluenceFilter?: InputMaybe<AgentStudioConfluenceKnowledgeFilterInput>;
|
|
1364
1364
|
jiraFilter?: InputMaybe<AgentStudioJiraKnowledgeFilterInput>;
|
|
1365
|
+
slackFilter?: InputMaybe<AgentStudioSlackKnowledgeFilterInput>;
|
|
1365
1366
|
};
|
|
1366
1367
|
export declare type AgentStudioKnowledgeSource = {
|
|
1367
1368
|
__typename?: 'AgentStudioKnowledgeSource';
|
|
@@ -1416,6 +1417,13 @@ export declare type AgentStudioSlackChannelDetails = {
|
|
|
1416
1417
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
1417
1418
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
1418
1419
|
};
|
|
1420
|
+
export declare type AgentStudioSlackKnowledgeFilter = {
|
|
1421
|
+
__typename?: 'AgentStudioSlackKnowledgeFilter';
|
|
1422
|
+
containerFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1423
|
+
};
|
|
1424
|
+
export declare type AgentStudioSlackKnowledgeFilterInput = {
|
|
1425
|
+
containerFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1426
|
+
};
|
|
1419
1427
|
export declare type AgentStudioSuggestConversationStartersInput = {
|
|
1420
1428
|
agentDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1421
1429
|
agentInstructions?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -12114,6 +12122,7 @@ export declare type ConfluenceContentMetadata = {
|
|
|
12114
12122
|
export declare type ConfluenceContentModified = {
|
|
12115
12123
|
__typename?: 'ConfluenceContentModified';
|
|
12116
12124
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
12125
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
12117
12126
|
commentCreated?: Maybe<ConfluenceCommentCreated>;
|
|
12118
12127
|
commentDeleted?: Maybe<ConfluenceCommentUpdated>;
|
|
12119
12128
|
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
@@ -17204,6 +17213,19 @@ export declare type CsmAiAgent = {
|
|
|
17204
17213
|
name?: Maybe<Scalars['String']['output']>;
|
|
17205
17214
|
tone?: Maybe<CsmAiAgentTone>;
|
|
17206
17215
|
};
|
|
17216
|
+
export declare type CsmAiAgentCoachingContent = {
|
|
17217
|
+
__typename?: 'CsmAiAgentCoachingContent';
|
|
17218
|
+
authorId?: Maybe<Scalars['ID']['output']>;
|
|
17219
|
+
coachingContent?: Maybe<CsmAiAuthoredCoachingContent>;
|
|
17220
|
+
coachingContentType?: Maybe<Scalars['String']['output']>;
|
|
17221
|
+
groundingConversationId?: Maybe<Scalars['ID']['output']>;
|
|
17222
|
+
groundingMessageId?: Maybe<Scalars['ID']['output']>;
|
|
17223
|
+
id: Scalars['ID']['output'];
|
|
17224
|
+
lastModifiedUserId?: Maybe<Scalars['String']['output']>;
|
|
17225
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
17226
|
+
ranking?: Maybe<Scalars['String']['output']>;
|
|
17227
|
+
status?: Maybe<Scalars['Boolean']['output']>;
|
|
17228
|
+
};
|
|
17207
17229
|
export declare type CsmAiAgentConversationStarter = {
|
|
17208
17230
|
__typename?: 'CsmAiAgentConversationStarter';
|
|
17209
17231
|
id: Scalars['ID']['output'];
|
|
@@ -17244,8 +17266,19 @@ export declare type CsmAiAuthenticationInput = {
|
|
|
17244
17266
|
type: CsmAiAuthenticationType;
|
|
17245
17267
|
};
|
|
17246
17268
|
export declare enum CsmAiAuthenticationType {
|
|
17269
|
+
EndUserAuth = "END_USER_AUTH",
|
|
17247
17270
|
NoAuth = "NO_AUTH"
|
|
17248
17271
|
}
|
|
17272
|
+
export declare type CsmAiAuthoredCoachingContent = {
|
|
17273
|
+
__typename?: 'CsmAiAuthoredCoachingContent';
|
|
17274
|
+
triggerBehaviorByCoach?: Maybe<Scalars['String']['output']>;
|
|
17275
|
+
triggerConditionByCoach?: Maybe<Scalars['String']['output']>;
|
|
17276
|
+
};
|
|
17277
|
+
export declare type CsmAiAuthoredCoachingContentInput = {
|
|
17278
|
+
triggerBehaviorByCoach: Scalars['String']['input'];
|
|
17279
|
+
triggerConditionByCoach: Scalars['String']['input'];
|
|
17280
|
+
};
|
|
17281
|
+
export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
|
|
17249
17282
|
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
17250
17283
|
export declare type CsmAiConnectorConfigurationInput = {
|
|
17251
17284
|
messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
|
|
@@ -17267,6 +17300,19 @@ export declare type CsmAiCreateActionPayload = Payload & {
|
|
|
17267
17300
|
errors?: Maybe<Array<MutationError>>;
|
|
17268
17301
|
success: Scalars['Boolean']['output'];
|
|
17269
17302
|
};
|
|
17303
|
+
export declare type CsmAiCreateCoachingContentInput = {
|
|
17304
|
+
coachingContent: CsmAiAuthoredCoachingContentInput;
|
|
17305
|
+
coachingContentType?: InputMaybe<Scalars['String']['input']>;
|
|
17306
|
+
groundingConversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
17307
|
+
groundingMessageId?: InputMaybe<Scalars['ID']['input']>;
|
|
17308
|
+
name: Scalars['String']['input'];
|
|
17309
|
+
};
|
|
17310
|
+
export declare type CsmAiCreateCoachingContentPayload = Payload & {
|
|
17311
|
+
__typename?: 'CsmAiCreateCoachingContentPayload';
|
|
17312
|
+
coachingContent?: Maybe<CsmAiAgentCoachingContent>;
|
|
17313
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17314
|
+
success: Scalars['Boolean']['output'];
|
|
17315
|
+
};
|
|
17270
17316
|
export declare type CsmAiDeleteActionPayload = Payload & {
|
|
17271
17317
|
__typename?: 'CsmAiDeleteActionPayload';
|
|
17272
17318
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17299,6 +17345,7 @@ export declare type CsmAiHub = {
|
|
|
17299
17345
|
__typename?: 'CsmAiHub';
|
|
17300
17346
|
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
|
|
17301
17347
|
agent?: Maybe<CsmAiAgentResult>;
|
|
17348
|
+
coachingContents?: Maybe<Array<Maybe<CsmAiCoachingContentResult>>>;
|
|
17302
17349
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
17303
17350
|
id: Scalars['ID']['output'];
|
|
17304
17351
|
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
@@ -28836,6 +28883,8 @@ export declare type GraphStore = {
|
|
|
28836
28883
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28837
28884
|
teamConnectedToContainer?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerConnection>;
|
|
28838
28885
|
teamConnectedToContainerInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
|
|
28886
|
+
teamHasAgents?: Maybe<GraphStoreSimplifiedTeamHasAgentsConnection>;
|
|
28887
|
+
teamHasAgentsInverse?: Maybe<GraphStoreSimplifiedTeamHasAgentsInverseConnection>;
|
|
28839
28888
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
28840
28889
|
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
28841
28890
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
@@ -28941,6 +28990,8 @@ export declare type GraphStore = {
|
|
|
28941
28990
|
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
28942
28991
|
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
28943
28992
|
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
28993
|
+
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
28994
|
+
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
28944
28995
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
28945
28996
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
28946
28997
|
userHasTopCollaborator?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorConnection>;
|
|
@@ -32334,6 +32385,20 @@ export declare type GraphStoreTeamConnectedToContainerInverseArgs = {
|
|
|
32334
32385
|
id: Scalars['ID']['input'];
|
|
32335
32386
|
sort?: InputMaybe<GraphStoreTeamConnectedToContainerSortInput>;
|
|
32336
32387
|
};
|
|
32388
|
+
export declare type GraphStoreTeamHasAgentsArgs = {
|
|
32389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32390
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32391
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32392
|
+
id: Scalars['ID']['input'];
|
|
32393
|
+
sort?: InputMaybe<GraphStoreTeamHasAgentsSortInput>;
|
|
32394
|
+
};
|
|
32395
|
+
export declare type GraphStoreTeamHasAgentsInverseArgs = {
|
|
32396
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32397
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32398
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32399
|
+
id: Scalars['ID']['input'];
|
|
32400
|
+
sort?: InputMaybe<GraphStoreTeamHasAgentsSortInput>;
|
|
32401
|
+
};
|
|
32337
32402
|
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
32338
32403
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32339
32404
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33053,6 +33118,20 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
|
33053
33118
|
id: Scalars['ID']['input'];
|
|
33054
33119
|
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
33055
33120
|
};
|
|
33121
|
+
export declare type GraphStoreUserHasExternalPositionArgs = {
|
|
33122
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33123
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33124
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33125
|
+
id: Scalars['ID']['input'];
|
|
33126
|
+
sort?: InputMaybe<GraphStoreUserHasExternalPositionSortInput>;
|
|
33127
|
+
};
|
|
33128
|
+
export declare type GraphStoreUserHasExternalPositionInverseArgs = {
|
|
33129
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33130
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33131
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33132
|
+
id: Scalars['ID']['input'];
|
|
33133
|
+
sort?: InputMaybe<GraphStoreUserHasExternalPositionSortInput>;
|
|
33134
|
+
};
|
|
33056
33135
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
33057
33136
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33058
33137
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45578,6 +45657,34 @@ export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseEdge = {
|
|
|
45578
45657
|
};
|
|
45579
45658
|
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseUnion = TeamV2;
|
|
45580
45659
|
export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject | LoomSpace;
|
|
45660
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsConnection = HasPageInfo & {
|
|
45661
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsConnection';
|
|
45662
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamHasAgentsEdge>>>;
|
|
45663
|
+
pageInfo: PageInfo;
|
|
45664
|
+
};
|
|
45665
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsEdge = {
|
|
45666
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsEdge';
|
|
45667
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45668
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45669
|
+
id: Scalars['ID']['output'];
|
|
45670
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45671
|
+
node?: Maybe<GraphStoreSimplifiedTeamHasAgentsUnion>;
|
|
45672
|
+
};
|
|
45673
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseConnection = HasPageInfo & {
|
|
45674
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsInverseConnection';
|
|
45675
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamHasAgentsInverseEdge>>>;
|
|
45676
|
+
pageInfo: PageInfo;
|
|
45677
|
+
};
|
|
45678
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseEdge = {
|
|
45679
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsInverseEdge';
|
|
45680
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45681
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45682
|
+
id: Scalars['ID']['output'];
|
|
45683
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45684
|
+
node?: Maybe<GraphStoreSimplifiedTeamHasAgentsInverseUnion>;
|
|
45685
|
+
};
|
|
45686
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseUnion = TeamV2;
|
|
45687
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45581
45688
|
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
45582
45689
|
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
45583
45690
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
@@ -46904,6 +47011,38 @@ export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverse
|
|
|
46904
47011
|
};
|
|
46905
47012
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46906
47013
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
47014
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionConnection = HasPageInfo & HasTotal & {
|
|
47015
|
+
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionConnection';
|
|
47016
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionEdge>>>;
|
|
47017
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47018
|
+
pageInfo: PageInfo;
|
|
47019
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47020
|
+
};
|
|
47021
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionEdge = {
|
|
47022
|
+
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionEdge';
|
|
47023
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47024
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47025
|
+
id: Scalars['ID']['output'];
|
|
47026
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47027
|
+
node?: Maybe<GraphStoreSimplifiedUserHasExternalPositionUnion>;
|
|
47028
|
+
};
|
|
47029
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionInverseConnection = HasPageInfo & HasTotal & {
|
|
47030
|
+
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionInverseConnection';
|
|
47031
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseEdge>>>;
|
|
47032
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47033
|
+
pageInfo: PageInfo;
|
|
47034
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47035
|
+
};
|
|
47036
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionInverseEdge = {
|
|
47037
|
+
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionInverseEdge';
|
|
47038
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47039
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47040
|
+
id: Scalars['ID']['output'];
|
|
47041
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47042
|
+
node?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseUnion>;
|
|
47043
|
+
};
|
|
47044
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47045
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionUnion = ExternalPosition;
|
|
46907
47046
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
46908
47047
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
46909
47048
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -47782,7 +47921,7 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
47782
47921
|
lastUpdated: Scalars['DateTime']['output'];
|
|
47783
47922
|
node?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion>;
|
|
47784
47923
|
};
|
|
47785
|
-
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47924
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
47786
47925
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
47787
47926
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalConnection = HasPageInfo & {
|
|
47788
47927
|
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalConnection';
|
|
@@ -49028,6 +49167,9 @@ export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
|
49028
49167
|
relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
|
|
49029
49168
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
49030
49169
|
};
|
|
49170
|
+
export declare type GraphStoreTeamHasAgentsSortInput = {
|
|
49171
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49172
|
+
};
|
|
49031
49173
|
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
49032
49174
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49033
49175
|
};
|
|
@@ -49235,6 +49377,12 @@ export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
|
49235
49377
|
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
49236
49378
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49237
49379
|
};
|
|
49380
|
+
export declare type GraphStoreUserHasExternalPositionSortInput = {
|
|
49381
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
49382
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
49383
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49384
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
49385
|
+
};
|
|
49238
49386
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
49239
49387
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
49240
49388
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -56008,7 +56156,7 @@ export declare type JiraCreateBoardViewStatusColumnInput = {
|
|
|
56008
56156
|
statusCategoryId: Scalars['ID']['input'];
|
|
56009
56157
|
viewId: Scalars['ID']['input'];
|
|
56010
56158
|
};
|
|
56011
|
-
export declare type JiraCreateBoardViewStatusColumnPayload = {
|
|
56159
|
+
export declare type JiraCreateBoardViewStatusColumnPayload = Payload & {
|
|
56012
56160
|
__typename?: 'JiraCreateBoardViewStatusColumnPayload';
|
|
56013
56161
|
boardView?: Maybe<JiraBoardView>;
|
|
56014
56162
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56562,7 +56710,7 @@ export declare type JiraDeleteBoardViewStatusColumnInput = {
|
|
|
56562
56710
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
56563
56711
|
viewId: Scalars['ID']['input'];
|
|
56564
56712
|
};
|
|
56565
|
-
export declare type JiraDeleteBoardViewStatusColumnPayload = {
|
|
56713
|
+
export declare type JiraDeleteBoardViewStatusColumnPayload = Payload & {
|
|
56566
56714
|
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
56567
56715
|
boardView?: Maybe<JiraBoardView>;
|
|
56568
56716
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -57420,7 +57568,9 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
57420
57568
|
};
|
|
57421
57569
|
export declare enum JiraFieldConfigOrderBy {
|
|
57422
57570
|
ContextCount = "CONTEXT_COUNT",
|
|
57571
|
+
Description = "DESCRIPTION",
|
|
57423
57572
|
FieldType = "FIELD_TYPE",
|
|
57573
|
+
Id = "ID",
|
|
57424
57574
|
LastUsed = "LAST_USED",
|
|
57425
57575
|
Name = "NAME",
|
|
57426
57576
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -66542,7 +66692,7 @@ export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
|
66542
66692
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
66543
66693
|
viewId: Scalars['ID']['input'];
|
|
66544
66694
|
};
|
|
66545
|
-
export declare type JiraRenameBoardViewStatusColumnPayload = {
|
|
66695
|
+
export declare type JiraRenameBoardViewStatusColumnPayload = Payload & {
|
|
66546
66696
|
__typename?: 'JiraRenameBoardViewStatusColumnPayload';
|
|
66547
66697
|
boardView?: Maybe<JiraBoardView>;
|
|
66548
66698
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -77483,6 +77633,21 @@ export declare type MercuryFocusAreaPositionChangeSummary = {
|
|
|
77483
77633
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
77484
77634
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77485
77635
|
};
|
|
77636
|
+
export declare type MercuryFocusAreaRankingValidation = {
|
|
77637
|
+
__typename?: 'MercuryFocusAreaRankingValidation';
|
|
77638
|
+
isValid: Scalars['Boolean']['output'];
|
|
77639
|
+
validationErrors?: Maybe<Array<MercuryFocusAreaRankingValidationError>>;
|
|
77640
|
+
};
|
|
77641
|
+
export declare type MercuryFocusAreaRankingValidationError = {
|
|
77642
|
+
__typename?: 'MercuryFocusAreaRankingValidationError';
|
|
77643
|
+
errorCode: MercuryFocusAreaRankingValidationErrorCode;
|
|
77644
|
+
focusArea: MercuryFocusArea;
|
|
77645
|
+
rankingView?: Maybe<MercuryPortfolio>;
|
|
77646
|
+
};
|
|
77647
|
+
export declare enum MercuryFocusAreaRankingValidationErrorCode {
|
|
77648
|
+
FaRanked = "FA_RANKED",
|
|
77649
|
+
FaTypeMismatch = "FA_TYPE_MISMATCH"
|
|
77650
|
+
}
|
|
77486
77651
|
export declare type MercuryFocusAreaSort = {
|
|
77487
77652
|
field?: InputMaybe<MercuryFocusAreaSortField>;
|
|
77488
77653
|
order: SortOrder;
|
|
@@ -77830,6 +77995,7 @@ export declare type MercuryMutationApi = {
|
|
|
77830
77995
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
77831
77996
|
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
77832
77997
|
validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
|
|
77998
|
+
validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
|
|
77833
77999
|
};
|
|
77834
78000
|
export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
77835
78001
|
input: MercuryAddWatcherToFocusAreaInput;
|
|
@@ -77930,6 +78096,9 @@ export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
|
77930
78096
|
export declare type MercuryMutationApiValidateFocusAreaArchivalArgs = {
|
|
77931
78097
|
input: MercuryArchiveFocusAreaValidationInput;
|
|
77932
78098
|
};
|
|
78099
|
+
export declare type MercuryMutationApiValidateFocusAreasForRankingArgs = {
|
|
78100
|
+
input: MercuryValidateFocusAreasForRankingInput;
|
|
78101
|
+
};
|
|
77933
78102
|
export declare type MercuryNewFundSummaryByChangeProposalStatus = {
|
|
77934
78103
|
__typename?: 'MercuryNewFundSummaryByChangeProposalStatus';
|
|
77935
78104
|
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -79121,6 +79290,17 @@ export declare type MercuryUserEdge = {
|
|
|
79121
79290
|
cursor: Scalars['String']['output'];
|
|
79122
79291
|
node?: Maybe<User>;
|
|
79123
79292
|
};
|
|
79293
|
+
export declare type MercuryValidateFocusAreasForRankingInput = {
|
|
79294
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79295
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
79296
|
+
rankingViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
79297
|
+
};
|
|
79298
|
+
export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
79299
|
+
__typename?: 'MercuryValidateFocusAreasForRankingPayload';
|
|
79300
|
+
errors?: Maybe<Array<MutationError>>;
|
|
79301
|
+
success: Scalars['Boolean']['output'];
|
|
79302
|
+
validation?: Maybe<MercuryFocusAreaRankingValidation>;
|
|
79303
|
+
};
|
|
79124
79304
|
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
79125
79305
|
export declare type MercuryWorkspaceConnectionStatus = {
|
|
79126
79306
|
__typename?: 'MercuryWorkspaceConnectionStatus';
|
|
@@ -79519,6 +79699,7 @@ export declare type Mutation = {
|
|
|
79519
79699
|
createTemplate?: Maybe<ContentTemplate>;
|
|
79520
79700
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
79521
79701
|
csmAi_createAction?: Maybe<CsmAiCreateActionPayload>;
|
|
79702
|
+
csmAi_createCoachingContent?: Maybe<CsmAiCreateCoachingContentPayload>;
|
|
79522
79703
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
79523
79704
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
79524
79705
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
@@ -79699,6 +79880,7 @@ export declare type Mutation = {
|
|
|
79699
79880
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
79700
79881
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
79701
79882
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
79883
|
+
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
79702
79884
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
79703
79885
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
79704
79886
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
@@ -80448,6 +80630,11 @@ export declare type MutationCsmAi_CreateActionArgs = {
|
|
|
80448
80630
|
helpCenterAri: Scalars['ID']['input'];
|
|
80449
80631
|
input: CsmAiCreateActionInput;
|
|
80450
80632
|
};
|
|
80633
|
+
export declare type MutationCsmAi_CreateCoachingContentArgs = {
|
|
80634
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
80635
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
80636
|
+
input: CsmAiCreateCoachingContentInput;
|
|
80637
|
+
};
|
|
80451
80638
|
export declare type MutationCsmAi_DeleteActionArgs = {
|
|
80452
80639
|
csmAiActionId: Scalars['ID']['input'];
|
|
80453
80640
|
csmAiHubId: Scalars['ID']['input'];
|
|
@@ -80980,6 +81167,9 @@ export declare type MutationPolarisAddReactionArgs = {
|
|
|
80980
81167
|
export declare type MutationPolarisDeleteReactionArgs = {
|
|
80981
81168
|
input: PolarisDeleteReactionInput;
|
|
80982
81169
|
};
|
|
81170
|
+
export declare type MutationProjects_CreateLinkArgs = {
|
|
81171
|
+
input?: InputMaybe<TownsquareProjectsCreateLinkInput>;
|
|
81172
|
+
};
|
|
80983
81173
|
export declare type MutationProjects_EditArgs = {
|
|
80984
81174
|
input?: InputMaybe<TownsquareProjectsEditInput>;
|
|
80985
81175
|
};
|
|
@@ -84669,6 +84859,7 @@ export declare type Query = {
|
|
|
84669
84859
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
84670
84860
|
latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
|
|
84671
84861
|
license?: Maybe<License>;
|
|
84862
|
+
linksOutgoingFromConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84672
84863
|
localStorage?: Maybe<LocalStorage>;
|
|
84673
84864
|
logAccessByContexts?: Maybe<Array<InstallationContextWithInstallationIdResponse>>;
|
|
84674
84865
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
@@ -86380,6 +86571,9 @@ export declare type QueryLatestKnowledgeGraphObjectArgs = {
|
|
|
86380
86571
|
objectType: KnowledgeGraphObjectType;
|
|
86381
86572
|
objectVersion?: Scalars['String']['input'];
|
|
86382
86573
|
};
|
|
86574
|
+
export declare type QueryLinksOutgoingFromConfluencePageArgs = {
|
|
86575
|
+
pageId: Scalars['ID']['input'];
|
|
86576
|
+
};
|
|
86383
86577
|
export declare type QueryLogAccessByContextsArgs = {
|
|
86384
86578
|
appId: Scalars['ID']['input'];
|
|
86385
86579
|
contextInstallationPairs: Array<InstallationContextWithInstallationIdInput>;
|
|
@@ -87662,7 +87856,7 @@ export declare type RadarPositionsByAriObject = MercuryFocusArea;
|
|
|
87662
87856
|
export declare type RadarPositionsByEntity = {
|
|
87663
87857
|
__typename?: 'RadarPositionsByEntity';
|
|
87664
87858
|
entity?: Maybe<RadarPositionsByAriObject>;
|
|
87665
|
-
entityId
|
|
87859
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
87666
87860
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
87667
87861
|
id: Scalars['ID']['output'];
|
|
87668
87862
|
type: RadarEntityType;
|
|
@@ -93175,6 +93369,7 @@ export declare type SpaceWithExemption = {
|
|
|
93175
93369
|
};
|
|
93176
93370
|
export declare type SpfAsk = Node & {
|
|
93177
93371
|
__typename?: 'SpfAsk';
|
|
93372
|
+
activities?: Maybe<SpfAskActivityConnection>;
|
|
93178
93373
|
comments?: Maybe<SpfAskCommentConnection>;
|
|
93179
93374
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
93180
93375
|
createdBy?: Maybe<User>;
|
|
@@ -93202,6 +93397,11 @@ export declare type SpfAsk = Node & {
|
|
|
93202
93397
|
updatedBy?: Maybe<User>;
|
|
93203
93398
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
93204
93399
|
};
|
|
93400
|
+
export declare type SpfAskActivitiesArgs = {
|
|
93401
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
93402
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93403
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
93404
|
+
};
|
|
93205
93405
|
export declare type SpfAskCommentsArgs = {
|
|
93206
93406
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
93207
93407
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -93212,6 +93412,107 @@ export declare type SpfAskLinksArgs = {
|
|
|
93212
93412
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93213
93413
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
93214
93414
|
};
|
|
93415
|
+
export declare type SpfAskActivity = {
|
|
93416
|
+
__typename?: 'SpfAskActivity';
|
|
93417
|
+
askId: Scalars['String']['output'];
|
|
93418
|
+
askUpdatedAt: Scalars['DateTime']['output'];
|
|
93419
|
+
askUpdatedByUser?: Maybe<User>;
|
|
93420
|
+
askUpdatedByUserId: Scalars['String']['output'];
|
|
93421
|
+
id: Scalars['ID']['output'];
|
|
93422
|
+
updatedValues?: Maybe<Array<Maybe<SpfAskActivityUpdatedValue>>>;
|
|
93423
|
+
};
|
|
93424
|
+
export declare enum SpfAskActivityAttribute {
|
|
93425
|
+
Description = "DESCRIPTION",
|
|
93426
|
+
ImpactedWork = "IMPACTED_WORK",
|
|
93427
|
+
Justification = "JUSTIFICATION",
|
|
93428
|
+
Link = "LINK",
|
|
93429
|
+
Name = "NAME",
|
|
93430
|
+
Owner = "OWNER",
|
|
93431
|
+
Priority = "PRIORITY",
|
|
93432
|
+
ReceivingTeam = "RECEIVING_TEAM",
|
|
93433
|
+
Status = "STATUS",
|
|
93434
|
+
Submitter = "SUBMITTER",
|
|
93435
|
+
SubmittingTeam = "SUBMITTING_TEAM",
|
|
93436
|
+
TargetDate = "TARGET_DATE"
|
|
93437
|
+
}
|
|
93438
|
+
export declare type SpfAskActivityConnection = {
|
|
93439
|
+
__typename?: 'SpfAskActivityConnection';
|
|
93440
|
+
edges?: Maybe<Array<Maybe<SpfAskActivityEdge>>>;
|
|
93441
|
+
pageInfo: PageInfo;
|
|
93442
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
93443
|
+
};
|
|
93444
|
+
export declare type SpfAskActivityEdge = {
|
|
93445
|
+
__typename?: 'SpfAskActivityEdge';
|
|
93446
|
+
cursor: Scalars['String']['output'];
|
|
93447
|
+
node?: Maybe<SpfAskActivityResult>;
|
|
93448
|
+
};
|
|
93449
|
+
export declare type SpfAskActivityLink = {
|
|
93450
|
+
__typename?: 'SpfAskActivityLink';
|
|
93451
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
93452
|
+
linkUrl?: Maybe<Scalars['String']['output']>;
|
|
93453
|
+
};
|
|
93454
|
+
export declare type SpfAskActivityResult = QueryError | SpfAskActivity;
|
|
93455
|
+
export declare type SpfAskActivityUpdatedDocument = SpfAskActivityUpdatedValue & {
|
|
93456
|
+
__typename?: 'SpfAskActivityUpdatedDocument';
|
|
93457
|
+
attribute: SpfAskActivityAttribute;
|
|
93458
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93459
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93460
|
+
};
|
|
93461
|
+
export declare type SpfAskActivityUpdatedImpactedWork = SpfAskActivityUpdatedValue & {
|
|
93462
|
+
__typename?: 'SpfAskActivityUpdatedImpactedWork';
|
|
93463
|
+
attribute: SpfAskActivityAttribute;
|
|
93464
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93465
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93466
|
+
};
|
|
93467
|
+
export declare type SpfAskActivityUpdatedLink = SpfAskActivityUpdatedValue & {
|
|
93468
|
+
__typename?: 'SpfAskActivityUpdatedLink';
|
|
93469
|
+
attribute: SpfAskActivityAttribute;
|
|
93470
|
+
newValue?: Maybe<SpfAskActivityLink>;
|
|
93471
|
+
oldValue?: Maybe<SpfAskActivityLink>;
|
|
93472
|
+
};
|
|
93473
|
+
export declare type SpfAskActivityUpdatedPriority = SpfAskActivityUpdatedValue & {
|
|
93474
|
+
__typename?: 'SpfAskActivityUpdatedPriority';
|
|
93475
|
+
attribute: SpfAskActivityAttribute;
|
|
93476
|
+
newValue?: Maybe<SpfAskPriority>;
|
|
93477
|
+
oldValue?: Maybe<SpfAskPriority>;
|
|
93478
|
+
};
|
|
93479
|
+
export declare type SpfAskActivityUpdatedStatus = SpfAskActivityUpdatedValue & {
|
|
93480
|
+
__typename?: 'SpfAskActivityUpdatedStatus';
|
|
93481
|
+
attribute: SpfAskActivityAttribute;
|
|
93482
|
+
newValue?: Maybe<SpfAskStatus>;
|
|
93483
|
+
oldValue?: Maybe<SpfAskStatus>;
|
|
93484
|
+
};
|
|
93485
|
+
export declare type SpfAskActivityUpdatedString = SpfAskActivityUpdatedValue & {
|
|
93486
|
+
__typename?: 'SpfAskActivityUpdatedString';
|
|
93487
|
+
attribute: SpfAskActivityAttribute;
|
|
93488
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93489
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93490
|
+
};
|
|
93491
|
+
export declare type SpfAskActivityUpdatedTargetDate = SpfAskActivityUpdatedValue & {
|
|
93492
|
+
__typename?: 'SpfAskActivityUpdatedTargetDate';
|
|
93493
|
+
attribute: SpfAskActivityAttribute;
|
|
93494
|
+
newValue?: Maybe<SpfAskTargetDate>;
|
|
93495
|
+
oldValue?: Maybe<SpfAskTargetDate>;
|
|
93496
|
+
};
|
|
93497
|
+
export declare type SpfAskActivityUpdatedTeam = SpfAskActivityUpdatedValue & {
|
|
93498
|
+
__typename?: 'SpfAskActivityUpdatedTeam';
|
|
93499
|
+
attribute: SpfAskActivityAttribute;
|
|
93500
|
+
newTeam?: Maybe<TeamV2>;
|
|
93501
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93502
|
+
oldTeam?: Maybe<TeamV2>;
|
|
93503
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93504
|
+
};
|
|
93505
|
+
export declare type SpfAskActivityUpdatedUser = SpfAskActivityUpdatedValue & {
|
|
93506
|
+
__typename?: 'SpfAskActivityUpdatedUser';
|
|
93507
|
+
attribute: SpfAskActivityAttribute;
|
|
93508
|
+
newUser?: Maybe<User>;
|
|
93509
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93510
|
+
oldUser?: Maybe<User>;
|
|
93511
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93512
|
+
};
|
|
93513
|
+
export declare type SpfAskActivityUpdatedValue = {
|
|
93514
|
+
attribute: SpfAskActivityAttribute;
|
|
93515
|
+
};
|
|
93215
93516
|
export declare type SpfAskComment = {
|
|
93216
93517
|
__typename?: 'SpfAskComment';
|
|
93217
93518
|
askId: Scalars['String']['output'];
|
|
@@ -95907,6 +96208,26 @@ export declare type TownsquareProjectUpdateEdge = {
|
|
|
95907
96208
|
cursor: Scalars['String']['output'];
|
|
95908
96209
|
node?: Maybe<TownsquareProjectUpdate>;
|
|
95909
96210
|
};
|
|
96211
|
+
export declare type TownsquareProjectsCreateLinkInput = {
|
|
96212
|
+
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
96213
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
96214
|
+
projectId: Scalars['ID']['input'];
|
|
96215
|
+
provider?: InputMaybe<Scalars['String']['input']>;
|
|
96216
|
+
type?: InputMaybe<TownsquareLinkType>;
|
|
96217
|
+
url: Scalars['String']['input'];
|
|
96218
|
+
};
|
|
96219
|
+
export declare type TownsquareProjectsCreateLinkMutationErrorExtension = MutationErrorExtension & {
|
|
96220
|
+
__typename?: 'TownsquareProjectsCreateLinkMutationErrorExtension';
|
|
96221
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
96222
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
96223
|
+
};
|
|
96224
|
+
export declare type TownsquareProjectsCreateLinkPayload = {
|
|
96225
|
+
__typename?: 'TownsquareProjectsCreateLinkPayload';
|
|
96226
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96227
|
+
link?: Maybe<TownsquareLink>;
|
|
96228
|
+
project?: Maybe<TownsquareProject>;
|
|
96229
|
+
success: Scalars['Boolean']['output'];
|
|
96230
|
+
};
|
|
95910
96231
|
export declare type TownsquareProjectsEditInput = {
|
|
95911
96232
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95912
96233
|
icon?: InputMaybe<TownsquareIconInput>;
|