@forge/cli-shared 3.20.0-next.16 → 3.20.0-next.18
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 +15 -0
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +3 -8
- package/out/file-system/file-system-reader.d.ts +5 -1
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/file-system/file-system-reader.js +17 -2
- package/out/file-system/index.d.ts +1 -0
- package/out/file-system/index.d.ts.map +1 -1
- package/out/file-system/index.js +1 -0
- package/out/file-system/util.d.ts +2 -0
- package/out/file-system/util.d.ts.map +1 -0
- package/out/file-system/util.js +14 -0
- package/out/graphql/graphql-types.d.ts +43 -13
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +17 -6
- package/out/shared/read-app-config-files.js +5 -5
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.0-next.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ac23105f]
|
|
8
|
+
- @forge/manifest@4.20.2-next.6
|
|
9
|
+
|
|
10
|
+
## 3.20.0-next.17
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- de5d2023: Allow packaging extra files in Forge apps
|
|
15
|
+
- Updated dependencies [de5d2023]
|
|
16
|
+
- @forge/manifest@4.20.2-next.5
|
|
17
|
+
|
|
3
18
|
## 3.20.0-next.16
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register-app.d.ts","sourceRoot":"","sources":["../../src/apps/register-app.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"register-app.d.ts","sourceRoot":"","sources":["../../src/apps/register-app.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAErE,OAAO,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE;QACZ,GAAG,EAAE,MAAM,CAAC;KACb,EAAE,CAAC;CACL;AAED,MAAM,WAAW,eAAe;IAC9B,SAAS,CAAC,KAAK,EAAE,oBAAoB,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;CAClE;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC9B,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,SAAS,EAAE;QACT,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;CACH,CAAC;AAEF,qBAAa,kBAAkB;IAE3B,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,MAAM;gBAHN,SAAS,EAAE,eAAe,EAC1B,eAAe,EAAE,mBAAmB,CAAC,UAAU,CAAC,EAChD,eAAe,EAAE,mBAAmB,CAAC,UAAU,CAAC,EAChD,MAAM,EAAE,MAAM;IAGpB,OAAO,CAAC,KAAK,EAAE,oBAAoB,EAAE,oBAAoB,UAAQ,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQ9F,WAAW,CACtB,KAAK,EAAE,oBAAoB,EAC3B,SAAS,EAAE,MAAM,EACjB,oBAAoB,EAAE,OAAO,GAC5B,OAAO,CAAC,eAAe,CAAC;CAqB5B"}
|
package/out/apps/register-app.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.RegisterAppCommand = void 0;
|
|
4
|
-
const
|
|
4
|
+
const file_system_1 = require("../file-system");
|
|
5
5
|
const ui_1 = require("../ui");
|
|
6
6
|
class RegisterAppCommand {
|
|
7
7
|
constructor(appClient, appConfigReader, appConfigWriter, logger) {
|
|
@@ -20,9 +20,7 @@ class RegisterAppCommand {
|
|
|
20
20
|
async registerApp(input, directory, shouldPrependAppName) {
|
|
21
21
|
this.logger.info(ui_1.Text.create.taskRegister);
|
|
22
22
|
const result = await this.appClient.createApp(input);
|
|
23
|
-
|
|
24
|
-
process.chdir((0, path_1.resolve)(cwd, directory));
|
|
25
|
-
try {
|
|
23
|
+
await (0, file_system_1.inDirectory)(directory, async () => {
|
|
26
24
|
const section = await this.appConfigReader.readConfigSection();
|
|
27
25
|
let newAppDetails = {
|
|
28
26
|
id: result.id
|
|
@@ -34,10 +32,7 @@ class RegisterAppCommand {
|
|
|
34
32
|
if (shouldPrependAppName) {
|
|
35
33
|
await this.appConfigWriter.prependAppNameToModules(input.name);
|
|
36
34
|
}
|
|
37
|
-
}
|
|
38
|
-
finally {
|
|
39
|
-
process.chdir(cwd);
|
|
40
|
-
}
|
|
35
|
+
});
|
|
41
36
|
this.logger.info(ui_1.Text.create.taskCreateEnvironments);
|
|
42
37
|
return result;
|
|
43
38
|
}
|
|
@@ -7,7 +7,10 @@ export declare class FileSystemReader {
|
|
|
7
7
|
readFile(filePath: string): string | undefined;
|
|
8
8
|
readFileAsync(filePath: string): Promise<string | undefined>;
|
|
9
9
|
recursiveReadDir(rootDir: string, ignores?: ReadonlyArray<string | IgnoreFunction>): Promise<string[]>;
|
|
10
|
-
readGlob(pattern
|
|
10
|
+
readGlob({ pattern, filesOnly }: {
|
|
11
|
+
pattern: string;
|
|
12
|
+
filesOnly?: boolean;
|
|
13
|
+
}): Promise<string[]>;
|
|
11
14
|
hasGlobSpecialChars(pattern: string): boolean;
|
|
12
15
|
readBinaryFile(filePath: string): Buffer | undefined;
|
|
13
16
|
readBinaryFileAsync(filePath: string): Promise<Buffer | undefined>;
|
|
@@ -16,6 +19,7 @@ export declare class FileSystemReader {
|
|
|
16
19
|
getSize(filePath: string): number | undefined;
|
|
17
20
|
getFolderSizeAsync(directory: string): Promise<number | undefined>;
|
|
18
21
|
private handleFileError;
|
|
22
|
+
getFileGlobList(globList: string[]): Promise<string[]>;
|
|
19
23
|
}
|
|
20
24
|
export {};
|
|
21
25
|
//# sourceMappingURL=file-system-reader.d.ts.map
|
|
@@ -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,KAAK,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"}
|
|
@@ -9,6 +9,7 @@ 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
11
|
const get_folder_size_1 = tslib_1.__importDefault(require("get-folder-size"));
|
|
12
|
+
const shared_1 = require("../shared");
|
|
12
13
|
const FILE_NOT_FOUND_CODE = 'ENOENT';
|
|
13
14
|
class FileSystemReader {
|
|
14
15
|
fileExists(filePath) {
|
|
@@ -43,8 +44,18 @@ class FileSystemReader {
|
|
|
43
44
|
}
|
|
44
45
|
return (0, recursive_readdir_1.default)(rootDir, ignoreDirs);
|
|
45
46
|
}
|
|
46
|
-
async readGlob(pattern) {
|
|
47
|
-
|
|
47
|
+
async readGlob({ pattern, filesOnly = false }) {
|
|
48
|
+
let results = await (0, glob_1.glob)(pattern, {});
|
|
49
|
+
if (filesOnly) {
|
|
50
|
+
results = (0, shared_1.flat)(await Promise.all(results.map(async (result) => {
|
|
51
|
+
if ((await fs_1.default.promises.lstat(result)).isFile()) {
|
|
52
|
+
return [result];
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
return [];
|
|
56
|
+
}
|
|
57
|
+
})));
|
|
58
|
+
}
|
|
48
59
|
results.sort();
|
|
49
60
|
return results;
|
|
50
61
|
}
|
|
@@ -103,5 +114,9 @@ class FileSystemReader {
|
|
|
103
114
|
throw error;
|
|
104
115
|
}
|
|
105
116
|
}
|
|
117
|
+
async getFileGlobList(globList) {
|
|
118
|
+
const files = await Promise.all(globList.map((pattern) => this.readGlob({ pattern, filesOnly: true })));
|
|
119
|
+
return (0, shared_1.flat)(files);
|
|
120
|
+
}
|
|
106
121
|
}
|
|
107
122
|
exports.FileSystemReader = FileSystemReader;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/file-system/index.ts"],"names":[],"mappings":"AAEA,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/file-system/index.ts"],"names":[],"mappings":"AAEA,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC"}
|
package/out/file-system/index.js
CHANGED
|
@@ -3,4 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
tslib_1.__exportStar(require("./file-system-reader"), exports);
|
|
5
5
|
tslib_1.__exportStar(require("./file-system-writer"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./util"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./zip-accessor"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../src/file-system/util.ts"],"names":[],"mappings":"AAAA,wBAAsB,WAAW,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAQvF"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.inDirectory = void 0;
|
|
4
|
+
async function inDirectory(path, action) {
|
|
5
|
+
const originalPath = process.cwd();
|
|
6
|
+
try {
|
|
7
|
+
process.chdir(path);
|
|
8
|
+
return await action();
|
|
9
|
+
}
|
|
10
|
+
finally {
|
|
11
|
+
process.chdir(originalPath);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.inDirectory = inDirectory;
|
|
@@ -2822,14 +2822,6 @@ export type CommercePricingPlan = {
|
|
|
2822
2822
|
export type CommercePrimaryCycle = {
|
|
2823
2823
|
interval?: Maybe<CcpBillingInterval>;
|
|
2824
2824
|
};
|
|
2825
|
-
export type CommerceQuery = {
|
|
2826
|
-
__typename?: 'CommerceQuery';
|
|
2827
|
-
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
|
|
2828
|
-
};
|
|
2829
|
-
export type CommerceQueryEntitlementInfoArgs = {
|
|
2830
|
-
cloudId: Scalars['ID']['input'];
|
|
2831
|
-
hamsProductKey: Scalars['String']['input'];
|
|
2832
|
-
};
|
|
2833
2825
|
export type CommerceSubscription = {
|
|
2834
2826
|
accountDetails?: Maybe<CommerceAccountDetails>;
|
|
2835
2827
|
pricingPlan?: Maybe<CommercePricingPlan>;
|
|
@@ -9516,7 +9508,7 @@ export type ExtensionContextAppAuditLogsArgs = {
|
|
|
9516
9508
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9517
9509
|
};
|
|
9518
9510
|
export type ExtensionContextExtensionsArgs = {
|
|
9519
|
-
filter
|
|
9511
|
+
filter: Array<ExtensionContextsFilter>;
|
|
9520
9512
|
};
|
|
9521
9513
|
export type ExtensionContextExtensionsByTypeArgs = {
|
|
9522
9514
|
principalType?: InputMaybe<PrincipalType>;
|
|
@@ -12010,6 +12002,7 @@ export type HelpCenterNameInput = {
|
|
|
12010
12002
|
};
|
|
12011
12003
|
export type HelpCenterQueryApi = {
|
|
12012
12004
|
__typename?: 'HelpCenterQueryApi';
|
|
12005
|
+
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
12013
12006
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
12014
12007
|
helpCenterFromProductName?: Maybe<HelpCenterQueryResult>;
|
|
12015
12008
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
@@ -12018,6 +12011,10 @@ export type HelpCenterQueryApi = {
|
|
|
12018
12011
|
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
12019
12012
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
12020
12013
|
};
|
|
12014
|
+
export type HelpCenterQueryApiGetHelpDeskByIdArgs = {
|
|
12015
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
12016
|
+
helpDeskId: Scalars['ID']['input'];
|
|
12017
|
+
};
|
|
12021
12018
|
export type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
12022
12019
|
helpCenterAri: Scalars['ID']['input'];
|
|
12023
12020
|
};
|
|
@@ -12621,7 +12618,7 @@ export type HelpObjectStoreProviderConnection = Node & {
|
|
|
12621
12618
|
id: Scalars['ID']['output'];
|
|
12622
12619
|
providerKey: Scalars['String']['output'];
|
|
12623
12620
|
teamId: Scalars['String']['output'];
|
|
12624
|
-
title
|
|
12621
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
12625
12622
|
updatedBy: Scalars['String']['output'];
|
|
12626
12623
|
url: Scalars['String']['output'];
|
|
12627
12624
|
};
|
|
@@ -12729,7 +12726,7 @@ export type HelpObjectStoreSearchInput = {
|
|
|
12729
12726
|
entityType: HelpObjectStoreSearchEntityType;
|
|
12730
12727
|
portalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
12731
12728
|
queryTerm: Scalars['String']['input'];
|
|
12732
|
-
resultLimit
|
|
12729
|
+
resultLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
12733
12730
|
};
|
|
12734
12731
|
export type HelpObjectStoreSearchMetaData = {
|
|
12735
12732
|
__typename?: 'HelpObjectStoreSearchMetaData';
|
|
@@ -12749,6 +12746,10 @@ export type HelpObjectStoreSearchResult = Node & {
|
|
|
12749
12746
|
metaData?: Maybe<HelpObjectStoreSearchMetaData>;
|
|
12750
12747
|
title: Scalars['String']['output'];
|
|
12751
12748
|
};
|
|
12749
|
+
export declare enum HelpObjectStoreSearchableEntityType {
|
|
12750
|
+
Article = "ARTICLE",
|
|
12751
|
+
RequestForm = "REQUEST_FORM"
|
|
12752
|
+
}
|
|
12752
12753
|
export type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
12753
12754
|
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
12754
12755
|
ari: Scalars['ID']['output'];
|
|
@@ -13530,6 +13531,12 @@ export type JiraAdminRichTextFieldConfig = {
|
|
|
13530
13531
|
export type JiraAdminRichTextFieldConfigAiEnabledByProjectArgs = {
|
|
13531
13532
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
13532
13533
|
};
|
|
13534
|
+
export type JiraAdvancedRoadmapsNavigation = {
|
|
13535
|
+
__typename?: 'JiraAdvancedRoadmapsNavigation';
|
|
13536
|
+
hasEditOrViewPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
13537
|
+
hasEditPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
13538
|
+
isAdvancedRoadmapsTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
13539
|
+
};
|
|
13533
13540
|
export type JiraAffectedService = {
|
|
13534
13541
|
__typename?: 'JiraAffectedService';
|
|
13535
13542
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -13825,6 +13832,7 @@ export type JiraBitbucketWorkspace = {
|
|
|
13825
13832
|
approvalState?: Maybe<JiraBitbucketWorkspaceApprovalState>;
|
|
13826
13833
|
name?: Maybe<Scalars['String']['output']>;
|
|
13827
13834
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
13835
|
+
workspaceUrl?: Maybe<Scalars['URL']['output']>;
|
|
13828
13836
|
};
|
|
13829
13837
|
export declare enum JiraBitbucketWorkspaceApprovalState {
|
|
13830
13838
|
Approved = "APPROVED",
|
|
@@ -16307,7 +16315,9 @@ export type JiraIssueSearchViewPayload = Payload & {
|
|
|
16307
16315
|
};
|
|
16308
16316
|
export type JiraIssueTransitionFieldLevelInput = {
|
|
16309
16317
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
16318
|
+
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
16310
16319
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
16320
|
+
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
16311
16321
|
};
|
|
16312
16322
|
export declare enum JiraIssueTransitionLayoutMessageType {
|
|
16313
16323
|
Error = "ERROR",
|
|
@@ -18719,6 +18729,7 @@ export declare enum JiraPullRequestState {
|
|
|
18719
18729
|
}
|
|
18720
18730
|
export type JiraQuery = {
|
|
18721
18731
|
__typename?: 'JiraQuery';
|
|
18732
|
+
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
18722
18733
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
18723
18734
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
18724
18735
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
@@ -18814,6 +18825,9 @@ export type JiraQuery = {
|
|
|
18814
18825
|
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
18815
18826
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
18816
18827
|
};
|
|
18828
|
+
export type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
18829
|
+
cloudId: Scalars['ID']['input'];
|
|
18830
|
+
};
|
|
18817
18831
|
export type JiraQueryAllGrantTypeKeysArgs = {
|
|
18818
18832
|
cloudId: Scalars['ID']['input'];
|
|
18819
18833
|
};
|
|
@@ -19262,6 +19276,7 @@ export type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
19262
19276
|
export type JiraRadioSelectFieldFieldOptionsArgs = {
|
|
19263
19277
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
19264
19278
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
19279
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
19265
19280
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19266
19281
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19267
19282
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22187,9 +22202,14 @@ export type JiraWorkManagementDeleteOverviewPayload = Payload & {
|
|
|
22187
22202
|
errors?: Maybe<Array<MutationError>>;
|
|
22188
22203
|
success: Scalars['Boolean']['output'];
|
|
22189
22204
|
};
|
|
22205
|
+
export type JiraWorkManagementLicensing = {
|
|
22206
|
+
__typename?: 'JiraWorkManagementLicensing';
|
|
22207
|
+
currentUserSeatEdition?: Maybe<JiraWorkManagementUserLicenseSeatEdition>;
|
|
22208
|
+
};
|
|
22190
22209
|
export type JiraWorkManagementNavigation = {
|
|
22191
22210
|
__typename?: 'JiraWorkManagementNavigation';
|
|
22192
22211
|
favoriteProjects?: Maybe<JiraProjectConnection>;
|
|
22212
|
+
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
22193
22213
|
overviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
22194
22214
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
22195
22215
|
};
|
|
@@ -22276,6 +22296,11 @@ export type JiraWorkManagementUpdateOverviewPayload = Payload & {
|
|
|
22276
22296
|
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
22277
22297
|
success: Scalars['Boolean']['output'];
|
|
22278
22298
|
};
|
|
22299
|
+
export declare enum JiraWorkManagementUserLicenseSeatEdition {
|
|
22300
|
+
Free = "FREE",
|
|
22301
|
+
Premium = "PREMIUM",
|
|
22302
|
+
Standard = "STANDARD"
|
|
22303
|
+
}
|
|
22279
22304
|
export type JiraWorkManagementViewItem = Node & {
|
|
22280
22305
|
__typename?: 'JiraWorkManagementViewItem';
|
|
22281
22306
|
fields?: Maybe<Array<JiraIssueField>>;
|
|
@@ -25516,7 +25541,6 @@ export type Query = {
|
|
|
25516
25541
|
canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
25517
25542
|
ccp?: Maybe<CcpQueryApi>;
|
|
25518
25543
|
codeInJira?: Maybe<CodeInJira>;
|
|
25519
|
-
commerce?: Maybe<CommerceQuery>;
|
|
25520
25544
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
25521
25545
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
25522
25546
|
connectedData?: Maybe<ConnectedDataQuery>;
|
|
@@ -25876,10 +25900,11 @@ export type QueryJwmOverviewArgs = {
|
|
|
25876
25900
|
id: Scalars['ID']['input'];
|
|
25877
25901
|
};
|
|
25878
25902
|
export type QueryJwmOverviewsArgs = {
|
|
25879
|
-
accountId
|
|
25903
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
25880
25904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25881
25905
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
25882
25906
|
cloudId: Scalars['ID']['input'];
|
|
25907
|
+
currentUserSeatEdition?: InputMaybe<JiraWorkManagementUserLicenseSeatEdition>;
|
|
25883
25908
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25884
25909
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
25885
25910
|
};
|
|
@@ -26618,6 +26643,7 @@ export type RoadmapProjectConfiguration = {
|
|
|
26618
26643
|
childItemTypes: Array<RoadmapItemType>;
|
|
26619
26644
|
components?: Maybe<Array<RoadmapComponent>>;
|
|
26620
26645
|
defaultItemTypeId?: Maybe<Scalars['String']['output']>;
|
|
26646
|
+
isGoalsFeatureEnabled: Scalars['Boolean']['output'];
|
|
26621
26647
|
isReleasesFeatureEnabled: Scalars['Boolean']['output'];
|
|
26622
26648
|
parentItemTypes: Array<RoadmapItemType>;
|
|
26623
26649
|
permissions?: Maybe<RoadmapProjectPermissions>;
|
|
@@ -29998,6 +30024,7 @@ export type TrelloBoard = Node & {
|
|
|
29998
30024
|
name: Scalars['String']['output'];
|
|
29999
30025
|
objectId: Scalars['ID']['output'];
|
|
30000
30026
|
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
30027
|
+
pluginsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
30001
30028
|
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
30002
30029
|
prefs: TrelloBoardPrefs;
|
|
30003
30030
|
premiumFeatures?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -30642,6 +30669,7 @@ export type TrelloMember = Node & {
|
|
|
30642
30669
|
avatarSource?: Maybe<Scalars['String']['output']>;
|
|
30643
30670
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
30644
30671
|
bio?: Maybe<Scalars['String']['output']>;
|
|
30672
|
+
bioData?: Maybe<Scalars['JSON']['output']>;
|
|
30645
30673
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
30646
30674
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
30647
30675
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
@@ -30920,8 +30948,10 @@ export type TrelloTemplateGalleryItemInfo = {
|
|
|
30920
30948
|
blurb?: Maybe<Scalars['String']['output']>;
|
|
30921
30949
|
byline?: Maybe<Scalars['String']['output']>;
|
|
30922
30950
|
category: TrelloTemplateGalleryCategory;
|
|
30951
|
+
featured?: Maybe<Scalars['Boolean']['output']>;
|
|
30923
30952
|
id?: Maybe<Scalars['ID']['output']>;
|
|
30924
30953
|
language: TrelloTemplateGalleryLanguage;
|
|
30954
|
+
precedence?: Maybe<Scalars['Int']['output']>;
|
|
30925
30955
|
stats?: Maybe<TrelloTemplateGalleryItemStats>;
|
|
30926
30956
|
};
|
|
30927
30957
|
export type TrelloTemplateGalleryItemStats = {
|