@forge/cli-shared 8.11.1-next.2 → 8.11.1-next.2-experimental-2969aa0
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 +9 -0
- package/out/graphql/graphql-types.d.ts +510 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +93 -30
- package/package.json +2 -2
|
@@ -2816,6 +2816,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
2816
2816
|
forgeCreator?: Maybe<Scalars['String']['output']>;
|
|
2817
2817
|
icon?: Maybe<Scalars['String']['output']>;
|
|
2818
2818
|
id: Scalars['ID']['output'];
|
|
2819
|
+
identityAccount?: Maybe<User>;
|
|
2819
2820
|
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
2820
2821
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
2821
2822
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2865,6 +2866,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2865
2866
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
2866
2867
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2867
2868
|
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
2869
|
+
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
2868
2870
|
name: Scalars['String']['output'];
|
|
2869
2871
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
2870
2872
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -3238,7 +3240,10 @@ export declare type AgentStudioJobExecutionHistoryNode = {
|
|
|
3238
3240
|
datasetName?: Maybe<Scalars['String']['output']>;
|
|
3239
3241
|
failureCount?: Maybe<Scalars['Int']['output']>;
|
|
3240
3242
|
jobId: Scalars['ID']['output'];
|
|
3243
|
+
judgeFailureCount?: Maybe<Scalars['Int']['output']>;
|
|
3244
|
+
judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
|
|
3241
3245
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
3246
|
+
resolutionRate?: Maybe<Scalars['Float']['output']>;
|
|
3242
3247
|
runId: Scalars['ID']['output'];
|
|
3243
3248
|
runNumber?: Maybe<Scalars['Int']['output']>;
|
|
3244
3249
|
startedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -3342,6 +3347,7 @@ export declare type AgentStudioScenario = {
|
|
|
3342
3347
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3343
3348
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
3344
3349
|
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
3350
|
+
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
3345
3351
|
name: Scalars['String']['output'];
|
|
3346
3352
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
3347
3353
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -7109,6 +7115,75 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
7109
7115
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7110
7116
|
permissionFilter?: InputMaybe<BitbucketPermission>;
|
|
7111
7117
|
};
|
|
7118
|
+
export declare type BlockServiceEvent = {
|
|
7119
|
+
__typename?: 'BlockServiceEvent';
|
|
7120
|
+
event: BlockServiceEventType;
|
|
7121
|
+
hydration: BlockServiceHydration;
|
|
7122
|
+
id: BlockServiceTargetIdentifier;
|
|
7123
|
+
imageData?: Maybe<BlockServiceImageData>;
|
|
7124
|
+
service: BlockServiceTdpService;
|
|
7125
|
+
shardingContext?: Maybe<BlockServiceShardingContext>;
|
|
7126
|
+
systemData?: Maybe<BlockServiceSystemData>;
|
|
7127
|
+
};
|
|
7128
|
+
export declare enum BlockServiceEventType {
|
|
7129
|
+
Create = "CREATE",
|
|
7130
|
+
Delete = "DELETE",
|
|
7131
|
+
Update = "UPDATE"
|
|
7132
|
+
}
|
|
7133
|
+
export declare enum BlockServiceHydration {
|
|
7134
|
+
Full = "FULL",
|
|
7135
|
+
Metadata = "METADATA",
|
|
7136
|
+
None = "NONE"
|
|
7137
|
+
}
|
|
7138
|
+
export declare type BlockServiceImageData = {
|
|
7139
|
+
__typename?: 'BlockServiceImageData';
|
|
7140
|
+
newImage?: Maybe<Array<BlockServiceItemData>>;
|
|
7141
|
+
oldImage?: Maybe<Array<BlockServiceItemData>>;
|
|
7142
|
+
};
|
|
7143
|
+
export declare type BlockServiceItemData = {
|
|
7144
|
+
__typename?: 'BlockServiceItemData';
|
|
7145
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7146
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
7147
|
+
};
|
|
7148
|
+
export declare type BlockServiceItemIdentifier = {
|
|
7149
|
+
__typename?: 'BlockServiceItemIdentifier';
|
|
7150
|
+
id: Scalars['String']['output'];
|
|
7151
|
+
itemType?: Maybe<Scalars['String']['output']>;
|
|
7152
|
+
itemTypeVersion?: Maybe<Scalars['String']['output']>;
|
|
7153
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
7154
|
+
};
|
|
7155
|
+
export declare enum BlockServicePlatformType {
|
|
7156
|
+
Bucket = "BUCKET",
|
|
7157
|
+
Node = "NODE",
|
|
7158
|
+
Object = "OBJECT",
|
|
7159
|
+
Partition = "PARTITION",
|
|
7160
|
+
Schema = "SCHEMA"
|
|
7161
|
+
}
|
|
7162
|
+
export declare type BlockServiceShardingContext = {
|
|
7163
|
+
__typename?: 'BlockServiceShardingContext';
|
|
7164
|
+
ownerEntity?: Maybe<Scalars['String']['output']>;
|
|
7165
|
+
partitionId: Scalars['String']['output'];
|
|
7166
|
+
productHost?: Maybe<Scalars['String']['output']>;
|
|
7167
|
+
providerHost?: Maybe<Scalars['String']['output']>;
|
|
7168
|
+
};
|
|
7169
|
+
export declare type BlockServiceSystemData = {
|
|
7170
|
+
__typename?: 'BlockServiceSystemData';
|
|
7171
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7172
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
7173
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7174
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
7175
|
+
};
|
|
7176
|
+
export declare type BlockServiceTargetIdentifier = {
|
|
7177
|
+
__typename?: 'BlockServiceTargetIdentifier';
|
|
7178
|
+
itemIdentifier?: Maybe<BlockServiceItemIdentifier>;
|
|
7179
|
+
platformType?: Maybe<BlockServicePlatformType>;
|
|
7180
|
+
};
|
|
7181
|
+
export declare enum BlockServiceTdpService {
|
|
7182
|
+
Control = "CONTROL",
|
|
7183
|
+
Ers = "ERS",
|
|
7184
|
+
Os = "OS",
|
|
7185
|
+
Sql = "SQL"
|
|
7186
|
+
}
|
|
7112
7187
|
export declare type BlockSmartLink = SmartLink & {
|
|
7113
7188
|
__typename?: 'BlockSmartLink';
|
|
7114
7189
|
url: Scalars['String']['output'];
|
|
@@ -10521,6 +10596,18 @@ export declare type CommerceEntitlementRelationship = {
|
|
|
10521
10596
|
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
10522
10597
|
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
10523
10598
|
};
|
|
10599
|
+
export declare type CommerceExpCcpQuery = {
|
|
10600
|
+
__typename?: 'CommerceExpCcpQuery';
|
|
10601
|
+
commerceExp_testField?: Maybe<CommerceExpTestField>;
|
|
10602
|
+
};
|
|
10603
|
+
export declare type CommerceExpCcpQueryCommerceExp_TestFieldArgs = {
|
|
10604
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
10605
|
+
};
|
|
10606
|
+
export declare type CommerceExpTestField = {
|
|
10607
|
+
__typename?: 'CommerceExpTestField';
|
|
10608
|
+
age?: Maybe<Scalars['Int']['output']>;
|
|
10609
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
10610
|
+
};
|
|
10524
10611
|
export declare type CommerceExperienceCapability = {
|
|
10525
10612
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
10526
10613
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18802,6 +18889,7 @@ export declare type ConfluenceNbmVerificationEntry = {
|
|
|
18802
18889
|
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
18803
18890
|
screenshotId?: Maybe<Scalars['ID']['output']>;
|
|
18804
18891
|
screenshotPageId?: Maybe<Scalars['ID']['output']>;
|
|
18892
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
18805
18893
|
};
|
|
18806
18894
|
export declare type ConfluenceNbmVerificationEntryInput = {
|
|
18807
18895
|
id: Scalars['ID']['input'];
|
|
@@ -19299,7 +19387,6 @@ export declare type ConfluencePersonWithPermissionsConnection = {
|
|
|
19299
19387
|
export declare type ConfluencePlaylist = {
|
|
19300
19388
|
__typename?: 'ConfluencePlaylist';
|
|
19301
19389
|
accountId: Scalars['ID']['output'];
|
|
19302
|
-
preference: ConfluencePlaylistPreference;
|
|
19303
19390
|
tracks: ConfluencePaginatedTracks;
|
|
19304
19391
|
user?: Maybe<Person>;
|
|
19305
19392
|
};
|
|
@@ -19316,11 +19403,6 @@ export declare type ConfluencePlaylistPageInfo = {
|
|
|
19316
19403
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
19317
19404
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
19318
19405
|
};
|
|
19319
|
-
export declare type ConfluencePlaylistPreference = {
|
|
19320
|
-
__typename?: 'ConfluencePlaylistPreference';
|
|
19321
|
-
length: ConfluenceLength;
|
|
19322
|
-
tone: ConfluenceTone;
|
|
19323
|
-
};
|
|
19324
19406
|
export declare enum ConfluencePolicyEnabledStatus {
|
|
19325
19407
|
Disabled = "DISABLED",
|
|
19326
19408
|
Enabled = "ENABLED",
|
|
@@ -23786,6 +23868,7 @@ export declare type CplsCapacityPlanningPeopleView = {
|
|
|
23786
23868
|
contributor?: Maybe<CplsContributor>;
|
|
23787
23869
|
contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
|
|
23788
23870
|
contributors?: Maybe<CplsContributorConnection>;
|
|
23871
|
+
filters?: Maybe<CplsFilters>;
|
|
23789
23872
|
id: Scalars['ID']['output'];
|
|
23790
23873
|
timeCells?: Maybe<Array<CplsTimeCell>>;
|
|
23791
23874
|
viewSettings?: Maybe<CplsViewSettings>;
|
|
@@ -23810,16 +23893,20 @@ export declare type CplsContribution = {
|
|
|
23810
23893
|
endDate: Scalars['Date']['output'];
|
|
23811
23894
|
startDate: Scalars['Date']['output'];
|
|
23812
23895
|
value?: Maybe<Scalars['Float']['output']>;
|
|
23896
|
+
valueFormats?: Maybe<CplsValueFormats>;
|
|
23813
23897
|
valueType: CplsContributionValueType;
|
|
23814
23898
|
};
|
|
23815
23899
|
export declare type CplsContributionAggregation = {
|
|
23816
23900
|
__typename?: 'CplsContributionAggregation';
|
|
23817
23901
|
availability: Scalars['Float']['output'];
|
|
23902
|
+
availabilityFormats?: Maybe<CplsValueFormats>;
|
|
23818
23903
|
endDate: Scalars['Date']['output'];
|
|
23819
23904
|
startDate: Scalars['Date']['output'];
|
|
23905
|
+
totalContributionFormats?: Maybe<CplsValueFormats>;
|
|
23820
23906
|
totalContributionHours: Scalars['Float']['output'];
|
|
23821
23907
|
};
|
|
23822
23908
|
export declare enum CplsContributionValueType {
|
|
23909
|
+
Days = "DAYS",
|
|
23823
23910
|
Hours = "HOURS",
|
|
23824
23911
|
Percentage = "PERCENTAGE"
|
|
23825
23912
|
}
|
|
@@ -23964,7 +24051,15 @@ export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
|
|
|
23964
24051
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
23965
24052
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
23966
24053
|
};
|
|
23967
|
-
export declare type
|
|
24054
|
+
export declare type CplsFilterConfigurationType = CplsFilterConfiguration | QueryError;
|
|
24055
|
+
export declare type CplsFilters = {
|
|
24056
|
+
__typename?: 'CplsFilters';
|
|
24057
|
+
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
24058
|
+
};
|
|
24059
|
+
export declare type CplsFiltersInput = {
|
|
24060
|
+
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24061
|
+
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
24062
|
+
};
|
|
23968
24063
|
export declare type CplsMutationErrorExtension = MutationErrorExtension & {
|
|
23969
24064
|
__typename?: 'CplsMutationErrorExtension';
|
|
23970
24065
|
errorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -24004,8 +24099,21 @@ export declare type CplsUpdateCustomContributionTargetPayload = Payload & {
|
|
|
24004
24099
|
errors?: Maybe<Array<MutationError>>;
|
|
24005
24100
|
success: Scalars['Boolean']['output'];
|
|
24006
24101
|
};
|
|
24007
|
-
export declare type
|
|
24008
|
-
|
|
24102
|
+
export declare type CplsUpdateFiltersInput = {
|
|
24103
|
+
filters: CplsFiltersInput;
|
|
24104
|
+
scopeId: Scalars['ID']['input'];
|
|
24105
|
+
};
|
|
24106
|
+
export declare type CplsUpdateFiltersPayload = Payload & {
|
|
24107
|
+
__typename?: 'CplsUpdateFiltersPayload';
|
|
24108
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24109
|
+
filters?: Maybe<CplsFilters>;
|
|
24110
|
+
success: Scalars['Boolean']['output'];
|
|
24111
|
+
};
|
|
24112
|
+
export declare type CplsValueFormats = {
|
|
24113
|
+
__typename?: 'CplsValueFormats';
|
|
24114
|
+
days?: Maybe<Scalars['Float']['output']>;
|
|
24115
|
+
hours?: Maybe<Scalars['Float']['output']>;
|
|
24116
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
24009
24117
|
};
|
|
24010
24118
|
export declare type CplsViewSettings = {
|
|
24011
24119
|
__typename?: 'CplsViewSettings';
|
|
@@ -26592,6 +26700,7 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
26592
26700
|
__typename?: 'CustomerServiceTemplateForm';
|
|
26593
26701
|
defaultRouteRule?: Maybe<CustomerServiceRoutingRule>;
|
|
26594
26702
|
description?: Maybe<Scalars['String']['output']>;
|
|
26703
|
+
enabledChannels?: Maybe<Array<CustomerServiceTemplateFormEnabledChannels>>;
|
|
26595
26704
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
26596
26705
|
helpCenterId: Scalars['ID']['output'];
|
|
26597
26706
|
id: Scalars['ID']['output'];
|
|
@@ -26599,6 +26708,11 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
26599
26708
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26600
26709
|
name?: Maybe<Scalars['String']['output']>;
|
|
26601
26710
|
};
|
|
26711
|
+
export declare enum CustomerServiceTemplateFormChannelType {
|
|
26712
|
+
Email = "EMAIL",
|
|
26713
|
+
Embed = "EMBED",
|
|
26714
|
+
SupportSite = "SUPPORT_SITE"
|
|
26715
|
+
}
|
|
26602
26716
|
export declare type CustomerServiceTemplateFormConnection = {
|
|
26603
26717
|
__typename?: 'CustomerServiceTemplateFormConnection';
|
|
26604
26718
|
edges: Array<CustomerServiceTemplateFormEdge>;
|
|
@@ -26629,6 +26743,15 @@ export declare type CustomerServiceTemplateFormEdge = {
|
|
|
26629
26743
|
cursor: Scalars['String']['output'];
|
|
26630
26744
|
node?: Maybe<CustomerServiceTemplateForm>;
|
|
26631
26745
|
};
|
|
26746
|
+
export declare type CustomerServiceTemplateFormEnabledChannels = {
|
|
26747
|
+
__typename?: 'CustomerServiceTemplateFormEnabledChannels';
|
|
26748
|
+
channelType: CustomerServiceTemplateFormChannelType;
|
|
26749
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26750
|
+
};
|
|
26751
|
+
export declare type CustomerServiceTemplateFormEnabledChannelsInput = {
|
|
26752
|
+
channelType: CustomerServiceTemplateFormChannelType;
|
|
26753
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26754
|
+
};
|
|
26632
26755
|
export declare type CustomerServiceTemplateFormFilterInput = {
|
|
26633
26756
|
isAiFillable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26634
26757
|
};
|
|
@@ -26636,6 +26759,7 @@ export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemp
|
|
|
26636
26759
|
export declare type CustomerServiceTemplateFormUpdateInput = {
|
|
26637
26760
|
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
26638
26761
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
26762
|
+
enabledChannels?: InputMaybe<Array<CustomerServiceTemplateFormEnabledChannelsInput>>;
|
|
26639
26763
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26640
26764
|
};
|
|
26641
26765
|
export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
|
|
@@ -31918,6 +32042,7 @@ export declare enum ExternalSpaceSubtype {
|
|
|
31918
32042
|
Business = "BUSINESS",
|
|
31919
32043
|
Project = "PROJECT",
|
|
31920
32044
|
ServiceDesk = "SERVICE_DESK",
|
|
32045
|
+
Site = "SITE",
|
|
31921
32046
|
Software = "SOFTWARE",
|
|
31922
32047
|
Space = "SPACE"
|
|
31923
32048
|
}
|
|
@@ -64255,6 +64380,7 @@ export declare type HelpCenterHomePageTitleInput = {
|
|
|
64255
64380
|
};
|
|
64256
64381
|
export declare type HelpCenterHubProductEntityResult = {
|
|
64257
64382
|
__typename?: 'HelpCenterHubProductEntityResult';
|
|
64383
|
+
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
64258
64384
|
entityType: Scalars['String']['output'];
|
|
64259
64385
|
filterCriteria: HelpCenterProductEntityFilterCriteria;
|
|
64260
64386
|
parentFilters?: Maybe<Array<HelpCenterProductEntityFilterOutput>>;
|
|
@@ -64534,6 +64660,7 @@ export declare enum HelpCenterPortalsType {
|
|
|
64534
64660
|
Hidden = "HIDDEN",
|
|
64535
64661
|
Visible = "VISIBLE"
|
|
64536
64662
|
}
|
|
64663
|
+
export declare type HelpCenterProductEntityConnection = HelpObjectStoreProductEntityConnection | QueryError;
|
|
64537
64664
|
export declare type HelpCenterProductEntityFilter = {
|
|
64538
64665
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
64539
64666
|
subEntityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -78237,6 +78364,7 @@ export declare type JiraMutation = {
|
|
|
78237
78364
|
setPlanAutoSchedulerEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
78238
78365
|
setPlanMultiScenarioEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
78239
78366
|
setPlanReleaseEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
78367
|
+
setProjectAccessRequestAllowed?: Maybe<JiraProjectAccessRequestMutationPayload>;
|
|
78240
78368
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
78241
78369
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
78242
78370
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -78767,6 +78895,9 @@ export declare type JiraMutationSetPlanMultiScenarioEnabledArgs = {
|
|
|
78767
78895
|
export declare type JiraMutationSetPlanReleaseEnabledArgs = {
|
|
78768
78896
|
input?: InputMaybe<JiraPlanReleaseFeatureMutationInput>;
|
|
78769
78897
|
};
|
|
78898
|
+
export declare type JiraMutationSetProjectAccessRequestAllowedArgs = {
|
|
78899
|
+
input: JiraSetProjectAccessRequestAllowedPropertyInput;
|
|
78900
|
+
};
|
|
78770
78901
|
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
78771
78902
|
cloudId: Scalars['ID']['input'];
|
|
78772
78903
|
id: Scalars['ID']['input'];
|
|
@@ -79222,6 +79353,7 @@ export declare enum JiraNotificationCategoryType {
|
|
|
79222
79353
|
IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
|
|
79223
79354
|
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES",
|
|
79224
79355
|
Recurring = "RECURRING",
|
|
79356
|
+
SpaceAccessRequest = "SPACE_ACCESS_REQUEST",
|
|
79225
79357
|
UserJoin = "USER_JOIN"
|
|
79226
79358
|
}
|
|
79227
79359
|
export declare type JiraNotificationChannel = {
|
|
@@ -79285,6 +79417,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
79285
79417
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
79286
79418
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
79287
79419
|
projectRecapNotification?: Maybe<JiraNotificationPreference>;
|
|
79420
|
+
spaceAccessRequestNotification?: Maybe<JiraNotificationPreference>;
|
|
79288
79421
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
79289
79422
|
};
|
|
79290
79423
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -79313,6 +79446,7 @@ export declare enum JiraNotificationType {
|
|
|
79313
79446
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
79314
79447
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
79315
79448
|
ProjectRecapNotification = "PROJECT_RECAP_NOTIFICATION",
|
|
79449
|
+
SpaceAccessRequestNotification = "SPACE_ACCESS_REQUEST_NOTIFICATION",
|
|
79316
79450
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
79317
79451
|
}
|
|
79318
79452
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -80722,6 +80856,7 @@ export declare type JiraProject = Node & {
|
|
|
80722
80856
|
id: Scalars['ID']['output'];
|
|
80723
80857
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
80724
80858
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80859
|
+
isAccessRequestsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80725
80860
|
isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80726
80861
|
isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80727
80862
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -85558,6 +85693,11 @@ export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
|
85558
85693
|
errors?: Maybe<Array<MutationError>>;
|
|
85559
85694
|
success: Scalars['Boolean']['output'];
|
|
85560
85695
|
};
|
|
85696
|
+
export declare type JiraSetProjectAccessRequestAllowedPropertyInput = {
|
|
85697
|
+
allowAccessRequests: Scalars['Boolean']['input'];
|
|
85698
|
+
cloudId: Scalars['ID']['input'];
|
|
85699
|
+
projectId: Scalars['ID']['input'];
|
|
85700
|
+
};
|
|
85561
85701
|
export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
|
|
85562
85702
|
deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
|
|
85563
85703
|
projectId: Scalars['ID']['input'];
|
|
@@ -99900,6 +100040,7 @@ export declare type Mutation = {
|
|
|
99900
100040
|
cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
|
|
99901
100041
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
99902
100042
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
100043
|
+
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
99903
100044
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
99904
100045
|
createApp?: Maybe<CreateAppResponse>;
|
|
99905
100046
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -100075,8 +100216,12 @@ export declare type Mutation = {
|
|
|
100075
100216
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
100076
100217
|
goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
|
|
100077
100218
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
100219
|
+
goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
|
|
100078
100220
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
100079
100221
|
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
100222
|
+
goals_removeNumericCustomFieldValue?: Maybe<TownsquareGoalsRemoveNumericCustomFieldValuePayload>;
|
|
100223
|
+
goals_removeTextCustomFieldValue?: Maybe<TownsquareGoalsRemoveTextCustomFieldValuePayload>;
|
|
100224
|
+
goals_removeUserCustomFieldValue?: Maybe<TownsquareGoalsRemoveUserCustomFieldValuePayload>;
|
|
100080
100225
|
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
100081
100226
|
goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
|
|
100082
100227
|
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
@@ -100296,10 +100441,14 @@ export declare type Mutation = {
|
|
|
100296
100441
|
projects_editRisk?: Maybe<TownsquareProjectsEditRiskPayload>;
|
|
100297
100442
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
100298
100443
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
100444
|
+
projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
|
|
100299
100445
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
100300
100446
|
projects_removeJiraWorkItemLink?: Maybe<TownsquareProjectsRemoveJiraWorkItemLinkPayload>;
|
|
100301
100447
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
100448
|
+
projects_removeNumericCustomFieldValue?: Maybe<TownsquareProjectsRemoveNumericCustomFieldValuePayload>;
|
|
100302
100449
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
100450
|
+
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
100451
|
+
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
100303
100452
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
100304
100453
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
100305
100454
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
@@ -100313,6 +100462,7 @@ export declare type Mutation = {
|
|
|
100313
100462
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
100314
100463
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
100315
100464
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
100465
|
+
radar_deleteLaborCostEstimateData?: Maybe<RadarDeleteLaborCostEstimateDataResponse>;
|
|
100316
100466
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
100317
100467
|
radar_deleteView?: Maybe<RadarView>;
|
|
100318
100468
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
@@ -101481,6 +101631,9 @@ export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
|
|
|
101481
101631
|
export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
101482
101632
|
input: CplsUpdateCustomContributionTargetInput;
|
|
101483
101633
|
};
|
|
101634
|
+
export declare type MutationCpls_UpdateFiltersArgs = {
|
|
101635
|
+
input: CplsUpdateFiltersInput;
|
|
101636
|
+
};
|
|
101484
101637
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
101485
101638
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
101486
101639
|
};
|
|
@@ -102084,12 +102237,24 @@ export declare type MutationGoals_GrantAccessArgs = {
|
|
|
102084
102237
|
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
102085
102238
|
input: TownsquareGoalsLinkWorkItemInput;
|
|
102086
102239
|
};
|
|
102240
|
+
export declare type MutationGoals_RemoveDropdownCustomFieldValueArgs = {
|
|
102241
|
+
input: TownsquareGoalsRemoveDropdownCustomFieldValueInput;
|
|
102242
|
+
};
|
|
102087
102243
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
102088
102244
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
102089
102245
|
};
|
|
102090
102246
|
export declare type MutationGoals_RemoveMetricTargetArgs = {
|
|
102091
102247
|
input: TownsquareGoalsRemoveMetricTargetInput;
|
|
102092
102248
|
};
|
|
102249
|
+
export declare type MutationGoals_RemoveNumericCustomFieldValueArgs = {
|
|
102250
|
+
input: TownsquareGoalsRemoveNumericCustomFieldValueInput;
|
|
102251
|
+
};
|
|
102252
|
+
export declare type MutationGoals_RemoveTextCustomFieldValueArgs = {
|
|
102253
|
+
input: TownsquareGoalsRemoveTextCustomFieldValueInput;
|
|
102254
|
+
};
|
|
102255
|
+
export declare type MutationGoals_RemoveUserCustomFieldValueArgs = {
|
|
102256
|
+
input: TownsquareGoalsRemoveUserCustomFieldValueInput;
|
|
102257
|
+
};
|
|
102093
102258
|
export declare type MutationGoals_RevokeAccessArgs = {
|
|
102094
102259
|
input: TownsquareGoalRevokeAccessInput;
|
|
102095
102260
|
};
|
|
@@ -102745,6 +102910,9 @@ export declare type MutationProjects_EditUpdateArgs = {
|
|
|
102745
102910
|
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
102746
102911
|
input: TownsquareProjectsRemoveDependencyInput;
|
|
102747
102912
|
};
|
|
102913
|
+
export declare type MutationProjects_RemoveDropdownCustomFieldValueArgs = {
|
|
102914
|
+
input: TownsquareProjectsRemoveDropdownCustomFieldValueInput;
|
|
102915
|
+
};
|
|
102748
102916
|
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
102749
102917
|
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
102750
102918
|
};
|
|
@@ -102754,9 +102922,18 @@ export declare type MutationProjects_RemoveJiraWorkItemLinkArgs = {
|
|
|
102754
102922
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
102755
102923
|
input: TownsquareProjectsRemoveMemberInput;
|
|
102756
102924
|
};
|
|
102925
|
+
export declare type MutationProjects_RemoveNumericCustomFieldValueArgs = {
|
|
102926
|
+
input: TownsquareProjectsRemoveNumericCustomFieldValueInput;
|
|
102927
|
+
};
|
|
102757
102928
|
export declare type MutationProjects_RemoveTeamContributorsArgs = {
|
|
102758
102929
|
input: TownsquareProjectsRemoveTeamContributorsInput;
|
|
102759
102930
|
};
|
|
102931
|
+
export declare type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
102932
|
+
input: TownsquareProjectsRemoveTextCustomFieldValueInput;
|
|
102933
|
+
};
|
|
102934
|
+
export declare type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
102935
|
+
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
102936
|
+
};
|
|
102760
102937
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
102761
102938
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
102762
102939
|
};
|
|
@@ -102804,6 +102981,10 @@ export declare type MutationRadar_DeleteFocusAreaProposalChangesArgs = {
|
|
|
102804
102981
|
cloudId: Scalars['ID']['input'];
|
|
102805
102982
|
input: Array<RadarDeleteFocusAreaProposalChangesInput>;
|
|
102806
102983
|
};
|
|
102984
|
+
export declare type MutationRadar_DeleteLaborCostEstimateDataArgs = {
|
|
102985
|
+
cloudId: Scalars['ID']['input'];
|
|
102986
|
+
input: RadarDeleteLaborCostEstimateDataInput;
|
|
102987
|
+
};
|
|
102807
102988
|
export declare type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
102808
102989
|
cloudId: Scalars['ID']['input'];
|
|
102809
102990
|
input: RadarRoleAssignmentRequest;
|
|
@@ -106484,6 +106665,7 @@ export declare type Query = {
|
|
|
106484
106665
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
106485
106666
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
106486
106667
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
106668
|
+
blockService_health?: Maybe<Scalars['String']['output']>;
|
|
106487
106669
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
106488
106670
|
boardScope?: Maybe<BoardScope>;
|
|
106489
106671
|
buildsByApp?: Maybe<BuildConnection>;
|
|
@@ -106539,6 +106721,7 @@ export declare type Query = {
|
|
|
106539
106721
|
collabToken?: Maybe<CollabTokenResponse>;
|
|
106540
106722
|
collaboratorsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
106541
106723
|
comments?: Maybe<PaginatedCommentList>;
|
|
106724
|
+
commerceExp_ccp?: Maybe<CommerceExpCcpQuery>;
|
|
106542
106725
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
106543
106726
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
106544
106727
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
@@ -106690,7 +106873,7 @@ export declare type Query = {
|
|
|
106690
106873
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
106691
106874
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
106692
106875
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
106693
|
-
cpls_filters?: Maybe<
|
|
106876
|
+
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
106694
106877
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
106695
106878
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
106696
106879
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -107168,6 +107351,10 @@ export declare type Query = {
|
|
|
107168
107351
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
107169
107352
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
107170
107353
|
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
107354
|
+
spf_plan?: Maybe<SpfPlanResult>;
|
|
107355
|
+
spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
|
|
107356
|
+
spf_plans?: Maybe<SpfPlanConnection>;
|
|
107357
|
+
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
107171
107358
|
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
107172
107359
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
107173
107360
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
@@ -108344,6 +108531,9 @@ export declare type QueryCommentsArgs = {
|
|
|
108344
108531
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108345
108532
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
108346
108533
|
};
|
|
108534
|
+
export declare type QueryCommerceExp_CcpArgs = {
|
|
108535
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
108536
|
+
};
|
|
108347
108537
|
export declare type QueryConfluenceArgs = {
|
|
108348
108538
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
108349
108539
|
};
|
|
@@ -109143,7 +109333,7 @@ export declare type QueryCpls_FiltersArgs = {
|
|
|
109143
109333
|
scopeId: Scalars['ID']['input'];
|
|
109144
109334
|
};
|
|
109145
109335
|
export declare type QueryCpls_PeopleViewArgs = {
|
|
109146
|
-
filters?: InputMaybe<
|
|
109336
|
+
filters?: InputMaybe<CplsFiltersInput>;
|
|
109147
109337
|
id: Scalars['ID']['input'];
|
|
109148
109338
|
};
|
|
109149
109339
|
export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
@@ -110903,6 +111093,21 @@ export declare type QuerySpf_GetMediaTokenArgs = {
|
|
|
110903
111093
|
id: Scalars['ID']['input'];
|
|
110904
111094
|
usageType: SpfMediaTokenUsageType;
|
|
110905
111095
|
};
|
|
111096
|
+
export declare type QuerySpf_PlanArgs = {
|
|
111097
|
+
id: Scalars['ID']['input'];
|
|
111098
|
+
};
|
|
111099
|
+
export declare type QuerySpf_PlanScenariosByIdsArgs = {
|
|
111100
|
+
ids: Array<Scalars['ID']['input']>;
|
|
111101
|
+
};
|
|
111102
|
+
export declare type QuerySpf_PlansArgs = {
|
|
111103
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
111104
|
+
cloudId: Scalars['ID']['input'];
|
|
111105
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111106
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
111107
|
+
};
|
|
111108
|
+
export declare type QuerySpf_PlansByIdsArgs = {
|
|
111109
|
+
ids: Array<Scalars['ID']['input']>;
|
|
111110
|
+
};
|
|
110906
111111
|
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
110907
111112
|
cloudId: Scalars['ID']['input'];
|
|
110908
111113
|
url: Scalars['String']['input'];
|
|
@@ -111534,6 +111739,15 @@ export declare type RadarDeleteFocusAreaProposalChangesInput = {
|
|
|
111534
111739
|
changeAri: Scalars['ID']['input'];
|
|
111535
111740
|
positionAri: Scalars['ID']['input'];
|
|
111536
111741
|
};
|
|
111742
|
+
export declare type RadarDeleteLaborCostEstimateDataInput = {
|
|
111743
|
+
defaultAmount: Scalars['Boolean']['input'];
|
|
111744
|
+
importedData: Scalars['Boolean']['input'];
|
|
111745
|
+
};
|
|
111746
|
+
export declare type RadarDeleteLaborCostEstimateDataResponse = {
|
|
111747
|
+
__typename?: 'RadarDeleteLaborCostEstimateDataResponse';
|
|
111748
|
+
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
111749
|
+
success: Scalars['Boolean']['output'];
|
|
111750
|
+
};
|
|
111537
111751
|
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
111538
111752
|
__typename?: 'RadarDynamicFilterOptions';
|
|
111539
111753
|
functionOptions: Array<RadarFunction>;
|
|
@@ -113900,6 +114114,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
113900
114114
|
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
113901
114115
|
latestUserActionTs?: Maybe<Scalars['String']['output']>;
|
|
113902
114116
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114117
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113903
114118
|
pageEntity?: Maybe<ConfluencePage>;
|
|
113904
114119
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113905
114120
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -113943,6 +114158,7 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
113943
114158
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
113944
114159
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113945
114160
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114161
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113946
114162
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113947
114163
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
113948
114164
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
@@ -113965,6 +114181,7 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
113965
114181
|
id: Scalars['ID']['output'];
|
|
113966
114182
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113967
114183
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114184
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113968
114185
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113969
114186
|
title: Scalars['String']['output'];
|
|
113970
114187
|
type: SearchResultType;
|
|
@@ -114123,6 +114340,7 @@ export declare type SearchLinkedResult = SearchResult & {
|
|
|
114123
114340
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
114124
114341
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114125
114342
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114343
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114126
114344
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
114127
114345
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114128
114346
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
@@ -114224,6 +114442,7 @@ export declare type SearchResult = {
|
|
|
114224
114442
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
114225
114443
|
id: Scalars['ID']['output'];
|
|
114226
114444
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114445
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114227
114446
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114228
114447
|
title: Scalars['String']['output'];
|
|
114229
114448
|
type: SearchResultType;
|
|
@@ -114236,6 +114455,7 @@ export declare type SearchResultAssetsObject = SearchResult & {
|
|
|
114236
114455
|
id: Scalars['ID']['output'];
|
|
114237
114456
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114238
114457
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114458
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114239
114459
|
objectEntity?: Maybe<AssetsObject>;
|
|
114240
114460
|
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
114241
114461
|
objectTypeEntity?: Maybe<AssetsObjectType>;
|
|
@@ -114253,6 +114473,7 @@ export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
|
114253
114473
|
id: Scalars['ID']['output'];
|
|
114254
114474
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114255
114475
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114476
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114256
114477
|
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
114257
114478
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114258
114479
|
title: Scalars['String']['output'];
|
|
@@ -114266,6 +114487,7 @@ export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
|
114266
114487
|
id: Scalars['ID']['output'];
|
|
114267
114488
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114268
114489
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114490
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114269
114491
|
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
114270
114492
|
objectTypeEntity?: Maybe<AssetsObjectType>;
|
|
114271
114493
|
schemaAri: Scalars['ID']['output'];
|
|
@@ -114282,6 +114504,7 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
114282
114504
|
id: Scalars['ID']['output'];
|
|
114283
114505
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114284
114506
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114507
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114285
114508
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114286
114509
|
title: Scalars['String']['output'];
|
|
114287
114510
|
type: SearchResultType;
|
|
@@ -114294,6 +114517,7 @@ export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
|
114294
114517
|
id: Scalars['ID']['output'];
|
|
114295
114518
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114296
114519
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114520
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114297
114521
|
score?: Maybe<Scalars['Float']['output']>;
|
|
114298
114522
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114299
114523
|
title: Scalars['String']['output'];
|
|
@@ -114307,6 +114531,7 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
114307
114531
|
id: Scalars['ID']['output'];
|
|
114308
114532
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114309
114533
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114534
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114310
114535
|
project?: Maybe<TownsquareProject>;
|
|
114311
114536
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114312
114537
|
title: Scalars['String']['output'];
|
|
@@ -114320,6 +114545,7 @@ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
|
114320
114545
|
id: Scalars['ID']['output'];
|
|
114321
114546
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114322
114547
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114548
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114323
114549
|
score?: Maybe<Scalars['Float']['output']>;
|
|
114324
114550
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114325
114551
|
title: Scalars['String']['output'];
|
|
@@ -114351,6 +114577,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
114351
114577
|
id: Scalars['ID']['output'];
|
|
114352
114578
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114353
114579
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114580
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114354
114581
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114355
114582
|
title: Scalars['String']['output'];
|
|
114356
114583
|
type: SearchResultType;
|
|
@@ -114365,6 +114592,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
114365
114592
|
id: Scalars['ID']['output'];
|
|
114366
114593
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114367
114594
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114595
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114368
114596
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
114369
114597
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114370
114598
|
state: Scalars['String']['output'];
|
|
@@ -114383,6 +114611,7 @@ export declare type SearchResultFederated = SearchResult & {
|
|
|
114383
114611
|
id: Scalars['ID']['output'];
|
|
114384
114612
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114385
114613
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114614
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114386
114615
|
score?: Maybe<Scalars['Float']['output']>;
|
|
114387
114616
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114388
114617
|
title: Scalars['String']['output'];
|
|
@@ -114400,6 +114629,7 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
114400
114629
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
114401
114630
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114402
114631
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114632
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114403
114633
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114404
114634
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114405
114635
|
title: Scalars['String']['output'];
|
|
@@ -114417,6 +114647,7 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
114417
114647
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
114418
114648
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114419
114649
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114650
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114420
114651
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114421
114652
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114422
114653
|
title: Scalars['String']['output'];
|
|
@@ -114434,6 +114665,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
114434
114665
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
114435
114666
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114436
114667
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114668
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114437
114669
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114438
114670
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114439
114671
|
title: Scalars['String']['output'];
|
|
@@ -114457,6 +114689,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
114457
114689
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114458
114690
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
114459
114691
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114692
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114460
114693
|
owner?: Maybe<ThirdPartyUser>;
|
|
114461
114694
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114462
114695
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -114483,6 +114716,7 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
114483
114716
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
114484
114717
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114485
114718
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114719
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114486
114720
|
product: SearchBoardProductType;
|
|
114487
114721
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114488
114722
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -114514,6 +114748,7 @@ export declare type SearchResultJiraDashboard = SearchResult & {
|
|
|
114514
114748
|
id: Scalars['ID']['output'];
|
|
114515
114749
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114516
114750
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114751
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114517
114752
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114518
114753
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
114519
114754
|
title: Scalars['String']['output'];
|
|
@@ -114531,6 +114766,7 @@ export declare type SearchResultJiraFilter = SearchResult & {
|
|
|
114531
114766
|
id: Scalars['ID']['output'];
|
|
114532
114767
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114533
114768
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114769
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114534
114770
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114535
114771
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
114536
114772
|
title: Scalars['String']['output'];
|
|
@@ -114549,6 +114785,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
114549
114785
|
issueTypeId: Scalars['String']['output'];
|
|
114550
114786
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114551
114787
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114788
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114552
114789
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114553
114790
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
114554
114791
|
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
@@ -114580,6 +114817,7 @@ export declare type SearchResultJiraPlan = SearchResult & {
|
|
|
114580
114817
|
id: Scalars['ID']['output'];
|
|
114581
114818
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114582
114819
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114820
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114583
114821
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114584
114822
|
title: Scalars['String']['output'];
|
|
114585
114823
|
type: SearchResultType;
|
|
@@ -114594,6 +114832,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
114594
114832
|
id: Scalars['ID']['output'];
|
|
114595
114833
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114596
114834
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114835
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114597
114836
|
project?: Maybe<JiraProject>;
|
|
114598
114837
|
projectId: Scalars['String']['output'];
|
|
114599
114838
|
projectKey: Scalars['String']['output'];
|
|
@@ -114617,6 +114856,7 @@ export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
|
114617
114856
|
id: Scalars['ID']['output'];
|
|
114618
114857
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114619
114858
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114859
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114620
114860
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114621
114861
|
title: Scalars['String']['output'];
|
|
114622
114862
|
type: SearchResultType;
|
|
@@ -114630,6 +114870,7 @@ export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
|
114630
114870
|
id: Scalars['ID']['output'];
|
|
114631
114871
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114632
114872
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114873
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114633
114874
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114634
114875
|
title: Scalars['String']['output'];
|
|
114635
114876
|
type: SearchResultType;
|
|
@@ -114646,6 +114887,7 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
114646
114887
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
114647
114888
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114648
114889
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114890
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114649
114891
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114650
114892
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114651
114893
|
title: Scalars['String']['output'];
|
|
@@ -114665,6 +114907,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
114665
114907
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
114666
114908
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114667
114909
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
114910
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114668
114911
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114669
114912
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
114670
114913
|
title: Scalars['String']['output'];
|
|
@@ -114679,6 +114922,7 @@ export declare type SearchResultSpfAsk = SearchResult & {
|
|
|
114679
114922
|
id: Scalars['ID']['output'];
|
|
114680
114923
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114681
114924
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114925
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114682
114926
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114683
114927
|
title: Scalars['String']['output'];
|
|
114684
114928
|
type: SearchResultType;
|
|
@@ -114691,6 +114935,7 @@ export declare type SearchResultTalentPosition = SearchResult & {
|
|
|
114691
114935
|
id: Scalars['ID']['output'];
|
|
114692
114936
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114693
114937
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114938
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114694
114939
|
position?: Maybe<RadarPosition>;
|
|
114695
114940
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114696
114941
|
title: Scalars['String']['output'];
|
|
@@ -114704,6 +114949,7 @@ export declare type SearchResultTrelloBoard = SearchResult & {
|
|
|
114704
114949
|
id: Scalars['ID']['output'];
|
|
114705
114950
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114706
114951
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114952
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114707
114953
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114708
114954
|
title: Scalars['String']['output'];
|
|
114709
114955
|
type: SearchResultType;
|
|
@@ -114718,6 +114964,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
|
|
|
114718
114964
|
id: Scalars['ID']['output'];
|
|
114719
114965
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114720
114966
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114967
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114721
114968
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114722
114969
|
title: Scalars['String']['output'];
|
|
114723
114970
|
type: SearchResultType;
|
|
@@ -132532,6 +132779,7 @@ export declare type ShepherdAlertQueries = {
|
|
|
132532
132779
|
alertSnippets?: Maybe<ShepherdAlertSnippetResult>;
|
|
132533
132780
|
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
132534
132781
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
132782
|
+
byTypeAndStatus?: Maybe<ShepherdAlertsResult>;
|
|
132535
132783
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
132536
132784
|
};
|
|
132537
132785
|
export declare type ShepherdAlertQueriesAlertExportsArgs = {
|
|
@@ -132547,6 +132795,13 @@ export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
|
|
|
132547
132795
|
export declare type ShepherdAlertQueriesByAriArgs = {
|
|
132548
132796
|
id: Scalars['ID']['input'];
|
|
132549
132797
|
};
|
|
132798
|
+
export declare type ShepherdAlertQueriesByTypeAndStatusArgs = {
|
|
132799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132800
|
+
alertStatuses: Array<Scalars['String']['input']>;
|
|
132801
|
+
alertType: Scalars['String']['input'];
|
|
132802
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132803
|
+
workspaceId: Scalars['ID']['input'];
|
|
132804
|
+
};
|
|
132550
132805
|
export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
132551
132806
|
aaid?: InputMaybe<Scalars['ID']['input']>;
|
|
132552
132807
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132780,6 +133035,42 @@ export declare type ShepherdBitbucketWorkspaceInfo = {
|
|
|
132780
133035
|
name: Scalars['String']['output'];
|
|
132781
133036
|
url: Scalars['URL']['output'];
|
|
132782
133037
|
};
|
|
133038
|
+
export declare type ShepherdBulkRedactionInput = {
|
|
133039
|
+
redactions: Array<ShepherdBulkRedactionItemInput>;
|
|
133040
|
+
workspaceId: Scalars['ID']['input'];
|
|
133041
|
+
};
|
|
133042
|
+
export declare type ShepherdBulkRedactionItemInput = {
|
|
133043
|
+
contentHash?: InputMaybe<Scalars['String']['input']>;
|
|
133044
|
+
detection: Scalars['String']['input'];
|
|
133045
|
+
end: ShepherdContentLocationInput;
|
|
133046
|
+
fieldId: Scalars['String']['input'];
|
|
133047
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
133048
|
+
resourceAri: Scalars['ID']['input'];
|
|
133049
|
+
start: ShepherdContentLocationInput;
|
|
133050
|
+
timestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
133051
|
+
};
|
|
133052
|
+
export declare enum ShepherdBulkRedactionItemStatus {
|
|
133053
|
+
Failed = "FAILED",
|
|
133054
|
+
Pending = "PENDING",
|
|
133055
|
+
Succeeded = "SUCCEEDED"
|
|
133056
|
+
}
|
|
133057
|
+
export declare type ShepherdBulkRedactionItemStatusPayload = {
|
|
133058
|
+
__typename?: 'ShepherdBulkRedactionItemStatusPayload';
|
|
133059
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
133060
|
+
id: Scalars['ID']['output'];
|
|
133061
|
+
status?: Maybe<ShepherdBulkRedactionItemStatus>;
|
|
133062
|
+
};
|
|
133063
|
+
export declare type ShepherdBulkRedactionPayload = {
|
|
133064
|
+
__typename?: 'ShepherdBulkRedactionPayload';
|
|
133065
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133066
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
133067
|
+
redactionIds: Array<Scalars['ID']['output']>;
|
|
133068
|
+
success: Scalars['Boolean']['output'];
|
|
133069
|
+
};
|
|
133070
|
+
export declare type ShepherdBulkRedactionStatusPayload = {
|
|
133071
|
+
__typename?: 'ShepherdBulkRedactionStatusPayload';
|
|
133072
|
+
redactionStatuses: Array<ShepherdBulkRedactionItemStatusPayload>;
|
|
133073
|
+
};
|
|
132783
133074
|
export declare type ShepherdCategorizedAlertMetadata = {
|
|
132784
133075
|
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
132785
133076
|
category: Scalars['String']['output'];
|
|
@@ -132828,6 +133119,10 @@ export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
|
132828
133119
|
workspaceId: Scalars['ID']['input'];
|
|
132829
133120
|
};
|
|
132830
133121
|
export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
|
|
133122
|
+
export declare type ShepherdContentLocationInput = {
|
|
133123
|
+
index: Scalars['Int']['input'];
|
|
133124
|
+
pointer: Scalars['String']['input'];
|
|
133125
|
+
};
|
|
132831
133126
|
export declare type ShepherdCreateAlertInput = {
|
|
132832
133127
|
actor?: InputMaybe<ShepherdActorInput>;
|
|
132833
133128
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -133231,6 +133526,7 @@ export declare type ShepherdQuery = {
|
|
|
133231
133526
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
133232
133527
|
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
133233
133528
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
133529
|
+
redaction?: Maybe<ShepherdRedactionQueries>;
|
|
133234
133530
|
serviceShardAppInfo?: Maybe<ShepherdServiceShardAppInfoResult>;
|
|
133235
133531
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
133236
133532
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
@@ -133325,9 +133621,13 @@ export declare type ShepherdRedactionInput = {
|
|
|
133325
133621
|
};
|
|
133326
133622
|
export declare type ShepherdRedactionMutations = {
|
|
133327
133623
|
__typename?: 'ShepherdRedactionMutations';
|
|
133624
|
+
bulkRedact?: Maybe<ShepherdBulkRedactionPayload>;
|
|
133328
133625
|
redact?: Maybe<ShepherdRedactionPayload>;
|
|
133329
133626
|
restore?: Maybe<ShepherdRestoreRedactionPayload>;
|
|
133330
133627
|
};
|
|
133628
|
+
export declare type ShepherdRedactionMutationsBulkRedactArgs = {
|
|
133629
|
+
input: ShepherdBulkRedactionInput;
|
|
133630
|
+
};
|
|
133331
133631
|
export declare type ShepherdRedactionMutationsRedactArgs = {
|
|
133332
133632
|
input: ShepherdRedactionInput;
|
|
133333
133633
|
};
|
|
@@ -133341,6 +133641,14 @@ export declare type ShepherdRedactionPayload = Payload & {
|
|
|
133341
133641
|
node?: Maybe<ShepherdRedaction>;
|
|
133342
133642
|
success: Scalars['Boolean']['output'];
|
|
133343
133643
|
};
|
|
133644
|
+
export declare type ShepherdRedactionQueries = {
|
|
133645
|
+
__typename?: 'ShepherdRedactionQueries';
|
|
133646
|
+
checkBulkRedactionStatus?: Maybe<ShepherdBulkRedactionStatusPayload>;
|
|
133647
|
+
};
|
|
133648
|
+
export declare type ShepherdRedactionQueriesCheckBulkRedactionStatusArgs = {
|
|
133649
|
+
jobId: Scalars['ID']['input'];
|
|
133650
|
+
workspaceId: Scalars['ID']['input'];
|
|
133651
|
+
};
|
|
133344
133652
|
export declare enum ShepherdRedactionStatus {
|
|
133345
133653
|
Failed = "FAILED",
|
|
133346
133654
|
PartiallyRedacted = "PARTIALLY_REDACTED",
|
|
@@ -135295,6 +135603,82 @@ export declare enum SpfMediaTokenUsageType {
|
|
|
135295
135603
|
Read = "READ",
|
|
135296
135604
|
Write = "WRITE"
|
|
135297
135605
|
}
|
|
135606
|
+
export declare type SpfPlan = Node & {
|
|
135607
|
+
__typename?: 'SpfPlan';
|
|
135608
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135609
|
+
createdBy?: Maybe<User>;
|
|
135610
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135611
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
135612
|
+
id: Scalars['ID']['output'];
|
|
135613
|
+
name: Scalars['String']['output'];
|
|
135614
|
+
portfolio?: Maybe<MercuryFocusArea>;
|
|
135615
|
+
portfolioId: Scalars['String']['output'];
|
|
135616
|
+
scenarios?: Maybe<SpfPlanScenarioConnection>;
|
|
135617
|
+
status: SpfPlanStatus;
|
|
135618
|
+
timeframe: SpfPlanTimeframe;
|
|
135619
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135620
|
+
updatedBy?: Maybe<User>;
|
|
135621
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135622
|
+
};
|
|
135623
|
+
export declare type SpfPlanScenariosArgs = {
|
|
135624
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135625
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135626
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
135627
|
+
};
|
|
135628
|
+
export declare type SpfPlanConnection = {
|
|
135629
|
+
__typename?: 'SpfPlanConnection';
|
|
135630
|
+
edges?: Maybe<Array<Maybe<SpfPlanEdge>>>;
|
|
135631
|
+
pageInfo: PageInfo;
|
|
135632
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
135633
|
+
};
|
|
135634
|
+
export declare type SpfPlanEdge = {
|
|
135635
|
+
__typename?: 'SpfPlanEdge';
|
|
135636
|
+
cursor: Scalars['String']['output'];
|
|
135637
|
+
node?: Maybe<SpfPlanResult>;
|
|
135638
|
+
};
|
|
135639
|
+
export declare type SpfPlanResult = QueryError | SpfPlan;
|
|
135640
|
+
export declare type SpfPlanScenario = Node & {
|
|
135641
|
+
__typename?: 'SpfPlanScenario';
|
|
135642
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135643
|
+
createdBy?: Maybe<User>;
|
|
135644
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135645
|
+
id: Scalars['ID']['output'];
|
|
135646
|
+
name: Scalars['String']['output'];
|
|
135647
|
+
planId: Scalars['String']['output'];
|
|
135648
|
+
status: SpfPlanScenarioStatus;
|
|
135649
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135650
|
+
updatedBy?: Maybe<User>;
|
|
135651
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135652
|
+
};
|
|
135653
|
+
export declare type SpfPlanScenarioConnection = {
|
|
135654
|
+
__typename?: 'SpfPlanScenarioConnection';
|
|
135655
|
+
edges?: Maybe<Array<Maybe<SpfPlanScenarioEdge>>>;
|
|
135656
|
+
pageInfo: PageInfo;
|
|
135657
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
135658
|
+
};
|
|
135659
|
+
export declare type SpfPlanScenarioEdge = {
|
|
135660
|
+
__typename?: 'SpfPlanScenarioEdge';
|
|
135661
|
+
cursor: Scalars['String']['output'];
|
|
135662
|
+
node?: Maybe<SpfPlanScenarioResult>;
|
|
135663
|
+
};
|
|
135664
|
+
export declare type SpfPlanScenarioResult = QueryError | SpfPlanScenario;
|
|
135665
|
+
export declare enum SpfPlanScenarioStatus {
|
|
135666
|
+
Draft = "DRAFT"
|
|
135667
|
+
}
|
|
135668
|
+
export declare enum SpfPlanStatus {
|
|
135669
|
+
Draft = "DRAFT"
|
|
135670
|
+
}
|
|
135671
|
+
export declare type SpfPlanTimeframe = {
|
|
135672
|
+
__typename?: 'SpfPlanTimeframe';
|
|
135673
|
+
endDate: Scalars['String']['output'];
|
|
135674
|
+
startDate: Scalars['String']['output'];
|
|
135675
|
+
timeframeGranularity: SpfPlanTimeframeGranularity;
|
|
135676
|
+
};
|
|
135677
|
+
export declare enum SpfPlanTimeframeGranularity {
|
|
135678
|
+
Month = "MONTH",
|
|
135679
|
+
Quarter = "QUARTER",
|
|
135680
|
+
Week = "WEEK"
|
|
135681
|
+
}
|
|
135298
135682
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
135299
135683
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
135300
135684
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -136086,7 +136470,9 @@ export declare type StakeholderCommsOpsgenieRiskAssessmentResult = {
|
|
|
136086
136470
|
export declare type StakeholderCommsOpsgenieRiskCategory = {
|
|
136087
136471
|
__typename?: 'StakeholderCommsOpsgenieRiskCategory';
|
|
136088
136472
|
count: Scalars['Int']['output'];
|
|
136473
|
+
description: Scalars['String']['output'];
|
|
136089
136474
|
items: Array<StakeholderCommsOpsgenieRiskItem>;
|
|
136475
|
+
severity: StakeholderCommsOpsgenieRiskScore;
|
|
136090
136476
|
type: StakeholderCommsOpsgenieRiskCategoryType;
|
|
136091
136477
|
};
|
|
136092
136478
|
export declare enum StakeholderCommsOpsgenieRiskCategoryType {
|
|
@@ -136773,6 +137159,7 @@ export declare type Subscription = {
|
|
|
136773
137159
|
__typename?: 'Subscription';
|
|
136774
137160
|
aqua?: Maybe<AquaLiveChatSubscription>;
|
|
136775
137161
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
137162
|
+
blockService_onBlockUpdated: BlockServiceEvent;
|
|
136776
137163
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
136777
137164
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
136778
137165
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
@@ -136801,6 +137188,9 @@ export declare type Subscription = {
|
|
|
136801
137188
|
testing?: Maybe<TestingSubscription>;
|
|
136802
137189
|
trello: TrelloSubscriptionApi;
|
|
136803
137190
|
};
|
|
137191
|
+
export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
137192
|
+
resourceId: Scalars['ID']['input'];
|
|
137193
|
+
};
|
|
136804
137194
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
136805
137195
|
id: Scalars['ID']['input'];
|
|
136806
137196
|
};
|
|
@@ -139442,6 +139832,17 @@ export declare type TownsquareGoalsLinkWorkItemPayload = {
|
|
|
139442
139832
|
success: Scalars['Boolean']['output'];
|
|
139443
139833
|
workItem?: Maybe<JiraIssue>;
|
|
139444
139834
|
};
|
|
139835
|
+
export declare type TownsquareGoalsRemoveDropdownCustomFieldValueInput = {
|
|
139836
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139837
|
+
goalId: Scalars['ID']['input'];
|
|
139838
|
+
valueId: Scalars['ID']['input'];
|
|
139839
|
+
};
|
|
139840
|
+
export declare type TownsquareGoalsRemoveDropdownCustomFieldValuePayload = {
|
|
139841
|
+
__typename?: 'TownsquareGoalsRemoveDropdownCustomFieldValuePayload';
|
|
139842
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139843
|
+
success: Scalars['Boolean']['output'];
|
|
139844
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
139845
|
+
};
|
|
139445
139846
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
139446
139847
|
goalId: Scalars['ID']['input'];
|
|
139447
139848
|
teamId: Scalars['ID']['input'];
|
|
@@ -139464,6 +139865,39 @@ export declare type TownsquareGoalsRemoveMetricTargetPayload = {
|
|
|
139464
139865
|
goal?: Maybe<TownsquareGoal>;
|
|
139465
139866
|
success: Scalars['Boolean']['output'];
|
|
139466
139867
|
};
|
|
139868
|
+
export declare type TownsquareGoalsRemoveNumericCustomFieldValueInput = {
|
|
139869
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139870
|
+
goalId: Scalars['ID']['input'];
|
|
139871
|
+
valueId: Scalars['ID']['input'];
|
|
139872
|
+
};
|
|
139873
|
+
export declare type TownsquareGoalsRemoveNumericCustomFieldValuePayload = {
|
|
139874
|
+
__typename?: 'TownsquareGoalsRemoveNumericCustomFieldValuePayload';
|
|
139875
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139876
|
+
success: Scalars['Boolean']['output'];
|
|
139877
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
139878
|
+
};
|
|
139879
|
+
export declare type TownsquareGoalsRemoveTextCustomFieldValueInput = {
|
|
139880
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139881
|
+
goalId: Scalars['ID']['input'];
|
|
139882
|
+
valueId: Scalars['ID']['input'];
|
|
139883
|
+
};
|
|
139884
|
+
export declare type TownsquareGoalsRemoveTextCustomFieldValuePayload = {
|
|
139885
|
+
__typename?: 'TownsquareGoalsRemoveTextCustomFieldValuePayload';
|
|
139886
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139887
|
+
success: Scalars['Boolean']['output'];
|
|
139888
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
139889
|
+
};
|
|
139890
|
+
export declare type TownsquareGoalsRemoveUserCustomFieldValueInput = {
|
|
139891
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139892
|
+
goalId: Scalars['ID']['input'];
|
|
139893
|
+
userId: Scalars['ID']['input'];
|
|
139894
|
+
};
|
|
139895
|
+
export declare type TownsquareGoalsRemoveUserCustomFieldValuePayload = {
|
|
139896
|
+
__typename?: 'TownsquareGoalsRemoveUserCustomFieldValuePayload';
|
|
139897
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139898
|
+
success: Scalars['Boolean']['output'];
|
|
139899
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
139900
|
+
};
|
|
139467
139901
|
export declare type TownsquareGoalsSetRollupProgressInput = {
|
|
139468
139902
|
enableRollupProgress: Scalars['Boolean']['input'];
|
|
139469
139903
|
goalId: Scalars['ID']['input'];
|
|
@@ -140470,6 +140904,17 @@ export declare type TownsquareProjectsRemoveDependencyPayload = {
|
|
|
140470
140904
|
outgoingProject?: Maybe<TownsquareProject>;
|
|
140471
140905
|
success: Scalars['Boolean']['output'];
|
|
140472
140906
|
};
|
|
140907
|
+
export declare type TownsquareProjectsRemoveDropdownCustomFieldValueInput = {
|
|
140908
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140909
|
+
projectId: Scalars['ID']['input'];
|
|
140910
|
+
valueId: Scalars['ID']['input'];
|
|
140911
|
+
};
|
|
140912
|
+
export declare type TownsquareProjectsRemoveDropdownCustomFieldValuePayload = {
|
|
140913
|
+
__typename?: 'TownsquareProjectsRemoveDropdownCustomFieldValuePayload';
|
|
140914
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140915
|
+
success: Scalars['Boolean']['output'];
|
|
140916
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
140917
|
+
};
|
|
140473
140918
|
export declare type TownsquareProjectsRemoveGoalLinkInput = {
|
|
140474
140919
|
goalId: Scalars['ID']['input'];
|
|
140475
140920
|
projectId: Scalars['ID']['input'];
|
|
@@ -140502,6 +140947,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
140502
140947
|
success: Scalars['Boolean']['output'];
|
|
140503
140948
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
140504
140949
|
};
|
|
140950
|
+
export declare type TownsquareProjectsRemoveNumericCustomFieldValueInput = {
|
|
140951
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140952
|
+
projectId: Scalars['ID']['input'];
|
|
140953
|
+
valueId: Scalars['ID']['input'];
|
|
140954
|
+
};
|
|
140955
|
+
export declare type TownsquareProjectsRemoveNumericCustomFieldValuePayload = {
|
|
140956
|
+
__typename?: 'TownsquareProjectsRemoveNumericCustomFieldValuePayload';
|
|
140957
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140958
|
+
success: Scalars['Boolean']['output'];
|
|
140959
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
140960
|
+
};
|
|
140505
140961
|
export declare type TownsquareProjectsRemoveTeamContributorsInput = {
|
|
140506
140962
|
projectId: Scalars['ID']['input'];
|
|
140507
140963
|
teamId: Scalars['ID']['input'];
|
|
@@ -140513,6 +140969,28 @@ export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
|
|
|
140513
140969
|
success: Scalars['Boolean']['output'];
|
|
140514
140970
|
team?: Maybe<TeamV2>;
|
|
140515
140971
|
};
|
|
140972
|
+
export declare type TownsquareProjectsRemoveTextCustomFieldValueInput = {
|
|
140973
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140974
|
+
projectId: Scalars['ID']['input'];
|
|
140975
|
+
valueId: Scalars['ID']['input'];
|
|
140976
|
+
};
|
|
140977
|
+
export declare type TownsquareProjectsRemoveTextCustomFieldValuePayload = {
|
|
140978
|
+
__typename?: 'TownsquareProjectsRemoveTextCustomFieldValuePayload';
|
|
140979
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140980
|
+
success: Scalars['Boolean']['output'];
|
|
140981
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
140982
|
+
};
|
|
140983
|
+
export declare type TownsquareProjectsRemoveUserCustomFieldValueInput = {
|
|
140984
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140985
|
+
projectId: Scalars['ID']['input'];
|
|
140986
|
+
userId: Scalars['ID']['input'];
|
|
140987
|
+
};
|
|
140988
|
+
export declare type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
140989
|
+
__typename?: 'TownsquareProjectsRemoveUserCustomFieldValuePayload';
|
|
140990
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140991
|
+
success: Scalars['Boolean']['output'];
|
|
140992
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
140993
|
+
};
|
|
140516
140994
|
export declare type TownsquareProjectsSetDependencyInput = {
|
|
140517
140995
|
incomingProjectId: Scalars['ID']['input'];
|
|
140518
140996
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -142560,6 +143038,7 @@ export declare type TrelloCreateApplicationPayload = Payload & {
|
|
|
142560
143038
|
};
|
|
142561
143039
|
export declare type TrelloCreateBoardWithAiInput = {
|
|
142562
143040
|
userInput: TrelloAiBoardUserInput;
|
|
143041
|
+
workspaceId: Scalars['ID']['input'];
|
|
142563
143042
|
};
|
|
142564
143043
|
export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
142565
143044
|
__typename?: 'TrelloCreateBoardWithAiPayload';
|
|
@@ -143597,6 +144076,7 @@ export declare type TrelloMutationApi = {
|
|
|
143597
144076
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
143598
144077
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
143599
144078
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
144079
|
+
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
143600
144080
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
143601
144081
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
143602
144082
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -143787,6 +144267,9 @@ export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
|
143787
144267
|
export declare type TrelloMutationApiUpdatePrimaryPlannerAccountArgs = {
|
|
143788
144268
|
input: TrelloUpdatePrimaryPlannerAccountInput;
|
|
143789
144269
|
};
|
|
144270
|
+
export declare type TrelloMutationApiUpdateProactiveSmartScheduleStatusArgs = {
|
|
144271
|
+
input: TrelloUpdateProactiveSmartScheduleStatusInput;
|
|
144272
|
+
};
|
|
143790
144273
|
export declare type TrelloMutationApiUpdateProposedEventArgs = {
|
|
143791
144274
|
input: TrelloUpdateProposedEventInput;
|
|
143792
144275
|
};
|
|
@@ -143805,7 +144288,6 @@ export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
|
|
|
143805
144288
|
};
|
|
143806
144289
|
export declare type TrelloNewYearsResolutionAiBoardInput = {
|
|
143807
144290
|
resolution: Scalars['String']['input'];
|
|
143808
|
-
workspaceId: Scalars['ID']['input'];
|
|
143809
144291
|
};
|
|
143810
144292
|
export declare type TrelloNotification = TrelloQuickCaptureNotification;
|
|
143811
144293
|
export declare type TrelloNotificationConnection = {
|
|
@@ -144324,8 +144806,8 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
144324
144806
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
144325
144807
|
};
|
|
144326
144808
|
export declare type TrelloProposePlannerEventsInput = {
|
|
144327
|
-
cardIds
|
|
144328
|
-
timezoneOffsetHours
|
|
144809
|
+
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
144810
|
+
timezoneOffsetHours: Scalars['Float']['input'];
|
|
144329
144811
|
};
|
|
144330
144812
|
export declare type TrelloProposePlannerEventsPayload = Payload & {
|
|
144331
144813
|
__typename?: 'TrelloProposePlannerEventsPayload';
|
|
@@ -144723,6 +145205,11 @@ export declare type TrelloSmartScheduleCardsWithSmartSelectionInput = {
|
|
|
144723
145205
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
144724
145206
|
timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
|
|
144725
145207
|
};
|
|
145208
|
+
export declare enum TrelloSmartScheduleStatus {
|
|
145209
|
+
Active = "ACTIVE",
|
|
145210
|
+
Dormant = "DORMANT",
|
|
145211
|
+
Inactive = "INACTIVE"
|
|
145212
|
+
}
|
|
144726
145213
|
export declare type TrelloSortInboxCardsInput = {
|
|
144727
145214
|
sortBy: TrelloListCardSortBy;
|
|
144728
145215
|
};
|
|
@@ -145197,6 +145684,15 @@ export declare type TrelloUpdatePrimaryPlannerAccountPayload = Payload & {
|
|
|
145197
145684
|
planner?: Maybe<TrelloPlanner>;
|
|
145198
145685
|
success: Scalars['Boolean']['output'];
|
|
145199
145686
|
};
|
|
145687
|
+
export declare type TrelloUpdateProactiveSmartScheduleStatusInput = {
|
|
145688
|
+
status: TrelloSmartScheduleStatus;
|
|
145689
|
+
userId: Scalars['ID']['input'];
|
|
145690
|
+
};
|
|
145691
|
+
export declare type TrelloUpdateProactiveSmartScheduleStatusPayload = Payload & {
|
|
145692
|
+
__typename?: 'TrelloUpdateProactiveSmartScheduleStatusPayload';
|
|
145693
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145694
|
+
success: Scalars['Boolean']['output'];
|
|
145695
|
+
};
|
|
145200
145696
|
export declare type TrelloUpdateProposedEventInput = {
|
|
145201
145697
|
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145202
145698
|
proposedEventId: Scalars['ID']['input'];
|