@forge/cli-shared 9.0.0-next.8 → 9.0.0
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 +43 -0
- package/out/graphql/graphql-types.d.ts +110 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +69 -52
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 9.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 78fcb7f: Adds support for TypeScript 5
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- 6aeecd7: The tunnel debugger now binds to localhost (127.0.0.1) by default instead of all network interfaces (0.0.0.0). If you need to attach a debugger from another host, use the new `--debugHost` option on `forge tunnel` to specify the IP address to bind to.
|
|
12
|
+
- 39d4f9d: forge show command
|
|
13
|
+
- 2a1ec30: Adding warning when site has over 100 apps installed
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- c3b96b3: Show warning when install fails
|
|
18
|
+
- 2a03b88: `isAgent` attribution now excludes CI: `isAgent()` returns `false` when `CI=true` even if stdin/stdout are non-TTY, so the `isAgent` and `isCI` signals never overlap in the `atl-attribution` header and analytics payload.
|
|
19
|
+
- 561f8f4: Remove "storage" module from "@forge/api"
|
|
20
|
+
- ab1dcaa: Update JSM to be its own product
|
|
21
|
+
- 4a191fe: Mark the `module` command and its subcommands (`add`, `list`, `show`) as `[Preview]` and add a caution to the `module`/`module add` help noting that running these commands may modify your app files (manifest.yml, source files, and package.json).
|
|
22
|
+
- bb903a8: Update requireAppId check
|
|
23
|
+
- c1acc55: Add Prod Service
|
|
24
|
+
- 5b67e61: Patch fixes for module Add
|
|
25
|
+
- 9a6de66: module list command
|
|
26
|
+
- 55c1371: bump cheerio to ^1.2.0 to pull in a patched undici (>=7.19.0, resolving to a fixed release) and remediate CVE-2026-1525
|
|
27
|
+
NodeJS requirement bumped from 20.0.0 to >=20.18.1
|
|
28
|
+
- Updated dependencies [814b8fe]
|
|
29
|
+
- Updated dependencies [78fcb7f]
|
|
30
|
+
- Updated dependencies [8ac7dd3]
|
|
31
|
+
- Updated dependencies [55c1371]
|
|
32
|
+
- Updated dependencies [d66be70]
|
|
33
|
+
- Updated dependencies [1a461c3]
|
|
34
|
+
- @forge/manifest@13.0.0
|
|
35
|
+
- @forge/i18n@1.0.0
|
|
36
|
+
- @forge/util@3.0.0
|
|
37
|
+
|
|
38
|
+
## 9.0.0-next.9
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- 4a191fe: Mark the `module` command and its subcommands (`add`, `list`, `show`) as `[Preview]` and add a caution to the `module`/`module add` help noting that running these commands may modify your app files (manifest.yml, source files, and package.json).
|
|
43
|
+
- Updated dependencies [d66be70]
|
|
44
|
+
- @forge/manifest@13.0.0-next.3
|
|
45
|
+
|
|
3
46
|
## 9.0.0-next.8
|
|
4
47
|
|
|
5
48
|
### Minor Changes
|
|
@@ -219,23 +219,22 @@ export type AiOpsDeploymentActivity = AiOpsServiceActivity & {
|
|
|
219
219
|
};
|
|
220
220
|
export type AiOpsDeploymentDetail = {
|
|
221
221
|
__typename?: 'AIOpsDeploymentDetail';
|
|
222
|
-
|
|
222
|
+
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
223
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
223
224
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
224
|
-
|
|
225
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
226
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
227
|
+
provider?: Maybe<Scalars['String']['output']>;
|
|
225
228
|
pullRequests?: Maybe<Array<AiOpsDeploymentPullRequest>>;
|
|
226
229
|
state?: Maybe<Scalars['String']['output']>;
|
|
227
|
-
|
|
230
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
228
231
|
url?: Maybe<Scalars['String']['output']>;
|
|
229
232
|
};
|
|
230
|
-
export type AiOpsDeploymentPrAuthor = {
|
|
231
|
-
__typename?: 'AIOpsDeploymentPrAuthor';
|
|
232
|
-
accountId?: Maybe<Scalars['String']['output']>;
|
|
233
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
234
|
-
};
|
|
235
233
|
export type AiOpsDeploymentPullRequest = {
|
|
236
234
|
__typename?: 'AIOpsDeploymentPullRequest';
|
|
237
|
-
author?: Maybe<
|
|
235
|
+
author?: Maybe<Scalars['String']['output']>;
|
|
238
236
|
destinationBranch?: Maybe<Scalars['String']['output']>;
|
|
237
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
239
238
|
pullRequestId?: Maybe<Scalars['String']['output']>;
|
|
240
239
|
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
241
240
|
status?: Maybe<Scalars['String']['output']>;
|
|
@@ -251,7 +250,7 @@ export type AiOpsEntityCount = {
|
|
|
251
250
|
export type AiOpsEntityDetail = {
|
|
252
251
|
__typename?: 'AIOpsEntityDetail';
|
|
253
252
|
detail?: Maybe<AiOpsEntityDetailPayload>;
|
|
254
|
-
|
|
253
|
+
id: Scalars['ID']['output'];
|
|
255
254
|
type: AiOpsActivityEntityType;
|
|
256
255
|
};
|
|
257
256
|
export type AiOpsEntityDetailPayload = AiOpsAlertDetail | AiOpsDeploymentDetail | AiOpsFeatureFlagDetail | AiOpsIncidentDetail;
|
|
@@ -19025,6 +19024,57 @@ export type ChangeManagementGlobalRiskAssessmentSettingsPayload = {
|
|
|
19025
19024
|
aiRiskAssessmentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
19026
19025
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
19027
19026
|
};
|
|
19027
|
+
export type ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep = {
|
|
19028
|
+
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryAnalysisStep';
|
|
19029
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
19030
|
+
id: Scalars['ID']['output'];
|
|
19031
|
+
status: ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStepStatus;
|
|
19032
|
+
title: Scalars['String']['output'];
|
|
19033
|
+
};
|
|
19034
|
+
export declare enum ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStepStatus {
|
|
19035
|
+
Completed = "COMPLETED",
|
|
19036
|
+
Failed = "FAILED",
|
|
19037
|
+
InProgress = "IN_PROGRESS",
|
|
19038
|
+
Skipped = "SKIPPED"
|
|
19039
|
+
}
|
|
19040
|
+
export type ChangeManagementJsmPreventionCenterOverviewSummaryAvailableResponse = {
|
|
19041
|
+
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryAvailableResponse';
|
|
19042
|
+
analysisSteps?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep>>;
|
|
19043
|
+
doneSoFar?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummaryDoneItem>>;
|
|
19044
|
+
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
19045
|
+
potentialRisk?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryRiskLevel>;
|
|
19046
|
+
sources?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummarySource>>;
|
|
19047
|
+
suggestedNextSteps?: Maybe<Scalars['String']['output']>;
|
|
19048
|
+
summary: Scalars['String']['output'];
|
|
19049
|
+
};
|
|
19050
|
+
export type ChangeManagementJsmPreventionCenterOverviewSummaryDoneItem = {
|
|
19051
|
+
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryDoneItem';
|
|
19052
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
19053
|
+
};
|
|
19054
|
+
export type ChangeManagementJsmPreventionCenterOverviewSummaryInProgressResponse = {
|
|
19055
|
+
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryInProgressResponse';
|
|
19056
|
+
analysisSteps?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep>>;
|
|
19057
|
+
};
|
|
19058
|
+
export type ChangeManagementJsmPreventionCenterOverviewSummaryResponse = ChangeManagementJsmPreventionCenterOverviewSummaryAvailableResponse | ChangeManagementJsmPreventionCenterOverviewSummaryInProgressResponse;
|
|
19059
|
+
export declare enum ChangeManagementJsmPreventionCenterOverviewSummaryRiskLevel {
|
|
19060
|
+
High = "HIGH",
|
|
19061
|
+
Low = "LOW",
|
|
19062
|
+
Medium = "MEDIUM"
|
|
19063
|
+
}
|
|
19064
|
+
export type ChangeManagementJsmPreventionCenterOverviewSummarySource = {
|
|
19065
|
+
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummarySource';
|
|
19066
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19067
|
+
id: Scalars['ID']['output'];
|
|
19068
|
+
title: Scalars['String']['output'];
|
|
19069
|
+
type: ChangeManagementJsmPreventionCenterOverviewSummarySourceType;
|
|
19070
|
+
url: Scalars['String']['output'];
|
|
19071
|
+
};
|
|
19072
|
+
export declare enum ChangeManagementJsmPreventionCenterOverviewSummarySourceType {
|
|
19073
|
+
Bitbucket = "BITBUCKET",
|
|
19074
|
+
Confluence = "CONFLUENCE",
|
|
19075
|
+
Jsm = "JSM",
|
|
19076
|
+
Statuspage = "STATUSPAGE"
|
|
19077
|
+
}
|
|
19028
19078
|
export type ChangeManagementLastRovoRiskAssessmentPayload = {
|
|
19029
19079
|
__typename?: 'ChangeManagementLastRovoRiskAssessmentPayload';
|
|
19030
19080
|
conversationId?: Maybe<Scalars['String']['output']>;
|
|
@@ -51905,6 +51955,10 @@ export type GraphIntegrationIcon = {
|
|
|
51905
51955
|
key?: Maybe<Scalars['String']['output']>;
|
|
51906
51956
|
url?: Maybe<Scalars['String']['output']>;
|
|
51907
51957
|
};
|
|
51958
|
+
export type GraphIntegrationMcpAdminManagementApiTokenAuthConfigInput = {
|
|
51959
|
+
apiToken: Scalars['String']['input'];
|
|
51960
|
+
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
51961
|
+
};
|
|
51908
51962
|
export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection = {
|
|
51909
51963
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection';
|
|
51910
51964
|
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge>>;
|
|
@@ -51946,6 +52000,10 @@ export declare enum GraphIntegrationMcpAdminManagementMcpRegistrationSource {
|
|
|
51946
52000
|
Customer = "CUSTOMER",
|
|
51947
52001
|
Global = "GLOBAL"
|
|
51948
52002
|
}
|
|
52003
|
+
export type GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput = {
|
|
52004
|
+
apiToken?: InputMaybe<GraphIntegrationMcpAdminManagementApiTokenAuthConfigInput>;
|
|
52005
|
+
noAuth?: InputMaybe<GraphIntegrationMcpAdminManagementNoAuthConfigInput>;
|
|
52006
|
+
};
|
|
51949
52007
|
export declare enum GraphIntegrationMcpAdminManagementMcpServerAuthType {
|
|
51950
52008
|
ApiToken = "API_TOKEN",
|
|
51951
52009
|
None = "NONE",
|
|
@@ -52041,7 +52099,11 @@ export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
|
52041
52099
|
DenyServerRemoved = "DENY_SERVER_REMOVED",
|
|
52042
52100
|
NewToolDeny = "NEW_TOOL_DENY"
|
|
52043
52101
|
}
|
|
52102
|
+
export type GraphIntegrationMcpAdminManagementNoAuthConfigInput = {
|
|
52103
|
+
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
52104
|
+
};
|
|
52044
52105
|
export type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
52106
|
+
authConfig?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput>;
|
|
52045
52107
|
authType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
|
|
52046
52108
|
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52047
52109
|
cloudId: Scalars['ID']['input'];
|
|
@@ -59370,6 +59432,7 @@ export type GraphStoreFocusAreaHasWatcherInverseBatchArgs = {
|
|
|
59370
59432
|
export type GraphStoreGetDynamicNodeTypesArgs = {
|
|
59371
59433
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59372
59434
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59435
|
+
schemaIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
59373
59436
|
workspaceAri: Scalars['ID']['input'];
|
|
59374
59437
|
};
|
|
59375
59438
|
export type GraphStoreGetDynamicRelationshipTypesArgs = {
|
|
@@ -113680,6 +113743,7 @@ export type HelpCenterBranding = {
|
|
|
113680
113743
|
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
113681
113744
|
logo?: Maybe<HelpCenterLogo>;
|
|
113682
113745
|
navigationBar?: Maybe<HelpCenterNavigationBar>;
|
|
113746
|
+
typography?: Maybe<HelpCenterBrandingTypography>;
|
|
113683
113747
|
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
113684
113748
|
};
|
|
113685
113749
|
export type HelpCenterBrandingColors = {
|
|
@@ -113704,6 +113768,16 @@ export type HelpCenterBrandingInput = {
|
|
|
113704
113768
|
homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
|
|
113705
113769
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
113706
113770
|
navigationBar?: InputMaybe<HelpCenterNavigationBarInput>;
|
|
113771
|
+
typography?: InputMaybe<HelpCenterBrandingTypographyInput>;
|
|
113772
|
+
};
|
|
113773
|
+
export type HelpCenterBrandingTypography = {
|
|
113774
|
+
__typename?: 'HelpCenterBrandingTypography';
|
|
113775
|
+
bodyFont?: Maybe<Scalars['String']['output']>;
|
|
113776
|
+
headingFont?: Maybe<Scalars['String']['output']>;
|
|
113777
|
+
};
|
|
113778
|
+
export type HelpCenterBrandingTypographyInput = {
|
|
113779
|
+
bodyFont?: InputMaybe<Scalars['String']['input']>;
|
|
113780
|
+
headingFont?: InputMaybe<Scalars['String']['input']>;
|
|
113707
113781
|
};
|
|
113708
113782
|
export type HelpCenterBulkCreateTopicsInput = {
|
|
113709
113783
|
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
@@ -113774,6 +113848,7 @@ export declare enum HelpCenterDescriptionType {
|
|
|
113774
113848
|
WikiMarkup = "WIKI_MARKUP"
|
|
113775
113849
|
}
|
|
113776
113850
|
export type HelpCenterFilter = {
|
|
113851
|
+
autoLinkingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
113777
113852
|
type?: InputMaybe<HelpCenterType>;
|
|
113778
113853
|
};
|
|
113779
113854
|
export type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
@@ -149150,6 +149225,10 @@ export type LiveChatMarkReadPayload = Payload & {
|
|
|
149150
149225
|
errors?: Maybe<Array<MutationError>>;
|
|
149151
149226
|
success: Scalars['Boolean']['output'];
|
|
149152
149227
|
};
|
|
149228
|
+
export declare enum LiveChatMessageVisibility {
|
|
149229
|
+
Internal = "INTERNAL",
|
|
149230
|
+
Public = "PUBLIC"
|
|
149231
|
+
}
|
|
149153
149232
|
export type LiveChatParticipantJoined = {
|
|
149154
149233
|
__typename?: 'LiveChatParticipantJoined';
|
|
149155
149234
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -149169,6 +149248,7 @@ export type LiveChatSendUserMessageInput = {
|
|
|
149169
149248
|
chatAri: Scalars['ID']['input'];
|
|
149170
149249
|
content: Scalars['String']['input'];
|
|
149171
149250
|
messageId?: InputMaybe<Scalars['ID']['input']>;
|
|
149251
|
+
visibility?: InputMaybe<LiveChatMessageVisibility>;
|
|
149172
149252
|
};
|
|
149173
149253
|
export type LiveChatStarted = {
|
|
149174
149254
|
__typename?: 'LiveChatStarted';
|
|
@@ -162946,6 +163026,7 @@ export type Mutation = {
|
|
|
162946
163026
|
champion?: Maybe<UnifiedChampionMutation>;
|
|
162947
163027
|
changeManagement_deleteLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
162948
163028
|
changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
163029
|
+
changeManagement_regenerateJsmPreventionCenterOverviewSummary?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryResponse>;
|
|
162949
163030
|
changeManagement_updateGlobalRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
162950
163031
|
changeManagement_updateRovoRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
162951
163032
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
@@ -165373,6 +165454,10 @@ export type MutationChangeManagement_RecordLastRovoRiskAssessmentArgs = {
|
|
|
165373
165454
|
input: ChangeManagementUpdateLastRovoRiskAssessmentInput;
|
|
165374
165455
|
keepUpdatedAt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165375
165456
|
};
|
|
165457
|
+
export type MutationChangeManagement_RegenerateJsmPreventionCenterOverviewSummaryArgs = {
|
|
165458
|
+
cloudId: Scalars['ID']['input'];
|
|
165459
|
+
entityKey: Scalars['String']['input'];
|
|
165460
|
+
};
|
|
165376
165461
|
export type MutationChangeManagement_UpdateGlobalRiskAssessmentSettingsArgs = {
|
|
165377
165462
|
input: ChangeManagementUpdateGlobalRiskAssessmentSettingsInput;
|
|
165378
165463
|
};
|
|
@@ -173221,6 +173306,7 @@ export type Query = {
|
|
|
173221
173306
|
champion?: Maybe<UnifiedChampionQuery>;
|
|
173222
173307
|
changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
|
|
173223
173308
|
changeManagement_globalRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
|
|
173309
|
+
changeManagement_jsmPreventionCenterOverviewSummary?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryResponse>;
|
|
173224
173310
|
changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
|
|
173225
173311
|
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
173226
173312
|
changeManagement_rovoRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementRovoRiskAssessmentSettingsPayload>;
|
|
@@ -178441,6 +178527,10 @@ export type QueryChangeManagement_GlobalRiskAssessmentSettingsByIssueArgs = {
|
|
|
178441
178527
|
cloudId: Scalars['ID']['input'];
|
|
178442
178528
|
issueKeyOrId: Scalars['String']['input'];
|
|
178443
178529
|
};
|
|
178530
|
+
export type QueryChangeManagement_JsmPreventionCenterOverviewSummaryArgs = {
|
|
178531
|
+
cloudId: Scalars['ID']['input'];
|
|
178532
|
+
entityKey: Scalars['String']['input'];
|
|
178533
|
+
};
|
|
178444
178534
|
export type QueryChangeManagement_LastRovoRiskAssessmentArgs = {
|
|
178445
178535
|
cloudId: Scalars['ID']['input'];
|
|
178446
178536
|
issueId: Scalars['String']['input'];
|
|
@@ -189752,6 +189842,7 @@ export type QueryGraphStore_FocusAreaHasWatcherInverseBatchArgs = {
|
|
|
189752
189842
|
export type QueryGraphStore_GetDynamicNodeTypesArgs = {
|
|
189753
189843
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
189754
189844
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189845
|
+
schemaIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
189755
189846
|
workspaceAri: Scalars['ID']['input'];
|
|
189756
189847
|
};
|
|
189757
189848
|
export type QueryGraphStore_GetDynamicRelationshipTypesArgs = {
|
|
@@ -200665,6 +200756,7 @@ export declare enum Scope {
|
|
|
200665
200756
|
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
200666
200757
|
DeleteConfluenceTwgCli = "DELETE_CONFLUENCE_TWG_CLI",
|
|
200667
200758
|
DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
|
|
200759
|
+
DeleteGoal = "DELETE_GOAL",
|
|
200668
200760
|
DeleteGoalTwgCli = "DELETE_GOAL_TWG_CLI",
|
|
200669
200761
|
DeleteInsightJpd = "DELETE_INSIGHT_JPD",
|
|
200670
200762
|
DeleteItamConfigJsm = "DELETE_ITAM_CONFIG_JSM",
|
|
@@ -200679,6 +200771,7 @@ export declare enum Scope {
|
|
|
200679
200771
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
200680
200772
|
DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
|
|
200681
200773
|
DeleteOrganizationUser = "DELETE_ORGANIZATION_USER",
|
|
200774
|
+
DeleteProject = "DELETE_PROJECT",
|
|
200682
200775
|
DeleteProjectTwgCli = "DELETE_PROJECT_TWG_CLI",
|
|
200683
200776
|
DeleteRadarTwgCli = "DELETE_RADAR_TWG_CLI",
|
|
200684
200777
|
DeleteRequesttypeProperty = "DELETE_REQUESTTYPE_PROPERTY",
|
|
@@ -200903,10 +200996,6 @@ export declare enum Scope {
|
|
|
200903
200996
|
ReadFeedbackView = "READ_FEEDBACK_VIEW",
|
|
200904
200997
|
ReadGoal = "READ_GOAL",
|
|
200905
200998
|
ReadGoalAccess = "READ_GOAL_ACCESS",
|
|
200906
|
-
ReadGoalChatIntegration = "READ_GOAL_CHAT_INTEGRATION",
|
|
200907
|
-
ReadGoalComment = "READ_GOAL_COMMENT",
|
|
200908
|
-
ReadGoalMetric = "READ_GOAL_METRIC",
|
|
200909
|
-
ReadGoalUpdate = "READ_GOAL_UPDATE",
|
|
200910
200999
|
ReadGuardDetectAlert = "READ_GUARD_DETECT_ALERT",
|
|
200911
201000
|
ReadGuardDetectDetection = "READ_GUARD_DETECT_DETECTION",
|
|
200912
201001
|
ReadGuardDetectDetectionSetting = "READ_GUARD_DETECT_DETECTION_SETTING",
|
|
@@ -200947,10 +201036,7 @@ export declare enum Scope {
|
|
|
200947
201036
|
ReadProfileUpp = "READ_PROFILE_UPP",
|
|
200948
201037
|
ReadProject = "READ_PROJECT",
|
|
200949
201038
|
ReadProjectAccess = "READ_PROJECT_ACCESS",
|
|
200950
|
-
ReadProjectChatIntegration = "READ_PROJECT_CHAT_INTEGRATION",
|
|
200951
|
-
ReadProjectComment = "READ_PROJECT_COMMENT",
|
|
200952
201039
|
ReadProjectJpd = "READ_PROJECT_JPD",
|
|
200953
|
-
ReadProjectUpdate = "READ_PROJECT_UPDATE",
|
|
200954
201040
|
ReadQueue = "READ_QUEUE",
|
|
200955
201041
|
ReadRadarTwgCli = "READ_RADAR_TWG_CLI",
|
|
200956
201042
|
ReadRequest = "READ_REQUEST",
|
|
@@ -201040,7 +201126,6 @@ export declare enum Scope {
|
|
|
201040
201126
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
201041
201127
|
WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
|
|
201042
201128
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
201043
|
-
WriteCommentGoal = "WRITE_COMMENT_GOAL",
|
|
201044
201129
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
201045
201130
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
201046
201131
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
@@ -201083,7 +201168,7 @@ export declare enum Scope {
|
|
|
201083
201168
|
WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
|
|
201084
201169
|
WriteGoal = "WRITE_GOAL",
|
|
201085
201170
|
WriteGoalChatIntegration = "WRITE_GOAL_CHAT_INTEGRATION",
|
|
201086
|
-
|
|
201171
|
+
WriteGoalUpdate = "WRITE_GOAL_UPDATE",
|
|
201087
201172
|
WriteGuardDetectAlert = "WRITE_GUARD_DETECT_ALERT",
|
|
201088
201173
|
WriteGuardDetectDetection = "WRITE_GUARD_DETECT_DETECTION",
|
|
201089
201174
|
WriteGuardDetectDetectionSetting = "WRITE_GUARD_DETECT_DETECTION_SETTING",
|
|
@@ -201117,7 +201202,6 @@ export declare enum Scope {
|
|
|
201117
201202
|
WriteOrganizationUser = "WRITE_ORGANIZATION_USER",
|
|
201118
201203
|
WriteProject = "WRITE_PROJECT",
|
|
201119
201204
|
WriteProjectChatIntegration = "WRITE_PROJECT_CHAT_INTEGRATION",
|
|
201120
|
-
WriteProjectComment = "WRITE_PROJECT_COMMENT",
|
|
201121
201205
|
WriteProjectUpdate = "WRITE_PROJECT_UPDATE",
|
|
201122
201206
|
WriteRadarTwgCli = "WRITE_RADAR_TWG_CLI",
|
|
201123
201207
|
WriteRequest = "WRITE_REQUEST",
|
|
@@ -201148,7 +201232,6 @@ export declare enum Scope {
|
|
|
201148
201232
|
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
|
|
201149
201233
|
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
|
|
201150
201234
|
WriteTrelloTwgCli = "WRITE_TRELLO_TWG_CLI",
|
|
201151
|
-
WriteUpdateGoal = "WRITE_UPDATE_GOAL",
|
|
201152
201235
|
WriteViewJpd = "WRITE_VIEW_JPD"
|
|
201153
201236
|
}
|
|
201154
201237
|
export type ScopeSprintIssue = {
|
|
@@ -202562,6 +202645,7 @@ export type SearchThirdPartyProduct = {
|
|
|
202562
202645
|
channels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
202563
202646
|
connectionIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
202564
202647
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
202648
|
+
connectorSourcesImpersonationEnabled?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
202565
202649
|
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
202566
202650
|
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
202567
202651
|
entities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -225941,6 +226025,7 @@ export type Subscription = {
|
|
|
225941
226025
|
assetsVertical_onAsyncTaskUpdated?: Maybe<AssetsVerticalAsyncTask>;
|
|
225942
226026
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
225943
226027
|
blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
|
|
226028
|
+
changeManagement_jsmPreventionCenterOverviewSummaryUpdated?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryResponse>;
|
|
225944
226029
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
225945
226030
|
confluence_onSuggestedEditsUpdated?: Maybe<ConfluenceSuggestedEditsUpdated>;
|
|
225946
226031
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
@@ -225991,6 +226076,10 @@ export type SubscriptionAssetsVertical_OnAsyncTaskUpdatedArgs = {
|
|
|
225991
226076
|
export type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
225992
226077
|
resourceId: Scalars['ID']['input'];
|
|
225993
226078
|
};
|
|
226079
|
+
export type SubscriptionChangeManagement_JsmPreventionCenterOverviewSummaryUpdatedArgs = {
|
|
226080
|
+
cloudId: Scalars['ID']['input'];
|
|
226081
|
+
entityKey: Scalars['String']['input'];
|
|
226082
|
+
};
|
|
225994
226083
|
export type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
225995
226084
|
id: Scalars['ID']['input'];
|
|
225996
226085
|
};
|