@forge/cli-shared 8.18.0 → 8.18.1-next.1
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 +13 -0
- package/out/graphql/graphql-types.d.ts +489 -57
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +56 -11
- package/out/service/statsig-service.d.ts +2 -0
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/out/ui/command-line-ui.d.ts +9 -2
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +31 -28
- package/out/ui/text.d.ts +2 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -2
- package/package.json +2 -2
|
@@ -84,6 +84,10 @@ export declare type Scalars = {
|
|
|
84
84
|
[key: string]: any;
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
|
+
JSONObject: {
|
|
88
|
+
input: any;
|
|
89
|
+
output: any;
|
|
90
|
+
};
|
|
87
91
|
KitsuneADF: {
|
|
88
92
|
input: any;
|
|
89
93
|
output: any;
|
|
@@ -212,7 +216,7 @@ export declare type AvpAnalyticsDataSource = {
|
|
|
212
216
|
hasSubDataSources: Scalars['Boolean']['output'];
|
|
213
217
|
id: Scalars['ID']['output'];
|
|
214
218
|
metadata?: Maybe<AvpAnalyticsDataSourceMetadata>;
|
|
215
|
-
models?: Maybe<
|
|
219
|
+
models?: Maybe<AvpAnalyticsModelConnection>;
|
|
216
220
|
name: Scalars['String']['output'];
|
|
217
221
|
subDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
218
222
|
};
|
|
@@ -227,22 +231,6 @@ export declare type AvpAnalyticsDataSourceMetadata = {
|
|
|
227
231
|
__typename?: 'AVPAnalyticsDataSourceMetadata';
|
|
228
232
|
icon: Scalars['String']['output'];
|
|
229
233
|
};
|
|
230
|
-
export declare type AvpAnalyticsDataSourceModel = {
|
|
231
|
-
__typename?: 'AVPAnalyticsDataSourceModel';
|
|
232
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
233
|
-
id: Scalars['ID']['output'];
|
|
234
|
-
name: Scalars['String']['output'];
|
|
235
|
-
};
|
|
236
|
-
export declare type AvpAnalyticsDataSourceModelEdge = {
|
|
237
|
-
__typename?: 'AVPAnalyticsDataSourceModelEdge';
|
|
238
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
239
|
-
node: AvpAnalyticsDataSourceModel;
|
|
240
|
-
};
|
|
241
|
-
export declare type AvpAnalyticsDataSourceModelsConnection = {
|
|
242
|
-
__typename?: 'AVPAnalyticsDataSourceModelsConnection';
|
|
243
|
-
edges?: Maybe<Array<AvpAnalyticsDataSourceModelEdge>>;
|
|
244
|
-
pageInfo: PageInfo;
|
|
245
|
-
};
|
|
246
234
|
export declare type AvpAnalyticsDeleteModelInput = {
|
|
247
235
|
forceDelete: Scalars['Boolean']['input'];
|
|
248
236
|
modelId: Scalars['ID']['input'];
|
|
@@ -392,6 +380,7 @@ export declare type AvpAnalyticsMetric = {
|
|
|
392
380
|
};
|
|
393
381
|
export declare type AvpAnalyticsModel = {
|
|
394
382
|
__typename?: 'AVPAnalyticsModel';
|
|
383
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
395
384
|
data?: Maybe<AvpAnalyticsModelDataConnection>;
|
|
396
385
|
definition?: Maybe<AvpAnalyticsModelDefinition>;
|
|
397
386
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -3861,6 +3850,41 @@ export declare type AgentAiSummary = {
|
|
|
3861
3850
|
adf?: Maybe<Scalars['String']['output']>;
|
|
3862
3851
|
text?: Maybe<Scalars['String']['output']>;
|
|
3863
3852
|
};
|
|
3853
|
+
export declare type AgentSession = AgentSessionNode & {
|
|
3854
|
+
__typename?: 'AgentSession';
|
|
3855
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
3856
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
3857
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3858
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
3859
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
3860
|
+
};
|
|
3861
|
+
export declare type AgentSessionAssociation = AgentSessionAssociationNode & {
|
|
3862
|
+
__typename?: 'AgentSessionAssociation';
|
|
3863
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
3864
|
+
agentSession?: Maybe<AgentSession>;
|
|
3865
|
+
agentSessionId?: Maybe<Scalars['String']['output']>;
|
|
3866
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
3867
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
3868
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3869
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
3870
|
+
};
|
|
3871
|
+
export declare type AgentSessionAssociationConnection = {
|
|
3872
|
+
__typename?: 'AgentSessionAssociationConnection';
|
|
3873
|
+
edges?: Maybe<Array<Maybe<AgentSessionAssociationEdge>>>;
|
|
3874
|
+
nodes?: Maybe<Array<Maybe<AgentSessionAssociation>>>;
|
|
3875
|
+
pageInfo?: Maybe<PageInfo>;
|
|
3876
|
+
};
|
|
3877
|
+
export declare type AgentSessionAssociationEdge = {
|
|
3878
|
+
__typename?: 'AgentSessionAssociationEdge';
|
|
3879
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
3880
|
+
node?: Maybe<AgentSessionAssociation>;
|
|
3881
|
+
};
|
|
3882
|
+
export declare type AgentSessionAssociationNode = {
|
|
3883
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3884
|
+
};
|
|
3885
|
+
export declare type AgentSessionNode = {
|
|
3886
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3887
|
+
};
|
|
3864
3888
|
export declare type AgentStudio3pKnowledgeFilter = {
|
|
3865
3889
|
__typename?: 'AgentStudio3pKnowledgeFilter';
|
|
3866
3890
|
rawFilter?: Maybe<Scalars['String']['output']>;
|
|
@@ -4042,6 +4066,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
4042
4066
|
accessIdentityMode?: Maybe<AgentStudioAccessIdentityMode>;
|
|
4043
4067
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
4044
4068
|
agentSchemaNumber?: Maybe<Scalars['Int']['output']>;
|
|
4069
|
+
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4045
4070
|
authoringTeam?: Maybe<TeamV2>;
|
|
4046
4071
|
behaviour?: Maybe<Scalars['String']['output']>;
|
|
4047
4072
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
@@ -4140,6 +4165,7 @@ export declare type AgentStudioAuthoringTeamInput = {
|
|
|
4140
4165
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
4141
4166
|
};
|
|
4142
4167
|
export declare type AgentStudioBaseConfiguration = {
|
|
4168
|
+
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4143
4169
|
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4144
4170
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4145
4171
|
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -11093,8 +11119,10 @@ export declare type AssetsVerticalGenerateInsightsInput = {
|
|
|
11093
11119
|
export declare type AssetsVerticalGenerateInsightsPayload = Payload & {
|
|
11094
11120
|
__typename?: 'AssetsVerticalGenerateInsightsPayload';
|
|
11095
11121
|
errors?: Maybe<Array<MutationError>>;
|
|
11096
|
-
|
|
11122
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
11123
|
+
status: AssetsVerticalInsightsStatus;
|
|
11097
11124
|
success: Scalars['Boolean']['output'];
|
|
11125
|
+
suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
|
|
11098
11126
|
};
|
|
11099
11127
|
export declare type AssetsVerticalInsightCard = {
|
|
11100
11128
|
__typename?: 'AssetsVerticalInsightCard';
|
|
@@ -11175,11 +11203,26 @@ export declare type AssetsVerticalObjectNode = {
|
|
|
11175
11203
|
name?: Maybe<Scalars['String']['output']>;
|
|
11176
11204
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
11177
11205
|
};
|
|
11206
|
+
export declare type AssetsVerticalObjectType = {
|
|
11207
|
+
__typename?: 'AssetsVerticalObjectType';
|
|
11208
|
+
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
11209
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
11210
|
+
};
|
|
11178
11211
|
export declare enum AssetsVerticalObjectTypeCategory {
|
|
11179
11212
|
Hardwares = "HARDWARES",
|
|
11180
11213
|
Models = "MODELS",
|
|
11181
11214
|
Stockrooms = "STOCKROOMS"
|
|
11182
11215
|
}
|
|
11216
|
+
export declare type AssetsVerticalObjectTypes = {
|
|
11217
|
+
__typename?: 'AssetsVerticalObjectTypes';
|
|
11218
|
+
objectTypes?: Maybe<Array<Maybe<AssetsVerticalObjectType>>>;
|
|
11219
|
+
};
|
|
11220
|
+
export declare type AssetsVerticalObjectTypesInput = {
|
|
11221
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
11222
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
11223
|
+
workspaceId: Scalars['ID']['input'];
|
|
11224
|
+
};
|
|
11225
|
+
export declare type AssetsVerticalObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
|
|
11183
11226
|
export declare type AssetsVerticalObjectsFilterCondition = {
|
|
11184
11227
|
key: Scalars['String']['input'];
|
|
11185
11228
|
operator: AssetsVerticalObjectsFilterOperator;
|
|
@@ -33754,9 +33797,13 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
33754
33797
|
__typename?: 'CplsAddContributionsPayload';
|
|
33755
33798
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
33756
33799
|
errors?: Maybe<Array<MutationError>>;
|
|
33800
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33757
33801
|
success: Scalars['Boolean']['output'];
|
|
33758
33802
|
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
33759
33803
|
};
|
|
33804
|
+
export declare type CplsAddContributionsPayloadPeopleViewArgs = {
|
|
33805
|
+
scopeId: Scalars['ID']['input'];
|
|
33806
|
+
};
|
|
33760
33807
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
33761
33808
|
cloudId: Scalars['ID']['input'];
|
|
33762
33809
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
@@ -33766,8 +33813,12 @@ export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
|
33766
33813
|
__typename?: 'CplsAddContributorScopeAssociationPayload';
|
|
33767
33814
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
33768
33815
|
errors?: Maybe<Array<MutationError>>;
|
|
33816
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33769
33817
|
success: Scalars['Boolean']['output'];
|
|
33770
33818
|
};
|
|
33819
|
+
export declare type CplsAddContributorScopeAssociationPayloadPeopleViewArgs = {
|
|
33820
|
+
scopeId: Scalars['ID']['input'];
|
|
33821
|
+
};
|
|
33771
33822
|
export declare type CplsAddContributorWorkAssociationInput = {
|
|
33772
33823
|
cloudId: Scalars['ID']['input'];
|
|
33773
33824
|
contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
|
|
@@ -33777,6 +33828,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
33777
33828
|
contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
33778
33829
|
contributorWorkAssociationsByScope?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
33779
33830
|
errors?: Maybe<Array<MutationError>>;
|
|
33831
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33780
33832
|
success: Scalars['Boolean']['output'];
|
|
33781
33833
|
workContributorAssociations?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
33782
33834
|
workContributorAssociationsByScope?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
@@ -33784,6 +33836,9 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
33784
33836
|
export declare type CplsAddContributorWorkAssociationPayloadContributorWorkAssociationsByScopeArgs = {
|
|
33785
33837
|
scopeId: Scalars['ID']['input'];
|
|
33786
33838
|
};
|
|
33839
|
+
export declare type CplsAddContributorWorkAssociationPayloadPeopleViewArgs = {
|
|
33840
|
+
scopeId: Scalars['ID']['input'];
|
|
33841
|
+
};
|
|
33787
33842
|
export declare type CplsAddContributorWorkAssociationPayloadWorkContributorAssociationsByScopeArgs = {
|
|
33788
33843
|
scopeId: Scalars['ID']['input'];
|
|
33789
33844
|
};
|
|
@@ -33819,6 +33874,7 @@ export declare type CplsCapacityPlanningPeopleView = {
|
|
|
33819
33874
|
contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
|
|
33820
33875
|
contributors?: Maybe<CplsContributorConnection>;
|
|
33821
33876
|
filters?: Maybe<CplsFilters>;
|
|
33877
|
+
hasSuggestions: Scalars['Boolean']['output'];
|
|
33822
33878
|
id: Scalars['ID']['output'];
|
|
33823
33879
|
timeCells?: Maybe<Array<CplsTimeCell>>;
|
|
33824
33880
|
viewSettings?: Maybe<CplsViewSettings>;
|
|
@@ -34028,9 +34084,13 @@ export declare type CplsDeleteContributionSuggestionsPayload = Payload & {
|
|
|
34028
34084
|
__typename?: 'CplsDeleteContributionSuggestionsPayload';
|
|
34029
34085
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
34030
34086
|
errors?: Maybe<Array<MutationError>>;
|
|
34087
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34031
34088
|
success: Scalars['Boolean']['output'];
|
|
34032
34089
|
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
34033
34090
|
};
|
|
34091
|
+
export declare type CplsDeleteContributionSuggestionsPayloadPeopleViewArgs = {
|
|
34092
|
+
scopeId: Scalars['ID']['input'];
|
|
34093
|
+
};
|
|
34034
34094
|
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
34035
34095
|
cloudId: Scalars['ID']['input'];
|
|
34036
34096
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
@@ -34040,8 +34100,12 @@ export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
|
|
|
34040
34100
|
__typename?: 'CplsDeleteContributorScopeAssociationPayload';
|
|
34041
34101
|
errors?: Maybe<Array<MutationError>>;
|
|
34042
34102
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34103
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34043
34104
|
success: Scalars['Boolean']['output'];
|
|
34044
34105
|
};
|
|
34106
|
+
export declare type CplsDeleteContributorScopeAssociationPayloadPeopleViewArgs = {
|
|
34107
|
+
scopeId: Scalars['ID']['input'];
|
|
34108
|
+
};
|
|
34045
34109
|
export declare type CplsDeleteContributorScopeAssociationSuggestionForUserInput = {
|
|
34046
34110
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
34047
34111
|
scopeId: Scalars['ID']['input'];
|
|
@@ -34050,8 +34114,12 @@ export declare type CplsDeleteContributorScopeAssociationSuggestionPayload = Pay
|
|
|
34050
34114
|
__typename?: 'CplsDeleteContributorScopeAssociationSuggestionPayload';
|
|
34051
34115
|
errors?: Maybe<Array<MutationError>>;
|
|
34052
34116
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34117
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34053
34118
|
success: Scalars['Boolean']['output'];
|
|
34054
34119
|
};
|
|
34120
|
+
export declare type CplsDeleteContributorScopeAssociationSuggestionPayloadPeopleViewArgs = {
|
|
34121
|
+
scopeId: Scalars['ID']['input'];
|
|
34122
|
+
};
|
|
34055
34123
|
export declare type CplsDeleteContributorWorkAssociationInput = {
|
|
34056
34124
|
cloudId: Scalars['ID']['input'];
|
|
34057
34125
|
contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
|
|
@@ -34061,12 +34129,16 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
|
34061
34129
|
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
34062
34130
|
errors?: Maybe<Array<MutationError>>;
|
|
34063
34131
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34132
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34064
34133
|
success: Scalars['Boolean']['output'];
|
|
34065
34134
|
worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
|
|
34066
34135
|
};
|
|
34067
34136
|
export declare type CplsDeleteContributorWorkAssociationPayloadContributorsByScopeArgs = {
|
|
34068
34137
|
scopeId: Scalars['ID']['input'];
|
|
34069
34138
|
};
|
|
34139
|
+
export declare type CplsDeleteContributorWorkAssociationPayloadPeopleViewArgs = {
|
|
34140
|
+
scopeId: Scalars['ID']['input'];
|
|
34141
|
+
};
|
|
34070
34142
|
export declare type CplsDeleteContributorWorkAssociationPayloadWorksByScopeArgs = {
|
|
34071
34143
|
scopeId: Scalars['ID']['input'];
|
|
34072
34144
|
};
|
|
@@ -34079,12 +34151,16 @@ export declare type CplsDeleteContributorWorkAssociationSuggestionPayload = Payl
|
|
|
34079
34151
|
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
34080
34152
|
errors?: Maybe<Array<MutationError>>;
|
|
34081
34153
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34154
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34082
34155
|
success: Scalars['Boolean']['output'];
|
|
34083
34156
|
worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
|
|
34084
34157
|
};
|
|
34085
34158
|
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadContributorsByScopeArgs = {
|
|
34086
34159
|
scopeId: Scalars['ID']['input'];
|
|
34087
34160
|
};
|
|
34161
|
+
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadPeopleViewArgs = {
|
|
34162
|
+
scopeId: Scalars['ID']['input'];
|
|
34163
|
+
};
|
|
34088
34164
|
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadWorksByScopeArgs = {
|
|
34089
34165
|
scopeId: Scalars['ID']['input'];
|
|
34090
34166
|
};
|
|
@@ -34134,6 +34210,7 @@ export declare type CplsFilterConfigurationJiraWorkItemsArgs = {
|
|
|
34134
34210
|
export declare type CplsFilterConfigurationType = CplsFilterConfiguration | QueryError;
|
|
34135
34211
|
export declare type CplsFilters = {
|
|
34136
34212
|
__typename?: 'CplsFilters';
|
|
34213
|
+
atlasProjectStates?: Maybe<Array<Scalars['String']['output']>>;
|
|
34137
34214
|
atlasProjects?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34138
34215
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34139
34216
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -34143,6 +34220,7 @@ export declare type CplsFilters = {
|
|
|
34143
34220
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
34144
34221
|
};
|
|
34145
34222
|
export declare type CplsFiltersInput = {
|
|
34223
|
+
atlasProjectStates?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
34146
34224
|
atlasProjects?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
34147
34225
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
34148
34226
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -99168,24 +99246,35 @@ export declare type GravityField = {
|
|
|
99168
99246
|
global: Scalars['Boolean']['output'];
|
|
99169
99247
|
key: Scalars['String']['output'];
|
|
99170
99248
|
name: Scalars['String']['output'];
|
|
99171
|
-
options?: Maybe<Array<
|
|
99249
|
+
options?: Maybe<Array<GravityFieldOption>>;
|
|
99172
99250
|
type: Scalars['String']['output'];
|
|
99173
99251
|
};
|
|
99174
99252
|
export declare type GravityFieldDefinition = {
|
|
99175
99253
|
__typename?: 'GravityFieldDefinition';
|
|
99176
99254
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
99177
99255
|
description?: Maybe<Scalars['String']['output']>;
|
|
99178
|
-
global
|
|
99256
|
+
global?: Maybe<Scalars['Boolean']['output']>;
|
|
99179
99257
|
name: Scalars['String']['output'];
|
|
99180
|
-
options?: Maybe<Array<
|
|
99258
|
+
options?: Maybe<Array<GravityFieldDefinitionOption>>;
|
|
99181
99259
|
ref: Scalars['ID']['output'];
|
|
99182
99260
|
type: Scalars['String']['output'];
|
|
99183
99261
|
};
|
|
99262
|
+
export declare type GravityFieldDefinitionOption = {
|
|
99263
|
+
__typename?: 'GravityFieldDefinitionOption';
|
|
99264
|
+
ref?: Maybe<Scalars['ID']['output']>;
|
|
99265
|
+
value: Scalars['String']['output'];
|
|
99266
|
+
};
|
|
99184
99267
|
export declare type GravityFieldMappingProposals = {
|
|
99185
99268
|
__typename?: 'GravityFieldMappingProposals';
|
|
99186
99269
|
proposals: Array<GravityField>;
|
|
99187
99270
|
ref: Scalars['ID']['output'];
|
|
99188
99271
|
};
|
|
99272
|
+
export declare type GravityFieldOption = {
|
|
99273
|
+
__typename?: 'GravityFieldOption';
|
|
99274
|
+
disabled: Scalars['Boolean']['output'];
|
|
99275
|
+
id: Scalars['ID']['output'];
|
|
99276
|
+
value: Scalars['String']['output'];
|
|
99277
|
+
};
|
|
99189
99278
|
export declare type GravityFieldRefMappingInput = {
|
|
99190
99279
|
key: Scalars['String']['input'];
|
|
99191
99280
|
ref: Scalars['ID']['input'];
|
|
@@ -102718,9 +102807,6 @@ export declare type IncomingLinksCount = {
|
|
|
102718
102807
|
__typename?: 'IncomingLinksCount';
|
|
102719
102808
|
count?: Maybe<Scalars['Int']['output']>;
|
|
102720
102809
|
};
|
|
102721
|
-
export declare type IndexHintInputType = {
|
|
102722
|
-
hints?: InputMaybe<Array<InputMaybe<PreferredIndexInputType>>>;
|
|
102723
|
-
};
|
|
102724
102810
|
export declare type IndividualInlineTaskNotification = {
|
|
102725
102811
|
__typename?: 'IndividualInlineTaskNotification';
|
|
102726
102812
|
notificationAction?: Maybe<NotificationAction>;
|
|
@@ -111482,6 +111568,81 @@ export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
|
111482
111568
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
111483
111569
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
111484
111570
|
};
|
|
111571
|
+
export declare type JiraGroupedTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
111572
|
+
__typename?: 'JiraGroupedTimelineView';
|
|
111573
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
111574
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
111575
|
+
defaultJql?: Maybe<Scalars['String']['output']>;
|
|
111576
|
+
error?: Maybe<QueryError>;
|
|
111577
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
111578
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
111579
|
+
groups?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
111580
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
111581
|
+
id: Scalars['ID']['output'];
|
|
111582
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
111583
|
+
isTimelineViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
111584
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
111585
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
111586
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
111587
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
111588
|
+
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
111589
|
+
timelineProjectSettings?: Maybe<JiraTimelineProjectSettings>;
|
|
111590
|
+
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
111591
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
111592
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
111593
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
111594
|
+
};
|
|
111595
|
+
export declare type JiraGroupedTimelineViewConditionalFormattingRulesArgs = {
|
|
111596
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
111597
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111598
|
+
};
|
|
111599
|
+
export declare type JiraGroupedTimelineViewFieldSetsArgs = {
|
|
111600
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
111601
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
111602
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
111603
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111604
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
111605
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
111606
|
+
};
|
|
111607
|
+
export declare type JiraGroupedTimelineViewGroupsArgs = {
|
|
111608
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
111609
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
111610
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111611
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
111612
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
111613
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
111614
|
+
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
111615
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
111616
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
111617
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
111618
|
+
};
|
|
111619
|
+
export declare type JiraGroupedTimelineViewHasDefaultFieldSetsArgs = {
|
|
111620
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
111621
|
+
};
|
|
111622
|
+
export declare type JiraGroupedTimelineViewIsTimelineViewConfigModifiedArgs = {
|
|
111623
|
+
timelineViewSettings?: InputMaybe<JiraTimelineViewSettings>;
|
|
111624
|
+
};
|
|
111625
|
+
export declare type JiraGroupedTimelineViewIsViewConfigModifiedArgs = {
|
|
111626
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
111627
|
+
};
|
|
111628
|
+
export declare type JiraGroupedTimelineViewTimelineProjectSettingsArgs = {
|
|
111629
|
+
input?: InputMaybe<JiraTimelineProjectOrBoardInput>;
|
|
111630
|
+
};
|
|
111631
|
+
export declare type JiraGroupedTimelineViewTimelineSettingsArgs = {
|
|
111632
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
111633
|
+
timelineStaticViewInput?: InputMaybe<JiraTimelineStaticViewInput>;
|
|
111634
|
+
};
|
|
111635
|
+
export declare type JiraGroupedTimelineViewValidateJqlArgs = {
|
|
111636
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
111637
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
111638
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
111639
|
+
};
|
|
111640
|
+
export declare type JiraGroupedTimelineViewViewSettingsArgs = {
|
|
111641
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
111642
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
111643
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
111644
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
111645
|
+
};
|
|
111485
111646
|
export declare enum JiraGroupingSeparator {
|
|
111486
111647
|
Comma = "COMMA",
|
|
111487
111648
|
Locale = "LOCALE",
|
|
@@ -111708,6 +111869,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
111708
111869
|
__typename?: 'JiraIssue';
|
|
111709
111870
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
111710
111871
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
111872
|
+
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
111711
111873
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
111712
111874
|
archivedBy?: Maybe<User>;
|
|
111713
111875
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -111884,6 +112046,11 @@ export declare type JiraIssueAllActivitiesArgs = {
|
|
|
111884
112046
|
first: Scalars['Int']['input'];
|
|
111885
112047
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
111886
112048
|
};
|
|
112049
|
+
export declare type JiraIssueAllAgentSessionsArgs = {
|
|
112050
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
112051
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
112052
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
112053
|
+
};
|
|
111887
112054
|
export declare type JiraIssueApprovalActivitiesArgs = {
|
|
111888
112055
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
111889
112056
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -124478,6 +124645,7 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
124478
124645
|
__typename?: 'JiraSetIssueSearchHideDoneItemsPayload';
|
|
124479
124646
|
errors?: Maybe<Array<MutationError>>;
|
|
124480
124647
|
success: Scalars['Boolean']['output'];
|
|
124648
|
+
view?: Maybe<JiraView>;
|
|
124481
124649
|
};
|
|
124482
124650
|
export declare type JiraSetIssueSearchHideWarningsInput = {
|
|
124483
124651
|
hideWarnings: Scalars['Boolean']['input'];
|
|
@@ -128945,6 +129113,11 @@ export declare type JpdViewsServiceFilterInput = {
|
|
|
128945
129113
|
kind: Scalars['String']['input'];
|
|
128946
129114
|
values: Array<JpdViewsServiceFilterValueInput>;
|
|
128947
129115
|
};
|
|
129116
|
+
export declare type JpdViewsServiceFilterInput2 = {
|
|
129117
|
+
field: Scalars['String']['input'];
|
|
129118
|
+
kind: Scalars['String']['input'];
|
|
129119
|
+
values: Array<JpdViewsServiceFilterValueInput2>;
|
|
129120
|
+
};
|
|
128948
129121
|
export declare type JpdViewsServiceFilterValue = {
|
|
128949
129122
|
__typename?: 'JpdViewsServiceFilterValue';
|
|
128950
129123
|
enumValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -128958,6 +129131,12 @@ export declare type JpdViewsServiceFilterValueInput = {
|
|
|
128958
129131
|
operator?: InputMaybe<Scalars['String']['input']>;
|
|
128959
129132
|
stringValue?: InputMaybe<Scalars['String']['input']>;
|
|
128960
129133
|
};
|
|
129134
|
+
export declare type JpdViewsServiceFilterValueInput2 = {
|
|
129135
|
+
enumValue?: InputMaybe<Scalars['String']['input']>;
|
|
129136
|
+
operator?: InputMaybe<Scalars['String']['input']>;
|
|
129137
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
129138
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
129139
|
+
};
|
|
128961
129140
|
export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node & {
|
|
128962
129141
|
__typename?: 'JpdViewsServiceGlobalView';
|
|
128963
129142
|
assocToNewSpaces?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129278,6 +129457,42 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
129278
129457
|
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
129279
129458
|
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
129280
129459
|
};
|
|
129460
|
+
export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
129461
|
+
assocToNewSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129462
|
+
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129463
|
+
colorBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
129464
|
+
colorStyle?: InputMaybe<Scalars['String']['input']>;
|
|
129465
|
+
columnSize?: InputMaybe<Scalars['String']['input']>;
|
|
129466
|
+
connectionsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
129467
|
+
connectionsLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
129468
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
129469
|
+
descriptionNew?: InputMaybe<Scalars['JSON']['input']>;
|
|
129470
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
129471
|
+
fieldRollups?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldRollupInput>>>;
|
|
129472
|
+
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
129473
|
+
filter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
129474
|
+
groupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
129475
|
+
groupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
129476
|
+
groupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
129477
|
+
hiddenFields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
129478
|
+
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129479
|
+
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129480
|
+
id: Scalars['ID']['input'];
|
|
129481
|
+
layoutType?: InputMaybe<Scalars['String']['input']>;
|
|
129482
|
+
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
129483
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
129484
|
+
numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
129485
|
+
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129486
|
+
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129487
|
+
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
129488
|
+
sortMode?: InputMaybe<Scalars['String']['input']>;
|
|
129489
|
+
tableColumnSizes?: InputMaybe<Array<InputMaybe<JpdViewsServiceTableColumnSizeInput>>>;
|
|
129490
|
+
timelineConfig?: InputMaybe<JpdViewsServiceTimelineConfigInput>;
|
|
129491
|
+
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
129492
|
+
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
129493
|
+
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
129494
|
+
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
129495
|
+
};
|
|
129281
129496
|
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
129282
129497
|
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload';
|
|
129283
129498
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -129548,8 +129763,19 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
129548
129763
|
Pending = "PENDING",
|
|
129549
129764
|
Waiting = "WAITING"
|
|
129550
129765
|
}
|
|
129766
|
+
export declare type JsmChannelsServiceAgentResolutionContentSource = {
|
|
129767
|
+
__typename?: 'JsmChannelsServiceAgentResolutionContentSource';
|
|
129768
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
129769
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
129770
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
129771
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
129772
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
129773
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
129774
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
129775
|
+
};
|
|
129551
129776
|
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
129552
129777
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
129778
|
+
contentSources?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionContentSource>>>;
|
|
129553
129779
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
129554
129780
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
129555
129781
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
@@ -130765,6 +130991,7 @@ export declare type KitsuneEntitlements = {
|
|
|
130765
130991
|
};
|
|
130766
130992
|
export declare type KitsuneFeedback = Node & {
|
|
130767
130993
|
__typename?: 'KitsuneFeedback';
|
|
130994
|
+
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
130768
130995
|
chunks: KitsuneChunkConnection;
|
|
130769
130996
|
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
130770
130997
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -130812,6 +131039,7 @@ export declare enum KitsuneFeedbackEditionType {
|
|
|
130812
131039
|
}
|
|
130813
131040
|
export declare type KitsuneFeedbackEvent = {
|
|
130814
131041
|
__typename?: 'KitsuneFeedbackEvent';
|
|
131042
|
+
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
130815
131043
|
content: Scalars['KitsuneADF']['output'];
|
|
130816
131044
|
createdAt: Scalars['DateTime']['output'];
|
|
130817
131045
|
id: Scalars['ID']['output'];
|
|
@@ -131027,21 +131255,27 @@ export declare type KitsuneSourceCategoryEdge = KitsuneEdge & {
|
|
|
131027
131255
|
export declare enum KitsuneSourceCategoryType {
|
|
131028
131256
|
AdaCx = "ADA_CX",
|
|
131029
131257
|
Aircall = "AIRCALL",
|
|
131258
|
+
Airfocus = "AIRFOCUS",
|
|
131030
131259
|
Airtable = "AIRTABLE",
|
|
131031
131260
|
AlternativeTo = "ALTERNATIVE_TO",
|
|
131032
131261
|
Amplitude = "AMPLITUDE",
|
|
131033
131262
|
Api = "API",
|
|
131034
131263
|
AppleAppStore = "APPLE_APP_STORE",
|
|
131035
131264
|
Asana = "ASANA",
|
|
131265
|
+
Askable = "ASKABLE",
|
|
131266
|
+
AtlassianCommunity = "ATLASSIAN_COMMUNITY",
|
|
131036
131267
|
Attio = "ATTIO",
|
|
131037
131268
|
AudioFiles = "AUDIO_FILES",
|
|
131269
|
+
Bagel = "BAGEL",
|
|
131038
131270
|
BigqueryByGoogle = "BIGQUERY_BY_GOOGLE",
|
|
131039
131271
|
Bitbucket = "BITBUCKET",
|
|
131040
131272
|
Blueconic = "BLUECONIC",
|
|
131041
131273
|
Bluesky = "BLUESKY",
|
|
131274
|
+
Buildbetter = "BUILDBETTER",
|
|
131042
131275
|
Capterra = "CAPTERRA",
|
|
131043
131276
|
ChorusByZoominfo = "CHORUS_BY_ZOOMINFO",
|
|
131044
131277
|
Chrome = "CHROME",
|
|
131278
|
+
Churnzero = "CHURNZERO",
|
|
131045
131279
|
Circle = "CIRCLE",
|
|
131046
131280
|
CiscoWebex = "CISCO_WEBEX",
|
|
131047
131281
|
Claap = "CLAAP",
|
|
@@ -131054,9 +131288,11 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131054
131288
|
Customerly = "CUSTOMERLY",
|
|
131055
131289
|
Discord = "DISCORD",
|
|
131056
131290
|
Discourse = "DISCOURSE",
|
|
131291
|
+
Dovetail = "DOVETAIL",
|
|
131057
131292
|
Drift = "DRIFT",
|
|
131058
131293
|
DropboxPaper = "DROPBOX_PAPER",
|
|
131059
131294
|
Email = "EMAIL",
|
|
131295
|
+
Enterpret = "ENTERPRET",
|
|
131060
131296
|
Evernote = "EVERNOTE",
|
|
131061
131297
|
ExcelSpreadsheets = "EXCEL_SPREADSHEETS",
|
|
131062
131298
|
Facebook = "FACEBOOK",
|
|
@@ -131065,7 +131301,9 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131065
131301
|
Fillout = "FILLOUT",
|
|
131066
131302
|
Fireflies = "FIREFLIES",
|
|
131067
131303
|
Folk = "FOLK",
|
|
131304
|
+
Forelight = "FORELIGHT",
|
|
131068
131305
|
Formstack = "FORMSTACK",
|
|
131306
|
+
FourApp = "FOUR_APP",
|
|
131069
131307
|
Front = "FRONT",
|
|
131070
131308
|
G2 = "G2",
|
|
131071
131309
|
Gainsight = "GAINSIGHT",
|
|
@@ -131076,21 +131314,28 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131076
131314
|
GoogleChat = "GOOGLE_CHAT",
|
|
131077
131315
|
GoogleDocs = "GOOGLE_DOCS",
|
|
131078
131316
|
GoogleForms = "GOOGLE_FORMS",
|
|
131317
|
+
GoogleMapReview = "GOOGLE_MAP_REVIEW",
|
|
131079
131318
|
GoogleMeet = "GOOGLE_MEET",
|
|
131080
131319
|
GooglePlayStore = "GOOGLE_PLAY_STORE",
|
|
131081
131320
|
GoogleSheets = "GOOGLE_SHEETS",
|
|
131321
|
+
GoogleSlides = "GOOGLE_SLIDES",
|
|
131082
131322
|
Grain = "GRAIN",
|
|
131323
|
+
GreatQuestion = "GREAT_QUESTION",
|
|
131324
|
+
Harvestr = "HARVESTR",
|
|
131083
131325
|
HelpScout = "HELP_SCOUT",
|
|
131084
131326
|
Hubspot = "HUBSPOT",
|
|
131085
131327
|
Ifttt = "IFTTT",
|
|
131086
131328
|
ImageFiles = "IMAGE_FILES",
|
|
131329
|
+
Index = "INDEX",
|
|
131087
131330
|
Intercom = "INTERCOM",
|
|
131088
131331
|
Jira = "JIRA",
|
|
131089
131332
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
131090
131333
|
Jotform = "JOTFORM",
|
|
131091
131334
|
Kustomer = "KUSTOMER",
|
|
131092
131335
|
Linear = "LINEAR",
|
|
131336
|
+
LinearCustomerRequest = "LINEAR_CUSTOMER_REQUEST",
|
|
131093
131337
|
Linkedin = "LINKEDIN",
|
|
131338
|
+
Listenup = "LISTENUP",
|
|
131094
131339
|
LogmeinGotomeeting = "LOGMEIN_GOTOMEETING",
|
|
131095
131340
|
Loom = "LOOM",
|
|
131096
131341
|
Make = "MAKE",
|
|
@@ -131099,20 +131344,28 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131099
131344
|
Modjo = "MODJO",
|
|
131100
131345
|
Monday = "MONDAY",
|
|
131101
131346
|
N8N = "N8N",
|
|
131347
|
+
NextAi = "NEXT_AI",
|
|
131348
|
+
Nodale = "NODALE",
|
|
131102
131349
|
Notion = "NOTION",
|
|
131103
131350
|
NotionTables = "NOTION_TABLES",
|
|
131104
131351
|
Otter = "OTTER",
|
|
131105
131352
|
PdfFiles = "PDF_FILES",
|
|
131106
131353
|
Pipedrive = "PIPEDRIVE",
|
|
131107
131354
|
Planhat = "PLANHAT",
|
|
131355
|
+
Powerpoint = "POWERPOINT",
|
|
131356
|
+
Prodpad = "PRODPAD",
|
|
131357
|
+
Productboard = "PRODUCTBOARD",
|
|
131108
131358
|
Pylon = "PYLON",
|
|
131109
131359
|
Qualtrics = "QUALTRICS",
|
|
131110
131360
|
Quip = "QUIP",
|
|
131111
131361
|
Reddit = "REDDIT",
|
|
131362
|
+
ReleasedSo = "RELEASED_SO",
|
|
131112
131363
|
Rewatch = "REWATCH",
|
|
131113
131364
|
Salesforce = "SALESFORCE",
|
|
131114
131365
|
Salesloft = "SALESLOFT",
|
|
131366
|
+
Sauce = "SAUCE",
|
|
131115
131367
|
Segment = "SEGMENT",
|
|
131368
|
+
SentimentSearch = "SENTIMENT_SEARCH",
|
|
131116
131369
|
Sharepoint = "SHAREPOINT",
|
|
131117
131370
|
Shortcut = "SHORTCUT",
|
|
131118
131371
|
Slack = "SLACK",
|
|
@@ -131121,6 +131374,7 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131121
131374
|
Smartsheet = "SMARTSHEET",
|
|
131122
131375
|
Snowflake = "SNOWFLAKE",
|
|
131123
131376
|
SoftwareAdvice = "SOFTWARE_ADVICE",
|
|
131377
|
+
StaircaseAi = "STAIRCASE_AI",
|
|
131124
131378
|
Surveymonkey = "SURVEYMONKEY",
|
|
131125
131379
|
Surveyplanet = "SURVEYPLANET",
|
|
131126
131380
|
Surveysparrow = "SURVEYSPARROW",
|
|
@@ -131137,13 +131391,18 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131137
131391
|
Twist = "TWIST",
|
|
131138
131392
|
TwitterX = "TWITTER_X",
|
|
131139
131393
|
Typeform = "TYPEFORM",
|
|
131394
|
+
Unwrap = "UNWRAP",
|
|
131395
|
+
Userfeed = "USERFEED",
|
|
131396
|
+
Usersnap = "USERSNAP",
|
|
131140
131397
|
VideoFiles = "VIDEO_FILES",
|
|
131141
131398
|
Vidyard = "VIDYARD",
|
|
131142
131399
|
Vitally = "VITALLY",
|
|
131400
|
+
Vivun = "VIVUN",
|
|
131143
131401
|
Word = "WORD",
|
|
131144
131402
|
WorkplaceByMeta = "WORKPLACE_BY_META",
|
|
131145
131403
|
Wufoo = "WUFOO",
|
|
131146
131404
|
Zapier = "ZAPIER",
|
|
131405
|
+
Zelta = "ZELTA",
|
|
131147
131406
|
Zendesk = "ZENDESK",
|
|
131148
131407
|
Zoho = "ZOHO",
|
|
131149
131408
|
Zoom = "ZOOM",
|
|
@@ -137185,6 +137444,56 @@ export declare type MediaFile = {
|
|
|
137185
137444
|
name: Scalars['String']['input'];
|
|
137186
137445
|
size: Scalars['Int']['input'];
|
|
137187
137446
|
};
|
|
137447
|
+
export declare type MediaFileAbuseClassification = {
|
|
137448
|
+
__typename?: 'MediaFileAbuseClassification';
|
|
137449
|
+
classification?: Maybe<Scalars['String']['output']>;
|
|
137450
|
+
confidence?: Maybe<Scalars['String']['output']>;
|
|
137451
|
+
};
|
|
137452
|
+
export declare type MediaFileDetails = {
|
|
137453
|
+
__typename?: 'MediaFileDetails';
|
|
137454
|
+
abuseClassification?: Maybe<MediaFileAbuseClassification>;
|
|
137455
|
+
artifacts?: Maybe<Scalars['JSONObject']['output']>;
|
|
137456
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
137457
|
+
failReason?: Maybe<Scalars['String']['output']>;
|
|
137458
|
+
mediaMetadata?: Maybe<MediaFileMetadata>;
|
|
137459
|
+
mediaType?: Maybe<Scalars['String']['output']>;
|
|
137460
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
137461
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
137462
|
+
preview?: Maybe<MediaFilePreview>;
|
|
137463
|
+
processingStatus?: Maybe<Scalars['String']['output']>;
|
|
137464
|
+
representations?: Maybe<MediaFileRepresentations>;
|
|
137465
|
+
size?: Maybe<Scalars['Long']['output']>;
|
|
137466
|
+
};
|
|
137467
|
+
export declare type MediaFileDetailsArtifactsArgs = {
|
|
137468
|
+
types?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
137469
|
+
};
|
|
137470
|
+
export declare type MediaFileMetadata = {
|
|
137471
|
+
__typename?: 'MediaFileMetadata';
|
|
137472
|
+
duration?: Maybe<Scalars['Float']['output']>;
|
|
137473
|
+
};
|
|
137474
|
+
export declare type MediaFilePreview = {
|
|
137475
|
+
__typename?: 'MediaFilePreview';
|
|
137476
|
+
cdnUrl?: Maybe<Scalars['String']['output']>;
|
|
137477
|
+
};
|
|
137478
|
+
export declare type MediaFileRepresentations = {
|
|
137479
|
+
__typename?: 'MediaFileRepresentations';
|
|
137480
|
+
image?: Maybe<MediaImageRepresentation>;
|
|
137481
|
+
};
|
|
137482
|
+
export declare type MediaImageRepresentation = {
|
|
137483
|
+
__typename?: 'MediaImageRepresentation';
|
|
137484
|
+
_empty?: Maybe<Scalars['Boolean']['output']>;
|
|
137485
|
+
};
|
|
137486
|
+
export declare type MediaItem = {
|
|
137487
|
+
__typename?: 'MediaItem';
|
|
137488
|
+
details: MediaFileDetails;
|
|
137489
|
+
id: Scalars['ID']['output'];
|
|
137490
|
+
type: Scalars['String']['output'];
|
|
137491
|
+
};
|
|
137492
|
+
export declare type MediaItemDescriptorInput = {
|
|
137493
|
+
collection?: InputMaybe<Scalars['String']['input']>;
|
|
137494
|
+
fileId: Scalars['ID']['input'];
|
|
137495
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
137496
|
+
};
|
|
137188
137497
|
export declare type MediaPickerUserToken = {
|
|
137189
137498
|
__typename?: 'MediaPickerUserToken';
|
|
137190
137499
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -138079,6 +138388,17 @@ export declare type MercuryCreateRiskInput = {
|
|
|
138079
138388
|
submitter?: InputMaybe<Scalars['ID']['input']>;
|
|
138080
138389
|
targetDate?: InputMaybe<MercuryRiskTargetDateInput>;
|
|
138081
138390
|
};
|
|
138391
|
+
export declare type MercuryCreateRiskLinkInput = {
|
|
138392
|
+
riskId: Scalars['ID']['input'];
|
|
138393
|
+
text: Scalars['String']['input'];
|
|
138394
|
+
url: Scalars['String']['input'];
|
|
138395
|
+
};
|
|
138396
|
+
export declare type MercuryCreateRiskLinkPayload = Payload & {
|
|
138397
|
+
__typename?: 'MercuryCreateRiskLinkPayload';
|
|
138398
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138399
|
+
riskLink?: Maybe<MercuryRiskLink>;
|
|
138400
|
+
success: Scalars['Boolean']['output'];
|
|
138401
|
+
};
|
|
138082
138402
|
export declare type MercuryCreateRiskPayload = Payload & {
|
|
138083
138403
|
__typename?: 'MercuryCreateRiskPayload';
|
|
138084
138404
|
createdRisk?: Maybe<MercuryRisk>;
|
|
@@ -138456,6 +138776,15 @@ export declare type MercuryDeletePreferencePayload = Payload & {
|
|
|
138456
138776
|
export declare type MercuryDeleteRiskInput = {
|
|
138457
138777
|
id: Scalars['ID']['input'];
|
|
138458
138778
|
};
|
|
138779
|
+
export declare type MercuryDeleteRiskLinkInput = {
|
|
138780
|
+
cloudId: Scalars['ID']['input'];
|
|
138781
|
+
id: Scalars['ID']['input'];
|
|
138782
|
+
};
|
|
138783
|
+
export declare type MercuryDeleteRiskLinkPayload = Payload & {
|
|
138784
|
+
__typename?: 'MercuryDeleteRiskLinkPayload';
|
|
138785
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138786
|
+
success: Scalars['Boolean']['output'];
|
|
138787
|
+
};
|
|
138459
138788
|
export declare type MercuryDeleteRiskPayload = Payload & {
|
|
138460
138789
|
__typename?: 'MercuryDeleteRiskPayload';
|
|
138461
138790
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -139198,7 +139527,9 @@ export declare type MercuryFundsMutationApi = {
|
|
|
139198
139527
|
deleteFocusAreaBudget?: Maybe<MercuryDeleteFocusAreaBudgetPayload>;
|
|
139199
139528
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
139200
139529
|
setBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
139530
|
+
setCostBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
139201
139531
|
unsetBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
139532
|
+
unsetCostBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
139202
139533
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
139203
139534
|
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
139204
139535
|
updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
|
|
@@ -139266,9 +139597,15 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
139266
139597
|
export declare type MercuryFundsMutationApiSetBaselineArgs = {
|
|
139267
139598
|
input: MercurySetBaselineInput;
|
|
139268
139599
|
};
|
|
139600
|
+
export declare type MercuryFundsMutationApiSetCostBaselineArgs = {
|
|
139601
|
+
input: MercurySetBaselineInput;
|
|
139602
|
+
};
|
|
139269
139603
|
export declare type MercuryFundsMutationApiUnsetBaselineArgs = {
|
|
139270
139604
|
input: MercuryUnsetBaselineInput;
|
|
139271
139605
|
};
|
|
139606
|
+
export declare type MercuryFundsMutationApiUnsetCostBaselineArgs = {
|
|
139607
|
+
input: MercuryUnsetBaselineInput;
|
|
139608
|
+
};
|
|
139272
139609
|
export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
139273
139610
|
input: MercuryUpdateActiveCurrencyInput;
|
|
139274
139611
|
};
|
|
@@ -141080,6 +141417,7 @@ export declare type MercuryRisk = Node & {
|
|
|
141080
141417
|
linkedFocusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
141081
141418
|
name: Scalars['String']['output'];
|
|
141082
141419
|
owner?: Maybe<User>;
|
|
141420
|
+
riskLinks?: Maybe<Array<MercuryRiskLink>>;
|
|
141083
141421
|
status?: Maybe<MercuryRiskStatus>;
|
|
141084
141422
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
141085
141423
|
submitter?: Maybe<User>;
|
|
@@ -141107,6 +141445,17 @@ export declare type MercuryRiskLikelihood = {
|
|
|
141107
141445
|
key: Scalars['String']['output'];
|
|
141108
141446
|
value: Scalars['Int']['output'];
|
|
141109
141447
|
};
|
|
141448
|
+
export declare type MercuryRiskLink = {
|
|
141449
|
+
__typename?: 'MercuryRiskLink';
|
|
141450
|
+
createdBy?: Maybe<User>;
|
|
141451
|
+
createdDate: Scalars['String']['output'];
|
|
141452
|
+
id: Scalars['ID']['output'];
|
|
141453
|
+
riskId: Scalars['ID']['output'];
|
|
141454
|
+
text: Scalars['String']['output'];
|
|
141455
|
+
updatedBy?: Maybe<User>;
|
|
141456
|
+
updatedDate: Scalars['String']['output'];
|
|
141457
|
+
url: Scalars['String']['output'];
|
|
141458
|
+
};
|
|
141110
141459
|
export declare type MercuryRiskSort = {
|
|
141111
141460
|
field: MercuryRiskSortField;
|
|
141112
141461
|
order: SortOrder;
|
|
@@ -141159,7 +141508,9 @@ export declare enum MercuryRiskTargetDateType {
|
|
|
141159
141508
|
export declare type MercuryRisksMutationApi = {
|
|
141160
141509
|
__typename?: 'MercuryRisksMutationApi';
|
|
141161
141510
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
141511
|
+
createRiskLink?: Maybe<MercuryCreateRiskLinkPayload>;
|
|
141162
141512
|
deleteRisk?: Maybe<MercuryDeleteRiskPayload>;
|
|
141513
|
+
deleteRiskLink?: Maybe<MercuryDeleteRiskLinkPayload>;
|
|
141163
141514
|
linkRiskToFocusAreas?: Maybe<MercuryLinkRiskToFocusAreasPayload>;
|
|
141164
141515
|
transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
|
|
141165
141516
|
unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
|
|
@@ -141175,9 +141526,15 @@ export declare type MercuryRisksMutationApi = {
|
|
|
141175
141526
|
export declare type MercuryRisksMutationApiCreateRiskArgs = {
|
|
141176
141527
|
input: MercuryCreateRiskInput;
|
|
141177
141528
|
};
|
|
141529
|
+
export declare type MercuryRisksMutationApiCreateRiskLinkArgs = {
|
|
141530
|
+
input: MercuryCreateRiskLinkInput;
|
|
141531
|
+
};
|
|
141178
141532
|
export declare type MercuryRisksMutationApiDeleteRiskArgs = {
|
|
141179
141533
|
input: MercuryDeleteRiskInput;
|
|
141180
141534
|
};
|
|
141535
|
+
export declare type MercuryRisksMutationApiDeleteRiskLinkArgs = {
|
|
141536
|
+
input: MercuryDeleteRiskLinkInput;
|
|
141537
|
+
};
|
|
141181
141538
|
export declare type MercuryRisksMutationApiLinkRiskToFocusAreasArgs = {
|
|
141182
141539
|
input: MercuryLinkRiskToFocusAreasInput;
|
|
141183
141540
|
};
|
|
@@ -141931,7 +142288,6 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
|
141931
142288
|
};
|
|
141932
142289
|
export declare type MercuryUnsetBaselineInput = {
|
|
141933
142290
|
endYearMonth: Scalars['String']['input'];
|
|
141934
|
-
financialVersionId: Scalars['ID']['input'];
|
|
141935
142291
|
focusAreaId: Scalars['ID']['input'];
|
|
141936
142292
|
startYearMonth: Scalars['String']['input'];
|
|
141937
142293
|
};
|
|
@@ -143479,6 +143835,7 @@ export declare type Mutation = {
|
|
|
143479
143835
|
jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
|
|
143480
143836
|
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
143481
143837
|
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
143838
|
+
jpdViewsService_updateGlobalViewV3?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
143482
143839
|
jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
|
|
143483
143840
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
143484
143841
|
jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
|
|
@@ -146636,6 +146993,9 @@ export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
|
|
|
146636
146993
|
export declare type MutationJpdViewsService_UpdateGlobalViewV2Args = {
|
|
146637
146994
|
input: JpdViewsServiceUpdateGlobalViewInput;
|
|
146638
146995
|
};
|
|
146996
|
+
export declare type MutationJpdViewsService_UpdateGlobalViewV3Args = {
|
|
146997
|
+
input: JpdViewsServiceUpdateGlobalViewInput2;
|
|
146998
|
+
};
|
|
146639
146999
|
export declare type MutationJsmChannels_EstablishConnectionArgs = {
|
|
146640
147000
|
input: JsmChannelsEstablishConnectionInput;
|
|
146641
147001
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -149794,10 +150154,12 @@ export declare enum PlaybookTemplateIcon {
|
|
|
149794
150154
|
ChangeManagement_4Icon = "CHANGE_MANAGEMENT_4_ICON",
|
|
149795
150155
|
Chat_5Icon = "CHAT_5_ICON",
|
|
149796
150156
|
DataPrivacyIcon = "DATA_PRIVACY_ICON",
|
|
150157
|
+
ErrorColorIcon = "ERROR_COLOR_ICON",
|
|
149797
150158
|
HourglassIcon = "HOURGLASS_ICON",
|
|
149798
150159
|
OnboardingIcon = "ONBOARDING_ICON",
|
|
149799
150160
|
RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
|
|
149800
|
-
RefreshUpdateIcon = "REFRESH_UPDATE_ICON"
|
|
150161
|
+
RefreshUpdateIcon = "REFRESH_UPDATE_ICON",
|
|
150162
|
+
StopwatchIcon = "STOPWATCH_ICON"
|
|
149801
150163
|
}
|
|
149802
150164
|
export declare type PokemonEntity = {
|
|
149803
150165
|
__typename?: 'PokemonEntity';
|
|
@@ -150278,6 +150640,7 @@ export declare type PolarisView = {
|
|
|
150278
150640
|
fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
|
|
150279
150641
|
fields: Array<PolarisIdeaField>;
|
|
150280
150642
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
150643
|
+
global: Scalars['Boolean']['output'];
|
|
150281
150644
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
150282
150645
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
150283
150646
|
groupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
@@ -150499,7 +150862,12 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
150499
150862
|
Explicit = "explicit",
|
|
150500
150863
|
Implicit = "implicit"
|
|
150501
150864
|
}
|
|
150502
|
-
export declare type PostOfficeMessageData = PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
|
|
150865
|
+
export declare type PostOfficeMessageData = PostOfficeMessageJiraBoardCatchUpRovoNudgeData | PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
|
|
150866
|
+
export declare type PostOfficeMessageJiraBoardCatchUpRovoNudgeData = {
|
|
150867
|
+
__typename?: 'PostOfficeMessageJiraBoardCatchUpRovoNudgeData';
|
|
150868
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
150869
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
150870
|
+
};
|
|
150503
150871
|
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
150504
150872
|
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
150505
150873
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -150544,11 +150912,6 @@ export declare type PostOfficeSubscriptionMatchersInput = {
|
|
|
150544
150912
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
150545
150913
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
150546
150914
|
};
|
|
150547
|
-
export declare type PreferredIndexInputType = {
|
|
150548
|
-
allowSelectAllAsFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150549
|
-
gqlSchemaName?: InputMaybe<Scalars['String']['input']>;
|
|
150550
|
-
indexName?: InputMaybe<Scalars['String']['input']>;
|
|
150551
|
-
};
|
|
150552
150915
|
export declare type PremiumExtensionsFeature = {
|
|
150553
150916
|
__typename?: 'PremiumExtensionsFeature';
|
|
150554
150917
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -151150,6 +151513,7 @@ export declare type Query = {
|
|
|
151150
151513
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
151151
151514
|
assetsVertical_attributesByTypes?: Maybe<AssetsVerticalAttributesResult>;
|
|
151152
151515
|
assetsVertical_bundle: AssetsVerticalBundleResult;
|
|
151516
|
+
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
151153
151517
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
151154
151518
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
151155
151519
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
@@ -151445,6 +151809,7 @@ export declare type Query = {
|
|
|
151445
151809
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
151446
151810
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
151447
151811
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
151812
|
+
contextService?: Maybe<SmartsContextServiceQueryApi>;
|
|
151448
151813
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
151449
151814
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
151450
151815
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -151635,6 +152000,7 @@ export declare type Query = {
|
|
|
151635
152000
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
151636
152001
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
151637
152002
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
152003
|
+
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
151638
152004
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
151639
152005
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
151640
152006
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
@@ -151848,6 +152214,7 @@ export declare type Query = {
|
|
|
151848
152214
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
151849
152215
|
me: AuthenticationContext;
|
|
151850
152216
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
152217
|
+
media_items?: Maybe<Array<MediaItem>>;
|
|
151851
152218
|
mercury?: Maybe<MercuryQueryApi>;
|
|
151852
152219
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
151853
152220
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
@@ -152110,6 +152477,8 @@ export declare type Query = {
|
|
|
152110
152477
|
stakeholderComms_testAPIStandardPlusOnly?: Maybe<Scalars['String']['output']>;
|
|
152111
152478
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
152112
152479
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
152480
|
+
statusUpdates_byTeam?: Maybe<TownsquareUpdateConnection>;
|
|
152481
|
+
statusUpdates_forSavedView?: Maybe<TownsquareUpdateConnection>;
|
|
152113
152482
|
studio_solutionPlan?: Maybe<StudioSolutionPlan>;
|
|
152114
152483
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
152115
152484
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -152750,8 +153119,7 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
152750
153119
|
projectKey: Scalars['String']['input'];
|
|
152751
153120
|
};
|
|
152752
153121
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
152753
|
-
|
|
152754
|
-
projectKey: Scalars['String']['input'];
|
|
153122
|
+
projectAri: Scalars['ID']['input'];
|
|
152755
153123
|
};
|
|
152756
153124
|
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
152757
153125
|
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
@@ -153337,6 +153705,10 @@ export declare type QueryAssetsVertical_BundleArgs = {
|
|
|
153337
153705
|
cloudId: Scalars['ID']['input'];
|
|
153338
153706
|
type: AssetsVerticalBundleType;
|
|
153339
153707
|
};
|
|
153708
|
+
export declare type QueryAssetsVertical_ConfiguredObjectTypesArgs = {
|
|
153709
|
+
cloudId: Scalars['ID']['input'];
|
|
153710
|
+
input: AssetsVerticalObjectTypesInput;
|
|
153711
|
+
};
|
|
153340
153712
|
export declare type QueryAssetsVertical_CountByStatusArgs = {
|
|
153341
153713
|
cloudId: Scalars['ID']['input'];
|
|
153342
153714
|
input: AssetsVerticalCountByStatusInput;
|
|
@@ -155447,6 +155819,10 @@ export declare type QueryGraphIntegration_SkillArgs = {
|
|
|
155447
155819
|
contextAri: Scalars['ID']['input'];
|
|
155448
155820
|
skillAri: Scalars['ID']['input'];
|
|
155449
155821
|
};
|
|
155822
|
+
export declare type QueryGraphIntegration_SkillItemsArgs = {
|
|
155823
|
+
contextAri: Scalars['ID']['input'];
|
|
155824
|
+
skillAris: Array<Scalars['ID']['input']>;
|
|
155825
|
+
};
|
|
155450
155826
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
155451
155827
|
contextAri: Scalars['ID']['input'];
|
|
155452
155828
|
id: Scalars['String']['input'];
|
|
@@ -156197,6 +156573,13 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
156197
156573
|
hostingType: AtlassianProductHostingType;
|
|
156198
156574
|
pricingPlanOptions?: InputMaybe<MarketplacePricingPlanOptions>;
|
|
156199
156575
|
};
|
|
156576
|
+
export declare type QueryMedia_ItemsArgs = {
|
|
156577
|
+
clientId: Scalars['String']['input'];
|
|
156578
|
+
cloudId: Scalars['String']['input'];
|
|
156579
|
+
descriptors: Array<MediaItemDescriptorInput>;
|
|
156580
|
+
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156581
|
+
token: Scalars['String']['input'];
|
|
156582
|
+
};
|
|
156200
156583
|
export declare type QueryMyMarketplaceAppsArgs = {
|
|
156201
156584
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
156202
156585
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -156419,6 +156802,7 @@ export declare type QueryPopularFeedArgs = {
|
|
|
156419
156802
|
timeGranularity?: InputMaybe<Scalars['String']['input']>;
|
|
156420
156803
|
};
|
|
156421
156804
|
export declare type QueryPostOffice_GetMessagesArgs = {
|
|
156805
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156422
156806
|
payload: PostOfficeGetMessagesInput;
|
|
156423
156807
|
};
|
|
156424
156808
|
export declare type QueryPricingArgs = {
|
|
@@ -157231,6 +157615,20 @@ export declare type QueryStalePagesArgs = {
|
|
|
157231
157615
|
sort?: InputMaybe<StalePagesSortingType>;
|
|
157232
157616
|
spaceId: Scalars['ID']['input'];
|
|
157233
157617
|
};
|
|
157618
|
+
export declare type QueryStatusUpdates_ByTeamArgs = {
|
|
157619
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
157620
|
+
containerId: Scalars['ID']['input'];
|
|
157621
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
157622
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
157623
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157624
|
+
teamId: Scalars['ID']['input'];
|
|
157625
|
+
};
|
|
157626
|
+
export declare type QueryStatusUpdates_ForSavedViewArgs = {
|
|
157627
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
157628
|
+
containerId: Scalars['ID']['input'];
|
|
157629
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157630
|
+
viewUuid: Scalars['UUID']['input'];
|
|
157631
|
+
};
|
|
157234
157632
|
export declare type QueryStudio_SolutionPlanArgs = {
|
|
157235
157633
|
solutionId: Scalars['String']['input'];
|
|
157236
157634
|
solutionVersion: Scalars['Int']['input'];
|
|
@@ -159829,12 +160227,14 @@ export declare enum Scope {
|
|
|
159829
160227
|
ProjectWrite = "PROJECT_WRITE",
|
|
159830
160228
|
PullRequest = "PULL_REQUEST",
|
|
159831
160229
|
PullRequestWrite = "PULL_REQUEST_WRITE",
|
|
160230
|
+
Read_3PDataTwgCli = "READ_3P_DATA_TWG_CLI",
|
|
159832
160231
|
ReadAccount = "READ_ACCOUNT",
|
|
159833
160232
|
ReadAppDetails = "READ_APP_DETAILS",
|
|
159834
160233
|
ReadAppEnvironment = "READ_APP_ENVIRONMENT",
|
|
159835
160234
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
159836
160235
|
ReadAppLogs = "READ_APP_LOGS",
|
|
159837
160236
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
160237
|
+
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
159838
160238
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
159839
160239
|
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
159840
160240
|
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
@@ -159880,6 +160280,7 @@ export declare enum Scope {
|
|
|
159880
160280
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
159881
160281
|
ReadJiraUser = "READ_JIRA_USER",
|
|
159882
160282
|
ReadJiraWork = "READ_JIRA_WORK",
|
|
160283
|
+
ReadJsmTwgCli = "READ_JSM_TWG_CLI",
|
|
159883
160284
|
ReadJswBoardScope = "READ_JSW_BOARD_SCOPE",
|
|
159884
160285
|
ReadJswBoardScopeAdmin = "READ_JSW_BOARD_SCOPE_ADMIN",
|
|
159885
160286
|
ReadJswBuild = "READ_JSW_BUILD",
|
|
@@ -159890,9 +160291,11 @@ export declare enum Scope {
|
|
|
159890
160291
|
ReadJswRemoteLink = "READ_JSW_REMOTE_LINK",
|
|
159891
160292
|
ReadJswSourceCode = "READ_JSW_SOURCE_CODE",
|
|
159892
160293
|
ReadJswSprint = "READ_JSW_SPRINT",
|
|
160294
|
+
ReadJswTwgCli = "READ_JSW_TWG_CLI",
|
|
159893
160295
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
160296
|
+
ReadLoomTwgCli = "READ_LOOM_TWG_CLI",
|
|
159894
160297
|
ReadMe = "READ_ME",
|
|
159895
|
-
|
|
160298
|
+
ReadMercuryTwgCli = "READ_MERCURY_TWG_CLI",
|
|
159896
160299
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
159897
160300
|
ReadOrganization = "READ_ORGANIZATION",
|
|
159898
160301
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
@@ -159915,8 +160318,6 @@ export declare enum Scope {
|
|
|
159915
160318
|
ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
|
|
159916
160319
|
ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
|
|
159917
160320
|
ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
|
|
159918
|
-
ReadSettingsLoom = "READ_SETTINGS_LOOM",
|
|
159919
|
-
ReadSpaceLoom = "READ_SPACE_LOOM",
|
|
159920
160321
|
ReadStakeholderCommsAssignment = "READ_STAKEHOLDER_COMMS_ASSIGNMENT",
|
|
159921
160322
|
ReadStakeholderCommsComponent = "READ_STAKEHOLDER_COMMS_COMPONENT",
|
|
159922
160323
|
ReadStakeholderCommsIncident = "READ_STAKEHOLDER_COMMS_INCIDENT",
|
|
@@ -159924,6 +160325,7 @@ export declare enum Scope {
|
|
|
159924
160325
|
ReadStakeholderCommsStakeholder = "READ_STAKEHOLDER_COMMS_STAKEHOLDER",
|
|
159925
160326
|
ReadStakeholderCommsSubscriber = "READ_STAKEHOLDER_COMMS_SUBSCRIBER",
|
|
159926
160327
|
ReadTeam = "READ_TEAM",
|
|
160328
|
+
ReadTeamworkGraphTwgCli = "READ_TEAMWORK_GRAPH_TWG_CLI",
|
|
159927
160329
|
ReadTeamMembers = "READ_TEAM_MEMBERS",
|
|
159928
160330
|
ReadTeamMembersTemp = "READ_TEAM_MEMBERS_TEMP",
|
|
159929
160331
|
ReadTeamTemp = "READ_TEAM_TEMP",
|
|
@@ -159931,7 +160333,7 @@ export declare enum Scope {
|
|
|
159931
160333
|
ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
|
|
159932
160334
|
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
159933
160335
|
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
159934
|
-
|
|
160336
|
+
ReadTrelloTwgCli = "READ_TRELLO_TWG_CLI",
|
|
159935
160337
|
ReadViewJpd = "READ_VIEW_JPD",
|
|
159936
160338
|
ResolutionRead = "RESOLUTION_READ",
|
|
159937
160339
|
RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
|
|
@@ -159973,6 +160375,7 @@ export declare enum Scope {
|
|
|
159973
160375
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
159974
160376
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
159975
160377
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
160378
|
+
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
159976
160379
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
159977
160380
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
159978
160381
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
@@ -160008,6 +160411,7 @@ export declare enum Scope {
|
|
|
160008
160411
|
WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
|
|
160009
160412
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
160010
160413
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
160414
|
+
WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
|
|
160011
160415
|
WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
|
|
160012
160416
|
WriteJswBoardScopeAdmin = "WRITE_JSW_BOARD_SCOPE_ADMIN",
|
|
160013
160417
|
WriteJswBuild = "WRITE_JSW_BUILD",
|
|
@@ -160018,7 +160422,9 @@ export declare enum Scope {
|
|
|
160018
160422
|
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
160019
160423
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
160020
160424
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
160021
|
-
|
|
160425
|
+
WriteJswTwgCli = "WRITE_JSW_TWG_CLI",
|
|
160426
|
+
WriteLoomTwgCli = "WRITE_LOOM_TWG_CLI",
|
|
160427
|
+
WriteMercuryTwgCli = "WRITE_MERCURY_TWG_CLI",
|
|
160022
160428
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
160023
160429
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
160024
160430
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
@@ -160038,8 +160444,6 @@ export declare enum Scope {
|
|
|
160038
160444
|
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
160039
160445
|
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
160040
160446
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
160041
|
-
WriteSettingsLoom = "WRITE_SETTINGS_LOOM",
|
|
160042
|
-
WriteSpaceLoom = "WRITE_SPACE_LOOM",
|
|
160043
160447
|
WriteStakeholderCommsComponent = "WRITE_STAKEHOLDER_COMMS_COMPONENT",
|
|
160044
160448
|
WriteStakeholderCommsIncident = "WRITE_STAKEHOLDER_COMMS_INCIDENT",
|
|
160045
160449
|
WriteStakeholderCommsPage = "WRITE_STAKEHOLDER_COMMS_PAGE",
|
|
@@ -160051,7 +160455,7 @@ export declare enum Scope {
|
|
|
160051
160455
|
WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
|
|
160052
160456
|
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
|
|
160053
160457
|
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
|
|
160054
|
-
|
|
160458
|
+
WriteTrelloTwgCli = "WRITE_TRELLO_TWG_CLI",
|
|
160055
160459
|
WriteViewJpd = "WRITE_VIEW_JPD"
|
|
160056
160460
|
}
|
|
160057
160461
|
export declare type ScopeSprintIssue = {
|
|
@@ -180583,6 +180987,19 @@ export declare type SmartsContext = {
|
|
|
180583
180987
|
tenantId: Scalars['String']['input'];
|
|
180584
180988
|
userId: Scalars['String']['input'];
|
|
180585
180989
|
};
|
|
180990
|
+
export declare type SmartsContextServiceQueryApi = {
|
|
180991
|
+
__typename?: 'SmartsContextServiceQueryApi';
|
|
180992
|
+
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
180993
|
+
};
|
|
180994
|
+
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
180995
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180996
|
+
};
|
|
180997
|
+
export declare type SmartsContextServiceUserRecommendation = {
|
|
180998
|
+
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
180999
|
+
id: Scalars['ID']['output'];
|
|
181000
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
181001
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
181002
|
+
};
|
|
180586
181003
|
export declare type SmartsFieldContext = {
|
|
180587
181004
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
180588
181005
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -180603,7 +181020,6 @@ export declare type SmartsModelRequestParams = {
|
|
|
180603
181020
|
export declare type SmartsQueryApi = {
|
|
180604
181021
|
__typename?: 'SmartsQueryApi';
|
|
180605
181022
|
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
180606
|
-
recommendedContainerV2?: Maybe<Array<Maybe<SmartsRecommendedContainerV2>>>;
|
|
180607
181023
|
recommendedField?: Maybe<Array<Maybe<SmartsRecommendedFieldObject>>>;
|
|
180608
181024
|
recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
|
|
180609
181025
|
recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
|
|
@@ -180611,9 +181027,6 @@ export declare type SmartsQueryApi = {
|
|
|
180611
181027
|
export declare type SmartsQueryApiRecommendedContainerArgs = {
|
|
180612
181028
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180613
181029
|
};
|
|
180614
|
-
export declare type SmartsQueryApiRecommendedContainerV2Args = {
|
|
180615
|
-
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180616
|
-
};
|
|
180617
181030
|
export declare type SmartsQueryApiRecommendedFieldArgs = {
|
|
180618
181031
|
recommendationsQuery: SmartsRecommendationsFieldQuery;
|
|
180619
181032
|
};
|
|
@@ -180643,13 +181056,6 @@ export declare type SmartsRecommendedContainer = {
|
|
|
180643
181056
|
id: Scalars['ID']['output'];
|
|
180644
181057
|
score?: Maybe<Scalars['Float']['output']>;
|
|
180645
181058
|
};
|
|
180646
|
-
export declare type SmartsRecommendedContainerData = ConfluenceSpace | JiraProject;
|
|
180647
|
-
export declare type SmartsRecommendedContainerV2 = {
|
|
180648
|
-
__typename?: 'SmartsRecommendedContainerV2';
|
|
180649
|
-
container?: Maybe<SmartsRecommendedContainerData>;
|
|
180650
|
-
id: Scalars['ID']['output'];
|
|
180651
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
180652
|
-
};
|
|
180653
181059
|
export declare type SmartsRecommendedFieldObject = {
|
|
180654
181060
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
180655
181061
|
id: Scalars['ID']['output'];
|
|
@@ -184277,6 +184683,7 @@ export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
|
184277
184683
|
export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
184278
184684
|
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
184279
184685
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
184686
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
184280
184687
|
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
184281
184688
|
placementId: Scalars['String']['input'];
|
|
184282
184689
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -184285,6 +184692,7 @@ export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
|
184285
184692
|
export declare type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
184286
184693
|
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
184287
184694
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
184695
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
184288
184696
|
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
184289
184697
|
placementId: Scalars['String']['input'];
|
|
184290
184698
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -185074,6 +185482,7 @@ export declare type TeamMutation = {
|
|
|
185074
185482
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
185075
185483
|
setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
|
|
185076
185484
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
185485
|
+
unlinkCustomFieldFromValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
185077
185486
|
unlinkManagedTeams?: Maybe<TeamUnlinkManagedTeamsPayload>;
|
|
185078
185487
|
updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
185079
185488
|
updateCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
@@ -185158,6 +185567,10 @@ export declare type TeamMutationUnlinkCustomFieldFromOptionArgs = {
|
|
|
185158
185567
|
customFieldValueId: Scalars['ID']['input'];
|
|
185159
185568
|
teamId: Scalars['ID']['input'];
|
|
185160
185569
|
};
|
|
185570
|
+
export declare type TeamMutationUnlinkCustomFieldFromValueArgs = {
|
|
185571
|
+
customFieldValueId: Scalars['ID']['input'];
|
|
185572
|
+
teamId: Scalars['ID']['input'];
|
|
185573
|
+
};
|
|
185161
185574
|
export declare type TeamMutationUnlinkManagedTeamsArgs = {
|
|
185162
185575
|
scopeId: Scalars['ID']['input'];
|
|
185163
185576
|
teamIds: Array<Scalars['ID']['input']>;
|
|
@@ -185211,6 +185624,11 @@ export declare enum TeamPermission {
|
|
|
185211
185624
|
FullWrite = "FULL_WRITE",
|
|
185212
185625
|
None = "NONE"
|
|
185213
185626
|
}
|
|
185627
|
+
export declare enum TeamPermissions {
|
|
185628
|
+
CanDeleteTeam = "CAN_DELETE_TEAM",
|
|
185629
|
+
CanManageTeam = "CAN_MANAGE_TEAM",
|
|
185630
|
+
CanViewTeam = "CAN_VIEW_TEAM"
|
|
185631
|
+
}
|
|
185214
185632
|
export declare type TeamPrincipal = {
|
|
185215
185633
|
__typename?: 'TeamPrincipal';
|
|
185216
185634
|
principalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -185569,6 +185987,7 @@ export declare type TeamV2 = Node & {
|
|
|
185569
185987
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
185570
185988
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
185571
185989
|
permission?: Maybe<TeamPermission>;
|
|
185990
|
+
permissions?: Maybe<Array<TeamPermissions>>;
|
|
185572
185991
|
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
185573
185992
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
185574
185993
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -192570,6 +192989,7 @@ export declare type TrelloMutationApi = {
|
|
|
192570
192989
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
192571
192990
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
192572
192991
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
192992
|
+
setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
|
|
192573
192993
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
192574
192994
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
192575
192995
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
@@ -192762,6 +193182,9 @@ export declare type TrelloMutationApiRotateOAuth2ClientSecretArgs = {
|
|
|
192762
193182
|
export declare type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
|
|
192763
193183
|
input?: InputMaybe<TrelloSendBoardEmailKeyInput>;
|
|
192764
193184
|
};
|
|
193185
|
+
export declare type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
|
|
193186
|
+
input: TrelloSetBoardBackgroundFromImageUrlInput;
|
|
193187
|
+
};
|
|
192765
193188
|
export declare type TrelloMutationApiSortInboxCardsArgs = {
|
|
192766
193189
|
input: TrelloSortInboxCardsInput;
|
|
192767
193190
|
};
|
|
@@ -194054,6 +194477,16 @@ export declare type TrelloSendBoardEmailKeyMessagePayload = Payload & {
|
|
|
194054
194477
|
errors?: Maybe<Array<MutationError>>;
|
|
194055
194478
|
success: Scalars['Boolean']['output'];
|
|
194056
194479
|
};
|
|
194480
|
+
export declare type TrelloSetBoardBackgroundFromImageUrlInput = {
|
|
194481
|
+
boardId: Scalars['ID']['input'];
|
|
194482
|
+
url: Scalars['String']['input'];
|
|
194483
|
+
};
|
|
194484
|
+
export declare type TrelloSetBoardBackgroundFromImageUrlPayload = Payload & {
|
|
194485
|
+
__typename?: 'TrelloSetBoardBackgroundFromImageUrlPayload';
|
|
194486
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194487
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194488
|
+
success: Scalars['Boolean']['output'];
|
|
194489
|
+
};
|
|
194057
194490
|
export declare type TrelloSmartSchedulePreference = {
|
|
194058
194491
|
__typename?: 'TrelloSmartSchedulePreference';
|
|
194059
194492
|
includeInbox: Scalars['Boolean']['output'];
|
|
@@ -194280,9 +194713,8 @@ export declare type TrelloUpdateBoardBackgroundInput = {
|
|
|
194280
194713
|
};
|
|
194281
194714
|
export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
194282
194715
|
__typename?: 'TrelloUpdateBoardBackgroundPayload';
|
|
194283
|
-
|
|
194716
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194284
194717
|
errors?: Maybe<Array<MutationError>>;
|
|
194285
|
-
prefs?: Maybe<TrelloBoardPrefs>;
|
|
194286
194718
|
success: Scalars['Boolean']['output'];
|
|
194287
194719
|
};
|
|
194288
194720
|
export declare type TrelloUpdateBoardCommentingPermissionsInput = {
|
|
@@ -194622,8 +195054,7 @@ export declare type TrelloUpdateInboxBackgroundInput = {
|
|
|
194622
195054
|
export declare type TrelloUpdateInboxBackgroundPayload = Payload & {
|
|
194623
195055
|
__typename?: 'TrelloUpdateInboxBackgroundPayload';
|
|
194624
195056
|
errors?: Maybe<Array<MutationError>>;
|
|
194625
|
-
|
|
194626
|
-
prefs?: Maybe<TrelloInboxPrefs>;
|
|
195057
|
+
inbox?: Maybe<TrelloInbox>;
|
|
194627
195058
|
success: Scalars['Boolean']['output'];
|
|
194628
195059
|
};
|
|
194629
195060
|
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
@@ -196803,6 +197234,7 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
196803
197234
|
export declare type UpdateJiraPlaybookInput = {
|
|
196804
197235
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
196805
197236
|
id: Scalars['ID']['input'];
|
|
197237
|
+
isAiCreated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
196806
197238
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
196807
197239
|
name: Scalars['String']['input'];
|
|
196808
197240
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|