@forge/cli-shared 8.2.0-next.2 → 8.2.0-next.4
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 +12 -0
- 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 +111 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -13
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.2.0-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 73f3108: Add tip about variables only changing after deployment
|
|
8
|
+
|
|
9
|
+
## 8.2.0-next.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- a26c603: revert package upgrades
|
|
14
|
+
|
|
3
15
|
## 8.2.0-next.2
|
|
4
16
|
|
|
5
17
|
### 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;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) {
|
|
@@ -17306,6 +17306,9 @@ export declare type CsmAiHub = {
|
|
|
17306
17306
|
export declare type CsmAiHubActionsArgs = {
|
|
17307
17307
|
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17308
17308
|
};
|
|
17309
|
+
export declare type CsmAiHubWidgetsArgs = {
|
|
17310
|
+
type?: InputMaybe<CsmAiWidgetType>;
|
|
17311
|
+
};
|
|
17309
17312
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
17310
17313
|
export declare type CsmAiKeyValueInput = {
|
|
17311
17314
|
key: Scalars['String']['input'];
|
|
@@ -17417,10 +17420,10 @@ export declare enum CsmAiWidgetBrandingSpaceVariant {
|
|
|
17417
17420
|
export declare type CsmAiWidgetBrandingTheme = {
|
|
17418
17421
|
__typename?: 'CsmAiWidgetBrandingTheme';
|
|
17419
17422
|
attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
|
|
17420
|
-
chatColor
|
|
17421
|
-
colorVibeVariant
|
|
17422
|
-
radius
|
|
17423
|
-
space
|
|
17423
|
+
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
17424
|
+
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
17425
|
+
radius: CsmAiWidgetBrandingRadius;
|
|
17426
|
+
space: CsmAiWidgetBrandingSpaceVariant;
|
|
17424
17427
|
};
|
|
17425
17428
|
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
17426
17429
|
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
@@ -49542,6 +49545,7 @@ export declare type Group = {
|
|
|
49542
49545
|
name?: Maybe<Scalars['String']['output']>;
|
|
49543
49546
|
permissionType?: Maybe<SitePermissionType>;
|
|
49544
49547
|
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
49548
|
+
team?: Maybe<TeamV2>;
|
|
49545
49549
|
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
49546
49550
|
};
|
|
49547
49551
|
export declare type GroupByPageInfo = {
|
|
@@ -49562,6 +49566,7 @@ export declare type GroupWithPermissions = {
|
|
|
49562
49566
|
name?: Maybe<Scalars['String']['output']>;
|
|
49563
49567
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
49564
49568
|
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
49569
|
+
team?: Maybe<TeamV2>;
|
|
49565
49570
|
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
49566
49571
|
};
|
|
49567
49572
|
export declare type GroupWithPermissionsEdge = {
|
|
@@ -49585,6 +49590,7 @@ export declare type GroupWithRestrictions = {
|
|
|
49585
49590
|
permissionType?: Maybe<SitePermissionType>;
|
|
49586
49591
|
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
49587
49592
|
restrictingContent?: Maybe<Content>;
|
|
49593
|
+
team?: Maybe<TeamV2>;
|
|
49588
49594
|
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
49589
49595
|
};
|
|
49590
49596
|
export declare type GroupWithRestrictionsEdge = {
|
|
@@ -51747,7 +51753,18 @@ export declare type HelpObjectStoreArticleMetadata = {
|
|
|
51747
51753
|
isExternal: Scalars['Boolean']['output'];
|
|
51748
51754
|
searchStrategy: HelpObjectStoreArticleSearchStrategy;
|
|
51749
51755
|
};
|
|
51756
|
+
export declare type HelpObjectStoreArticleRelative = {
|
|
51757
|
+
__typename?: 'HelpObjectStoreArticleRelative';
|
|
51758
|
+
id: Scalars['ID']['output'];
|
|
51759
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51760
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
51761
|
+
type?: Maybe<HelpObjectStoreArticleContentType>;
|
|
51762
|
+
};
|
|
51750
51763
|
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
51764
|
+
export declare enum HelpObjectStoreArticleSearchExpandType {
|
|
51765
|
+
Ancestors = "ANCESTORS",
|
|
51766
|
+
ViewCount = "VIEW_COUNT"
|
|
51767
|
+
}
|
|
51751
51768
|
export declare type HelpObjectStoreArticleSearchResponse = HelpObjectStoreArticleSearchResults | HelpObjectStoreSearchError;
|
|
51752
51769
|
export declare type HelpObjectStoreArticleSearchResult = {
|
|
51753
51770
|
__typename?: 'HelpObjectStoreArticleSearchResult';
|
|
@@ -52027,6 +52044,8 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
52027
52044
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
52028
52045
|
};
|
|
52029
52046
|
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
52047
|
+
articleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
52048
|
+
expand?: InputMaybe<Array<HelpObjectStoreArticleSearchExpandType>>;
|
|
52030
52049
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
52031
52050
|
parentId?: InputMaybe<Scalars['Long']['input']>;
|
|
52032
52051
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52035,6 +52054,7 @@ export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
|
52035
52054
|
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
|
|
52036
52055
|
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
52037
52056
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
52057
|
+
ancestors?: Maybe<Array<HelpObjectStoreArticleRelative>>;
|
|
52038
52058
|
body?: Maybe<Scalars['String']['output']>;
|
|
52039
52059
|
contentType?: Maybe<HelpObjectStoreArticleContentType>;
|
|
52040
52060
|
id: Scalars['ID']['output'];
|
|
@@ -56658,12 +56678,14 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
56658
56678
|
}
|
|
56659
56679
|
export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView & Node & {
|
|
56660
56680
|
__typename?: 'JiraDetailedView';
|
|
56681
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
56661
56682
|
error?: Maybe<QueryError>;
|
|
56662
56683
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
56663
56684
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
56664
56685
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
56665
56686
|
id: Scalars['ID']['output'];
|
|
56666
56687
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56688
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
56667
56689
|
issues?: Maybe<JiraIssueConnection>;
|
|
56668
56690
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
56669
56691
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -56680,6 +56702,9 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
56680
56702
|
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
56681
56703
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
56682
56704
|
};
|
|
56705
|
+
export declare type JiraDetailedViewIsViewConfigModifiedArgs = {
|
|
56706
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
56707
|
+
};
|
|
56683
56708
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
56684
56709
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56685
56710
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58427,6 +58452,7 @@ export declare type JiraGroupInput = {
|
|
|
58427
58452
|
};
|
|
58428
58453
|
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
58429
58454
|
__typename?: 'JiraGroupedListView';
|
|
58455
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
58430
58456
|
error?: Maybe<QueryError>;
|
|
58431
58457
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
58432
58458
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -58434,6 +58460,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
58434
58460
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
58435
58461
|
id: Scalars['ID']['output'];
|
|
58436
58462
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
58463
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58437
58464
|
jql?: Maybe<Scalars['String']['output']>;
|
|
58438
58465
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
58439
58466
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -58463,6 +58490,9 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
58463
58490
|
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
58464
58491
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58465
58492
|
};
|
|
58493
|
+
export declare type JiraGroupedListViewIsViewConfigModifiedArgs = {
|
|
58494
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
58495
|
+
};
|
|
58466
58496
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
58467
58497
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58468
58498
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -60061,12 +60091,15 @@ export declare type JiraIssueSearchStatus = {
|
|
|
60061
60091
|
};
|
|
60062
60092
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
60063
60093
|
__typename?: 'JiraIssueSearchView';
|
|
60094
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
60064
60095
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
60065
60096
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
60066
60097
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
60067
60098
|
id: Scalars['ID']['output'];
|
|
60068
60099
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60100
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
60069
60101
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
60102
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60070
60103
|
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
60071
60104
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60072
60105
|
};
|
|
@@ -60081,6 +60114,9 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
60081
60114
|
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
60082
60115
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60083
60116
|
};
|
|
60117
|
+
export declare type JiraIssueSearchViewIsViewConfigModifiedArgs = {
|
|
60118
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60119
|
+
};
|
|
60084
60120
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
60085
60121
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
60086
60122
|
};
|
|
@@ -60152,12 +60188,15 @@ export declare enum JiraIssueSearchViewLayout {
|
|
|
60152
60188
|
List = "LIST"
|
|
60153
60189
|
}
|
|
60154
60190
|
export declare type JiraIssueSearchViewMetadata = {
|
|
60191
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
60155
60192
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
60156
60193
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
60157
60194
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
60158
60195
|
id: Scalars['ID']['output'];
|
|
60159
60196
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60197
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
60160
60198
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
60199
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60161
60200
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60162
60201
|
};
|
|
60163
60202
|
export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
@@ -60171,6 +60210,9 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
60171
60210
|
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
60172
60211
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60173
60212
|
};
|
|
60213
|
+
export declare type JiraIssueSearchViewMetadataIsViewConfigModifiedArgs = {
|
|
60214
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60215
|
+
};
|
|
60174
60216
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
60175
60217
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
60176
60218
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -61398,12 +61440,14 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
61398
61440
|
};
|
|
61399
61441
|
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
61400
61442
|
__typename?: 'JiraListView';
|
|
61443
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
61401
61444
|
error?: Maybe<QueryError>;
|
|
61402
61445
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
61403
61446
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
61404
61447
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
61405
61448
|
id: Scalars['ID']['output'];
|
|
61406
61449
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61450
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
61407
61451
|
issues?: Maybe<JiraIssueConnection>;
|
|
61408
61452
|
jql?: Maybe<Scalars['String']['output']>;
|
|
61409
61453
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
@@ -61423,6 +61467,9 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
61423
61467
|
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
61424
61468
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61425
61469
|
};
|
|
61470
|
+
export declare type JiraListViewIsViewConfigModifiedArgs = {
|
|
61471
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
61472
|
+
};
|
|
61426
61473
|
export declare type JiraListViewIssuesArgs = {
|
|
61427
61474
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61428
61475
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68987,14 +69034,17 @@ export declare type JiraSpreadsheetGroupEdge = {
|
|
|
68987
69034
|
};
|
|
68988
69035
|
export declare type JiraSpreadsheetGroupFieldValue = JiraGoal | JiraOption | JiraPriority | JiraStatus | JiraStoryPoint;
|
|
68989
69036
|
export declare type JiraSpreadsheetView = {
|
|
69037
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
68990
69038
|
error?: Maybe<QueryError>;
|
|
68991
69039
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
68992
69040
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
68993
69041
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
68994
69042
|
id: Scalars['ID']['output'];
|
|
68995
69043
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69044
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
68996
69045
|
jql?: Maybe<Scalars['String']['output']>;
|
|
68997
69046
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
69047
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
68998
69048
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
68999
69049
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
69000
69050
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -69010,6 +69060,9 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
69010
69060
|
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
69011
69061
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
69012
69062
|
};
|
|
69063
|
+
export declare type JiraSpreadsheetViewIsViewConfigModifiedArgs = {
|
|
69064
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
69065
|
+
};
|
|
69013
69066
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
69014
69067
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
69015
69068
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -79646,6 +79699,7 @@ export declare type Mutation = {
|
|
|
79646
79699
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
79647
79700
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
79648
79701
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
79702
|
+
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
79649
79703
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
79650
79704
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
79651
79705
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -80926,6 +80980,9 @@ export declare type MutationPolarisAddReactionArgs = {
|
|
|
80926
80980
|
export declare type MutationPolarisDeleteReactionArgs = {
|
|
80927
80981
|
input: PolarisDeleteReactionInput;
|
|
80928
80982
|
};
|
|
80983
|
+
export declare type MutationProjects_EditArgs = {
|
|
80984
|
+
input?: InputMaybe<TownsquareProjectsEditInput>;
|
|
80985
|
+
};
|
|
80929
80986
|
export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
80930
80987
|
action: PublicLinkAdminAction;
|
|
80931
80988
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -84480,6 +84537,7 @@ export declare type Query = {
|
|
|
84480
84537
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
84481
84538
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84482
84539
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84540
|
+
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
84483
84541
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
84484
84542
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
84485
84543
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -84557,6 +84615,7 @@ export declare type Query = {
|
|
|
84557
84615
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
84558
84616
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
84559
84617
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
84618
|
+
home_tagSearch?: Maybe<TownsquareTagConnection>;
|
|
84560
84619
|
identity_groupsByIds?: Maybe<Array<IdentityGroup>>;
|
|
84561
84620
|
incomingLinksCount?: Maybe<IncomingLinksCount>;
|
|
84562
84621
|
inlineTasks?: Maybe<InlineTasksQueryResult>;
|
|
@@ -85888,6 +85947,10 @@ export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
|
85888
85947
|
issueKey: Scalars['String']['input'];
|
|
85889
85948
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85890
85949
|
};
|
|
85950
|
+
export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
85951
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85952
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
85953
|
+
};
|
|
85891
85954
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
85892
85955
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85893
85956
|
cloudId: Scalars['ID']['input'];
|
|
@@ -86156,6 +86219,13 @@ export declare type QueryHelpObjectStore_SearchRequestTypesArgs = {
|
|
|
86156
86219
|
portalId?: InputMaybe<Scalars['String']['input']>;
|
|
86157
86220
|
queryTerm: Scalars['String']['input'];
|
|
86158
86221
|
};
|
|
86222
|
+
export declare type QueryHome_TagSearchArgs = {
|
|
86223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86224
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
86225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86226
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
86227
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareTagSortEnum>>>;
|
|
86228
|
+
};
|
|
86159
86229
|
export declare type QueryIdentity_GroupsByIdsArgs = {
|
|
86160
86230
|
ids: Array<Scalars['ID']['input']>;
|
|
86161
86231
|
};
|
|
@@ -93180,6 +93250,7 @@ export declare type SpfAskLink = {
|
|
|
93180
93250
|
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
93181
93251
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
93182
93252
|
id: Scalars['ID']['output'];
|
|
93253
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
93183
93254
|
url: Scalars['URL']['output'];
|
|
93184
93255
|
};
|
|
93185
93256
|
export declare type SpfAskLinkConnection = {
|
|
@@ -93233,6 +93304,7 @@ export declare type SpfAskTransition = {
|
|
|
93233
93304
|
};
|
|
93234
93305
|
export declare type SpfAttachAskLinkInput = {
|
|
93235
93306
|
askId: Scalars['ID']['input'];
|
|
93307
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
93236
93308
|
url: Scalars['URL']['input'];
|
|
93237
93309
|
};
|
|
93238
93310
|
export declare type SpfAttachAskLinkPayload = Payload & {
|
|
@@ -94472,6 +94544,7 @@ export declare type TeamSort = {
|
|
|
94472
94544
|
export declare enum TeamSortField {
|
|
94473
94545
|
DisplayName = "DISPLAY_NAME",
|
|
94474
94546
|
Id = "ID",
|
|
94547
|
+
IsVerified = "IS_VERIFIED",
|
|
94475
94548
|
State = "STATE"
|
|
94476
94549
|
}
|
|
94477
94550
|
export declare enum TeamSortOrder {
|
|
@@ -95471,6 +95544,11 @@ export declare type TownsquareIcon = {
|
|
|
95471
95544
|
id?: Maybe<Scalars['String']['output']>;
|
|
95472
95545
|
shortName?: Maybe<Scalars['String']['output']>;
|
|
95473
95546
|
};
|
|
95547
|
+
export declare type TownsquareIconInput = {
|
|
95548
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
95549
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
95550
|
+
shortName?: InputMaybe<Scalars['String']['input']>;
|
|
95551
|
+
};
|
|
95474
95552
|
export declare type TownsquareIconUrIs = {
|
|
95475
95553
|
__typename?: 'TownsquareIconURIs';
|
|
95476
95554
|
roundedSquare?: Maybe<TownsquareThemeUrIs>;
|
|
@@ -95829,6 +95907,24 @@ export declare type TownsquareProjectUpdateEdge = {
|
|
|
95829
95907
|
cursor: Scalars['String']['output'];
|
|
95830
95908
|
node?: Maybe<TownsquareProjectUpdate>;
|
|
95831
95909
|
};
|
|
95910
|
+
export declare type TownsquareProjectsEditInput = {
|
|
95911
|
+
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95912
|
+
icon?: InputMaybe<TownsquareIconInput>;
|
|
95913
|
+
id: Scalars['ID']['input'];
|
|
95914
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
95915
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
95916
|
+
};
|
|
95917
|
+
export declare type TownsquareProjectsEditMutationErrorExtension = MutationErrorExtension & {
|
|
95918
|
+
__typename?: 'TownsquareProjectsEditMutationErrorExtension';
|
|
95919
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
95920
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
95921
|
+
};
|
|
95922
|
+
export declare type TownsquareProjectsEditPayload = {
|
|
95923
|
+
__typename?: 'TownsquareProjectsEditPayload';
|
|
95924
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95925
|
+
project?: Maybe<TownsquareProject>;
|
|
95926
|
+
success: Scalars['Boolean']['output'];
|
|
95927
|
+
};
|
|
95832
95928
|
export declare type TownsquareQueryApi = {
|
|
95833
95929
|
__typename?: 'TownsquareQueryApi';
|
|
95834
95930
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -96007,6 +96103,17 @@ export declare type TownsquareTagEdge = {
|
|
|
96007
96103
|
cursor: Scalars['String']['output'];
|
|
96008
96104
|
node?: Maybe<TownsquareTag>;
|
|
96009
96105
|
};
|
|
96106
|
+
export declare enum TownsquareTagSortEnum {
|
|
96107
|
+
EntityCountDesc = "ENTITY_COUNT_DESC",
|
|
96108
|
+
IdAsc = "ID_ASC",
|
|
96109
|
+
IdDesc = "ID_DESC",
|
|
96110
|
+
NameAsc = "NAME_ASC",
|
|
96111
|
+
NameDesc = "NAME_DESC",
|
|
96112
|
+
UsageAsc = "USAGE_ASC",
|
|
96113
|
+
UsageDesc = "USAGE_DESC",
|
|
96114
|
+
WatcherAsc = "WATCHER_ASC",
|
|
96115
|
+
WatcherDesc = "WATCHER_DESC"
|
|
96116
|
+
}
|
|
96010
96117
|
export declare type TownsquareTargetDate = {
|
|
96011
96118
|
__typename?: 'TownsquareTargetDate';
|
|
96012
96119
|
confidence?: Maybe<TownsquareTargetDateType>;
|