@forge/cli-shared 7.0.0-next.3 → 7.0.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 +6 -0
- package/out/graphql/graphql-types.d.ts +226 -60
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +29 -2
- package/out/service/statsig-service.d.ts +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4873,55 +4873,6 @@ export declare type CloudAppScope = {
|
|
|
4873
4873
|
id: Scalars['ID']['output'];
|
|
4874
4874
|
name: Scalars['String']['output'];
|
|
4875
4875
|
};
|
|
4876
|
-
export declare type CmdbObject = {
|
|
4877
|
-
__typename?: 'CmdbObject';
|
|
4878
|
-
attributes?: Maybe<CmdbObjectAttributeConnection>;
|
|
4879
|
-
id: Scalars['ID']['output'];
|
|
4880
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
4881
|
-
objectKey?: Maybe<Scalars['String']['output']>;
|
|
4882
|
-
objectTypeId: Scalars['ID']['output'];
|
|
4883
|
-
objectTypeName?: Maybe<Scalars['String']['output']>;
|
|
4884
|
-
};
|
|
4885
|
-
export declare type CmdbObjectAttributesArgs = {
|
|
4886
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
4887
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4888
|
-
};
|
|
4889
|
-
export declare type CmdbObjectAttribute = {
|
|
4890
|
-
__typename?: 'CmdbObjectAttribute';
|
|
4891
|
-
objectAttributeValues?: Maybe<CmdbObjectAttributeValueConnection>;
|
|
4892
|
-
objectTypeAttributeId: Scalars['ID']['output'];
|
|
4893
|
-
objectTypeAttributeName?: Maybe<Scalars['String']['output']>;
|
|
4894
|
-
};
|
|
4895
|
-
export declare type CmdbObjectAttributeObjectAttributeValuesArgs = {
|
|
4896
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
4897
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4898
|
-
};
|
|
4899
|
-
export declare type CmdbObjectAttributeConnection = {
|
|
4900
|
-
__typename?: 'CmdbObjectAttributeConnection';
|
|
4901
|
-
edges?: Maybe<Array<Maybe<CmdbObjectAttributeEdge>>>;
|
|
4902
|
-
nodes?: Maybe<Array<Maybe<CmdbObjectAttribute>>>;
|
|
4903
|
-
pageInfo: PageInfo;
|
|
4904
|
-
};
|
|
4905
|
-
export declare type CmdbObjectAttributeEdge = {
|
|
4906
|
-
__typename?: 'CmdbObjectAttributeEdge';
|
|
4907
|
-
cursor: Scalars['String']['output'];
|
|
4908
|
-
node?: Maybe<CmdbObjectAttribute>;
|
|
4909
|
-
};
|
|
4910
|
-
export declare type CmdbObjectAttributeValue = {
|
|
4911
|
-
__typename?: 'CmdbObjectAttributeValue';
|
|
4912
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
4913
|
-
};
|
|
4914
|
-
export declare type CmdbObjectAttributeValueConnection = {
|
|
4915
|
-
__typename?: 'CmdbObjectAttributeValueConnection';
|
|
4916
|
-
edges?: Maybe<Array<Maybe<CmdbObjectAttributeValueEdge>>>;
|
|
4917
|
-
nodes?: Maybe<Array<Maybe<CmdbObjectAttributeValue>>>;
|
|
4918
|
-
pageInfo: PageInfo;
|
|
4919
|
-
};
|
|
4920
|
-
export declare type CmdbObjectAttributeValueEdge = {
|
|
4921
|
-
__typename?: 'CmdbObjectAttributeValueEdge';
|
|
4922
|
-
cursor: Scalars['String']['output'];
|
|
4923
|
-
node?: Maybe<CmdbObjectAttributeValue>;
|
|
4924
|
-
};
|
|
4925
4876
|
export declare type CodeInJira = {
|
|
4926
4877
|
__typename?: 'CodeInJira';
|
|
4927
4878
|
siteConfiguration?: Maybe<CodeInJiraSiteConfiguration>;
|
|
@@ -5979,6 +5930,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
5979
5930
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
5980
5931
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
5981
5932
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
5933
|
+
topScorecards?: Maybe<CompassScorecardConnection>;
|
|
5982
5934
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
5983
5935
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
5984
5936
|
};
|
|
@@ -6143,6 +6095,12 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
6143
6095
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
6144
6096
|
input: CompassTeamDataInput;
|
|
6145
6097
|
};
|
|
6098
|
+
export declare type CompassCatalogQueryApiTopScorecardsArgs = {
|
|
6099
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6100
|
+
cloudId: Scalars['ID']['input'];
|
|
6101
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6102
|
+
query?: InputMaybe<CompassTopScorecardsQuery>;
|
|
6103
|
+
};
|
|
6146
6104
|
export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
6147
6105
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6148
6106
|
componentId: Scalars['ID']['input'];
|
|
@@ -9737,6 +9695,16 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
9737
9695
|
cursor: Scalars['String']['output'];
|
|
9738
9696
|
node?: Maybe<CompassTeamMetricSource>;
|
|
9739
9697
|
};
|
|
9698
|
+
export declare type CompassTopScorecardsQuery = {
|
|
9699
|
+
filter?: InputMaybe<CompassTopScorecardsQueryFilter>;
|
|
9700
|
+
sort?: InputMaybe<CompassTopScorecardsQuerySort>;
|
|
9701
|
+
};
|
|
9702
|
+
export declare type CompassTopScorecardsQueryFilter = {
|
|
9703
|
+
teams?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
9704
|
+
};
|
|
9705
|
+
export declare type CompassTopScorecardsQuerySort = {
|
|
9706
|
+
order?: InputMaybe<CompassScorecardQuerySortOrder>;
|
|
9707
|
+
};
|
|
9740
9708
|
export declare type CompassUnsetEntityPropertyInput = {
|
|
9741
9709
|
cloudId: Scalars['ID']['input'];
|
|
9742
9710
|
key: Scalars['String']['input'];
|
|
@@ -82109,6 +82077,8 @@ export declare type Mutation = {
|
|
|
82109
82077
|
newPage?: Maybe<NewPagePayload>;
|
|
82110
82078
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
82111
82079
|
notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
|
|
82080
|
+
offlineUserAuthToken?: Maybe<OfflineUserAuthTokenResponse>;
|
|
82081
|
+
offlineUserAuthTokenForExtension?: Maybe<OfflineUserAuthTokenResponse>;
|
|
82112
82082
|
openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
82113
82083
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
82114
82084
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
@@ -82211,6 +82181,9 @@ export declare type Mutation = {
|
|
|
82211
82181
|
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
82212
82182
|
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
82213
82183
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
82184
|
+
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
82185
|
+
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
82186
|
+
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
82214
82187
|
startSprint?: Maybe<SprintResponse>;
|
|
82215
82188
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
82216
82189
|
team?: Maybe<TeamMutation>;
|
|
@@ -83646,6 +83619,12 @@ export declare type MutationNewPageArgs = {
|
|
|
83646
83619
|
export declare type MutationNotifyUsersOnFirstViewArgs = {
|
|
83647
83620
|
contentId: Scalars['ID']['input'];
|
|
83648
83621
|
};
|
|
83622
|
+
export declare type MutationOfflineUserAuthTokenArgs = {
|
|
83623
|
+
input: OfflineUserAuthTokenInput;
|
|
83624
|
+
};
|
|
83625
|
+
export declare type MutationOfflineUserAuthTokenForExtensionArgs = {
|
|
83626
|
+
input: OfflineUserAuthTokenForExtensionInput;
|
|
83627
|
+
};
|
|
83649
83628
|
export declare type MutationOpenUpSpacePermissionsArgs = {
|
|
83650
83629
|
spaceKey: Scalars['String']['input'];
|
|
83651
83630
|
};
|
|
@@ -83964,6 +83943,15 @@ export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
|
83964
83943
|
export declare type MutationSplitIssueArgs = {
|
|
83965
83944
|
input?: InputMaybe<SplitIssueInput>;
|
|
83966
83945
|
};
|
|
83946
|
+
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
83947
|
+
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
83948
|
+
};
|
|
83949
|
+
export declare type MutationStakeholderComms_RemoveStakeholderAssignmentArgs = {
|
|
83950
|
+
stakeholderAssignmentInput: StakeholderCommsStakeholderAssignmentIdInput;
|
|
83951
|
+
};
|
|
83952
|
+
export declare type MutationStakeholderComms_UpdateStakeholderArgs = {
|
|
83953
|
+
updateStakeholderInput: StakeholderCommsUpdateStakeholderInput;
|
|
83954
|
+
};
|
|
83967
83955
|
export declare type MutationStartSprintArgs = {
|
|
83968
83956
|
input?: InputMaybe<StartSprintInput>;
|
|
83969
83957
|
};
|
|
@@ -84589,6 +84577,21 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
84589
84577
|
description?: Maybe<Scalars['String']['output']>;
|
|
84590
84578
|
key: Scalars['String']['output'];
|
|
84591
84579
|
};
|
|
84580
|
+
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
84581
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
84582
|
+
extensionId: Scalars['ID']['input'];
|
|
84583
|
+
userId: Scalars['String']['input'];
|
|
84584
|
+
};
|
|
84585
|
+
export declare type OfflineUserAuthTokenInput = {
|
|
84586
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
84587
|
+
userId: Scalars['String']['input'];
|
|
84588
|
+
};
|
|
84589
|
+
export declare type OfflineUserAuthTokenResponse = Payload & {
|
|
84590
|
+
__typename?: 'OfflineUserAuthTokenResponse';
|
|
84591
|
+
authToken?: Maybe<AuthToken>;
|
|
84592
|
+
errors?: Maybe<Array<MutationError>>;
|
|
84593
|
+
success: Scalars['Boolean']['output'];
|
|
84594
|
+
};
|
|
84592
84595
|
export declare type OnboardingState = {
|
|
84593
84596
|
__typename?: 'OnboardingState';
|
|
84594
84597
|
key: Scalars['String']['output'];
|
|
@@ -87024,7 +87027,6 @@ export declare type Query = {
|
|
|
87024
87027
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
87025
87028
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
87026
87029
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
87027
|
-
cmdb_getCmdbObjectsByIds?: Maybe<Array<Maybe<CmdbObject>>>;
|
|
87028
87030
|
codeInJira?: Maybe<CodeInJira>;
|
|
87029
87031
|
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
87030
87032
|
collabDraft?: Maybe<CollabDraft>;
|
|
@@ -87476,7 +87478,7 @@ export declare type Query = {
|
|
|
87476
87478
|
loom_settings?: Maybe<LoomSettings>;
|
|
87477
87479
|
loom_space?: Maybe<LoomSpace>;
|
|
87478
87480
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
87479
|
-
loom_spacesSearch
|
|
87481
|
+
loom_spacesSearch?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
87480
87482
|
loom_video?: Maybe<LoomVideo>;
|
|
87481
87483
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
87482
87484
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
@@ -87632,6 +87634,9 @@ export declare type Query = {
|
|
|
87632
87634
|
spf_dependency?: Maybe<SpfDependency>;
|
|
87633
87635
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
87634
87636
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
87637
|
+
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
87638
|
+
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
87639
|
+
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
87635
87640
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
87636
87641
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
87637
87642
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -87964,9 +87969,6 @@ export declare type QueryClassificationLevelArgs = {
|
|
|
87964
87969
|
export declare type QueryClassificationLevelsArgs = {
|
|
87965
87970
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
87966
87971
|
};
|
|
87967
|
-
export declare type QueryCmdb_GetCmdbObjectsByIdsArgs = {
|
|
87968
|
-
ids: Array<Scalars['ID']['input']>;
|
|
87969
|
-
};
|
|
87970
87972
|
export declare type QueryCodeInJiraArgs = {
|
|
87971
87973
|
cloudId: Scalars['ID']['input'];
|
|
87972
87974
|
};
|
|
@@ -90404,6 +90406,15 @@ export declare type QuerySqlSlowQueryLogsArgs = {
|
|
|
90404
90406
|
interval: QueryInterval;
|
|
90405
90407
|
queryType: Array<QueryType>;
|
|
90406
90408
|
};
|
|
90409
|
+
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
90410
|
+
paginatedAssignmentByStakeholderIdInput: StakeholderCommsPaginatedAssignmentByStakeholderInput;
|
|
90411
|
+
};
|
|
90412
|
+
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
90413
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
90414
|
+
};
|
|
90415
|
+
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
90416
|
+
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
90417
|
+
};
|
|
90407
90418
|
export declare type QueryStalePagesArgs = {
|
|
90408
90419
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
90409
90420
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -92623,6 +92634,7 @@ export declare enum Scope {
|
|
|
92623
92634
|
PullRequest = "PULL_REQUEST",
|
|
92624
92635
|
PullRequestWrite = "PULL_REQUEST_WRITE",
|
|
92625
92636
|
ReadAccount = "READ_ACCOUNT",
|
|
92637
|
+
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
92626
92638
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
92627
92639
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
92628
92640
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
@@ -95669,6 +95681,7 @@ export declare type SmartsRecommendedObject = {
|
|
|
95669
95681
|
__typename?: 'SmartsRecommendedObject';
|
|
95670
95682
|
id: Scalars['ID']['output'];
|
|
95671
95683
|
object?: Maybe<SmartsRecommendedObjectData>;
|
|
95684
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
95672
95685
|
score?: Maybe<Scalars['Float']['output']>;
|
|
95673
95686
|
};
|
|
95674
95687
|
export declare type SmartsRecommendedObjectData = ConfluenceBlogPost | ConfluencePage;
|
|
@@ -96469,11 +96482,12 @@ export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
|
96469
96482
|
};
|
|
96470
96483
|
export declare type SpfComment = {
|
|
96471
96484
|
__typename?: 'SpfComment';
|
|
96472
|
-
createdAt
|
|
96485
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96473
96486
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
96474
96487
|
data: Scalars['String']['output'];
|
|
96488
|
+
dependencyId: Scalars['String']['output'];
|
|
96475
96489
|
id: Scalars['ID']['output'];
|
|
96476
|
-
updatedAt
|
|
96490
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96477
96491
|
};
|
|
96478
96492
|
export declare type SpfCommentConnection = {
|
|
96479
96493
|
__typename?: 'SpfCommentConnection';
|
|
@@ -96527,9 +96541,9 @@ export declare type SpfDeleteDependencyPayload = Payload & {
|
|
|
96527
96541
|
export declare type SpfDependency = Node & {
|
|
96528
96542
|
__typename?: 'SpfDependency';
|
|
96529
96543
|
comments?: Maybe<SpfCommentConnection>;
|
|
96530
|
-
createdAt
|
|
96544
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96531
96545
|
createdBy?: Maybe<User>;
|
|
96532
|
-
createdByUserId
|
|
96546
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
96533
96547
|
description?: Maybe<Scalars['String']['output']>;
|
|
96534
96548
|
id: Scalars['ID']['output'];
|
|
96535
96549
|
impactedWork?: Maybe<SpfImpactedWork>;
|
|
@@ -96548,7 +96562,7 @@ export declare type SpfDependency = Node & {
|
|
|
96548
96562
|
requestingTeamId?: Maybe<Scalars['String']['output']>;
|
|
96549
96563
|
status: SpfDependencyStatus;
|
|
96550
96564
|
targetDate?: Maybe<SpfTargetDate>;
|
|
96551
|
-
updatedAt
|
|
96565
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96552
96566
|
updatedBy?: Maybe<User>;
|
|
96553
96567
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
96554
96568
|
};
|
|
@@ -96593,7 +96607,8 @@ export declare enum SpfPriority {
|
|
|
96593
96607
|
export declare type SpfRelatedContent = {
|
|
96594
96608
|
__typename?: 'SpfRelatedContent';
|
|
96595
96609
|
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
96596
|
-
attachedDateTime
|
|
96610
|
+
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
96611
|
+
dependencyId: Scalars['String']['output'];
|
|
96597
96612
|
id: Scalars['ID']['output'];
|
|
96598
96613
|
url: Scalars['URL']['output'];
|
|
96599
96614
|
};
|
|
@@ -96770,6 +96785,153 @@ export declare type SprintWithStatistics = BaseSprint & {
|
|
|
96770
96785
|
sprintState: SprintState;
|
|
96771
96786
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
96772
96787
|
};
|
|
96788
|
+
export declare enum StakeholderCommsAddedFromType {
|
|
96789
|
+
Jsm = "JSM",
|
|
96790
|
+
Statuspage = "STATUSPAGE"
|
|
96791
|
+
}
|
|
96792
|
+
export declare type StakeholderCommsAssignment = {
|
|
96793
|
+
__typename?: 'StakeholderCommsAssignment';
|
|
96794
|
+
addedFrom?: Maybe<StakeholderCommsAddedFromType>;
|
|
96795
|
+
assignmentType?: Maybe<StakeholderCommsAssignmentType>;
|
|
96796
|
+
externalAssignmentId?: Maybe<Scalars['String']['output']>;
|
|
96797
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
96798
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96799
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
96800
|
+
};
|
|
96801
|
+
export declare type StakeholderCommsAssignmentIdInput = {
|
|
96802
|
+
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
96803
|
+
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
96804
|
+
externalAssignmentId?: InputMaybe<Scalars['String']['input']>;
|
|
96805
|
+
};
|
|
96806
|
+
export declare enum StakeholderCommsAssignmentType {
|
|
96807
|
+
Asset = "ASSET",
|
|
96808
|
+
Incident = "INCIDENT",
|
|
96809
|
+
Org = "ORG",
|
|
96810
|
+
Page = "PAGE",
|
|
96811
|
+
Product = "PRODUCT",
|
|
96812
|
+
Services = "SERVICES",
|
|
96813
|
+
Site = "SITE"
|
|
96814
|
+
}
|
|
96815
|
+
export declare type StakeholderCommsCreateStakeholderInput = {
|
|
96816
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
96817
|
+
addedFrom: StakeholderCommsAddedFromType;
|
|
96818
|
+
assignmentType: StakeholderCommsAssignmentType;
|
|
96819
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
96820
|
+
externalAssignmentId: Scalars['String']['input'];
|
|
96821
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
96822
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
96823
|
+
preference: StakeholderCommsPreferencesInput;
|
|
96824
|
+
skipConfirmation: Scalars['Boolean']['input'];
|
|
96825
|
+
stakeholderType: StakeholderCommsStakeholderType;
|
|
96826
|
+
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
96827
|
+
};
|
|
96828
|
+
export declare type StakeholderCommsModePreference = {
|
|
96829
|
+
__typename?: 'StakeholderCommsModePreference';
|
|
96830
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
96831
|
+
};
|
|
96832
|
+
export declare type StakeholderCommsModePreferenceInput = {
|
|
96833
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96834
|
+
};
|
|
96835
|
+
export declare type StakeholderCommsNotificationPreference = {
|
|
96836
|
+
__typename?: 'StakeholderCommsNotificationPreference';
|
|
96837
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
96838
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
96839
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96840
|
+
phoneCountry?: Maybe<Scalars['String']['output']>;
|
|
96841
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
96842
|
+
preference?: Maybe<StakeholderCommsPreferences>;
|
|
96843
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
96844
|
+
webhook?: Maybe<Scalars['String']['output']>;
|
|
96845
|
+
};
|
|
96846
|
+
export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
96847
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
96848
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
96849
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
96850
|
+
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
96851
|
+
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
96852
|
+
};
|
|
96853
|
+
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
96854
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
96855
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
96856
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
96857
|
+
};
|
|
96858
|
+
export declare type StakeholderCommsPaginatedAssignmentResults = {
|
|
96859
|
+
__typename?: 'StakeholderCommsPaginatedAssignmentResults';
|
|
96860
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96861
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
96862
|
+
results?: Maybe<Array<Maybe<StakeholderCommsAssignment>>>;
|
|
96863
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
96864
|
+
};
|
|
96865
|
+
export declare type StakeholderCommsPaginatedStakeholderInput = {
|
|
96866
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
96867
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
96868
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
96869
|
+
};
|
|
96870
|
+
export declare type StakeholderCommsPaginatedStakeholderResults = {
|
|
96871
|
+
__typename?: 'StakeholderCommsPaginatedStakeholderResults';
|
|
96872
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
96873
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96874
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
96875
|
+
results?: Maybe<Array<Maybe<StakeholderCommsStakeholder>>>;
|
|
96876
|
+
};
|
|
96877
|
+
export declare type StakeholderCommsPreferences = {
|
|
96878
|
+
__typename?: 'StakeholderCommsPreferences';
|
|
96879
|
+
email?: Maybe<StakeholderCommsModePreference>;
|
|
96880
|
+
sms?: Maybe<StakeholderCommsModePreference>;
|
|
96881
|
+
webhook?: Maybe<StakeholderCommsModePreference>;
|
|
96882
|
+
};
|
|
96883
|
+
export declare type StakeholderCommsPreferencesInput = {
|
|
96884
|
+
email?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
96885
|
+
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
96886
|
+
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
96887
|
+
};
|
|
96888
|
+
export declare type StakeholderCommsStakeholder = {
|
|
96889
|
+
__typename?: 'StakeholderCommsStakeholder';
|
|
96890
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
96891
|
+
id: Scalars['ID']['output'];
|
|
96892
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96893
|
+
notificationPreference?: Maybe<StakeholderCommsNotificationPreference>;
|
|
96894
|
+
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
96895
|
+
status?: Maybe<StakeholderCommsStakeholderStatus>;
|
|
96896
|
+
type?: Maybe<StakeholderCommsStakeholderType>;
|
|
96897
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
96898
|
+
};
|
|
96899
|
+
export declare type StakeholderCommsStakeholderAssignmentIdInput = {
|
|
96900
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
96901
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
96902
|
+
};
|
|
96903
|
+
export declare type StakeholderCommsStakeholderAssignmentResponse = {
|
|
96904
|
+
__typename?: 'StakeholderCommsStakeholderAssignmentResponse';
|
|
96905
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
96906
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96907
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
96908
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
96909
|
+
};
|
|
96910
|
+
export declare type StakeholderCommsStakeholderIdInput = {
|
|
96911
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
96912
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
96913
|
+
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
96914
|
+
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
96915
|
+
};
|
|
96916
|
+
export declare type StakeholderCommsStakeholderResponse = {
|
|
96917
|
+
__typename?: 'StakeholderCommsStakeholderResponse';
|
|
96918
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96919
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
96920
|
+
};
|
|
96921
|
+
export declare enum StakeholderCommsStakeholderStatus {
|
|
96922
|
+
Active = "ACTIVE",
|
|
96923
|
+
Deleted = "DELETED",
|
|
96924
|
+
Quarantined = "QUARANTINED"
|
|
96925
|
+
}
|
|
96926
|
+
export declare enum StakeholderCommsStakeholderType {
|
|
96927
|
+
External = "EXTERNAL",
|
|
96928
|
+
Internal = "INTERNAL"
|
|
96929
|
+
}
|
|
96930
|
+
export declare type StakeholderCommsUpdateStakeholderInput = {
|
|
96931
|
+
notificationPreference?: InputMaybe<StakeholderCommsNotificationPreferenceInput>;
|
|
96932
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
96933
|
+
status?: InputMaybe<StakeholderCommsStakeholderStatus>;
|
|
96934
|
+
};
|
|
96773
96935
|
export declare type StalePagePayload = {
|
|
96774
96936
|
__typename?: 'StalePagePayload';
|
|
96775
96937
|
lastActivityDate: Scalars['String']['output'];
|
|
@@ -99862,6 +100024,7 @@ export declare enum TrelloCardBatchStatus {
|
|
|
99862
100024
|
}
|
|
99863
100025
|
export declare type TrelloCardClause = {
|
|
99864
100026
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
100027
|
+
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
99865
100028
|
list?: InputMaybe<TrelloCardListClause>;
|
|
99866
100029
|
};
|
|
99867
100030
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -99873,6 +100036,9 @@ export declare type TrelloCardClosedClause = {
|
|
|
99873
100036
|
export declare type TrelloCardCommand = {
|
|
99874
100037
|
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
99875
100038
|
};
|
|
100039
|
+
export declare type TrelloCardCompleteClause = {
|
|
100040
|
+
completed: Scalars['Boolean']['input'];
|
|
100041
|
+
};
|
|
99876
100042
|
export declare type TrelloCardConnection = {
|
|
99877
100043
|
__typename?: 'TrelloCardConnection';
|
|
99878
100044
|
edges?: Maybe<Array<TrelloCardEdge>>;
|