@forge/cli-shared 8.10.0-next.13 → 8.10.0-next.15
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 +14 -0
- package/out/graphql/graphql-types.d.ts +931 -42
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +90 -35
- package/out/ui/text.d.ts +24 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +25 -1
- package/package.json +2 -2
|
@@ -2378,7 +2378,7 @@ export declare type AdminUnitCreatePayload = {
|
|
|
2378
2378
|
export declare type AdminUnitCreateStatus = {
|
|
2379
2379
|
__typename?: 'AdminUnitCreateStatus';
|
|
2380
2380
|
status: AdminUnitCreateStatusEnum;
|
|
2381
|
-
unitId
|
|
2381
|
+
unitId?: Maybe<Scalars['ID']['output']>;
|
|
2382
2382
|
};
|
|
2383
2383
|
export declare enum AdminUnitCreateStatusEnum {
|
|
2384
2384
|
Failed = "FAILED",
|
|
@@ -2762,6 +2762,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2762
2762
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2763
2763
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
2764
2764
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2765
|
+
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
2765
2766
|
name: Scalars['String']['output'];
|
|
2766
2767
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
2767
2768
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -2814,8 +2815,8 @@ export declare type AgentStudioBatchEvaluationJobRunEdge = {
|
|
|
2814
2815
|
cursor: Scalars['String']['output'];
|
|
2815
2816
|
node: AgentStudioBatchEvaluationJobRun;
|
|
2816
2817
|
};
|
|
2817
|
-
export declare type
|
|
2818
|
-
__typename?: '
|
|
2818
|
+
export declare type AgentStudioBatchEvaluationJobRunResult = {
|
|
2819
|
+
__typename?: 'AgentStudioBatchEvaluationJobRunResult';
|
|
2819
2820
|
edges: Array<AgentStudioBatchEvaluationJobRunEdge>;
|
|
2820
2821
|
pageInfo: PageInfo;
|
|
2821
2822
|
};
|
|
@@ -2903,7 +2904,7 @@ export declare type AgentStudioCreateBatchEvaluationJobInput = {
|
|
|
2903
2904
|
datasetId: Scalars['String']['input'];
|
|
2904
2905
|
judgeConfigId: Scalars['String']['input'];
|
|
2905
2906
|
name: Scalars['String']['input'];
|
|
2906
|
-
projectId
|
|
2907
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
2907
2908
|
};
|
|
2908
2909
|
export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
2909
2910
|
__typename?: 'AgentStudioCreateBatchEvaluationJobPayload';
|
|
@@ -2995,6 +2996,12 @@ export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
|
2995
2996
|
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
2996
2997
|
success: Scalars['Boolean']['output'];
|
|
2997
2998
|
};
|
|
2999
|
+
export declare type AgentStudioDeleteWidgetPayload = Payload & {
|
|
3000
|
+
__typename?: 'AgentStudioDeleteWidgetPayload';
|
|
3001
|
+
deletedWidgetId?: Maybe<Scalars['ID']['output']>;
|
|
3002
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3003
|
+
success: Scalars['Boolean']['output'];
|
|
3004
|
+
};
|
|
2998
3005
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
2999
3006
|
__typename?: 'AgentStudioEmailChannel';
|
|
3000
3007
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3005,11 +3012,13 @@ export declare type AgentStudioEvaluationResult = {
|
|
|
3005
3012
|
actualAnswer?: Maybe<Scalars['String']['output']>;
|
|
3006
3013
|
agentId: Scalars['String']['output'];
|
|
3007
3014
|
agentVersionId: Scalars['String']['output'];
|
|
3015
|
+
conversationId?: Maybe<Scalars['String']['output']>;
|
|
3008
3016
|
createdAt: Scalars['String']['output'];
|
|
3009
3017
|
datasetItemId: Scalars['String']['output'];
|
|
3010
3018
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
3011
3019
|
evaluationDetailsJson?: Maybe<Scalars['String']['output']>;
|
|
3012
3020
|
id: Scalars['ID']['output'];
|
|
3021
|
+
inputQuestion?: Maybe<Scalars['String']['output']>;
|
|
3013
3022
|
jobId: Scalars['ID']['output'];
|
|
3014
3023
|
judgeDecision?: Maybe<AgentStudioJudgementDecision>;
|
|
3015
3024
|
judgeErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -3181,6 +3190,7 @@ export declare type AgentStudioScenario = {
|
|
|
3181
3190
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3182
3191
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3183
3192
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
3193
|
+
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
3184
3194
|
name: Scalars['String']['output'];
|
|
3185
3195
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
3186
3196
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -3741,15 +3751,6 @@ export declare type AppInstallationsByContextsArgs = {
|
|
|
3741
3751
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3742
3752
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3743
3753
|
};
|
|
3744
|
-
export declare type AppAdminQuery = {
|
|
3745
|
-
__typename?: 'AppAdminQuery';
|
|
3746
|
-
appId: Scalars['ID']['output'];
|
|
3747
|
-
getQuotaInfo?: Maybe<Array<QuotaInfo>>;
|
|
3748
|
-
};
|
|
3749
|
-
export declare type AppAdminQueryGetQuotaInfoArgs = {
|
|
3750
|
-
contextAri: Scalars['ID']['input'];
|
|
3751
|
-
environmentId: Scalars['ID']['input'];
|
|
3752
|
-
};
|
|
3753
3754
|
export declare type AppAuditConnection = {
|
|
3754
3755
|
__typename?: 'AppAuditConnection';
|
|
3755
3756
|
edges?: Maybe<Array<Maybe<AuditEventEdge>>>;
|
|
@@ -5766,6 +5767,88 @@ export declare type AssetsDmDateFormats = {
|
|
|
5766
5767
|
name: Scalars['String']['output'];
|
|
5767
5768
|
tenantId: Scalars['String']['output'];
|
|
5768
5769
|
};
|
|
5770
|
+
export declare enum AssetsDmDefaultAttributeMappingColumnName {
|
|
5771
|
+
AttributeName = "attributeName",
|
|
5772
|
+
ColumnType = "columnType",
|
|
5773
|
+
DataSourceType = "dataSourceType",
|
|
5774
|
+
DestinationColumn = "destinationColumn",
|
|
5775
|
+
IsPrimaryKey = "isPrimaryKey",
|
|
5776
|
+
IsSecondaryKey = "isSecondaryKey",
|
|
5777
|
+
SourceColumn = "sourceColumn"
|
|
5778
|
+
}
|
|
5779
|
+
export declare enum AssetsDmDefaultAttributeMappingColumnType {
|
|
5780
|
+
BigInt = "bigInt",
|
|
5781
|
+
Boolean = "boolean",
|
|
5782
|
+
DateTime = "dateTime",
|
|
5783
|
+
Decimal = "decimal",
|
|
5784
|
+
Integer = "integer",
|
|
5785
|
+
String = "string"
|
|
5786
|
+
}
|
|
5787
|
+
export declare type AssetsDmDefaultAttributeMappingFilterBy = {
|
|
5788
|
+
attributeName?: InputMaybe<Scalars['String']['input']>;
|
|
5789
|
+
dataSourceType?: InputMaybe<Scalars['String']['input']>;
|
|
5790
|
+
};
|
|
5791
|
+
export declare type AssetsDmDefaultAttributeMappingPageInfo = {
|
|
5792
|
+
__typename?: 'AssetsDMDefaultAttributeMappingPageInfo';
|
|
5793
|
+
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5794
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
5795
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
5796
|
+
nextPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5797
|
+
pageSize: Scalars['Int']['output'];
|
|
5798
|
+
previousPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5799
|
+
totalPages: Scalars['Int']['output'];
|
|
5800
|
+
};
|
|
5801
|
+
export declare type AssetsDmDefaultAttributeMappingPageInfoInput = {
|
|
5802
|
+
pageCursor?: InputMaybe<Scalars['Int']['input']>;
|
|
5803
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
5804
|
+
};
|
|
5805
|
+
export declare type AssetsDmDefaultAttributeMappingResponse = {
|
|
5806
|
+
__typename?: 'AssetsDMDefaultAttributeMappingResponse';
|
|
5807
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5808
|
+
pageInfo: AssetsDmDefaultAttributeMappingPageInfo;
|
|
5809
|
+
rows: Array<AssetsDmDefaultAttributeMappingRow>;
|
|
5810
|
+
totalCount: Scalars['Int']['output'];
|
|
5811
|
+
};
|
|
5812
|
+
export declare type AssetsDmDefaultAttributeMappingRow = {
|
|
5813
|
+
__typename?: 'AssetsDMDefaultAttributeMappingRow';
|
|
5814
|
+
attributeName: Scalars['String']['output'];
|
|
5815
|
+
columnType: AssetsDmDefaultAttributeMappingColumnType;
|
|
5816
|
+
dataSourceType: Scalars['String']['output'];
|
|
5817
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
5818
|
+
defaultObjectAttributeMappingId: Scalars['ID']['output'];
|
|
5819
|
+
destinationColumn: Scalars['String']['output'];
|
|
5820
|
+
isPrimaryKey: Scalars['Boolean']['output'];
|
|
5821
|
+
isSecondaryKey: Scalars['Boolean']['output'];
|
|
5822
|
+
objectAttributeId: Scalars['ID']['output'];
|
|
5823
|
+
sourceColumn: Scalars['String']['output'];
|
|
5824
|
+
};
|
|
5825
|
+
export declare type AssetsDmDefaultAttributeMappingSortBy = {
|
|
5826
|
+
name: AssetsDmDefaultAttributeMappingColumnName;
|
|
5827
|
+
order: AssetsDmDefaultAttributeMappingSortOrder;
|
|
5828
|
+
};
|
|
5829
|
+
export declare enum AssetsDmDefaultAttributeMappingSortOrder {
|
|
5830
|
+
Asc = "asc",
|
|
5831
|
+
Desc = "desc"
|
|
5832
|
+
}
|
|
5833
|
+
export declare type AssetsDmDeleteDefaultAttributeMappingResponse = {
|
|
5834
|
+
__typename?: 'AssetsDMDeleteDefaultAttributeMappingResponse';
|
|
5835
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5836
|
+
message: Scalars['String']['output'];
|
|
5837
|
+
};
|
|
5838
|
+
export declare type AssetsDmEditDefaultAttributeMappingInput = {
|
|
5839
|
+
columnType: AssetsDmDefaultAttributeMappingColumnType;
|
|
5840
|
+
dataSourceTypeId: Scalars['ID']['input'];
|
|
5841
|
+
defaultObjectAttributeMappingId: Scalars['ID']['input'];
|
|
5842
|
+
destinationColumnName: Scalars['String']['input'];
|
|
5843
|
+
isSecondaryKey: Scalars['Boolean']['input'];
|
|
5844
|
+
objectAttributeId: Scalars['ID']['input'];
|
|
5845
|
+
sourceColumn: Scalars['String']['input'];
|
|
5846
|
+
};
|
|
5847
|
+
export declare type AssetsDmEditDefaultAttributeMappingResponse = {
|
|
5848
|
+
__typename?: 'AssetsDMEditDefaultAttributeMappingResponse';
|
|
5849
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5850
|
+
message: Scalars['String']['output'];
|
|
5851
|
+
};
|
|
5769
5852
|
export declare type AssetsDmExportedObjectsListFileStatusPayload = {
|
|
5770
5853
|
name: Scalars['String']['input'];
|
|
5771
5854
|
};
|
|
@@ -5806,6 +5889,22 @@ export declare type AssetsDmGetDataSourceForCleansingResponse = {
|
|
|
5806
5889
|
tableName: Scalars['String']['output'];
|
|
5807
5890
|
tenantId: Scalars['ID']['output'];
|
|
5808
5891
|
};
|
|
5892
|
+
export declare type AssetsDmJobDataColumn = {
|
|
5893
|
+
__typename?: 'AssetsDMJobDataColumn';
|
|
5894
|
+
columnName: Scalars['String']['output'];
|
|
5895
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
5896
|
+
};
|
|
5897
|
+
export declare type AssetsDmJobDataResponse = {
|
|
5898
|
+
__typename?: 'AssetsDMJobDataResponse';
|
|
5899
|
+
columns: Array<AssetsDmJobDataColumn>;
|
|
5900
|
+
pagination: AssetsDmPaginationInfo;
|
|
5901
|
+
rows: Array<Scalars['JSON']['output']>;
|
|
5902
|
+
};
|
|
5903
|
+
export declare enum AssetsDmJobDataType {
|
|
5904
|
+
Cleansed = "CLEANSED",
|
|
5905
|
+
Raw = "RAW",
|
|
5906
|
+
Transformed = "TRANSFORMED"
|
|
5907
|
+
}
|
|
5809
5908
|
export declare type AssetsDmMappedColumn = {
|
|
5810
5909
|
__typename?: 'AssetsDMMappedColumn';
|
|
5811
5910
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -5815,6 +5914,12 @@ export declare type AssetsDmMappedColumn = {
|
|
|
5815
5914
|
jobId: Scalars['ID']['output'];
|
|
5816
5915
|
sourceColumnName: Scalars['String']['output'];
|
|
5817
5916
|
};
|
|
5917
|
+
export declare type AssetsDmMappingMatrixResponse = {
|
|
5918
|
+
__typename?: 'AssetsDMMappingMatrixResponse';
|
|
5919
|
+
columns: Array<Scalars['String']['output']>;
|
|
5920
|
+
rows: Array<Scalars['JSON']['output']>;
|
|
5921
|
+
rowsCount: Scalars['Int']['output'];
|
|
5922
|
+
};
|
|
5818
5923
|
export declare type AssetsDmNotificationPayload = {
|
|
5819
5924
|
exportedObjectsListFileStatus?: InputMaybe<Array<InputMaybe<AssetsDmExportedObjectsListFileStatusPayload>>>;
|
|
5820
5925
|
};
|
|
@@ -6033,6 +6138,12 @@ export declare enum AssetsDmObjectsListSearchGroupCondition {
|
|
|
6033
6138
|
Or = "OR",
|
|
6034
6139
|
Ornot = "ORNOT"
|
|
6035
6140
|
}
|
|
6141
|
+
export declare type AssetsDmObjectsListSearchGroupOutput = {
|
|
6142
|
+
__typename?: 'AssetsDMObjectsListSearchGroupOutput';
|
|
6143
|
+
condition?: Maybe<AssetsDmObjectsListSearchGroupCondition>;
|
|
6144
|
+
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
6145
|
+
searchItems: Array<AssetsDmObjectsListSearchItemOutput>;
|
|
6146
|
+
};
|
|
6036
6147
|
export declare type AssetsDmObjectsListSearchItem = {
|
|
6037
6148
|
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
6038
6149
|
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
@@ -6045,6 +6156,19 @@ export declare type AssetsDmObjectsListSearchItem = {
|
|
|
6045
6156
|
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6046
6157
|
whereDataSource?: InputMaybe<Scalars['String']['input']>;
|
|
6047
6158
|
};
|
|
6159
|
+
export declare type AssetsDmObjectsListSearchItemOutput = {
|
|
6160
|
+
__typename?: 'AssetsDMObjectsListSearchItemOutput';
|
|
6161
|
+
columnName: Scalars['String']['output'];
|
|
6162
|
+
condition?: Maybe<AssetsDmObjectsListSearchCondition>;
|
|
6163
|
+
isAttribute: Scalars['Boolean']['output'];
|
|
6164
|
+
isDataSource: Scalars['Boolean']['output'];
|
|
6165
|
+
operator: AssetsDmObjectsListSearchOperator;
|
|
6166
|
+
rawColumnType?: Maybe<AssetsDmObjectsListRawColumnType>;
|
|
6167
|
+
savedSearchId?: Maybe<Scalars['ID']['output']>;
|
|
6168
|
+
tagCodes?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
6169
|
+
values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6170
|
+
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
6171
|
+
};
|
|
6048
6172
|
export declare enum AssetsDmObjectsListSearchOperator {
|
|
6049
6173
|
AfterNext = "AFTER_NEXT",
|
|
6050
6174
|
ComputeIssues = "COMPUTE_ISSUES",
|
|
@@ -6109,6 +6233,7 @@ export declare type AssetsDmPaginationInfo = {
|
|
|
6109
6233
|
pageSize: Scalars['Int']['output'];
|
|
6110
6234
|
previousPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
6111
6235
|
totalPages: Scalars['Int']['output'];
|
|
6236
|
+
totalRowsCount?: Maybe<Scalars['Int']['output']>;
|
|
6112
6237
|
};
|
|
6113
6238
|
export declare type AssetsDmPaginationInput = {
|
|
6114
6239
|
pageCursor?: Scalars['Int']['input'];
|
|
@@ -6150,6 +6275,12 @@ export declare type AssetsDmSavedSearch = {
|
|
|
6150
6275
|
resultCount: Scalars['Int']['output'];
|
|
6151
6276
|
savedSearchId: Scalars['ID']['output'];
|
|
6152
6277
|
};
|
|
6278
|
+
export declare type AssetsDmSavedSearchDetails = {
|
|
6279
|
+
__typename?: 'AssetsDMSavedSearchDetails';
|
|
6280
|
+
name: Scalars['String']['output'];
|
|
6281
|
+
savedSearchId: Scalars['ID']['output'];
|
|
6282
|
+
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
6283
|
+
};
|
|
6153
6284
|
export declare type AssetsDmSavedSearchInput = {
|
|
6154
6285
|
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
6155
6286
|
};
|
|
@@ -9678,6 +9809,7 @@ export declare enum CloudIdProduct {
|
|
|
9678
9809
|
Loom = "LOOM",
|
|
9679
9810
|
Mercury = "MERCURY",
|
|
9680
9811
|
Opsgenie = "OPSGENIE",
|
|
9812
|
+
Passionfruit = "PASSIONFRUIT",
|
|
9681
9813
|
Project = "PROJECT",
|
|
9682
9814
|
Radar = "RADAR",
|
|
9683
9815
|
Statuspage = "STATUSPAGE"
|
|
@@ -15563,6 +15695,7 @@ export declare type ConfluenceAttachmentSettings = {
|
|
|
15563
15695
|
export declare type ConfluenceAudioPreference = {
|
|
15564
15696
|
__typename?: 'ConfluenceAudioPreference';
|
|
15565
15697
|
length: ConfluenceLength;
|
|
15698
|
+
playbackSpeed: Scalars['Float']['output'];
|
|
15566
15699
|
tone: ConfluenceTone;
|
|
15567
15700
|
};
|
|
15568
15701
|
export declare type ConfluenceBasicSpaceRole = {
|
|
@@ -17371,6 +17504,7 @@ export declare enum ConfluenceImportStatus {
|
|
|
17371
17504
|
ImportingUser = "IMPORTING_USER",
|
|
17372
17505
|
ImportingWhiteboards = "IMPORTING_WHITEBOARDS",
|
|
17373
17506
|
NestedUnzipping = "NESTED_UNZIPPING",
|
|
17507
|
+
NormalizeManifest = "NORMALIZE_MANIFEST",
|
|
17374
17508
|
PartialFailed = "PARTIAL_FAILED",
|
|
17375
17509
|
PreparedMetadata = "PREPARED_METADATA",
|
|
17376
17510
|
PreparingMetadata = "PREPARING_METADATA",
|
|
@@ -18039,6 +18173,95 @@ export declare type ConfluenceNbmPageInfo = {
|
|
|
18039
18173
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
18040
18174
|
totalPages: Scalars['Int']['output'];
|
|
18041
18175
|
};
|
|
18176
|
+
export declare type ConfluenceNbmPerfMacroUsage = {
|
|
18177
|
+
__typename?: 'ConfluenceNbmPerfMacroUsage';
|
|
18178
|
+
macroName?: Maybe<Scalars['String']['output']>;
|
|
18179
|
+
usageCount?: Maybe<Scalars['Long']['output']>;
|
|
18180
|
+
usagePercentage?: Maybe<Scalars['Float']['output']>;
|
|
18181
|
+
};
|
|
18182
|
+
export declare type ConfluenceNbmPerfMacros = {
|
|
18183
|
+
__typename?: 'ConfluenceNbmPerfMacros';
|
|
18184
|
+
averagePerPage?: Maybe<Scalars['Float']['output']>;
|
|
18185
|
+
maxDepth?: Maybe<Scalars['Long']['output']>;
|
|
18186
|
+
totalUsageCount?: Maybe<Scalars['Long']['output']>;
|
|
18187
|
+
usage: Array<ConfluenceNbmPerfMacroUsage>;
|
|
18188
|
+
};
|
|
18189
|
+
export declare type ConfluenceNbmPerfPage = {
|
|
18190
|
+
__typename?: 'ConfluenceNbmPerfPage';
|
|
18191
|
+
chainDepth?: Maybe<Scalars['Long']['output']>;
|
|
18192
|
+
isDashboard?: Maybe<Scalars['Boolean']['output']>;
|
|
18193
|
+
macroCount?: Maybe<Scalars['Long']['output']>;
|
|
18194
|
+
maxDepth?: Maybe<Scalars['Long']['output']>;
|
|
18195
|
+
pageTitle?: Maybe<Scalars['String']['output']>;
|
|
18196
|
+
pageUrl?: Maybe<Scalars['String']['output']>;
|
|
18197
|
+
riskLevel?: Maybe<Scalars['String']['output']>;
|
|
18198
|
+
score?: Maybe<Scalars['Long']['output']>;
|
|
18199
|
+
spaceId?: Maybe<Scalars['String']['output']>;
|
|
18200
|
+
};
|
|
18201
|
+
export declare type ConfluenceNbmPerfPageSeverity = {
|
|
18202
|
+
__typename?: 'ConfluenceNbmPerfPageSeverity';
|
|
18203
|
+
highCount?: Maybe<Scalars['Long']['output']>;
|
|
18204
|
+
highPercentage?: Maybe<Scalars['Float']['output']>;
|
|
18205
|
+
lowCount?: Maybe<Scalars['Long']['output']>;
|
|
18206
|
+
lowPercentage?: Maybe<Scalars['Float']['output']>;
|
|
18207
|
+
mediumCount?: Maybe<Scalars['Long']['output']>;
|
|
18208
|
+
mediumPercentage?: Maybe<Scalars['Float']['output']>;
|
|
18209
|
+
};
|
|
18210
|
+
export declare type ConfluenceNbmPerfPages = {
|
|
18211
|
+
__typename?: 'ConfluenceNbmPerfPages';
|
|
18212
|
+
analyzedCount?: Maybe<Scalars['Long']['output']>;
|
|
18213
|
+
dashboardCount?: Maybe<Scalars['Long']['output']>;
|
|
18214
|
+
severity?: Maybe<ConfluenceNbmPerfPageSeverity>;
|
|
18215
|
+
sqlDuplicates: Array<ConfluenceNbmPerfSqlDuplicate>;
|
|
18216
|
+
tableJoinerChains: Array<ConfluenceNbmPerfTableJoinerChain>;
|
|
18217
|
+
with2PMacrosCount?: Maybe<Scalars['Long']['output']>;
|
|
18218
|
+
with2PMacrosPercentage?: Maybe<Scalars['Float']['output']>;
|
|
18219
|
+
withTableJoinerChainsCount?: Maybe<Scalars['Long']['output']>;
|
|
18220
|
+
worstPerformingPages: Array<ConfluenceNbmPerfPage>;
|
|
18221
|
+
};
|
|
18222
|
+
export declare type ConfluenceNbmPerfRecommendation = {
|
|
18223
|
+
__typename?: 'ConfluenceNbmPerfRecommendation';
|
|
18224
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
18225
|
+
};
|
|
18226
|
+
export declare type ConfluenceNbmPerfScanResult = {
|
|
18227
|
+
__typename?: 'ConfluenceNbmPerfScanResult';
|
|
18228
|
+
id: Scalars['ID']['output'];
|
|
18229
|
+
macros?: Maybe<ConfluenceNbmPerfMacros>;
|
|
18230
|
+
pages?: Maybe<ConfluenceNbmPerfPages>;
|
|
18231
|
+
recommendations: Array<ConfluenceNbmPerfRecommendation>;
|
|
18232
|
+
spaces?: Maybe<ConfluenceNbmPerfSpaces>;
|
|
18233
|
+
status: ConfluenceNbmScanStatus;
|
|
18234
|
+
};
|
|
18235
|
+
export declare type ConfluenceNbmPerfSpaceRisk = {
|
|
18236
|
+
__typename?: 'ConfluenceNbmPerfSpaceRisk';
|
|
18237
|
+
highIssueCount?: Maybe<Scalars['Long']['output']>;
|
|
18238
|
+
highIssuePercentage?: Maybe<Scalars['Float']['output']>;
|
|
18239
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
18240
|
+
};
|
|
18241
|
+
export declare type ConfluenceNbmPerfSpaceRiskAnalysis = {
|
|
18242
|
+
__typename?: 'ConfluenceNbmPerfSpaceRiskAnalysis';
|
|
18243
|
+
byCount: Array<ConfluenceNbmPerfSpaceRisk>;
|
|
18244
|
+
byPercentage: Array<ConfluenceNbmPerfSpaceRisk>;
|
|
18245
|
+
};
|
|
18246
|
+
export declare type ConfluenceNbmPerfSpaces = {
|
|
18247
|
+
__typename?: 'ConfluenceNbmPerfSpaces';
|
|
18248
|
+
analyzedCount?: Maybe<Scalars['Long']['output']>;
|
|
18249
|
+
riskAnalysis?: Maybe<ConfluenceNbmPerfSpaceRiskAnalysis>;
|
|
18250
|
+
};
|
|
18251
|
+
export declare type ConfluenceNbmPerfSqlDuplicate = {
|
|
18252
|
+
__typename?: 'ConfluenceNbmPerfSqlDuplicate';
|
|
18253
|
+
occurrences?: Maybe<Scalars['Long']['output']>;
|
|
18254
|
+
pageCount?: Maybe<Scalars['Long']['output']>;
|
|
18255
|
+
query?: Maybe<Scalars['String']['output']>;
|
|
18256
|
+
sqlHash?: Maybe<Scalars['String']['output']>;
|
|
18257
|
+
};
|
|
18258
|
+
export declare type ConfluenceNbmPerfTableJoinerChain = {
|
|
18259
|
+
__typename?: 'ConfluenceNbmPerfTableJoinerChain';
|
|
18260
|
+
chainDepth?: Maybe<Scalars['Long']['output']>;
|
|
18261
|
+
groupSize?: Maybe<Scalars['Long']['output']>;
|
|
18262
|
+
pageTitle?: Maybe<Scalars['String']['output']>;
|
|
18263
|
+
pageUrl?: Maybe<Scalars['String']['output']>;
|
|
18264
|
+
};
|
|
18042
18265
|
export declare type ConfluenceNbmRetryScanLongTaskInput = {
|
|
18043
18266
|
scanId: Scalars['ID']['input'];
|
|
18044
18267
|
};
|
|
@@ -19350,6 +19573,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
19350
19573
|
connectionTimeout?: Maybe<Scalars['Int']['output']>;
|
|
19351
19574
|
contactAdministratorsMessage?: Maybe<Scalars['String']['output']>;
|
|
19352
19575
|
customPageSettings?: Maybe<ConfluenceCustomPageSettings>;
|
|
19576
|
+
editorDefaultWidth?: Maybe<ConfluenceSiteConfigurationEditorDefaultWidth>;
|
|
19353
19577
|
formattingSettings?: Maybe<ConfluenceFormattingSettings>;
|
|
19354
19578
|
globalDefaultLocale?: Maybe<ConfluenceLanguage>;
|
|
19355
19579
|
indexingLanguage?: Maybe<Scalars['String']['output']>;
|
|
@@ -19383,6 +19607,11 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
19383
19607
|
socketTimeout?: Maybe<Scalars['Int']['output']>;
|
|
19384
19608
|
teamPresenceSettings?: Maybe<ConfluenceTeamPresenceSettings>;
|
|
19385
19609
|
};
|
|
19610
|
+
export declare enum ConfluenceSiteConfigurationEditorDefaultWidth {
|
|
19611
|
+
Max = "MAX",
|
|
19612
|
+
Narrow = "NARROW",
|
|
19613
|
+
Wide = "WIDE"
|
|
19614
|
+
}
|
|
19386
19615
|
export declare enum ConfluenceSiteEmailAddressStatus {
|
|
19387
19616
|
Active = "ACTIVE",
|
|
19388
19617
|
Inactive = "INACTIVE",
|
|
@@ -19887,6 +20116,26 @@ export declare type ConfluenceUpdateAnswerPayload = Payload & {
|
|
|
19887
20116
|
errors?: Maybe<Array<MutationError>>;
|
|
19888
20117
|
success: Scalars['Boolean']['output'];
|
|
19889
20118
|
};
|
|
20119
|
+
export declare type ConfluenceUpdateAudioPreferenceInput = {
|
|
20120
|
+
length?: InputMaybe<ConfluenceLength>;
|
|
20121
|
+
playbackSpeed?: InputMaybe<Scalars['Float']['input']>;
|
|
20122
|
+
tone?: InputMaybe<ConfluenceTone>;
|
|
20123
|
+
};
|
|
20124
|
+
export declare type ConfluenceUpdateAudioPreferencePayload = {
|
|
20125
|
+
__typename?: 'ConfluenceUpdateAudioPreferencePayload';
|
|
20126
|
+
errors?: Maybe<Array<ConfluenceUpdateAudioPreferencePayloadError>>;
|
|
20127
|
+
preference?: Maybe<ConfluenceAudioPreference>;
|
|
20128
|
+
success: Scalars['Boolean']['output'];
|
|
20129
|
+
};
|
|
20130
|
+
export declare type ConfluenceUpdateAudioPreferencePayloadError = {
|
|
20131
|
+
__typename?: 'ConfluenceUpdateAudioPreferencePayloadError';
|
|
20132
|
+
extensions?: Maybe<ConfluenceUpdateAudioPreferencePayloadErrorExtension>;
|
|
20133
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
20134
|
+
};
|
|
20135
|
+
export declare type ConfluenceUpdateAudioPreferencePayloadErrorExtension = {
|
|
20136
|
+
__typename?: 'ConfluenceUpdateAudioPreferencePayloadErrorExtension';
|
|
20137
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
20138
|
+
};
|
|
19890
20139
|
export declare type ConfluenceUpdateBlogPostInput = {
|
|
19891
20140
|
confluenceContentInput: ConfluenceContentInput;
|
|
19892
20141
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20282,6 +20531,7 @@ export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
|
20282
20531
|
dateFormat: Scalars['String']['input'];
|
|
20283
20532
|
dateTimeFormat: Scalars['String']['input'];
|
|
20284
20533
|
decimalNumberFormat: Scalars['String']['input'];
|
|
20534
|
+
editorDefaultWidth?: InputMaybe<ConfluenceSiteConfigurationEditorDefaultWidth>;
|
|
20285
20535
|
globalDefaultLocale: Scalars['String']['input'];
|
|
20286
20536
|
indexingLanguage: Scalars['String']['input'];
|
|
20287
20537
|
isContactAdministratorsFormEnabled: Scalars['Boolean']['input'];
|
|
@@ -24345,6 +24595,12 @@ export declare type CsmAiCreateCoachingContentPayload = Payload & {
|
|
|
24345
24595
|
errors?: Maybe<Array<MutationError>>;
|
|
24346
24596
|
success: Scalars['Boolean']['output'];
|
|
24347
24597
|
};
|
|
24598
|
+
export declare type CsmAiCreateWidgetPayload = Payload & {
|
|
24599
|
+
__typename?: 'CsmAiCreateWidgetPayload';
|
|
24600
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24601
|
+
success: Scalars['Boolean']['output'];
|
|
24602
|
+
widget?: Maybe<CsmAiWidgetConfig>;
|
|
24603
|
+
};
|
|
24348
24604
|
export declare type CsmAiDeleteActionPayload = Payload & {
|
|
24349
24605
|
__typename?: 'CsmAiDeleteActionPayload';
|
|
24350
24606
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -33862,6 +34118,39 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
33862
34118
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
33863
34119
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
33864
34120
|
};
|
|
34121
|
+
export declare type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
34122
|
+
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
34123
|
+
status: GraphIntegrationActionAdminManagementActionStatus;
|
|
34124
|
+
};
|
|
34125
|
+
export declare type GraphIntegrationActionAdminManagementActionConfigurationInput = {
|
|
34126
|
+
actionId: Scalars['ID']['input'];
|
|
34127
|
+
status?: InputMaybe<GraphIntegrationActionAdminManagementActionStatus>;
|
|
34128
|
+
};
|
|
34129
|
+
export declare type GraphIntegrationActionAdminManagementActionNode = {
|
|
34130
|
+
__typename?: 'GraphIntegrationActionAdminManagementActionNode';
|
|
34131
|
+
configuration?: Maybe<GraphIntegrationActionAdminManagementActionConfiguration>;
|
|
34132
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
34133
|
+
displayName: Scalars['String']['output'];
|
|
34134
|
+
id: Scalars['ID']['output'];
|
|
34135
|
+
};
|
|
34136
|
+
export declare enum GraphIntegrationActionAdminManagementActionStatus {
|
|
34137
|
+
Allow = "ALLOW",
|
|
34138
|
+
Deny = "DENY",
|
|
34139
|
+
NewActionAllow = "NEW_ACTION_ALLOW"
|
|
34140
|
+
}
|
|
34141
|
+
export declare type GraphIntegrationActionAdminManagementUpdateActionConfigurationInput = {
|
|
34142
|
+
actionConfigurations: Array<GraphIntegrationActionAdminManagementActionConfigurationInput>;
|
|
34143
|
+
contextAri: Scalars['ID']['input'];
|
|
34144
|
+
productAri: Scalars['ID']['input'];
|
|
34145
|
+
};
|
|
34146
|
+
export declare type GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload = Payload & {
|
|
34147
|
+
__typename?: 'GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload';
|
|
34148
|
+
contextAri: Scalars['ID']['output'];
|
|
34149
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34150
|
+
productAri: Scalars['ID']['output'];
|
|
34151
|
+
success: Scalars['Boolean']['output'];
|
|
34152
|
+
updatedActions?: Maybe<Array<GraphIntegrationActionAdminManagementActionNode>>;
|
|
34153
|
+
};
|
|
33865
34154
|
export declare type GraphIntegrationActionDirectoryItem = {
|
|
33866
34155
|
__typename?: 'GraphIntegrationActionDirectoryItem';
|
|
33867
34156
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -33974,8 +34263,13 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEd
|
|
|
33974
34263
|
};
|
|
33975
34264
|
export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
33976
34265
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
|
|
34266
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
33977
34267
|
displayName: Scalars['String']['output'];
|
|
34268
|
+
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
34269
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
33978
34270
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
34271
|
+
isInstalled: Scalars['Boolean']['output'];
|
|
34272
|
+
serverUrl: Scalars['String']['output'];
|
|
33979
34273
|
};
|
|
33980
34274
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
33981
34275
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
@@ -34183,6 +34477,7 @@ export declare enum GraphIntegrationSurface {
|
|
|
34183
34477
|
}
|
|
34184
34478
|
export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
34185
34479
|
__typename?: 'GraphIntegrationTwgCapabilityContainer';
|
|
34480
|
+
actionConfigurations: Array<GraphIntegrationActionAdminManagementActionNode>;
|
|
34186
34481
|
connections: Array<GraphIntegrationDataConnectorConnection>;
|
|
34187
34482
|
contextAri: Scalars['ID']['output'];
|
|
34188
34483
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
@@ -37224,12 +37519,20 @@ export declare type GraphStore = {
|
|
|
37224
37519
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
37225
37520
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
37226
37521
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
37522
|
+
meetingHasJiraProject?: Maybe<GraphStoreSimplifiedMeetingHasJiraProjectConnection>;
|
|
37523
|
+
meetingHasJiraProjectInverse?: Maybe<GraphStoreSimplifiedMeetingHasJiraProjectInverseConnection>;
|
|
37227
37524
|
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
37228
37525
|
meetingHasMeetingNotesPageBatch?: Maybe<GraphStoreBatchMeetingHasMeetingNotesPageConnection>;
|
|
37229
37526
|
meetingHasMeetingNotesPageInverse?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseConnection>;
|
|
37230
37527
|
meetingHasMeetingNotesPageInverseBatch?: Maybe<GraphStoreBatchMeetingHasMeetingNotesPageConnection>;
|
|
37528
|
+
meetingHasVideo?: Maybe<GraphStoreSimplifiedMeetingHasVideoConnection>;
|
|
37529
|
+
meetingHasVideoBatch?: Maybe<GraphStoreBatchMeetingHasVideoConnection>;
|
|
37530
|
+
meetingHasVideoInverse?: Maybe<GraphStoreSimplifiedMeetingHasVideoInverseConnection>;
|
|
37531
|
+
meetingHasVideoInverseBatch?: Maybe<GraphStoreBatchMeetingHasVideoConnection>;
|
|
37231
37532
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
37232
37533
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
37534
|
+
meetingRecurrenceHasJiraProject?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectConnection>;
|
|
37535
|
+
meetingRecurrenceHasJiraProjectInverse?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseConnection>;
|
|
37233
37536
|
meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
37234
37537
|
meetingRecurrenceHasMeetingRecurrenceNotesPageBatch?: Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
37235
37538
|
meetingRecurrenceHasMeetingRecurrenceNotesPageInverse?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseConnection>;
|
|
@@ -39905,6 +40208,20 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
|
39905
40208
|
ids: Array<Scalars['ID']['input']>;
|
|
39906
40209
|
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
39907
40210
|
};
|
|
40211
|
+
export declare type GraphStoreMeetingHasJiraProjectArgs = {
|
|
40212
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40213
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40214
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40215
|
+
id: Scalars['ID']['input'];
|
|
40216
|
+
sort?: InputMaybe<GraphStoreMeetingHasJiraProjectSortInput>;
|
|
40217
|
+
};
|
|
40218
|
+
export declare type GraphStoreMeetingHasJiraProjectInverseArgs = {
|
|
40219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40220
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40221
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40222
|
+
id: Scalars['ID']['input'];
|
|
40223
|
+
sort?: InputMaybe<GraphStoreMeetingHasJiraProjectSortInput>;
|
|
40224
|
+
};
|
|
39908
40225
|
export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
|
|
39909
40226
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39910
40227
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39931,6 +40248,32 @@ export declare type GraphStoreMeetingHasMeetingNotesPageInverseBatchArgs = {
|
|
|
39931
40248
|
ids: Array<Scalars['ID']['input']>;
|
|
39932
40249
|
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
39933
40250
|
};
|
|
40251
|
+
export declare type GraphStoreMeetingHasVideoArgs = {
|
|
40252
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40253
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40254
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40255
|
+
id: Scalars['ID']['input'];
|
|
40256
|
+
sort?: InputMaybe<GraphStoreMeetingHasVideoSortInput>;
|
|
40257
|
+
};
|
|
40258
|
+
export declare type GraphStoreMeetingHasVideoBatchArgs = {
|
|
40259
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40260
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40261
|
+
ids: Array<Scalars['ID']['input']>;
|
|
40262
|
+
sort?: InputMaybe<GraphStoreMeetingHasVideoSortInput>;
|
|
40263
|
+
};
|
|
40264
|
+
export declare type GraphStoreMeetingHasVideoInverseArgs = {
|
|
40265
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40266
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40267
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40268
|
+
id: Scalars['ID']['input'];
|
|
40269
|
+
sort?: InputMaybe<GraphStoreMeetingHasVideoSortInput>;
|
|
40270
|
+
};
|
|
40271
|
+
export declare type GraphStoreMeetingHasVideoInverseBatchArgs = {
|
|
40272
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40273
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40274
|
+
ids: Array<Scalars['ID']['input']>;
|
|
40275
|
+
sort?: InputMaybe<GraphStoreMeetingHasVideoSortInput>;
|
|
40276
|
+
};
|
|
39934
40277
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
39935
40278
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39936
40279
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39945,6 +40288,20 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseA
|
|
|
39945
40288
|
id: Scalars['ID']['input'];
|
|
39946
40289
|
sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
|
|
39947
40290
|
};
|
|
40291
|
+
export declare type GraphStoreMeetingRecurrenceHasJiraProjectArgs = {
|
|
40292
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40293
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40294
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40295
|
+
id: Scalars['ID']['input'];
|
|
40296
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasJiraProjectSortInput>;
|
|
40297
|
+
};
|
|
40298
|
+
export declare type GraphStoreMeetingRecurrenceHasJiraProjectInverseArgs = {
|
|
40299
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40300
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40301
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40302
|
+
id: Scalars['ID']['input'];
|
|
40303
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasJiraProjectSortInput>;
|
|
40304
|
+
};
|
|
39948
40305
|
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
39949
40306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39950
40307
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44536,6 +44893,47 @@ export declare type GraphStoreBatchMeetingHasMeetingNotesPageStartNode = {
|
|
|
44536
44893
|
id: Scalars['ID']['output'];
|
|
44537
44894
|
};
|
|
44538
44895
|
export declare type GraphStoreBatchMeetingHasMeetingNotesPageStartUnion = LoomMeeting;
|
|
44896
|
+
export declare type GraphStoreBatchMeetingHasVideoConnection = HasPageInfo & {
|
|
44897
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoConnection';
|
|
44898
|
+
edges: Array<Maybe<GraphStoreBatchMeetingHasVideoEdge>>;
|
|
44899
|
+
nodes: Array<Maybe<GraphStoreBatchMeetingHasVideoNode>>;
|
|
44900
|
+
pageInfo: PageInfo;
|
|
44901
|
+
};
|
|
44902
|
+
export declare type GraphStoreBatchMeetingHasVideoEdge = {
|
|
44903
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoEdge';
|
|
44904
|
+
node: GraphStoreBatchMeetingHasVideoInnerConnection;
|
|
44905
|
+
};
|
|
44906
|
+
export declare type GraphStoreBatchMeetingHasVideoEndNode = {
|
|
44907
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoEndNode';
|
|
44908
|
+
data?: Maybe<GraphStoreBatchMeetingHasVideoEndUnion>;
|
|
44909
|
+
id: Scalars['ID']['output'];
|
|
44910
|
+
};
|
|
44911
|
+
export declare type GraphStoreBatchMeetingHasVideoEndUnion = LoomVideo;
|
|
44912
|
+
export declare type GraphStoreBatchMeetingHasVideoInnerConnection = {
|
|
44913
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoInnerConnection';
|
|
44914
|
+
edges: Array<Maybe<GraphStoreBatchMeetingHasVideoInnerEdge>>;
|
|
44915
|
+
nodes: Array<Maybe<GraphStoreBatchMeetingHasVideoNode>>;
|
|
44916
|
+
requestedId: Scalars['ID']['output'];
|
|
44917
|
+
};
|
|
44918
|
+
export declare type GraphStoreBatchMeetingHasVideoInnerEdge = {
|
|
44919
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoInnerEdge';
|
|
44920
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44921
|
+
node: GraphStoreBatchMeetingHasVideoNode;
|
|
44922
|
+
};
|
|
44923
|
+
export declare type GraphStoreBatchMeetingHasVideoNode = Node & {
|
|
44924
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoNode';
|
|
44925
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44926
|
+
from: GraphStoreBatchMeetingHasVideoStartNode;
|
|
44927
|
+
id: Scalars['ID']['output'];
|
|
44928
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44929
|
+
to: GraphStoreBatchMeetingHasVideoEndNode;
|
|
44930
|
+
};
|
|
44931
|
+
export declare type GraphStoreBatchMeetingHasVideoStartNode = {
|
|
44932
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoStartNode';
|
|
44933
|
+
data?: Maybe<GraphStoreBatchMeetingHasVideoStartUnion>;
|
|
44934
|
+
id: Scalars['ID']['output'];
|
|
44935
|
+
};
|
|
44936
|
+
export declare type GraphStoreBatchMeetingHasVideoStartUnion = LoomMeeting;
|
|
44539
44937
|
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
44540
44938
|
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
44541
44939
|
edges: Array<Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>;
|
|
@@ -45100,6 +45498,20 @@ export declare type GraphStoreCreateLoomVideoHasConfluencePageRelationshipInput
|
|
|
45100
45498
|
to: Scalars['ID']['input'];
|
|
45101
45499
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45102
45500
|
};
|
|
45501
|
+
export declare type GraphStoreCreateMeetingHasJiraProjectInput = {
|
|
45502
|
+
relationships: Array<GraphStoreCreateMeetingHasJiraProjectRelationshipInput>;
|
|
45503
|
+
};
|
|
45504
|
+
export declare type GraphStoreCreateMeetingHasJiraProjectPayload = Payload & {
|
|
45505
|
+
__typename?: 'GraphStoreCreateMeetingHasJiraProjectPayload';
|
|
45506
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45507
|
+
success: Scalars['Boolean']['output'];
|
|
45508
|
+
};
|
|
45509
|
+
export declare type GraphStoreCreateMeetingHasJiraProjectRelationshipInput = {
|
|
45510
|
+
from: Scalars['ID']['input'];
|
|
45511
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
45512
|
+
to: Scalars['ID']['input'];
|
|
45513
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45514
|
+
};
|
|
45103
45515
|
export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput = {
|
|
45104
45516
|
relationships: Array<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
|
|
45105
45517
|
};
|
|
@@ -45114,6 +45526,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
45114
45526
|
to: Scalars['ID']['input'];
|
|
45115
45527
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45116
45528
|
};
|
|
45529
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasJiraProjectInput = {
|
|
45530
|
+
relationships: Array<GraphStoreCreateMeetingRecurrenceHasJiraProjectRelationshipInput>;
|
|
45531
|
+
};
|
|
45532
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasJiraProjectPayload = Payload & {
|
|
45533
|
+
__typename?: 'GraphStoreCreateMeetingRecurrenceHasJiraProjectPayload';
|
|
45534
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45535
|
+
success: Scalars['Boolean']['output'];
|
|
45536
|
+
};
|
|
45537
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasJiraProjectRelationshipInput = {
|
|
45538
|
+
from: Scalars['ID']['input'];
|
|
45539
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
45540
|
+
to: Scalars['ID']['input'];
|
|
45541
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45542
|
+
};
|
|
45117
45543
|
export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
|
|
45118
45544
|
relationships: Array<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
|
|
45119
45545
|
};
|
|
@@ -45742,6 +46168,19 @@ export declare type GraphStoreDeleteLoomVideoHasConfluencePageRelationshipInput
|
|
|
45742
46168
|
from: Scalars['ID']['input'];
|
|
45743
46169
|
to: Scalars['ID']['input'];
|
|
45744
46170
|
};
|
|
46171
|
+
export declare type GraphStoreDeleteMeetingHasJiraProjectInput = {
|
|
46172
|
+
relationships: Array<GraphStoreDeleteMeetingHasJiraProjectRelationshipInput>;
|
|
46173
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46174
|
+
};
|
|
46175
|
+
export declare type GraphStoreDeleteMeetingHasJiraProjectPayload = Payload & {
|
|
46176
|
+
__typename?: 'GraphStoreDeleteMeetingHasJiraProjectPayload';
|
|
46177
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46178
|
+
success: Scalars['Boolean']['output'];
|
|
46179
|
+
};
|
|
46180
|
+
export declare type GraphStoreDeleteMeetingHasJiraProjectRelationshipInput = {
|
|
46181
|
+
from: Scalars['ID']['input'];
|
|
46182
|
+
to: Scalars['ID']['input'];
|
|
46183
|
+
};
|
|
45745
46184
|
export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput = {
|
|
45746
46185
|
relationships: Array<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
|
|
45747
46186
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45755,6 +46194,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
45755
46194
|
from: Scalars['ID']['input'];
|
|
45756
46195
|
to: Scalars['ID']['input'];
|
|
45757
46196
|
};
|
|
46197
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasJiraProjectInput = {
|
|
46198
|
+
relationships: Array<GraphStoreDeleteMeetingRecurrenceHasJiraProjectRelationshipInput>;
|
|
46199
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46200
|
+
};
|
|
46201
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasJiraProjectPayload = Payload & {
|
|
46202
|
+
__typename?: 'GraphStoreDeleteMeetingRecurrenceHasJiraProjectPayload';
|
|
46203
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46204
|
+
success: Scalars['Boolean']['output'];
|
|
46205
|
+
};
|
|
46206
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasJiraProjectRelationshipInput = {
|
|
46207
|
+
from: Scalars['ID']['input'];
|
|
46208
|
+
to: Scalars['ID']['input'];
|
|
46209
|
+
};
|
|
45758
46210
|
export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
|
|
45759
46211
|
relationships: Array<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
|
|
45760
46212
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49929,12 +50381,27 @@ export declare type GraphStoreLoomVideoHasConfluencePageSortInput = {
|
|
|
49929
50381
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
49930
50382
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49931
50383
|
};
|
|
50384
|
+
export declare type GraphStoreMeetingHasJiraProjectSortInput = {
|
|
50385
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
50386
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
50387
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50388
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
50389
|
+
};
|
|
49932
50390
|
export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
49933
50391
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49934
50392
|
};
|
|
50393
|
+
export declare type GraphStoreMeetingHasVideoSortInput = {
|
|
50394
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50395
|
+
};
|
|
49935
50396
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
49936
50397
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49937
50398
|
};
|
|
50399
|
+
export declare type GraphStoreMeetingRecurrenceHasJiraProjectSortInput = {
|
|
50400
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
50401
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
50402
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50403
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
50404
|
+
};
|
|
49938
50405
|
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
49939
50406
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49940
50407
|
};
|
|
@@ -49948,7 +50415,9 @@ export declare type GraphStoreMutation = {
|
|
|
49948
50415
|
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
49949
50416
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
49950
50417
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
50418
|
+
createMeetingHasJiraProject?: Maybe<GraphStoreCreateMeetingHasJiraProjectPayload>;
|
|
49951
50419
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
50420
|
+
createMeetingRecurrenceHasJiraProject?: Maybe<GraphStoreCreateMeetingRecurrenceHasJiraProjectPayload>;
|
|
49952
50421
|
createMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
49953
50422
|
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
49954
50423
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -49978,7 +50447,9 @@ export declare type GraphStoreMutation = {
|
|
|
49978
50447
|
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
49979
50448
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
49980
50449
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
50450
|
+
deleteMeetingHasJiraProject?: Maybe<GraphStoreDeleteMeetingHasJiraProjectPayload>;
|
|
49981
50451
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
50452
|
+
deleteMeetingRecurrenceHasJiraProject?: Maybe<GraphStoreDeleteMeetingRecurrenceHasJiraProjectPayload>;
|
|
49982
50453
|
deleteMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
49983
50454
|
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
49984
50455
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -50025,9 +50496,15 @@ export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs =
|
|
|
50025
50496
|
export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
50026
50497
|
input?: InputMaybe<GraphStoreCreateLoomVideoHasConfluencePageInput>;
|
|
50027
50498
|
};
|
|
50499
|
+
export declare type GraphStoreMutationCreateMeetingHasJiraProjectArgs = {
|
|
50500
|
+
input?: InputMaybe<GraphStoreCreateMeetingHasJiraProjectInput>;
|
|
50501
|
+
};
|
|
50028
50502
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
50029
50503
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
50030
50504
|
};
|
|
50505
|
+
export declare type GraphStoreMutationCreateMeetingRecurrenceHasJiraProjectArgs = {
|
|
50506
|
+
input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasJiraProjectInput>;
|
|
50507
|
+
};
|
|
50031
50508
|
export declare type GraphStoreMutationCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
50032
50509
|
input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
50033
50510
|
};
|
|
@@ -50115,9 +50592,15 @@ export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs =
|
|
|
50115
50592
|
export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
50116
50593
|
input?: InputMaybe<GraphStoreDeleteLoomVideoHasConfluencePageInput>;
|
|
50117
50594
|
};
|
|
50595
|
+
export declare type GraphStoreMutationDeleteMeetingHasJiraProjectArgs = {
|
|
50596
|
+
input?: InputMaybe<GraphStoreDeleteMeetingHasJiraProjectInput>;
|
|
50597
|
+
};
|
|
50118
50598
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
50119
50599
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
50120
50600
|
};
|
|
50601
|
+
export declare type GraphStoreMutationDeleteMeetingRecurrenceHasJiraProjectArgs = {
|
|
50602
|
+
input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasJiraProjectInput>;
|
|
50603
|
+
};
|
|
50121
50604
|
export declare type GraphStoreMutationDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
50122
50605
|
input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
50123
50606
|
};
|
|
@@ -53991,6 +54474,38 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
53991
54474
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
53992
54475
|
};
|
|
53993
54476
|
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
54477
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectConnection = HasPageInfo & HasTotal & {
|
|
54478
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasJiraProjectConnection';
|
|
54479
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasJiraProjectEdge>>>;
|
|
54480
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54481
|
+
pageInfo: PageInfo;
|
|
54482
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54483
|
+
};
|
|
54484
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectEdge = {
|
|
54485
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasJiraProjectEdge';
|
|
54486
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54487
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54488
|
+
id: Scalars['ID']['output'];
|
|
54489
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54490
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasJiraProjectUnion>;
|
|
54491
|
+
};
|
|
54492
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
54493
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasJiraProjectInverseConnection';
|
|
54494
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasJiraProjectInverseEdge>>>;
|
|
54495
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54496
|
+
pageInfo: PageInfo;
|
|
54497
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54498
|
+
};
|
|
54499
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectInverseEdge = {
|
|
54500
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasJiraProjectInverseEdge';
|
|
54501
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54502
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54503
|
+
id: Scalars['ID']['output'];
|
|
54504
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54505
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasJiraProjectInverseUnion>;
|
|
54506
|
+
};
|
|
54507
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectInverseUnion = LoomMeeting;
|
|
54508
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectUnion = JiraProject;
|
|
53994
54509
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection = HasPageInfo & {
|
|
53995
54510
|
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection';
|
|
53996
54511
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge>>>;
|
|
@@ -54019,6 +54534,34 @@ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge =
|
|
|
54019
54534
|
};
|
|
54020
54535
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion = LoomMeeting;
|
|
54021
54536
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
54537
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoConnection = HasPageInfo & {
|
|
54538
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasVideoConnection';
|
|
54539
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasVideoEdge>>>;
|
|
54540
|
+
pageInfo: PageInfo;
|
|
54541
|
+
};
|
|
54542
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoEdge = {
|
|
54543
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasVideoEdge';
|
|
54544
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54545
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54546
|
+
id: Scalars['ID']['output'];
|
|
54547
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54548
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasVideoUnion>;
|
|
54549
|
+
};
|
|
54550
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoInverseConnection = HasPageInfo & {
|
|
54551
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasVideoInverseConnection';
|
|
54552
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasVideoInverseEdge>>>;
|
|
54553
|
+
pageInfo: PageInfo;
|
|
54554
|
+
};
|
|
54555
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoInverseEdge = {
|
|
54556
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasVideoInverseEdge';
|
|
54557
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54558
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54559
|
+
id: Scalars['ID']['output'];
|
|
54560
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54561
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasVideoInverseUnion>;
|
|
54562
|
+
};
|
|
54563
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoInverseUnion = LoomMeeting;
|
|
54564
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoUnion = LoomVideo;
|
|
54022
54565
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & {
|
|
54023
54566
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
54024
54567
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
@@ -54047,6 +54590,38 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
54047
54590
|
};
|
|
54048
54591
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54049
54592
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
|
|
54593
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectConnection = HasPageInfo & HasTotal & {
|
|
54594
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectConnection';
|
|
54595
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectEdge>>>;
|
|
54596
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54597
|
+
pageInfo: PageInfo;
|
|
54598
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54599
|
+
};
|
|
54600
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectEdge = {
|
|
54601
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectEdge';
|
|
54602
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54603
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54604
|
+
id: Scalars['ID']['output'];
|
|
54605
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54606
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectUnion>;
|
|
54607
|
+
};
|
|
54608
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
54609
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseConnection';
|
|
54610
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseEdge>>>;
|
|
54611
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54612
|
+
pageInfo: PageInfo;
|
|
54613
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54614
|
+
};
|
|
54615
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseEdge = {
|
|
54616
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseEdge';
|
|
54617
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54618
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54619
|
+
id: Scalars['ID']['output'];
|
|
54620
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54621
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseUnion>;
|
|
54622
|
+
};
|
|
54623
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseUnion = LoomMeetingRecurrence;
|
|
54624
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectUnion = JiraProject;
|
|
54050
54625
|
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
54051
54626
|
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
54052
54627
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>>;
|
|
@@ -61988,6 +62563,10 @@ export declare enum HelpCenterAccessControlType {
|
|
|
61988
62563
|
Internal = "INTERNAL",
|
|
61989
62564
|
Public = "PUBLIC"
|
|
61990
62565
|
}
|
|
62566
|
+
export declare type HelpCenterAddProjectMappingInput = {
|
|
62567
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62568
|
+
syncNewProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62569
|
+
};
|
|
61991
62570
|
export declare type HelpCenterAnnouncement = {
|
|
61992
62571
|
__typename?: 'HelpCenterAnnouncement';
|
|
61993
62572
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -62083,6 +62662,7 @@ export declare type HelpCenterCreateInput = {
|
|
|
62083
62662
|
helpCenterType?: InputMaybe<HelpCenterTypeInput>;
|
|
62084
62663
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
62085
62664
|
name: HelpCenterNameInput;
|
|
62665
|
+
projectMapping?: InputMaybe<HelpCenterAddProjectMappingInput>;
|
|
62086
62666
|
slug: Scalars['String']['input'];
|
|
62087
62667
|
workspaceARI: Scalars['String']['input'];
|
|
62088
62668
|
};
|
|
@@ -69437,6 +70017,12 @@ export declare type JiraDeleteAllAttachmentsPayload = Payload & {
|
|
|
69437
70017
|
errors?: Maybe<Array<MutationError>>;
|
|
69438
70018
|
success: Scalars['Boolean']['output'];
|
|
69439
70019
|
};
|
|
70020
|
+
export declare type JiraDeleteAllIssueResourcesPayload = Payload & {
|
|
70021
|
+
__typename?: 'JiraDeleteAllIssueResourcesPayload';
|
|
70022
|
+
deletedResourceARIs?: Maybe<Array<Scalars['ID']['output']>>;
|
|
70023
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70024
|
+
success: Scalars['Boolean']['output'];
|
|
70025
|
+
};
|
|
69440
70026
|
export declare type JiraDeleteAttachmentsPayload = Payload & {
|
|
69441
70027
|
__typename?: 'JiraDeleteAttachmentsPayload';
|
|
69442
70028
|
deletedAttachmentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -74838,6 +75424,13 @@ export declare type JiraJqlFunction = {
|
|
|
74838
75424
|
isList?: Maybe<Scalars['Boolean']['output']>;
|
|
74839
75425
|
value?: Maybe<Scalars['String']['output']>;
|
|
74840
75426
|
};
|
|
75427
|
+
export declare type JiraJqlFunctionFieldValue = JiraJqlFieldValue & {
|
|
75428
|
+
__typename?: 'JiraJqlFunctionFieldValue';
|
|
75429
|
+
displayName: Scalars['String']['output'];
|
|
75430
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
75431
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
75432
|
+
jqlTerm: Scalars['String']['output'];
|
|
75433
|
+
};
|
|
74841
75434
|
export declare type JiraJqlFunctionProcessingStatus = {
|
|
74842
75435
|
__typename?: 'JiraJqlFunctionProcessingStatus';
|
|
74843
75436
|
app?: Maybe<Scalars['String']['output']>;
|
|
@@ -75918,6 +76511,7 @@ export declare type JiraMutation = {
|
|
|
75918
76511
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
75919
76512
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
75920
76513
|
deleteAllAttachments?: Maybe<JiraDeleteAllAttachmentsPayload>;
|
|
76514
|
+
deleteAllConsolidatedResources?: Maybe<JiraDeleteAllIssueResourcesPayload>;
|
|
75921
76515
|
deleteAttachments?: Maybe<JiraDeleteAttachmentsPayload>;
|
|
75922
76516
|
deleteComment?: Maybe<JiraDeleteCommentPayload>;
|
|
75923
76517
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
@@ -76257,6 +76851,9 @@ export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
|
76257
76851
|
export declare type JiraMutationDeleteAllAttachmentsArgs = {
|
|
76258
76852
|
issueId: Scalars['ID']['input'];
|
|
76259
76853
|
};
|
|
76854
|
+
export declare type JiraMutationDeleteAllConsolidatedResourcesArgs = {
|
|
76855
|
+
issueId: Scalars['ID']['input'];
|
|
76856
|
+
};
|
|
76260
76857
|
export declare type JiraMutationDeleteAttachmentsArgs = {
|
|
76261
76858
|
ids: Array<Scalars['ID']['input']>;
|
|
76262
76859
|
};
|
|
@@ -84135,6 +84732,7 @@ export declare type JiraSubscription = {
|
|
|
84135
84732
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
84136
84733
|
onIssueDeletedByProjectsNoEnrichment?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
84137
84734
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
84735
|
+
onIssueMutatedByIssueIdFromDiffUserNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
84138
84736
|
onIssueMutatedByIssueIdNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
84139
84737
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
84140
84738
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
@@ -84227,6 +84825,10 @@ export declare type JiraSubscriptionOnIssueDeletedByProjectsNoEnrichmentArgs = {
|
|
|
84227
84825
|
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
84228
84826
|
input: JiraIssueExportInput;
|
|
84229
84827
|
};
|
|
84828
|
+
export declare type JiraSubscriptionOnIssueMutatedByIssueIdFromDiffUserNoEnrichmentArgs = {
|
|
84829
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
84830
|
+
issueId: Scalars['ID']['input'];
|
|
84831
|
+
};
|
|
84230
84832
|
export declare type JiraSubscriptionOnIssueMutatedByIssueIdNoEnrichmentArgs = {
|
|
84231
84833
|
issueId: Scalars['ID']['input'];
|
|
84232
84834
|
};
|
|
@@ -87994,6 +88596,65 @@ export declare type JsmChatWebSubscriptionResponse = {
|
|
|
87994
88596
|
conversation?: Maybe<JsmChatMessageEdge>;
|
|
87995
88597
|
result?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
|
|
87996
88598
|
};
|
|
88599
|
+
export declare type JsmConversationClaimConversationInput = {
|
|
88600
|
+
conversationId: Scalars['ID']['input'];
|
|
88601
|
+
};
|
|
88602
|
+
export declare type JsmConversationClaimConversationPayload = Payload & {
|
|
88603
|
+
__typename?: 'JsmConversationClaimConversationPayload';
|
|
88604
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88605
|
+
success: Scalars['Boolean']['output'];
|
|
88606
|
+
};
|
|
88607
|
+
export declare type JsmConversationCloseConversationInput = {
|
|
88608
|
+
conversationId: Scalars['ID']['input'];
|
|
88609
|
+
};
|
|
88610
|
+
export declare type JsmConversationCloseConversationPayload = Payload & {
|
|
88611
|
+
__typename?: 'JsmConversationCloseConversationPayload';
|
|
88612
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88613
|
+
success: Scalars['Boolean']['output'];
|
|
88614
|
+
};
|
|
88615
|
+
export declare type JsmConversationConversation = {
|
|
88616
|
+
__typename?: 'JsmConversationConversation';
|
|
88617
|
+
assignee?: Maybe<Scalars['ID']['output']>;
|
|
88618
|
+
conversationId: Scalars['ID']['output'];
|
|
88619
|
+
conversationStatus?: Maybe<JsmConversationConversationStatus>;
|
|
88620
|
+
helpseeker?: Maybe<Scalars['ID']['output']>;
|
|
88621
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
88622
|
+
waitTimeLeft?: Maybe<Scalars['Long']['output']>;
|
|
88623
|
+
};
|
|
88624
|
+
export declare type JsmConversationConversationConnection = {
|
|
88625
|
+
__typename?: 'JsmConversationConversationConnection';
|
|
88626
|
+
edges?: Maybe<Array<JsmConversationConversationEdge>>;
|
|
88627
|
+
nodes?: Maybe<Array<Maybe<JsmConversationConversation>>>;
|
|
88628
|
+
pageInfo: PageInfo;
|
|
88629
|
+
};
|
|
88630
|
+
export declare type JsmConversationConversationEdge = {
|
|
88631
|
+
__typename?: 'JsmConversationConversationEdge';
|
|
88632
|
+
cursor: Scalars['String']['output'];
|
|
88633
|
+
node?: Maybe<JsmConversationConversation>;
|
|
88634
|
+
};
|
|
88635
|
+
export declare enum JsmConversationConversationStatus {
|
|
88636
|
+
Closed = "CLOSED"
|
|
88637
|
+
}
|
|
88638
|
+
export declare type JsmConversationMessage = {
|
|
88639
|
+
__typename?: 'JsmConversationMessage';
|
|
88640
|
+
author?: Maybe<Scalars['ID']['output']>;
|
|
88641
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
88642
|
+
conversationId: Scalars['ID']['output'];
|
|
88643
|
+
messageId: Scalars['ID']['output'];
|
|
88644
|
+
sentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
88645
|
+
sequenceId?: Maybe<Scalars['String']['output']>;
|
|
88646
|
+
};
|
|
88647
|
+
export declare type JsmConversationMessageConnection = {
|
|
88648
|
+
__typename?: 'JsmConversationMessageConnection';
|
|
88649
|
+
edges?: Maybe<Array<JsmConversationMessageEdge>>;
|
|
88650
|
+
nodes?: Maybe<Array<Maybe<JsmConversationMessage>>>;
|
|
88651
|
+
pageInfo: PageInfo;
|
|
88652
|
+
};
|
|
88653
|
+
export declare type JsmConversationMessageEdge = {
|
|
88654
|
+
__typename?: 'JsmConversationMessageEdge';
|
|
88655
|
+
cursor: Scalars['String']['output'];
|
|
88656
|
+
node?: Maybe<JsmConversationMessage>;
|
|
88657
|
+
};
|
|
87997
88658
|
export declare type JsonContentProperty = {
|
|
87998
88659
|
__typename?: 'JsonContentProperty';
|
|
87999
88660
|
content?: Maybe<Content>;
|
|
@@ -88326,10 +88987,10 @@ export declare type KitsuneChunk = KitsuneNode & {
|
|
|
88326
88987
|
_id: Scalars['ID']['output'];
|
|
88327
88988
|
content?: Maybe<Scalars['String']['output']>;
|
|
88328
88989
|
};
|
|
88329
|
-
export declare type KitsuneFeedback =
|
|
88990
|
+
export declare type KitsuneFeedback = Node & {
|
|
88330
88991
|
__typename?: 'KitsuneFeedback';
|
|
88331
|
-
_id: Scalars['ID']['output'];
|
|
88332
88992
|
content?: Maybe<Scalars['String']['output']>;
|
|
88993
|
+
id: Scalars['ID']['output'];
|
|
88333
88994
|
title?: Maybe<Scalars['String']['output']>;
|
|
88334
88995
|
};
|
|
88335
88996
|
export declare type KitsuneNode = {
|
|
@@ -88358,6 +89019,7 @@ export declare type KnowledgeBaseAgentArticleSearchInput = {
|
|
|
88358
89019
|
projectIdentifier: Scalars['String']['input'];
|
|
88359
89020
|
searchFilters?: InputMaybe<KnowledgeBaseSearchFiltersInput>;
|
|
88360
89021
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
89022
|
+
shouldFetchCategories?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88361
89023
|
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
88362
89024
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
88363
89025
|
};
|
|
@@ -88392,7 +89054,6 @@ export declare type KnowledgeBaseArticleMetadata = {
|
|
|
88392
89054
|
__typename?: 'KnowledgeBaseArticleMetadata';
|
|
88393
89055
|
categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
|
|
88394
89056
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
88395
|
-
viewCount?: Maybe<Scalars['Int']['output']>;
|
|
88396
89057
|
};
|
|
88397
89058
|
export declare type KnowledgeBaseArticleSearchInput = {
|
|
88398
89059
|
articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -88416,6 +89077,7 @@ export declare enum KnowledgeBaseArticleSearchSortOrder {
|
|
|
88416
89077
|
}
|
|
88417
89078
|
export declare type KnowledgeBaseArticleSource = {
|
|
88418
89079
|
__typename?: 'KnowledgeBaseArticleSource';
|
|
89080
|
+
additionalIdentifier?: Maybe<Scalars['String']['output']>;
|
|
88419
89081
|
ari?: Maybe<Scalars['String']['output']>;
|
|
88420
89082
|
name?: Maybe<Scalars['String']['output']>;
|
|
88421
89083
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -88542,7 +89204,7 @@ export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
88542
89204
|
export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
88543
89205
|
export declare type KnowledgeBaseSearchFiltersInput = {
|
|
88544
89206
|
sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88545
|
-
sourceVisibility?: InputMaybe<Array<
|
|
89207
|
+
sourceVisibility?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88546
89208
|
sources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88547
89209
|
};
|
|
88548
89210
|
export declare type KnowledgeBaseSource = {
|
|
@@ -88595,10 +89257,6 @@ export declare type KnowledgeBaseSourceSuggestions = {
|
|
|
88595
89257
|
sourceSuggestions?: Maybe<Array<KnowledgeBaseSourceSuggestion>>;
|
|
88596
89258
|
};
|
|
88597
89259
|
export declare type KnowledgeBaseSourceSuggestionsResponse = KnowledgeBaseSourceSuggestions | QueryError;
|
|
88598
|
-
export declare enum KnowledgeBaseSourceVisibility {
|
|
88599
|
-
External = "EXTERNAL",
|
|
88600
|
-
Internal = "INTERNAL"
|
|
88601
|
-
}
|
|
88602
89260
|
export declare type KnowledgeBaseSources = {
|
|
88603
89261
|
__typename?: 'KnowledgeBaseSources';
|
|
88604
89262
|
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
@@ -88899,7 +89557,8 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
|
88899
89557
|
export declare enum KnowledgeDiscoveryDetectionType {
|
|
88900
89558
|
EntityRecognition = "ENTITY_RECOGNITION",
|
|
88901
89559
|
Heuristic = "HEURISTIC",
|
|
88902
|
-
Llm = "LLM"
|
|
89560
|
+
Llm = "LLM",
|
|
89561
|
+
Slm = "SLM"
|
|
88903
89562
|
}
|
|
88904
89563
|
export declare type KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput = {
|
|
88905
89564
|
bookmarkAdminhubId: Scalars['ID']['input'];
|
|
@@ -90517,10 +91176,9 @@ export declare type MarketplaceConsoleAppInput = {
|
|
|
90517
91176
|
appName: Scalars['String']['input'];
|
|
90518
91177
|
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
90519
91178
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
91179
|
+
marketingLabels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
90520
91180
|
onDemandPaymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
90521
|
-
|
|
90522
|
-
summary?: InputMaybe<Scalars['String']['input']>;
|
|
90523
|
-
vendorId: Scalars['Int']['input'];
|
|
91181
|
+
vendorId?: InputMaybe<Scalars['Int']['input']>;
|
|
90524
91182
|
vendorLinks?: InputMaybe<MarketplaceConsoleAppVendorLinksInput>;
|
|
90525
91183
|
version: MarketplaceConsoleAppSoftwareVersionInput;
|
|
90526
91184
|
};
|
|
@@ -90938,11 +91596,11 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
90938
91596
|
Platinum = "PLATINUM",
|
|
90939
91597
|
Silver = "SILVER"
|
|
90940
91598
|
}
|
|
90941
|
-
export declare type MarketplaceConsoleDomainError = {
|
|
91599
|
+
export declare type MarketplaceConsoleDomainError = MarketplaceConsoleError & {
|
|
90942
91600
|
__typename?: 'MarketplaceConsoleDomainError';
|
|
90943
91601
|
code: Scalars['String']['output'];
|
|
90944
|
-
detail: Scalars['String']['output'];
|
|
90945
91602
|
id?: Maybe<Scalars['String']['output']>;
|
|
91603
|
+
message: Scalars['String']['output'];
|
|
90946
91604
|
status: Scalars['String']['output'];
|
|
90947
91605
|
title: Scalars['String']['output'];
|
|
90948
91606
|
};
|
|
@@ -97030,6 +97688,7 @@ export declare type Mutation = {
|
|
|
97030
97688
|
agentStudio_deleteDataset: AgentStudioDeleteDatasetPayload;
|
|
97031
97689
|
agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
|
|
97032
97690
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
97691
|
+
agentStudio_deleteWidget?: Maybe<AgentStudioDeleteWidgetPayload>;
|
|
97033
97692
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
97034
97693
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
97035
97694
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
@@ -97066,9 +97725,11 @@ export declare type Mutation = {
|
|
|
97066
97725
|
assetsDM_dataSourceCleansingRulesRunCleanse?: Maybe<AssetsDmDataSourceCleansingRulesRunCleanseResponse>;
|
|
97067
97726
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
97068
97727
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
97728
|
+
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
97069
97729
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
97070
97730
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
97071
97731
|
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
97732
|
+
assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
|
|
97072
97733
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
97073
97734
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
97074
97735
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
@@ -97187,6 +97848,7 @@ export declare type Mutation = {
|
|
|
97187
97848
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
97188
97849
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
97189
97850
|
confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
|
|
97851
|
+
confluence_updateAudioPreference?: Maybe<ConfluenceUpdateAudioPreferencePayload>;
|
|
97190
97852
|
confluence_updateBlogPost?: Maybe<ConfluenceUpdateBlogPostPayload>;
|
|
97191
97853
|
confluence_updateCalendarCustomEventType?: Maybe<ConfluenceUpdateCalendarCustomEventTypePayload>;
|
|
97192
97854
|
confluence_updateCalendarEvent?: Maybe<ConfluenceUpdateCalendarEventPayload>;
|
|
@@ -97281,7 +97943,7 @@ export declare type Mutation = {
|
|
|
97281
97943
|
csmAi_createAction?: Maybe<CsmAiCreateActionPayload>;
|
|
97282
97944
|
csmAi_createActionForAgent?: Maybe<CsmAiCreateActionPayload>;
|
|
97283
97945
|
csmAi_createCoachingContent?: Maybe<CsmAiCreateCoachingContentPayload>;
|
|
97284
|
-
csmAi_createEmbedWidget?: Maybe<
|
|
97946
|
+
csmAi_createEmbedWidget?: Maybe<CsmAiCreateWidgetPayload>;
|
|
97285
97947
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
97286
97948
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
97287
97949
|
csmAi_deleteKnowledgeSource?: Maybe<CsmAiDeleteKnowledgeSourcePayload>;
|
|
@@ -97410,6 +98072,7 @@ export declare type Mutation = {
|
|
|
97410
98072
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
97411
98073
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
97412
98074
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
98075
|
+
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
97413
98076
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
97414
98077
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
97415
98078
|
graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
|
|
@@ -97538,10 +98201,12 @@ export declare type Mutation = {
|
|
|
97538
98201
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
97539
98202
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
97540
98203
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
98204
|
+
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
98205
|
+
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
97541
98206
|
jsw?: Maybe<JswMutation>;
|
|
97542
98207
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
97543
98208
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
97544
|
-
kitsune_suggestSnippets?: Maybe<
|
|
98209
|
+
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
97545
98210
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
97546
98211
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
97547
98212
|
knowledgeBase_linkSources?: Maybe<KnowledgeBaseLinkSourcesResponse>;
|
|
@@ -97634,6 +98299,7 @@ export declare type Mutation = {
|
|
|
97634
98299
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
97635
98300
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
97636
98301
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
98302
|
+
radar_deleteView?: Maybe<RadarView>;
|
|
97637
98303
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
97638
98304
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
97639
98305
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
@@ -97641,6 +98307,7 @@ export declare type Mutation = {
|
|
|
97641
98307
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
97642
98308
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
97643
98309
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
98310
|
+
radar_upsertView?: Maybe<RadarView>;
|
|
97644
98311
|
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
97645
98312
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
97646
98313
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
@@ -97972,6 +98639,10 @@ export declare type MutationAgentStudio_DeleteDatasetItemArgs = {
|
|
|
97972
98639
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
97973
98640
|
id: Scalars['ID']['input'];
|
|
97974
98641
|
};
|
|
98642
|
+
export declare type MutationAgentStudio_DeleteWidgetArgs = {
|
|
98643
|
+
cloudId: Scalars['String']['input'];
|
|
98644
|
+
widgetId: Scalars['ID']['input'];
|
|
98645
|
+
};
|
|
97975
98646
|
export declare type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
97976
98647
|
id: Scalars['ID']['input'];
|
|
97977
98648
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
@@ -98129,6 +98800,11 @@ export declare type MutationAssetsDm_DataSourceRunTransformArgs = {
|
|
|
98129
98800
|
jobId: Scalars['ID']['input'];
|
|
98130
98801
|
workspaceId: Scalars['ID']['input'];
|
|
98131
98802
|
};
|
|
98803
|
+
export declare type MutationAssetsDm_DeleteDefaultAttributeMappingArgs = {
|
|
98804
|
+
cloudId: Scalars['ID']['input'];
|
|
98805
|
+
defaultObjectAttributeMappingId: Scalars['ID']['input'];
|
|
98806
|
+
workspaceId: Scalars['ID']['input'];
|
|
98807
|
+
};
|
|
98132
98808
|
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
98133
98809
|
cloudId: Scalars['ID']['input'];
|
|
98134
98810
|
tagId: Scalars['ID']['input'];
|
|
@@ -98144,6 +98820,11 @@ export declare type MutationAssetsDm_DissociateObjectTagArgs = {
|
|
|
98144
98820
|
input: AssetsDmObjectTagDissociateInput;
|
|
98145
98821
|
workspaceId: Scalars['ID']['input'];
|
|
98146
98822
|
};
|
|
98823
|
+
export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
|
|
98824
|
+
cloudId: Scalars['ID']['input'];
|
|
98825
|
+
payload: AssetsDmEditDefaultAttributeMappingInput;
|
|
98826
|
+
workspaceId: Scalars['ID']['input'];
|
|
98827
|
+
};
|
|
98147
98828
|
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
98148
98829
|
cloudId: Scalars['ID']['input'];
|
|
98149
98830
|
input: Array<AssetsDmObjectTagEditInput>;
|
|
@@ -98567,6 +99248,10 @@ export declare type MutationConfluence_UpdateAnswerArgs = {
|
|
|
98567
99248
|
cloudId: Scalars['ID']['input'];
|
|
98568
99249
|
input: ConfluenceUpdateAnswerInput;
|
|
98569
99250
|
};
|
|
99251
|
+
export declare type MutationConfluence_UpdateAudioPreferenceArgs = {
|
|
99252
|
+
cloudId: Scalars['ID']['input'];
|
|
99253
|
+
input: ConfluenceUpdateAudioPreferenceInput;
|
|
99254
|
+
};
|
|
98570
99255
|
export declare type MutationConfluence_UpdateBlogPostArgs = {
|
|
98571
99256
|
cloudId: Scalars['ID']['input'];
|
|
98572
99257
|
input: ConfluenceUpdateBlogPostInput;
|
|
@@ -99345,6 +100030,9 @@ export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
|
99345
100030
|
export declare type MutationGrantContentAccessArgs = {
|
|
99346
100031
|
grantContentAccessInput: GrantContentAccessInput;
|
|
99347
100032
|
};
|
|
100033
|
+
export declare type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
100034
|
+
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
100035
|
+
};
|
|
99348
100036
|
export declare type MutationGraphIntegration_AddTwgCapabilityContainerArgs = {
|
|
99349
100037
|
input: GraphIntegrationAddTwgCapabilityContainerInput;
|
|
99350
100038
|
};
|
|
@@ -99744,6 +100432,12 @@ export declare type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
|
99744
100432
|
input: JsmChannelsTaskAgentConfigurationInput;
|
|
99745
100433
|
jiraProjectAri: Scalars['ID']['input'];
|
|
99746
100434
|
};
|
|
100435
|
+
export declare type MutationJsmConversation_ClaimConversationArgs = {
|
|
100436
|
+
input: JsmConversationClaimConversationInput;
|
|
100437
|
+
};
|
|
100438
|
+
export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
100439
|
+
input: JsmConversationCloseConversationInput;
|
|
100440
|
+
};
|
|
99747
100441
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
99748
100442
|
content: Scalars['String']['input'];
|
|
99749
100443
|
projectAri: Scalars['ID']['input'];
|
|
@@ -100024,6 +100718,9 @@ export declare type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
|
100024
100718
|
cloudId: Scalars['ID']['input'];
|
|
100025
100719
|
input: RadarRoleAssignmentRequest;
|
|
100026
100720
|
};
|
|
100721
|
+
export declare type MutationRadar_DeleteViewArgs = {
|
|
100722
|
+
id: Scalars['ID']['input'];
|
|
100723
|
+
};
|
|
100027
100724
|
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
100028
100725
|
cloudId: Scalars['ID']['input'];
|
|
100029
100726
|
input: RadarConnectorsInput;
|
|
@@ -100052,6 +100749,10 @@ export declare type MutationRadar_UpsertLastAppliedFilterArgs = {
|
|
|
100052
100749
|
cloudId: Scalars['ID']['input'];
|
|
100053
100750
|
input: RadarLastAppliedFilterInput;
|
|
100054
100751
|
};
|
|
100752
|
+
export declare type MutationRadar_UpsertViewArgs = {
|
|
100753
|
+
cloudId: Scalars['ID']['input'];
|
|
100754
|
+
input: RadarUpsertViewInput;
|
|
100755
|
+
};
|
|
100055
100756
|
export declare type MutationRadar_UpsertWorkTypeAllocationsArgs = {
|
|
100056
100757
|
cloudId: Scalars['ID']['input'];
|
|
100057
100758
|
input: Array<RadarWorkTypeAllocationInput>;
|
|
@@ -103622,7 +104323,7 @@ export declare type Query = {
|
|
|
103622
104323
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
103623
104324
|
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
103624
104325
|
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
|
|
103625
|
-
agentStudio_jobRuns:
|
|
104326
|
+
agentStudio_jobRuns: AgentStudioBatchEvaluationJobRunResult;
|
|
103626
104327
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
103627
104328
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
103628
104329
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -103642,7 +104343,6 @@ export declare type Query = {
|
|
|
103642
104343
|
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
103643
104344
|
app?: Maybe<App>;
|
|
103644
104345
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
103645
|
-
appAdmin?: Maybe<AppAdminQuery>;
|
|
103646
104346
|
appContainer?: Maybe<AppContainer>;
|
|
103647
104347
|
appContainerRegistryLogin?: Maybe<AppContainerRegistryLogin>;
|
|
103648
104348
|
appContainerServices?: Maybe<AppContainerServices>;
|
|
@@ -103678,8 +104378,11 @@ export declare type Query = {
|
|
|
103678
104378
|
assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
|
|
103679
104379
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
103680
104380
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
104381
|
+
assetsDM_defaultAttributeMapping?: Maybe<AssetsDmDefaultAttributeMappingResponse>;
|
|
103681
104382
|
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
103682
104383
|
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
104384
|
+
assetsDM_getMappingMatrix?: Maybe<AssetsDmMappingMatrixResponse>;
|
|
104385
|
+
assetsDM_jobData?: Maybe<AssetsDmJobDataResponse>;
|
|
103683
104386
|
assetsDM_notifications?: Maybe<AssetsDmNotificationResponse>;
|
|
103684
104387
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
103685
104388
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
@@ -103692,6 +104395,7 @@ export declare type Query = {
|
|
|
103692
104395
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
103693
104396
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
103694
104397
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
104398
|
+
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
103695
104399
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
103696
104400
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
103697
104401
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
@@ -103824,6 +104528,7 @@ export declare type Query = {
|
|
|
103824
104528
|
confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
|
|
103825
104529
|
confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
|
|
103826
104530
|
confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
|
|
104531
|
+
confluence_nbmPerfScanResult?: Maybe<ConfluenceNbmPerfScanResult>;
|
|
103827
104532
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
103828
104533
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
103829
104534
|
confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
|
|
@@ -104156,7 +104861,10 @@ export declare type Query = {
|
|
|
104156
104861
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
104157
104862
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
104158
104863
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
104864
|
+
jsmConversation_conversations?: Maybe<JsmConversationConversationConnection>;
|
|
104865
|
+
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
104159
104866
|
jsw?: Maybe<JswQuery>;
|
|
104867
|
+
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
104160
104868
|
kitsune_hello?: Maybe<Scalars['String']['output']>;
|
|
104161
104869
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
104162
104870
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -104317,6 +105025,9 @@ export declare type Query = {
|
|
|
104317
105025
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
104318
105026
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
104319
105027
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
105028
|
+
radar_viewByAri?: Maybe<RadarView>;
|
|
105029
|
+
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
105030
|
+
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
104320
105031
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
104321
105032
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
104322
105033
|
radar_workspace: RadarWorkspace;
|
|
@@ -104750,7 +105461,7 @@ export declare type QueryAgentStudio_DatasetsArgs = {
|
|
|
104750
105461
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104751
105462
|
productType: AgentStudioProductType;
|
|
104752
105463
|
projectContainerAri: Scalars['ID']['input'];
|
|
104753
|
-
projectId
|
|
105464
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
104754
105465
|
};
|
|
104755
105466
|
export declare type QueryAgentStudio_EvaluationProjectArgs = {
|
|
104756
105467
|
cloudId: Scalars['String']['input'];
|
|
@@ -104898,9 +105609,6 @@ export declare type QueryAppActiveTunnelsArgs = {
|
|
|
104898
105609
|
appId: Scalars['ID']['input'];
|
|
104899
105610
|
environmentId: Scalars['ID']['input'];
|
|
104900
105611
|
};
|
|
104901
|
-
export declare type QueryAppAdminArgs = {
|
|
104902
|
-
appId: Scalars['ID']['input'];
|
|
104903
|
-
};
|
|
104904
105612
|
export declare type QueryAppContainerArgs = {
|
|
104905
105613
|
appId: Scalars['ID']['input'];
|
|
104906
105614
|
containerKey: Scalars['String']['input'];
|
|
@@ -105078,6 +105786,13 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
105078
105786
|
dataSourceId: Scalars['ID']['input'];
|
|
105079
105787
|
workspaceId: Scalars['ID']['input'];
|
|
105080
105788
|
};
|
|
105789
|
+
export declare type QueryAssetsDm_DefaultAttributeMappingArgs = {
|
|
105790
|
+
cloudId: Scalars['ID']['input'];
|
|
105791
|
+
filterBy?: InputMaybe<AssetsDmDefaultAttributeMappingFilterBy>;
|
|
105792
|
+
pageInfo?: InputMaybe<AssetsDmDefaultAttributeMappingPageInfoInput>;
|
|
105793
|
+
sortBy?: InputMaybe<AssetsDmDefaultAttributeMappingSortBy>;
|
|
105794
|
+
workspaceId: Scalars['ID']['input'];
|
|
105795
|
+
};
|
|
105081
105796
|
export declare type QueryAssetsDm_GetCleansingExecutiveArgs = {
|
|
105082
105797
|
cloudId: Scalars['ID']['input'];
|
|
105083
105798
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -105088,6 +105803,18 @@ export declare type QueryAssetsDm_GetDataSourceForCleansingArgs = {
|
|
|
105088
105803
|
dataSourceId: Scalars['ID']['input'];
|
|
105089
105804
|
workspaceId: Scalars['ID']['input'];
|
|
105090
105805
|
};
|
|
105806
|
+
export declare type QueryAssetsDm_GetMappingMatrixArgs = {
|
|
105807
|
+
cloudId: Scalars['ID']['input'];
|
|
105808
|
+
objectClassId: Scalars['String']['input'];
|
|
105809
|
+
workspaceId: Scalars['ID']['input'];
|
|
105810
|
+
};
|
|
105811
|
+
export declare type QueryAssetsDm_JobDataArgs = {
|
|
105812
|
+
cloudId: Scalars['ID']['input'];
|
|
105813
|
+
dataType: AssetsDmJobDataType;
|
|
105814
|
+
jobId: Scalars['ID']['input'];
|
|
105815
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
105816
|
+
workspaceId: Scalars['ID']['input'];
|
|
105817
|
+
};
|
|
105091
105818
|
export declare type QueryAssetsDm_NotificationsArgs = {
|
|
105092
105819
|
cloudId: Scalars['ID']['input'];
|
|
105093
105820
|
payload: AssetsDmNotificationPayload;
|
|
@@ -105117,7 +105844,10 @@ export declare type QueryAssetsDm_ObjectHistoryArgs = {
|
|
|
105117
105844
|
};
|
|
105118
105845
|
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
105119
105846
|
cloudId: Scalars['ID']['input'];
|
|
105847
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
105120
105848
|
objectId: Scalars['ID']['input'];
|
|
105849
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
105850
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
105121
105851
|
workspaceId: Scalars['ID']['input'];
|
|
105122
105852
|
};
|
|
105123
105853
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
@@ -105157,6 +105887,11 @@ export declare type QueryAssetsDm_RawDataArgs = {
|
|
|
105157
105887
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
105158
105888
|
workspaceId: Scalars['ID']['input'];
|
|
105159
105889
|
};
|
|
105890
|
+
export declare type QueryAssetsDm_SavedSearchDetailsArgs = {
|
|
105891
|
+
cloudId: Scalars['ID']['input'];
|
|
105892
|
+
savedSearchId: Scalars['ID']['input'];
|
|
105893
|
+
workspaceId: Scalars['ID']['input'];
|
|
105894
|
+
};
|
|
105160
105895
|
export declare type QueryAssetsDm_SavedSearchesListArgs = {
|
|
105161
105896
|
cloudId: Scalars['ID']['input'];
|
|
105162
105897
|
objectId: Scalars['ID']['input'];
|
|
@@ -105705,6 +106440,10 @@ export declare type QueryConfluence_NbmPerfReportListArgs = {
|
|
|
105705
106440
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105706
106441
|
status?: InputMaybe<ConfluenceNbmScanStatus>;
|
|
105707
106442
|
};
|
|
106443
|
+
export declare type QueryConfluence_NbmPerfScanResultArgs = {
|
|
106444
|
+
cloudId: Scalars['ID']['input'];
|
|
106445
|
+
scanId: Scalars['ID']['input'];
|
|
106446
|
+
};
|
|
105708
106447
|
export declare type QueryConfluence_NbmScanListArgs = {
|
|
105709
106448
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
105710
106449
|
cloudId: Scalars['ID']['input'];
|
|
@@ -107118,6 +107857,23 @@ export declare type QueryJsmChannels_TaskAgentsArgs = {
|
|
|
107118
107857
|
experience: JsmChannelsExperience;
|
|
107119
107858
|
jiraProjectAri: Scalars['ID']['input'];
|
|
107120
107859
|
};
|
|
107860
|
+
export declare type QueryJsmConversation_ConversationsArgs = {
|
|
107861
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107862
|
+
cloudId: Scalars['ID']['input'];
|
|
107863
|
+
conversationAssignee?: InputMaybe<Scalars['String']['input']>;
|
|
107864
|
+
conversationStatus?: InputMaybe<Scalars['String']['input']>;
|
|
107865
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107866
|
+
projectKey: Scalars['String']['input'];
|
|
107867
|
+
};
|
|
107868
|
+
export declare type QueryJsmConversation_MessagesArgs = {
|
|
107869
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107870
|
+
cloudId: Scalars['ID']['input'];
|
|
107871
|
+
conversationAri: Scalars['ID']['input'];
|
|
107872
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107873
|
+
};
|
|
107874
|
+
export declare type QueryKitsune_FeedbacksArgs = {
|
|
107875
|
+
ids: Array<Scalars['ID']['input']>;
|
|
107876
|
+
};
|
|
107121
107877
|
export declare type QueryKitsune_HelloArgs = {
|
|
107122
107878
|
projectAri: Scalars['ID']['input'];
|
|
107123
107879
|
};
|
|
@@ -107658,6 +108414,15 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
107658
108414
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107659
108415
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
107660
108416
|
};
|
|
108417
|
+
export declare type QueryRadar_ViewByAriArgs = {
|
|
108418
|
+
id: Scalars['ID']['input'];
|
|
108419
|
+
};
|
|
108420
|
+
export declare type QueryRadar_ViewsByArisArgs = {
|
|
108421
|
+
ids: Array<Scalars['ID']['input']>;
|
|
108422
|
+
};
|
|
108423
|
+
export declare type QueryRadar_ViewsSearchArgs = {
|
|
108424
|
+
cloudId: Scalars['ID']['input'];
|
|
108425
|
+
};
|
|
107661
108426
|
export declare type QueryRadar_WorkerByAriArgs = {
|
|
107662
108427
|
id: Scalars['ID']['input'];
|
|
107663
108428
|
};
|
|
@@ -108447,12 +109212,6 @@ export declare type QuickReloadComment = {
|
|
|
108447
109212
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
108448
109213
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
108449
109214
|
};
|
|
108450
|
-
export declare type QuotaInfo = {
|
|
108451
|
-
__typename?: 'QuotaInfo';
|
|
108452
|
-
contextAri: Scalars['ID']['output'];
|
|
108453
|
-
encrypted: Scalars['Boolean']['output'];
|
|
108454
|
-
quotaUsage: Scalars['Int']['output'];
|
|
108455
|
-
};
|
|
108456
109215
|
export declare type RadarAriFieldValue = {
|
|
108457
109216
|
__typename?: 'RadarAriFieldValue';
|
|
108458
109217
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -108950,6 +109709,15 @@ export declare type RadarUpdatePositionLaborCostResponse = {
|
|
|
108950
109709
|
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
108951
109710
|
success: Scalars['Boolean']['output'];
|
|
108952
109711
|
};
|
|
109712
|
+
export declare type RadarUpsertViewInput = {
|
|
109713
|
+
groupingField?: InputMaybe<Scalars['String']['input']>;
|
|
109714
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
109715
|
+
orderedColumns?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
109716
|
+
pageName: RadarViewPageName;
|
|
109717
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
109718
|
+
viewName: Scalars['String']['input'];
|
|
109719
|
+
visibility: RadarViewVisibility;
|
|
109720
|
+
};
|
|
108953
109721
|
export declare type RadarUrlFieldValue = {
|
|
108954
109722
|
__typename?: 'RadarUrlFieldValue';
|
|
108955
109723
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -108968,6 +109736,39 @@ export declare enum RadarUserFieldPermission {
|
|
|
108968
109736
|
PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
|
|
108969
109737
|
PartialOnlySelf = "PartialOnlySelf"
|
|
108970
109738
|
}
|
|
109739
|
+
export declare type RadarView = Node & {
|
|
109740
|
+
__typename?: 'RadarView';
|
|
109741
|
+
groupingField?: Maybe<Scalars['String']['output']>;
|
|
109742
|
+
id: Scalars['ID']['output'];
|
|
109743
|
+
orderedColumns?: Maybe<Array<Scalars['String']['output']>>;
|
|
109744
|
+
ownerAaid: Scalars['ID']['output'];
|
|
109745
|
+
pageName: RadarViewPageName;
|
|
109746
|
+
rql?: Maybe<Scalars['String']['output']>;
|
|
109747
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
109748
|
+
viewName: Scalars['String']['output'];
|
|
109749
|
+
visibility: RadarViewVisibility;
|
|
109750
|
+
workspaceId: Scalars['ID']['output'];
|
|
109751
|
+
};
|
|
109752
|
+
export declare type RadarViewConnection = {
|
|
109753
|
+
__typename?: 'RadarViewConnection';
|
|
109754
|
+
edges: Array<RadarViewEdge>;
|
|
109755
|
+
nodes: Array<RadarView>;
|
|
109756
|
+
pageInfo: PageInfo;
|
|
109757
|
+
totalCount: Scalars['Int']['output'];
|
|
109758
|
+
};
|
|
109759
|
+
export declare type RadarViewEdge = {
|
|
109760
|
+
__typename?: 'RadarViewEdge';
|
|
109761
|
+
cursor: Scalars['String']['output'];
|
|
109762
|
+
node: RadarView;
|
|
109763
|
+
};
|
|
109764
|
+
export declare enum RadarViewPageName {
|
|
109765
|
+
TalentPositionsPage = "TALENT_POSITIONS_PAGE",
|
|
109766
|
+
TalentSubPositionsPage = "TALENT_SUB_POSITIONS_PAGE"
|
|
109767
|
+
}
|
|
109768
|
+
export declare enum RadarViewVisibility {
|
|
109769
|
+
Restricted = "RESTRICTED",
|
|
109770
|
+
SharedReadOnly = "SHARED_READ_ONLY"
|
|
109771
|
+
}
|
|
108971
109772
|
export declare type RadarWorkAllocationUnit = {
|
|
108972
109773
|
__typename?: 'RadarWorkAllocationUnit';
|
|
108973
109774
|
name: Scalars['String']['output'];
|
|
@@ -132248,7 +133049,6 @@ export declare type SpfUpdateAskDescriptionInput = {
|
|
|
132248
133049
|
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
132249
133050
|
id: Scalars['ID']['input'];
|
|
132250
133051
|
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
132251
|
-
impactedWorkUrl?: InputMaybe<Scalars['String']['input']>;
|
|
132252
133052
|
};
|
|
132253
133053
|
export declare type SpfUpdateAskJustificationInput = {
|
|
132254
133054
|
id: Scalars['ID']['input'];
|
|
@@ -134461,6 +135261,7 @@ export declare type TeamMutation = {
|
|
|
134461
135261
|
addChild?: Maybe<TeamV2>;
|
|
134462
135262
|
addParent?: Maybe<TeamV2>;
|
|
134463
135263
|
assignTeamToType?: Maybe<TeamV2>;
|
|
135264
|
+
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
134464
135265
|
createTeam?: Maybe<TeamCreateTeamPayload>;
|
|
134465
135266
|
createTeamType?: Maybe<TeamType>;
|
|
134466
135267
|
removeChild?: Maybe<TeamV2>;
|
|
@@ -134482,6 +135283,11 @@ export declare type TeamMutationAssignTeamToTypeArgs = {
|
|
|
134482
135283
|
teamId: Scalars['ID']['input'];
|
|
134483
135284
|
typeId: Scalars['ID']['input'];
|
|
134484
135285
|
};
|
|
135286
|
+
export declare type TeamMutationBulkAssignTeamsToTypeArgs = {
|
|
135287
|
+
scopeId: Scalars['ID']['input'];
|
|
135288
|
+
teamIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
135289
|
+
typeId: Scalars['ID']['input'];
|
|
135290
|
+
};
|
|
134485
135291
|
export declare type TeamMutationCreateTeamArgs = {
|
|
134486
135292
|
input: TeamCreateTeamInput;
|
|
134487
135293
|
};
|
|
@@ -134529,6 +135335,7 @@ export declare type TeamQuery = {
|
|
|
134529
135335
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
134530
135336
|
teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
|
|
134531
135337
|
teamV2?: Maybe<TeamV2>;
|
|
135338
|
+
teamV3?: Maybe<TeamV2>;
|
|
134532
135339
|
teamsV2?: Maybe<Array<Maybe<TeamV2>>>;
|
|
134533
135340
|
typeInformation?: Maybe<TeamType>;
|
|
134534
135341
|
typesWithinScope?: Maybe<TeamTypeConnection>;
|
|
@@ -134563,6 +135370,9 @@ export declare type TeamQueryTeamV2Args = {
|
|
|
134563
135370
|
id: Scalars['ID']['input'];
|
|
134564
135371
|
siteId: Scalars['String']['input'];
|
|
134565
135372
|
};
|
|
135373
|
+
export declare type TeamQueryTeamV3Args = {
|
|
135374
|
+
id: Scalars['ID']['input'];
|
|
135375
|
+
};
|
|
134566
135376
|
export declare type TeamQueryTeamsV2Args = {
|
|
134567
135377
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
134568
135378
|
siteId: Scalars['String']['input'];
|
|
@@ -135592,6 +136402,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
135592
136402
|
id: Scalars['ID']['output'];
|
|
135593
136403
|
isArchived: Scalars['Boolean']['output'];
|
|
135594
136404
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
136405
|
+
jiraAlignItems?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectConnection>;
|
|
135595
136406
|
key: Scalars['String']['output'];
|
|
135596
136407
|
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
135597
136408
|
metricTargets?: Maybe<TownsquareMetricTargetConnection>;
|
|
@@ -135636,6 +136447,10 @@ export declare type TownsquareGoalHighlightsArgs = {
|
|
|
135636
136447
|
sort?: InputMaybe<Array<InputMaybe<TownsquareHighlightSortEnum>>>;
|
|
135637
136448
|
type?: InputMaybe<TownsquareHighlightType>;
|
|
135638
136449
|
};
|
|
136450
|
+
export declare type TownsquareGoalJiraAlignItemsArgs = {
|
|
136451
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136452
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136453
|
+
};
|
|
135639
136454
|
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
135640
136455
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
135641
136456
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -137688,6 +138503,18 @@ export declare type TransitionFilter = {
|
|
|
137688
138503
|
from: Scalars['String']['input'];
|
|
137689
138504
|
to: Scalars['String']['input'];
|
|
137690
138505
|
};
|
|
138506
|
+
export declare type TrelloAcceptProposedEventsInput = {
|
|
138507
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
138508
|
+
proposedEventIds: Array<Scalars['ID']['input']>;
|
|
138509
|
+
providerAccountId: Scalars['ID']['input'];
|
|
138510
|
+
};
|
|
138511
|
+
export declare type TrelloAcceptProposedEventsPayload = Payload & {
|
|
138512
|
+
__typename?: 'TrelloAcceptProposedEventsPayload';
|
|
138513
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138514
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
138515
|
+
proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
138516
|
+
success: Scalars['Boolean']['output'];
|
|
138517
|
+
};
|
|
137691
138518
|
export declare type TrelloAction = {
|
|
137692
138519
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
137693
138520
|
creator?: Maybe<TrelloMember>;
|
|
@@ -138095,12 +138922,17 @@ export declare type TrelloBaseBoard = {
|
|
|
138095
138922
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
138096
138923
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
138097
138924
|
id: Scalars['ID']['output'];
|
|
138925
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
138098
138926
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
138099
138927
|
limits?: Maybe<TrelloBoardLimits>;
|
|
138100
138928
|
lists?: Maybe<TrelloListConnection>;
|
|
138101
138929
|
objectId: Scalars['ID']['output'];
|
|
138102
138930
|
workspace?: Maybe<TrelloWorkspace>;
|
|
138103
138931
|
};
|
|
138932
|
+
export declare type TrelloBaseBoardLabelsArgs = {
|
|
138933
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138934
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138935
|
+
};
|
|
138104
138936
|
export declare type TrelloBaseBoardListsArgs = {
|
|
138105
138937
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
138106
138938
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
@@ -138130,6 +138962,7 @@ export declare type TrelloBaseCard = {
|
|
|
138130
138962
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
138131
138963
|
due?: Maybe<TrelloCardDueInfo>;
|
|
138132
138964
|
id: Scalars['ID']['output'];
|
|
138965
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
138133
138966
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
138134
138967
|
limits?: Maybe<TrelloCardLimits>;
|
|
138135
138968
|
list?: Maybe<TrelloList>;
|
|
@@ -138160,6 +138993,10 @@ export declare type TrelloBaseCardChecklistsArgs = {
|
|
|
138160
138993
|
checklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
138161
138994
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138162
138995
|
};
|
|
138996
|
+
export declare type TrelloBaseCardLabelsArgs = {
|
|
138997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138999
|
+
};
|
|
138163
139000
|
export declare type TrelloBaseCardUpdated = {
|
|
138164
139001
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
138165
139002
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
@@ -139452,6 +140289,14 @@ export declare type TrelloDeleteAttachmentFromCardActionDisplayEntities = {
|
|
|
139452
140289
|
card?: Maybe<TrelloActionCardEntity>;
|
|
139453
140290
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
139454
140291
|
};
|
|
140292
|
+
export declare type TrelloDeleteBoardBackgroundInput = {
|
|
140293
|
+
boardBackgroundId: Scalars['String']['input'];
|
|
140294
|
+
};
|
|
140295
|
+
export declare type TrelloDeleteBoardBackgroundPayload = Payload & {
|
|
140296
|
+
__typename?: 'TrelloDeleteBoardBackgroundPayload';
|
|
140297
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140298
|
+
success: Scalars['Boolean']['output'];
|
|
140299
|
+
};
|
|
139455
140300
|
export declare type TrelloDeletePlannerCalendarEventInput = {
|
|
139456
140301
|
plannerCalendarEventId: Scalars['ID']['input'];
|
|
139457
140302
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -139482,11 +140327,13 @@ export declare type TrelloEditPlannerCalendarEventOptions = {
|
|
|
139482
140327
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
139483
140328
|
id: Scalars['ID']['input'];
|
|
139484
140329
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
140330
|
+
targetPlannerCalendar?: InputMaybe<TrelloMovePlannerCalendarEventTargetOptions>;
|
|
139485
140331
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
139486
140332
|
};
|
|
139487
140333
|
export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
|
|
139488
140334
|
__typename?: 'TrelloEditPlannerCalendarEventPayload';
|
|
139489
140335
|
errors?: Maybe<Array<MutationError>>;
|
|
140336
|
+
movedEvent?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
139490
140337
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
139491
140338
|
success: Scalars['Boolean']['output'];
|
|
139492
140339
|
};
|
|
@@ -139563,6 +140410,7 @@ export declare type TrelloInbox = TrelloBaseBoard & {
|
|
|
139563
140410
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
139564
140411
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
139565
140412
|
id: Scalars['ID']['output'];
|
|
140413
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
139566
140414
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
139567
140415
|
limits?: Maybe<TrelloBoardLimits>;
|
|
139568
140416
|
lists?: Maybe<TrelloListConnection>;
|
|
@@ -139570,6 +140418,10 @@ export declare type TrelloInbox = TrelloBaseBoard & {
|
|
|
139570
140418
|
prefs: TrelloInboxPrefs;
|
|
139571
140419
|
workspace?: Maybe<TrelloWorkspace>;
|
|
139572
140420
|
};
|
|
140421
|
+
export declare type TrelloInboxLabelsArgs = {
|
|
140422
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
140423
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140424
|
+
};
|
|
139573
140425
|
export declare type TrelloInboxListsArgs = {
|
|
139574
140426
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139575
140427
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
@@ -139588,6 +140440,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
139588
140440
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
139589
140441
|
due?: Maybe<TrelloCardDueInfo>;
|
|
139590
140442
|
id: Scalars['ID']['output'];
|
|
140443
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
139591
140444
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
139592
140445
|
limits?: Maybe<TrelloCardLimits>;
|
|
139593
140446
|
list?: Maybe<TrelloList>;
|
|
@@ -139618,6 +140471,10 @@ export declare type TrelloInboxCardChecklistsArgs = {
|
|
|
139618
140471
|
checklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
139619
140472
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139620
140473
|
};
|
|
140474
|
+
export declare type TrelloInboxCardLabelsArgs = {
|
|
140475
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
140476
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140477
|
+
};
|
|
139621
140478
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
139622
140479
|
__typename?: 'TrelloInboxCardUpdated';
|
|
139623
140480
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -139868,6 +140725,7 @@ export declare type TrelloMember = Node & {
|
|
|
139868
140725
|
objectId: Scalars['ID']['output'];
|
|
139869
140726
|
planner?: Maybe<TrelloPlanner>;
|
|
139870
140727
|
prefs?: Maybe<TrelloMemberPrefs>;
|
|
140728
|
+
referral?: Maybe<TrelloMemberReferral>;
|
|
139871
140729
|
referrer?: Maybe<TrelloMember>;
|
|
139872
140730
|
url?: Maybe<Scalars['URL']['output']>;
|
|
139873
140731
|
user?: Maybe<User>;
|
|
@@ -139940,6 +140798,14 @@ export declare type TrelloMemberPrefs = {
|
|
|
139940
140798
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
139941
140799
|
keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
139942
140800
|
};
|
|
140801
|
+
export declare type TrelloMemberReferral = {
|
|
140802
|
+
__typename?: 'TrelloMemberReferral';
|
|
140803
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
140804
|
+
eligibleForReward?: Maybe<Scalars['Boolean']['output']>;
|
|
140805
|
+
rewardClaimed?: Maybe<Scalars['Boolean']['output']>;
|
|
140806
|
+
rewardClaimedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
140807
|
+
rewardThreshold?: Maybe<Scalars['Int']['output']>;
|
|
140808
|
+
};
|
|
139943
140809
|
export declare type TrelloMemberUpdated = {
|
|
139944
140810
|
__typename?: 'TrelloMemberUpdated';
|
|
139945
140811
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -140089,6 +140955,7 @@ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
|
|
|
140089
140955
|
};
|
|
140090
140956
|
export declare type TrelloMutationApi = {
|
|
140091
140957
|
__typename?: 'TrelloMutationApi';
|
|
140958
|
+
acceptProposedEvents?: Maybe<TrelloAcceptProposedEventsPayload>;
|
|
140092
140959
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
140093
140960
|
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
140094
140961
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
@@ -140103,6 +140970,7 @@ export declare type TrelloMutationApi = {
|
|
|
140103
140970
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
140104
140971
|
createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
|
|
140105
140972
|
deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
|
|
140973
|
+
deleteBoardBackground?: Maybe<TrelloDeleteBoardBackgroundPayload>;
|
|
140106
140974
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
140107
140975
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
140108
140976
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
@@ -140112,6 +140980,7 @@ export declare type TrelloMutationApi = {
|
|
|
140112
140980
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
140113
140981
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
140114
140982
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
140983
|
+
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
140115
140984
|
rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
|
|
140116
140985
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
140117
140986
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -140151,6 +141020,9 @@ export declare type TrelloMutationApi = {
|
|
|
140151
141020
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
140152
141021
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
140153
141022
|
};
|
|
141023
|
+
export declare type TrelloMutationApiAcceptProposedEventsArgs = {
|
|
141024
|
+
input: TrelloAcceptProposedEventsInput;
|
|
141025
|
+
};
|
|
140154
141026
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
140155
141027
|
input: TrelloAddBoardStarInput;
|
|
140156
141028
|
};
|
|
@@ -140193,6 +141065,9 @@ export declare type TrelloMutationApiCreateWorkspaceTagArgs = {
|
|
|
140193
141065
|
export declare type TrelloMutationApiDeleteAiRuleArgs = {
|
|
140194
141066
|
input: TrelloDeleteAiRuleInput;
|
|
140195
141067
|
};
|
|
141068
|
+
export declare type TrelloMutationApiDeleteBoardBackgroundArgs = {
|
|
141069
|
+
input: TrelloDeleteBoardBackgroundInput;
|
|
141070
|
+
};
|
|
140196
141071
|
export declare type TrelloMutationApiDeletePlannerCalendarEventArgs = {
|
|
140197
141072
|
input: TrelloDeletePlannerCalendarEventInput;
|
|
140198
141073
|
};
|
|
@@ -140220,6 +141095,9 @@ export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
|
140220
141095
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
140221
141096
|
input: TrelloPinCardInput;
|
|
140222
141097
|
};
|
|
141098
|
+
export declare type TrelloMutationApiProposePlannerEventsArgs = {
|
|
141099
|
+
input: TrelloProposePlannerEventsInput;
|
|
141100
|
+
};
|
|
140223
141101
|
export declare type TrelloMutationApiRejectProposedEventsArgs = {
|
|
140224
141102
|
input: TrelloRejectProposedEventsInput;
|
|
140225
141103
|
};
|
|
@@ -140837,6 +141715,16 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
140837
141715
|
__typename?: 'TrelloPowerUpUpdated';
|
|
140838
141716
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
140839
141717
|
};
|
|
141718
|
+
export declare type TrelloProposePlannerEventsInput = {
|
|
141719
|
+
cardIds: Array<Scalars['ID']['input']>;
|
|
141720
|
+
timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
|
|
141721
|
+
};
|
|
141722
|
+
export declare type TrelloProposePlannerEventsPayload = Payload & {
|
|
141723
|
+
__typename?: 'TrelloProposePlannerEventsPayload';
|
|
141724
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141725
|
+
planner?: Maybe<TrelloPlanner>;
|
|
141726
|
+
success: Scalars['Boolean']['output'];
|
|
141727
|
+
};
|
|
140840
141728
|
export declare type TrelloProposedEvent = {
|
|
140841
141729
|
__typename?: 'TrelloProposedEvent';
|
|
140842
141730
|
cards?: Maybe<TrelloProposedEventCardConnection>;
|
|
@@ -141111,6 +141999,7 @@ export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
|
141111
141999
|
export declare type TrelloRemoveCardFromPlannerCalendarEventPayload = Payload & {
|
|
141112
142000
|
__typename?: 'TrelloRemoveCardFromPlannerCalendarEventPayload';
|
|
141113
142001
|
errors?: Maybe<Array<MutationError>>;
|
|
142002
|
+
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
141114
142003
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardDeleted>;
|
|
141115
142004
|
success: Scalars['Boolean']['output'];
|
|
141116
142005
|
};
|