@forge/cli-shared 8.2.0-next.5-experimental-42e3178 → 8.2.0-next.6
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 +2 -12
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/file-system/file-system-reader.js +9 -6
- package/out/graphql/graphql-types.d.ts +205 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +3 -0
- package/out/ui/text.js +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.2.0-next.
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- 42e3178: 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
|
|
3
|
+
## 8.2.0-next.6
|
|
9
4
|
|
|
10
5
|
### Patch Changes
|
|
11
6
|
|
|
12
|
-
-
|
|
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-42e3178
|
|
17
|
-
- @forge/manifest@10.1.1-next.0-experimental-42e3178
|
|
7
|
+
- e118b07: Remove remnants of sandbox runtime
|
|
18
8
|
|
|
19
9
|
## 8.2.0-next.5
|
|
20
10
|
|
|
@@ -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;AAW9C,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;IAW/E,OAAO,CAAC,eAAe;IAQV,eAAe,CAAC,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;CAIpE"}
|
|
@@ -8,6 +8,7 @@ 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"));
|
|
11
12
|
const shared_1 = require("../shared");
|
|
12
13
|
const FILE_NOT_FOUND_CODE = 'ENOENT';
|
|
13
14
|
class FileSystemReader {
|
|
@@ -96,12 +97,14 @@ class FileSystemReader {
|
|
|
96
97
|
}
|
|
97
98
|
}
|
|
98
99
|
async getFolderSizeAsync(directory) {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
100
|
+
return new Promise((resolve) => {
|
|
101
|
+
(0, get_folder_size_1.default)(directory, (err, size) => {
|
|
102
|
+
if (err) {
|
|
103
|
+
resolve(undefined);
|
|
104
|
+
}
|
|
105
|
+
return resolve(size);
|
|
106
|
+
});
|
|
107
|
+
});
|
|
105
108
|
}
|
|
106
109
|
handleFileError(error) {
|
|
107
110
|
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']>;
|
|
@@ -3120,6 +3128,14 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
3120
3128
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
3121
3129
|
title: Scalars['String']['output'];
|
|
3122
3130
|
};
|
|
3131
|
+
export declare type AssetsAvatar = {
|
|
3132
|
+
__typename?: 'AssetsAvatar';
|
|
3133
|
+
url16?: Maybe<Scalars['String']['output']>;
|
|
3134
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
3135
|
+
url72?: Maybe<Scalars['String']['output']>;
|
|
3136
|
+
url144?: Maybe<Scalars['String']['output']>;
|
|
3137
|
+
url288?: Maybe<Scalars['String']['output']>;
|
|
3138
|
+
};
|
|
3123
3139
|
export declare type AssetsDmAdapter = {
|
|
3124
3140
|
__typename?: 'AssetsDMAdapter';
|
|
3125
3141
|
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -3233,6 +3249,39 @@ export declare enum AssetsDmObjectClassEnum {
|
|
|
3233
3249
|
Peripherals = "Peripherals",
|
|
3234
3250
|
Software = "Software"
|
|
3235
3251
|
}
|
|
3252
|
+
export declare type AssetsIcon = {
|
|
3253
|
+
__typename?: 'AssetsIcon';
|
|
3254
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
3255
|
+
url16?: Maybe<Scalars['String']['output']>;
|
|
3256
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
3257
|
+
};
|
|
3258
|
+
export declare type AssetsObject = {
|
|
3259
|
+
__typename?: 'AssetsObject';
|
|
3260
|
+
avatar?: Maybe<AssetsAvatar>;
|
|
3261
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3262
|
+
id: Scalars['ID']['output'];
|
|
3263
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
3264
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
3265
|
+
objectType?: Maybe<AssetsObjectType>;
|
|
3266
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3267
|
+
};
|
|
3268
|
+
export declare type AssetsObjectType = {
|
|
3269
|
+
__typename?: 'AssetsObjectType';
|
|
3270
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3271
|
+
icon?: Maybe<AssetsIcon>;
|
|
3272
|
+
id: Scalars['ID']['output'];
|
|
3273
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3274
|
+
schema?: Maybe<AssetsSchema>;
|
|
3275
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3276
|
+
};
|
|
3277
|
+
export declare type AssetsSchema = {
|
|
3278
|
+
__typename?: 'AssetsSchema';
|
|
3279
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3280
|
+
id: Scalars['ID']['output'];
|
|
3281
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
3282
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3283
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3284
|
+
};
|
|
3236
3285
|
export declare type AssignIssueParentInput = {
|
|
3237
3286
|
boardId: Scalars['ID']['input'];
|
|
3238
3287
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -12114,6 +12163,7 @@ export declare type ConfluenceContentMetadata = {
|
|
|
12114
12163
|
export declare type ConfluenceContentModified = {
|
|
12115
12164
|
__typename?: 'ConfluenceContentModified';
|
|
12116
12165
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
12166
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
12117
12167
|
commentCreated?: Maybe<ConfluenceCommentCreated>;
|
|
12118
12168
|
commentDeleted?: Maybe<ConfluenceCommentUpdated>;
|
|
12119
12169
|
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
@@ -17257,6 +17307,7 @@ export declare type CsmAiAuthenticationInput = {
|
|
|
17257
17307
|
type: CsmAiAuthenticationType;
|
|
17258
17308
|
};
|
|
17259
17309
|
export declare enum CsmAiAuthenticationType {
|
|
17310
|
+
EndUserAuth = "END_USER_AUTH",
|
|
17260
17311
|
NoAuth = "NO_AUTH"
|
|
17261
17312
|
}
|
|
17262
17313
|
export declare type CsmAiAuthoredCoachingContent = {
|
|
@@ -28873,6 +28924,8 @@ export declare type GraphStore = {
|
|
|
28873
28924
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28874
28925
|
teamConnectedToContainer?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerConnection>;
|
|
28875
28926
|
teamConnectedToContainerInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
|
|
28927
|
+
teamHasAgents?: Maybe<GraphStoreSimplifiedTeamHasAgentsConnection>;
|
|
28928
|
+
teamHasAgentsInverse?: Maybe<GraphStoreSimplifiedTeamHasAgentsInverseConnection>;
|
|
28876
28929
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
28877
28930
|
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
28878
28931
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
@@ -32373,6 +32426,20 @@ export declare type GraphStoreTeamConnectedToContainerInverseArgs = {
|
|
|
32373
32426
|
id: Scalars['ID']['input'];
|
|
32374
32427
|
sort?: InputMaybe<GraphStoreTeamConnectedToContainerSortInput>;
|
|
32375
32428
|
};
|
|
32429
|
+
export declare type GraphStoreTeamHasAgentsArgs = {
|
|
32430
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32431
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32432
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32433
|
+
id: Scalars['ID']['input'];
|
|
32434
|
+
sort?: InputMaybe<GraphStoreTeamHasAgentsSortInput>;
|
|
32435
|
+
};
|
|
32436
|
+
export declare type GraphStoreTeamHasAgentsInverseArgs = {
|
|
32437
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32438
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32439
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32440
|
+
id: Scalars['ID']['input'];
|
|
32441
|
+
sort?: InputMaybe<GraphStoreTeamHasAgentsSortInput>;
|
|
32442
|
+
};
|
|
32376
32443
|
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
32377
32444
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32378
32445
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45631,6 +45698,34 @@ export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseEdge = {
|
|
|
45631
45698
|
};
|
|
45632
45699
|
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseUnion = TeamV2;
|
|
45633
45700
|
export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject | LoomSpace;
|
|
45701
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsConnection = HasPageInfo & {
|
|
45702
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsConnection';
|
|
45703
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamHasAgentsEdge>>>;
|
|
45704
|
+
pageInfo: PageInfo;
|
|
45705
|
+
};
|
|
45706
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsEdge = {
|
|
45707
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsEdge';
|
|
45708
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45709
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45710
|
+
id: Scalars['ID']['output'];
|
|
45711
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45712
|
+
node?: Maybe<GraphStoreSimplifiedTeamHasAgentsUnion>;
|
|
45713
|
+
};
|
|
45714
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseConnection = HasPageInfo & {
|
|
45715
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsInverseConnection';
|
|
45716
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamHasAgentsInverseEdge>>>;
|
|
45717
|
+
pageInfo: PageInfo;
|
|
45718
|
+
};
|
|
45719
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseEdge = {
|
|
45720
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsInverseEdge';
|
|
45721
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45722
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45723
|
+
id: Scalars['ID']['output'];
|
|
45724
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45725
|
+
node?: Maybe<GraphStoreSimplifiedTeamHasAgentsInverseUnion>;
|
|
45726
|
+
};
|
|
45727
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseUnion = TeamV2;
|
|
45728
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45634
45729
|
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
45635
45730
|
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
45636
45731
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
@@ -49113,6 +49208,9 @@ export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
|
49113
49208
|
relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
|
|
49114
49209
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
49115
49210
|
};
|
|
49211
|
+
export declare type GraphStoreTeamHasAgentsSortInput = {
|
|
49212
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49213
|
+
};
|
|
49116
49214
|
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
49117
49215
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49118
49216
|
};
|
|
@@ -54337,6 +54435,7 @@ export declare type JiraBoardView = {
|
|
|
54337
54435
|
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
54338
54436
|
id: Scalars['ID']['output'];
|
|
54339
54437
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
54438
|
+
layout?: Maybe<JiraBoardViewLayout>;
|
|
54340
54439
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
54341
54440
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
54342
54441
|
};
|
|
@@ -54396,6 +54495,27 @@ export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
|
54396
54495
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
54397
54496
|
id: Scalars['ID']['output'];
|
|
54398
54497
|
};
|
|
54498
|
+
export declare type JiraBoardViewCell = {
|
|
54499
|
+
__typename?: 'JiraBoardViewCell';
|
|
54500
|
+
column?: Maybe<JiraBoardViewColumn>;
|
|
54501
|
+
id: Scalars['ID']['output'];
|
|
54502
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
54503
|
+
};
|
|
54504
|
+
export declare type JiraBoardViewCellIssuesArgs = {
|
|
54505
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54507
|
+
};
|
|
54508
|
+
export declare type JiraBoardViewCellConnection = {
|
|
54509
|
+
__typename?: 'JiraBoardViewCellConnection';
|
|
54510
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewCellEdge>>>;
|
|
54511
|
+
errors?: Maybe<Array<QueryError>>;
|
|
54512
|
+
pageInfo?: Maybe<PageInfo>;
|
|
54513
|
+
};
|
|
54514
|
+
export declare type JiraBoardViewCellEdge = {
|
|
54515
|
+
__typename?: 'JiraBoardViewCellEdge';
|
|
54516
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54517
|
+
node?: Maybe<JiraBoardViewCell>;
|
|
54518
|
+
};
|
|
54399
54519
|
export declare type JiraBoardViewColumn = {
|
|
54400
54520
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
54401
54521
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54413,6 +54533,14 @@ export declare type JiraBoardViewColumnEdge = {
|
|
|
54413
54533
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
54414
54534
|
node?: Maybe<JiraBoardViewColumn>;
|
|
54415
54535
|
};
|
|
54536
|
+
export declare type JiraBoardViewColumnLayout = {
|
|
54537
|
+
__typename?: 'JiraBoardViewColumnLayout';
|
|
54538
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
54539
|
+
};
|
|
54540
|
+
export declare type JiraBoardViewColumnLayoutCellsArgs = {
|
|
54541
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54542
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54543
|
+
};
|
|
54416
54544
|
export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
54417
54545
|
__typename?: 'JiraBoardViewFieldCardOption';
|
|
54418
54546
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54424,6 +54552,7 @@ export declare type JiraBoardViewInput = {
|
|
|
54424
54552
|
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
54425
54553
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54426
54554
|
};
|
|
54555
|
+
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout;
|
|
54427
54556
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
54428
54557
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
54429
54558
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -56099,7 +56228,7 @@ export declare type JiraCreateBoardViewStatusColumnInput = {
|
|
|
56099
56228
|
statusCategoryId: Scalars['ID']['input'];
|
|
56100
56229
|
viewId: Scalars['ID']['input'];
|
|
56101
56230
|
};
|
|
56102
|
-
export declare type JiraCreateBoardViewStatusColumnPayload = {
|
|
56231
|
+
export declare type JiraCreateBoardViewStatusColumnPayload = Payload & {
|
|
56103
56232
|
__typename?: 'JiraCreateBoardViewStatusColumnPayload';
|
|
56104
56233
|
boardView?: Maybe<JiraBoardView>;
|
|
56105
56234
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56653,7 +56782,7 @@ export declare type JiraDeleteBoardViewStatusColumnInput = {
|
|
|
56653
56782
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
56654
56783
|
viewId: Scalars['ID']['input'];
|
|
56655
56784
|
};
|
|
56656
|
-
export declare type JiraDeleteBoardViewStatusColumnPayload = {
|
|
56785
|
+
export declare type JiraDeleteBoardViewStatusColumnPayload = Payload & {
|
|
56657
56786
|
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
56658
56787
|
boardView?: Maybe<JiraBoardView>;
|
|
56659
56788
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -57511,7 +57640,9 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
57511
57640
|
};
|
|
57512
57641
|
export declare enum JiraFieldConfigOrderBy {
|
|
57513
57642
|
ContextCount = "CONTEXT_COUNT",
|
|
57643
|
+
Description = "DESCRIPTION",
|
|
57514
57644
|
FieldType = "FIELD_TYPE",
|
|
57645
|
+
Id = "ID",
|
|
57515
57646
|
LastUsed = "LAST_USED",
|
|
57516
57647
|
Name = "NAME",
|
|
57517
57648
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -66633,7 +66764,7 @@ export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
|
66633
66764
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
66634
66765
|
viewId: Scalars['ID']['input'];
|
|
66635
66766
|
};
|
|
66636
|
-
export declare type JiraRenameBoardViewStatusColumnPayload = {
|
|
66767
|
+
export declare type JiraRenameBoardViewStatusColumnPayload = Payload & {
|
|
66637
66768
|
__typename?: 'JiraRenameBoardViewStatusColumnPayload';
|
|
66638
66769
|
boardView?: Maybe<JiraBoardView>;
|
|
66639
66770
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -79817,10 +79948,12 @@ export declare type Mutation = {
|
|
|
79817
79948
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
79818
79949
|
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79819
79950
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
79951
|
+
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
79820
79952
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
79821
79953
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
79822
79954
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
79823
79955
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
79956
|
+
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
79824
79957
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
79825
79958
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
79826
79959
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
@@ -81098,6 +81231,9 @@ export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookAr
|
|
|
81098
81231
|
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
81099
81232
|
input: UpdateJiraPlaybookInput;
|
|
81100
81233
|
};
|
|
81234
|
+
export declare type MutationPlaybook_UpdateJiraPlaybookLabelArgs = {
|
|
81235
|
+
input: UpdateJiraPlaybookLabelInput;
|
|
81236
|
+
};
|
|
81101
81237
|
export declare type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
81102
81238
|
input: UpdateJiraPlaybookStateInput;
|
|
81103
81239
|
};
|
|
@@ -81107,6 +81243,9 @@ export declare type MutationPolarisAddReactionArgs = {
|
|
|
81107
81243
|
export declare type MutationPolarisDeleteReactionArgs = {
|
|
81108
81244
|
input: PolarisDeleteReactionInput;
|
|
81109
81245
|
};
|
|
81246
|
+
export declare type MutationProjects_CreateLinkArgs = {
|
|
81247
|
+
input?: InputMaybe<TownsquareProjectsCreateLinkInput>;
|
|
81248
|
+
};
|
|
81110
81249
|
export declare type MutationProjects_EditArgs = {
|
|
81111
81250
|
input?: InputMaybe<TownsquareProjectsEditInput>;
|
|
81112
81251
|
};
|
|
@@ -84489,6 +84628,9 @@ export declare type Query = {
|
|
|
84489
84628
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
84490
84629
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
84491
84630
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
84631
|
+
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
84632
|
+
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
84633
|
+
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
84492
84634
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84493
84635
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84494
84636
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -85251,6 +85393,15 @@ export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
|
85251
85393
|
cloudId: Scalars['ID']['input'];
|
|
85252
85394
|
workspaceId: Scalars['ID']['input'];
|
|
85253
85395
|
};
|
|
85396
|
+
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
85397
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85398
|
+
};
|
|
85399
|
+
export declare type QueryAssets_ObjectsByIdsArgs = {
|
|
85400
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85401
|
+
};
|
|
85402
|
+
export declare type QueryAssets_SchemasByIdsArgs = {
|
|
85403
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85404
|
+
};
|
|
85254
85405
|
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
85255
85406
|
issueId: Scalars['ID']['input'];
|
|
85256
85407
|
};
|
|
@@ -87793,7 +87944,7 @@ export declare type RadarPositionsByAriObject = MercuryFocusArea;
|
|
|
87793
87944
|
export declare type RadarPositionsByEntity = {
|
|
87794
87945
|
__typename?: 'RadarPositionsByEntity';
|
|
87795
87946
|
entity?: Maybe<RadarPositionsByAriObject>;
|
|
87796
|
-
entityId
|
|
87947
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
87797
87948
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
87798
87949
|
id: Scalars['ID']['output'];
|
|
87799
87950
|
type: RadarEntityType;
|
|
@@ -95435,6 +95586,21 @@ export declare type TownsquareCommentEdge = {
|
|
|
95435
95586
|
cursor: Scalars['String']['output'];
|
|
95436
95587
|
node?: Maybe<TownsquareComment>;
|
|
95437
95588
|
};
|
|
95589
|
+
export declare type TownsquareContributor = {
|
|
95590
|
+
__typename?: 'TownsquareContributor';
|
|
95591
|
+
teamContributor?: Maybe<TownsquareTeamContributor>;
|
|
95592
|
+
userContributor?: Maybe<User>;
|
|
95593
|
+
};
|
|
95594
|
+
export declare type TownsquareContributorConnection = {
|
|
95595
|
+
__typename?: 'TownsquareContributorConnection';
|
|
95596
|
+
edges?: Maybe<Array<Maybe<TownsquareContributorEdge>>>;
|
|
95597
|
+
pageInfo: PageInfo;
|
|
95598
|
+
};
|
|
95599
|
+
export declare type TownsquareContributorEdge = {
|
|
95600
|
+
__typename?: 'TownsquareContributorEdge';
|
|
95601
|
+
cursor: Scalars['String']['output'];
|
|
95602
|
+
node?: Maybe<TownsquareContributor>;
|
|
95603
|
+
};
|
|
95438
95604
|
export declare type TownsquareCreateGoalHasJiraAlignProjectInput = {
|
|
95439
95605
|
from: Scalars['String']['input'];
|
|
95440
95606
|
to: Scalars['String']['input'];
|
|
@@ -95885,6 +96051,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
95885
96051
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
95886
96052
|
changelog?: Maybe<TownsquareProjectChangelogItemConnection>;
|
|
95887
96053
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
96054
|
+
contributors?: Maybe<TownsquareContributorConnection>;
|
|
95888
96055
|
dependencies?: Maybe<TownsquareProjectDependencyConnection>;
|
|
95889
96056
|
description?: Maybe<TownsquareProjectDescription>;
|
|
95890
96057
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
@@ -95941,6 +96108,10 @@ export declare type TownsquareProjectCommentsArgs = {
|
|
|
95941
96108
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95942
96109
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95943
96110
|
};
|
|
96111
|
+
export declare type TownsquareProjectContributorsArgs = {
|
|
96112
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96113
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96114
|
+
};
|
|
95944
96115
|
export declare type TownsquareProjectDependenciesArgs = {
|
|
95945
96116
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95946
96117
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -96145,6 +96316,26 @@ export declare type TownsquareProjectUpdateEdge = {
|
|
|
96145
96316
|
cursor: Scalars['String']['output'];
|
|
96146
96317
|
node?: Maybe<TownsquareProjectUpdate>;
|
|
96147
96318
|
};
|
|
96319
|
+
export declare type TownsquareProjectsCreateLinkInput = {
|
|
96320
|
+
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
96321
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
96322
|
+
projectId: Scalars['ID']['input'];
|
|
96323
|
+
provider?: InputMaybe<Scalars['String']['input']>;
|
|
96324
|
+
type?: InputMaybe<TownsquareLinkType>;
|
|
96325
|
+
url: Scalars['String']['input'];
|
|
96326
|
+
};
|
|
96327
|
+
export declare type TownsquareProjectsCreateLinkMutationErrorExtension = MutationErrorExtension & {
|
|
96328
|
+
__typename?: 'TownsquareProjectsCreateLinkMutationErrorExtension';
|
|
96329
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
96330
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
96331
|
+
};
|
|
96332
|
+
export declare type TownsquareProjectsCreateLinkPayload = {
|
|
96333
|
+
__typename?: 'TownsquareProjectsCreateLinkPayload';
|
|
96334
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96335
|
+
link?: Maybe<TownsquareLink>;
|
|
96336
|
+
project?: Maybe<TownsquareProject>;
|
|
96337
|
+
success: Scalars['Boolean']['output'];
|
|
96338
|
+
};
|
|
96148
96339
|
export declare type TownsquareProjectsEditInput = {
|
|
96149
96340
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96150
96341
|
icon?: InputMaybe<TownsquareIconInput>;
|
|
@@ -96383,6 +96574,15 @@ export declare type TownsquareTeamConnection = {
|
|
|
96383
96574
|
edges?: Maybe<Array<Maybe<TownsquareTeamEdge>>>;
|
|
96384
96575
|
pageInfo: PageInfo;
|
|
96385
96576
|
};
|
|
96577
|
+
export declare type TownsquareTeamContributor = {
|
|
96578
|
+
__typename?: 'TownsquareTeamContributor';
|
|
96579
|
+
contributingMembers?: Maybe<TownsquareUserConnection>;
|
|
96580
|
+
team?: Maybe<TeamV2>;
|
|
96581
|
+
};
|
|
96582
|
+
export declare type TownsquareTeamContributorContributingMembersArgs = {
|
|
96583
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96584
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96585
|
+
};
|
|
96386
96586
|
export declare type TownsquareTeamEdge = {
|
|
96387
96587
|
__typename?: 'TownsquareTeamEdge';
|
|
96388
96588
|
cursor: Scalars['String']['output'];
|