@forge/cli-shared 8.9.0-next.12-experimental-cd26ead → 8.9.0-next.13
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 +3 -18
- package/out/graphql/graphql-types.d.ts +120 -34
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +37 -27
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,26 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.9.0-next.
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- 5efbe5a: Added new watch flag to show services command
|
|
3
|
+
## 8.9.0-next.13
|
|
8
4
|
|
|
9
5
|
### Patch Changes
|
|
10
6
|
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
- ef033a5: support container identity when tunneling
|
|
14
|
-
- 118f8af: switch `contexts` to `compatibility` for Forge create operation
|
|
15
|
-
- aaf8a03: forge tunnel with containers: delete auto generated docker compose files upon failing to startup
|
|
16
|
-
- Updated dependencies [9a6d346]
|
|
17
|
-
- Updated dependencies [260eb24]
|
|
18
|
-
- Updated dependencies [3228cf0]
|
|
19
|
-
- Updated dependencies [8962080]
|
|
20
|
-
- Updated dependencies [f0a5a03]
|
|
21
|
-
- Updated dependencies [d00ef59]
|
|
22
|
-
- Updated dependencies [78efec7]
|
|
23
|
-
- @forge/manifest@11.0.0-next.6-experimental-cd26ead
|
|
7
|
+
- Updated dependencies [0a3f5d5]
|
|
8
|
+
- @forge/manifest@11.0.0-next.7
|
|
24
9
|
|
|
25
10
|
## 8.9.0-next.12
|
|
26
11
|
|
|
@@ -18964,6 +18964,7 @@ export declare type ConfluenceSpaceDetailsSpaceOwner = {
|
|
|
18964
18964
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
18965
18965
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
18966
18966
|
ownerType?: Maybe<ConfluenceSpaceOwnerType>;
|
|
18967
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
18967
18968
|
};
|
|
18968
18969
|
export declare type ConfluenceSpaceDetailsSpaceOwnerInput = {
|
|
18969
18970
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22874,6 +22875,7 @@ export declare type CreateAppEnvironmentResponse = Payload & {
|
|
|
22874
22875
|
};
|
|
22875
22876
|
export declare type CreateAppInput = {
|
|
22876
22877
|
appFeatures?: InputMaybe<AppFeaturesInput>;
|
|
22878
|
+
billingConsent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22877
22879
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
22878
22880
|
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
22879
22881
|
name: Scalars['String']['input'];
|
|
@@ -26617,6 +26619,12 @@ export declare type DevAiRovoDevIssueViewResponse = {
|
|
|
26617
26619
|
isFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26618
26620
|
sessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
26619
26621
|
};
|
|
26622
|
+
export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
|
|
26623
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26624
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
26625
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26626
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
26627
|
+
};
|
|
26620
26628
|
export declare enum DevAiRovoDevPrStatus {
|
|
26621
26629
|
Declined = "DECLINED",
|
|
26622
26630
|
Draft = "DRAFT",
|
|
@@ -26932,6 +26940,7 @@ export declare type DevConsoleDeveloperSpace = {
|
|
|
26932
26940
|
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26933
26941
|
status: Scalars['String']['output'];
|
|
26934
26942
|
type: DevConsoleDeveloperSpaceType;
|
|
26943
|
+
vendorId: Scalars['String']['output'];
|
|
26935
26944
|
version: Scalars['Int']['output'];
|
|
26936
26945
|
versionId: Scalars['Int']['output'];
|
|
26937
26946
|
};
|
|
@@ -26940,6 +26949,7 @@ export declare type DevConsoleDeveloperSpaceDetails = {
|
|
|
26940
26949
|
logo?: Maybe<Scalars['String']['output']>;
|
|
26941
26950
|
name: Scalars['String']['output'];
|
|
26942
26951
|
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26952
|
+
vendorId: Scalars['String']['output'];
|
|
26943
26953
|
};
|
|
26944
26954
|
export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
26945
26955
|
__typename?: 'DevConsoleDeveloperSpaceDetailsResult';
|
|
@@ -26953,21 +26963,13 @@ export declare type DevConsoleDeveloperSpaceMember = {
|
|
|
26953
26963
|
email?: Maybe<Scalars['String']['output']>;
|
|
26954
26964
|
name?: Maybe<Scalars['String']['output']>;
|
|
26955
26965
|
picture?: Maybe<Scalars['String']['output']>;
|
|
26956
|
-
|
|
26957
|
-
export declare type DevConsoleDeveloperSpaceMemberInput = {
|
|
26958
|
-
developerSpaceId: Scalars['String']['input'];
|
|
26959
|
-
memberEmail: Scalars['String']['input'];
|
|
26960
|
-
role: DevConsoleDeveloperSpaceMemberRole;
|
|
26966
|
+
roles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26961
26967
|
};
|
|
26962
26968
|
export declare type DevConsoleDeveloperSpaceMemberPayload = Payload & {
|
|
26963
26969
|
__typename?: 'DevConsoleDeveloperSpaceMemberPayload';
|
|
26964
|
-
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
26965
26970
|
errors?: Maybe<Array<MutationError>>;
|
|
26966
26971
|
success: Scalars['Boolean']['output'];
|
|
26967
26972
|
};
|
|
26968
|
-
export declare enum DevConsoleDeveloperSpaceMemberRole {
|
|
26969
|
-
Admin = "ADMIN"
|
|
26970
|
-
}
|
|
26971
26973
|
export declare type DevConsoleDeveloperSpaceMembersResponse = {
|
|
26972
26974
|
__typename?: 'DevConsoleDeveloperSpaceMembersResponse';
|
|
26973
26975
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -26996,7 +26998,6 @@ export declare enum DevConsoleDeveloperSpacePublishStatus {
|
|
|
26996
26998
|
}
|
|
26997
26999
|
export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
|
|
26998
27000
|
__typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
|
|
26999
|
-
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
27000
27001
|
errors?: Maybe<Array<MutationError>>;
|
|
27001
27002
|
success: Scalars['Boolean']['output'];
|
|
27002
27003
|
};
|
|
@@ -27025,21 +27026,16 @@ export declare type DevConsoleHasConsoleAdminResponse = {
|
|
|
27025
27026
|
export declare type DevConsoleMutation = {
|
|
27026
27027
|
__typename?: 'DevConsoleMutation';
|
|
27027
27028
|
acceptAppBillingConsent: DevConsoleResponsePayload;
|
|
27028
|
-
addDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27029
27029
|
archiveDeveloperSpace: DevConsoleResponsePayload;
|
|
27030
27030
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
27031
27031
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
27032
|
-
|
|
27033
|
-
updateDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27032
|
+
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27034
27033
|
updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
|
|
27035
27034
|
};
|
|
27036
27035
|
export declare type DevConsoleMutationAcceptAppBillingConsentArgs = {
|
|
27037
27036
|
appIds: Array<Scalars['String']['input']>;
|
|
27038
27037
|
developerSpaceId: Scalars['String']['input'];
|
|
27039
27038
|
};
|
|
27040
|
-
export declare type DevConsoleMutationAddDeveloperSpaceMemberArgs = {
|
|
27041
|
-
input: DevConsoleDeveloperSpaceMemberInput;
|
|
27042
|
-
};
|
|
27043
27039
|
export declare type DevConsoleMutationArchiveDeveloperSpaceArgs = {
|
|
27044
27040
|
input: DevConsoleArchiveDeveloperSpaceInput;
|
|
27045
27041
|
};
|
|
@@ -27049,11 +27045,8 @@ export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
|
|
|
27049
27045
|
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
27050
27046
|
input: DevConsoleCreateDeveloperSpaceInput;
|
|
27051
27047
|
};
|
|
27052
|
-
export declare type
|
|
27053
|
-
input:
|
|
27054
|
-
};
|
|
27055
|
-
export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
|
|
27056
|
-
input: DevConsoleUpdateDeveloperSpaceMemberInput;
|
|
27048
|
+
export declare type DevConsoleMutationUpdateDeveloperSpaceMemberRolesArgs = {
|
|
27049
|
+
input: DevConsoleUpdateDeveloperSpaceMemberRolesInput;
|
|
27057
27050
|
};
|
|
27058
27051
|
export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
|
|
27059
27052
|
input: DevConsoleUpdateDeveloperSpaceSettingsInput;
|
|
@@ -27117,10 +27110,6 @@ export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
|
|
|
27117
27110
|
export declare type DevConsoleQueryTenantContextsArgs = {
|
|
27118
27111
|
ids: Array<Scalars['ID']['input']>;
|
|
27119
27112
|
};
|
|
27120
|
-
export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
|
|
27121
|
-
developerSpaceId: Scalars['String']['input'];
|
|
27122
|
-
memberId: Scalars['String']['input'];
|
|
27123
|
-
};
|
|
27124
27113
|
export declare enum DevConsoleResource {
|
|
27125
27114
|
FunctionCompute = "FUNCTION_COMPUTE",
|
|
27126
27115
|
KvsRead = "KVS_READ",
|
|
@@ -27201,10 +27190,12 @@ export declare type DevConsoleTransactionAccountResponse = {
|
|
|
27201
27190
|
paymentMethod?: Maybe<DevConsoleTransactionAccountPaymentMethod>;
|
|
27202
27191
|
transactionAccount?: Maybe<DevConsoleTransactionAccountData>;
|
|
27203
27192
|
};
|
|
27204
|
-
export declare type
|
|
27193
|
+
export declare type DevConsoleUpdateDeveloperSpaceMemberRolesInput = {
|
|
27194
|
+
addRoles: Array<Scalars['String']['input']>;
|
|
27205
27195
|
developerSpaceId: Scalars['String']['input'];
|
|
27206
|
-
|
|
27207
|
-
|
|
27196
|
+
memberEmail?: InputMaybe<Scalars['String']['input']>;
|
|
27197
|
+
memberId?: InputMaybe<Scalars['String']['input']>;
|
|
27198
|
+
removeRoles: Array<Scalars['String']['input']>;
|
|
27208
27199
|
};
|
|
27209
27200
|
export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
|
|
27210
27201
|
developerSpaceId: Scalars['String']['input'];
|
|
@@ -36997,6 +36988,7 @@ export declare type GraphStore = {
|
|
|
36997
36988
|
userUpdatedIssueBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
|
|
36998
36989
|
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
36999
36990
|
userUpdatedIssueInverseBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
|
|
36991
|
+
userViewed3pRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection>;
|
|
37000
36992
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
37001
36993
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
37002
36994
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -42065,6 +42057,13 @@ export declare type GraphStoreUserUpdatedIssueInverseBatchArgs = {
|
|
|
42065
42057
|
ids: Array<Scalars['ID']['input']>;
|
|
42066
42058
|
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
42067
42059
|
};
|
|
42060
|
+
export declare type GraphStoreUserViewed3pRemoteLinkInverseArgs = {
|
|
42061
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42062
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42063
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42064
|
+
id: Scalars['ID']['input'];
|
|
42065
|
+
sort?: InputMaybe<GraphStoreUserViewed3pRemoteLinkSortInput>;
|
|
42066
|
+
};
|
|
42068
42067
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
42069
42068
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
42070
42069
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57728,6 +57727,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
|
57728
57727
|
};
|
|
57729
57728
|
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
57730
57729
|
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
57730
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection = HasPageInfo & {
|
|
57731
|
+
__typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection';
|
|
57732
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge>>>;
|
|
57733
|
+
pageInfo: PageInfo;
|
|
57734
|
+
};
|
|
57735
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge = {
|
|
57736
|
+
__typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge';
|
|
57737
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57738
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57739
|
+
id: Scalars['ID']['output'];
|
|
57740
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57741
|
+
node?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseUnion>;
|
|
57742
|
+
};
|
|
57743
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
57731
57744
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
57732
57745
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
57733
57746
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -59160,6 +59173,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
|
59160
59173
|
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
59161
59174
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59162
59175
|
};
|
|
59176
|
+
export declare type GraphStoreUserViewed3pRemoteLinkSortInput = {
|
|
59177
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59178
|
+
};
|
|
59163
59179
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
59164
59180
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59165
59181
|
};
|
|
@@ -70058,6 +70074,7 @@ export declare type JiraHistoryAssigneeFieldValue = {
|
|
|
70058
70074
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
70059
70075
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
70060
70076
|
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
70077
|
+
user?: Maybe<User>;
|
|
70061
70078
|
value?: Maybe<Scalars['String']['output']>;
|
|
70062
70079
|
};
|
|
70063
70080
|
export declare type JiraHistoryFieldSchema = {
|
|
@@ -70207,6 +70224,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
70207
70224
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
70208
70225
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
70209
70226
|
canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
|
|
70227
|
+
canDownloadAttachment?: Maybe<Scalars['Boolean']['output']>;
|
|
70210
70228
|
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
70211
70229
|
childIssues?: Maybe<JiraChildIssues>;
|
|
70212
70230
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
@@ -95115,6 +95133,7 @@ export declare type Mutation = {
|
|
|
95115
95133
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
95116
95134
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
95117
95135
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
95136
|
+
stakeholderComms_createSubscriber?: Maybe<StakeholderCommsSubscriberResponse>;
|
|
95118
95137
|
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95119
95138
|
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95120
95139
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -95124,6 +95143,7 @@ export declare type Mutation = {
|
|
|
95124
95143
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
95125
95144
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
95126
95145
|
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
95146
|
+
stakeholderComms_unsubscribeSubscriber?: Maybe<StakeholderCommsUnsubscribeSubscriberResponse>;
|
|
95127
95147
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
95128
95148
|
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
95129
95149
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -97555,6 +97575,9 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
|
|
|
97555
97575
|
stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
|
|
97556
97576
|
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
97557
97577
|
};
|
|
97578
|
+
export declare type MutationStakeholderComms_CreateSubscriberArgs = {
|
|
97579
|
+
subscriptionRequest: StakeholderCommsSubscriptionRequest;
|
|
97580
|
+
};
|
|
97558
97581
|
export declare type MutationStakeholderComms_DeleteDraftPageArgs = {
|
|
97559
97582
|
pageId: Scalars['String']['input'];
|
|
97560
97583
|
};
|
|
@@ -97583,6 +97606,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
|
97583
97606
|
export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
97584
97607
|
resendInviteInput: StakeholderCommsResendInviteInput;
|
|
97585
97608
|
};
|
|
97609
|
+
export declare type MutationStakeholderComms_UnsubscribeSubscriberArgs = {
|
|
97610
|
+
subscriberId: Scalars['String']['input'];
|
|
97611
|
+
};
|
|
97586
97612
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
97587
97613
|
page: StakeholderCommsUpdatePageInputType;
|
|
97588
97614
|
};
|
|
@@ -104880,13 +104906,13 @@ export declare type QueryStakeholderComms_GetComponentUptimePercentageArgs = {
|
|
|
104880
104906
|
};
|
|
104881
104907
|
export declare type QueryStakeholderComms_GetComponentWithUptimeByComponentIdArgs = {
|
|
104882
104908
|
componentId: Scalars['String']['input'];
|
|
104883
|
-
endDate
|
|
104884
|
-
startDate
|
|
104909
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
104910
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
104885
104911
|
};
|
|
104886
104912
|
export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdArgs = {
|
|
104887
|
-
endDate
|
|
104913
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
104888
104914
|
pageId: Scalars['String']['input'];
|
|
104889
|
-
startDate
|
|
104915
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
104890
104916
|
};
|
|
104891
104917
|
export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdV2Args = {
|
|
104892
104918
|
nestedComponentWithUptimeConnectionInput: StakeholderCommsNestedComponentWithUptimeConnectionInput;
|
|
@@ -108038,6 +108064,7 @@ export declare type SearchProductInfo = {
|
|
|
108038
108064
|
};
|
|
108039
108065
|
export declare enum SearchProjectType {
|
|
108040
108066
|
Business = "business",
|
|
108067
|
+
CustomerService = "customer_service",
|
|
108041
108068
|
ProductDiscovery = "product_discovery",
|
|
108042
108069
|
ServiceDesk = "service_desk",
|
|
108043
108070
|
Software = "software"
|
|
@@ -129843,12 +129870,12 @@ export declare type StakeholderCommsNestedComponentWithUptimeConnection = {
|
|
|
129843
129870
|
export declare type StakeholderCommsNestedComponentWithUptimeConnectionInput = {
|
|
129844
129871
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129845
129872
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
129846
|
-
endDate
|
|
129873
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
129847
129874
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129848
129875
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129849
129876
|
pageId: Scalars['String']['input'];
|
|
129850
129877
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
129851
|
-
startDate
|
|
129878
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
129852
129879
|
statusFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
129853
129880
|
};
|
|
129854
129881
|
export declare type StakeholderCommsNestedComponentWithUptimeEdge = {
|
|
@@ -130271,6 +130298,60 @@ export declare enum StakeholderCommsStakeholderType {
|
|
|
130271
130298
|
Internal = "INTERNAL",
|
|
130272
130299
|
Team = "TEAM"
|
|
130273
130300
|
}
|
|
130301
|
+
export declare type StakeholderCommsSubscriber = {
|
|
130302
|
+
__typename?: 'StakeholderCommsSubscriber';
|
|
130303
|
+
additionalInformation?: Maybe<Array<Scalars['String']['output']>>;
|
|
130304
|
+
componentIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
130305
|
+
confirmationCode?: Maybe<Scalars['String']['output']>;
|
|
130306
|
+
confirmedAt?: Maybe<Scalars['String']['output']>;
|
|
130307
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
130308
|
+
deactivatedAt?: Maybe<Scalars['String']['output']>;
|
|
130309
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
130310
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
130311
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
130312
|
+
lastRemindedAt?: Maybe<Scalars['String']['output']>;
|
|
130313
|
+
orphanedAt?: Maybe<Scalars['String']['output']>;
|
|
130314
|
+
pageAccessUserId?: Maybe<Scalars['String']['output']>;
|
|
130315
|
+
phoneCountry?: Maybe<Scalars['String']['output']>;
|
|
130316
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
130317
|
+
phoneNumberDisplay?: Maybe<Scalars['String']['output']>;
|
|
130318
|
+
quarantinedAt?: Maybe<Scalars['String']['output']>;
|
|
130319
|
+
shortCodeSubscriptionId?: Maybe<Scalars['String']['output']>;
|
|
130320
|
+
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
130321
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
130322
|
+
slackUserId?: Maybe<Scalars['String']['output']>;
|
|
130323
|
+
subscriptionType?: Maybe<Scalars['String']['output']>;
|
|
130324
|
+
type?: Maybe<StakeholderCommsSubscriberItemType>;
|
|
130325
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
130326
|
+
webhookEndpoint?: Maybe<Scalars['String']['output']>;
|
|
130327
|
+
};
|
|
130328
|
+
export declare enum StakeholderCommsSubscriberItemType {
|
|
130329
|
+
ComponentSubscriber = "COMPONENT_SUBSCRIBER",
|
|
130330
|
+
IncidentSubscriber = "INCIDENT_SUBSCRIBER",
|
|
130331
|
+
PageSubscriber = "PAGE_SUBSCRIBER"
|
|
130332
|
+
}
|
|
130333
|
+
export declare type StakeholderCommsSubscriberResponse = {
|
|
130334
|
+
__typename?: 'StakeholderCommsSubscriberResponse';
|
|
130335
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
130336
|
+
subscriber?: Maybe<StakeholderCommsSubscriber>;
|
|
130337
|
+
};
|
|
130338
|
+
export declare enum StakeholderCommsSubscriptionChannel {
|
|
130339
|
+
Email = "EMAIL",
|
|
130340
|
+
Slack = "SLACK",
|
|
130341
|
+
Sms = "SMS",
|
|
130342
|
+
Webhook = "WEBHOOK"
|
|
130343
|
+
}
|
|
130344
|
+
export declare type StakeholderCommsSubscriptionData = {
|
|
130345
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
130346
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
130347
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
130348
|
+
};
|
|
130349
|
+
export declare type StakeholderCommsSubscriptionRequest = {
|
|
130350
|
+
itemId: Scalars['String']['input'];
|
|
130351
|
+
itemType: StakeholderCommsSubscriberItemType;
|
|
130352
|
+
subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
|
|
130353
|
+
subscriptionType: StakeholderCommsSubscriptionChannel;
|
|
130354
|
+
};
|
|
130274
130355
|
export declare type StakeholderCommsUnifiedSearchInput = {
|
|
130275
130356
|
filters?: InputMaybe<Array<InputMaybe<StakeholderCommsSearchFilterType>>>;
|
|
130276
130357
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130282,6 +130363,11 @@ export declare type StakeholderCommsUnifiedSearchResults = {
|
|
|
130282
130363
|
error?: Maybe<Scalars['String']['output']>;
|
|
130283
130364
|
results?: Maybe<Array<Maybe<StakeholderCommsSearchResult>>>;
|
|
130284
130365
|
};
|
|
130366
|
+
export declare type StakeholderCommsUnsubscribeSubscriberResponse = {
|
|
130367
|
+
__typename?: 'StakeholderCommsUnsubscribeSubscriberResponse';
|
|
130368
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
130369
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
130370
|
+
};
|
|
130285
130371
|
export declare type StakeholderCommsUpdatePageInputType = {
|
|
130286
130372
|
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
130287
130373
|
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|