@forge/cli-shared 8.10.0-next.14 → 8.10.0-next.15-experimental-ec29181
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 +46 -0
- package/out/graphql/graphql-types.d.ts +1187 -54
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +127 -36
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +1 -1
- package/out/ui/command-line-ui.js +7 -0
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -4
- package/package.json +2 -2
|
@@ -653,7 +653,8 @@ export declare type AvpHotTierFilterConfigInput = {
|
|
|
653
653
|
semanticModel?: InputMaybe<Scalars['String']['input']>;
|
|
654
654
|
};
|
|
655
655
|
export declare enum AvpIntegrationId {
|
|
656
|
-
JsmAssets = "JSM_ASSETS"
|
|
656
|
+
JsmAssets = "JSM_ASSETS",
|
|
657
|
+
JsmSummaryPage = "JSM_SUMMARY_PAGE"
|
|
657
658
|
}
|
|
658
659
|
export declare type AvpMetricsConfiguration = {
|
|
659
660
|
__typename?: 'AVPMetricsConfiguration';
|
|
@@ -1774,6 +1775,15 @@ export declare type AdminDataResidencyFeature = {
|
|
|
1774
1775
|
isDataResidencyAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
1775
1776
|
realms?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1776
1777
|
};
|
|
1778
|
+
export declare type AdminDateFilterInput = {
|
|
1779
|
+
absoluteFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1780
|
+
absoluteTo?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1781
|
+
relativeFrom?: InputMaybe<Scalars['Int']['input']>;
|
|
1782
|
+
relativeTo?: InputMaybe<Scalars['Int']['input']>;
|
|
1783
|
+
searchType: AdminTimeSearchType;
|
|
1784
|
+
timeUnit?: InputMaybe<AdminTimeUnit>;
|
|
1785
|
+
value?: InputMaybe<Scalars['Int']['input']>;
|
|
1786
|
+
};
|
|
1777
1787
|
export declare type AdminDeactivateResponsePayload = Payload & {
|
|
1778
1788
|
__typename?: 'AdminDeactivateResponsePayload';
|
|
1779
1789
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -2332,6 +2342,66 @@ export declare type AdminStringKeyValuePair = {
|
|
|
2332
2342
|
key: Scalars['String']['output'];
|
|
2333
2343
|
value: Scalars['String']['output'];
|
|
2334
2344
|
};
|
|
2345
|
+
export declare enum AdminTimeSearchType {
|
|
2346
|
+
BetweenAbsolute = "BETWEEN_ABSOLUTE",
|
|
2347
|
+
BetweenRelative = "BETWEEN_RELATIVE",
|
|
2348
|
+
GreaterThan = "GREATER_THAN",
|
|
2349
|
+
LessThan = "LESS_THAN"
|
|
2350
|
+
}
|
|
2351
|
+
export declare enum AdminTimeUnit {
|
|
2352
|
+
Day = "DAY",
|
|
2353
|
+
Hour = "HOUR",
|
|
2354
|
+
Minute = "MINUTE",
|
|
2355
|
+
Week = "WEEK"
|
|
2356
|
+
}
|
|
2357
|
+
export declare type AdminToken = {
|
|
2358
|
+
__typename?: 'AdminToken';
|
|
2359
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2360
|
+
createdBy?: Maybe<AdminTokenUser>;
|
|
2361
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2362
|
+
id: Scalars['ID']['output'];
|
|
2363
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
2364
|
+
lastActiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2365
|
+
owner?: Maybe<AdminTokenUser>;
|
|
2366
|
+
resourceId?: Maybe<Scalars['ID']['output']>;
|
|
2367
|
+
revocationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
2368
|
+
revokedBy?: Maybe<Scalars['String']['output']>;
|
|
2369
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
2370
|
+
status?: Maybe<AdminTokenStatus>;
|
|
2371
|
+
type: AdminTokenType;
|
|
2372
|
+
};
|
|
2373
|
+
export declare type AdminTokenConnection = {
|
|
2374
|
+
__typename?: 'AdminTokenConnection';
|
|
2375
|
+
nodes: Array<AdminToken>;
|
|
2376
|
+
pageInfo: PageInfo;
|
|
2377
|
+
totalCount: Scalars['Int']['output'];
|
|
2378
|
+
};
|
|
2379
|
+
export declare type AdminTokenFilters = {
|
|
2380
|
+
createdAt?: InputMaybe<AdminDateFilterInput>;
|
|
2381
|
+
expiresAt?: InputMaybe<AdminDateFilterInput>;
|
|
2382
|
+
includeRevoked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2383
|
+
lastActiveAt?: InputMaybe<AdminDateFilterInput>;
|
|
2384
|
+
ownerAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2385
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
2386
|
+
status?: InputMaybe<AdminTokenStatus>;
|
|
2387
|
+
};
|
|
2388
|
+
export declare enum AdminTokenStatus {
|
|
2389
|
+
Allowed = "ALLOWED",
|
|
2390
|
+
Blocked = "BLOCKED"
|
|
2391
|
+
}
|
|
2392
|
+
export declare enum AdminTokenType {
|
|
2393
|
+
AdminApiKey = "ADMIN_API_KEY",
|
|
2394
|
+
UserApiToken = "USER_API_TOKEN"
|
|
2395
|
+
}
|
|
2396
|
+
export declare type AdminTokenUser = {
|
|
2397
|
+
__typename?: 'AdminTokenUser';
|
|
2398
|
+
appType?: Maybe<Scalars['String']['output']>;
|
|
2399
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2400
|
+
id: Scalars['ID']['output'];
|
|
2401
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2402
|
+
orgId?: Maybe<Scalars['ID']['output']>;
|
|
2403
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
2404
|
+
};
|
|
2335
2405
|
export declare type AdminUnit = {
|
|
2336
2406
|
__typename?: 'AdminUnit';
|
|
2337
2407
|
apps?: Maybe<AdminUnitAppsConnection>;
|
|
@@ -2378,7 +2448,7 @@ export declare type AdminUnitCreatePayload = {
|
|
|
2378
2448
|
export declare type AdminUnitCreateStatus = {
|
|
2379
2449
|
__typename?: 'AdminUnitCreateStatus';
|
|
2380
2450
|
status: AdminUnitCreateStatusEnum;
|
|
2381
|
-
unitId
|
|
2451
|
+
unitId?: Maybe<Scalars['ID']['output']>;
|
|
2382
2452
|
};
|
|
2383
2453
|
export declare enum AdminUnitCreateStatusEnum {
|
|
2384
2454
|
Failed = "FAILED",
|
|
@@ -2762,6 +2832,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2762
2832
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2763
2833
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
2764
2834
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2835
|
+
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
2765
2836
|
name: Scalars['String']['output'];
|
|
2766
2837
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
2767
2838
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -2814,8 +2885,8 @@ export declare type AgentStudioBatchEvaluationJobRunEdge = {
|
|
|
2814
2885
|
cursor: Scalars['String']['output'];
|
|
2815
2886
|
node: AgentStudioBatchEvaluationJobRun;
|
|
2816
2887
|
};
|
|
2817
|
-
export declare type
|
|
2818
|
-
__typename?: '
|
|
2888
|
+
export declare type AgentStudioBatchEvaluationJobRunResult = {
|
|
2889
|
+
__typename?: 'AgentStudioBatchEvaluationJobRunResult';
|
|
2819
2890
|
edges: Array<AgentStudioBatchEvaluationJobRunEdge>;
|
|
2820
2891
|
pageInfo: PageInfo;
|
|
2821
2892
|
};
|
|
@@ -2903,7 +2974,7 @@ export declare type AgentStudioCreateBatchEvaluationJobInput = {
|
|
|
2903
2974
|
datasetId: Scalars['String']['input'];
|
|
2904
2975
|
judgeConfigId: Scalars['String']['input'];
|
|
2905
2976
|
name: Scalars['String']['input'];
|
|
2906
|
-
projectId
|
|
2977
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
2907
2978
|
};
|
|
2908
2979
|
export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
2909
2980
|
__typename?: 'AgentStudioCreateBatchEvaluationJobPayload';
|
|
@@ -3011,11 +3082,13 @@ export declare type AgentStudioEvaluationResult = {
|
|
|
3011
3082
|
actualAnswer?: Maybe<Scalars['String']['output']>;
|
|
3012
3083
|
agentId: Scalars['String']['output'];
|
|
3013
3084
|
agentVersionId: Scalars['String']['output'];
|
|
3085
|
+
conversationId?: Maybe<Scalars['String']['output']>;
|
|
3014
3086
|
createdAt: Scalars['String']['output'];
|
|
3015
3087
|
datasetItemId: Scalars['String']['output'];
|
|
3016
3088
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
3017
3089
|
evaluationDetailsJson?: Maybe<Scalars['String']['output']>;
|
|
3018
3090
|
id: Scalars['ID']['output'];
|
|
3091
|
+
inputQuestion?: Maybe<Scalars['String']['output']>;
|
|
3019
3092
|
jobId: Scalars['ID']['output'];
|
|
3020
3093
|
judgeDecision?: Maybe<AgentStudioJudgementDecision>;
|
|
3021
3094
|
judgeErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -3187,6 +3260,7 @@ export declare type AgentStudioScenario = {
|
|
|
3187
3260
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3188
3261
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3189
3262
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
3263
|
+
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
3190
3264
|
name: Scalars['String']['output'];
|
|
3191
3265
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
3192
3266
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -3478,9 +3552,14 @@ export declare type AgentStudioWidget = {
|
|
|
3478
3552
|
agentAri: Scalars['ID']['output'];
|
|
3479
3553
|
containerAri: Scalars['String']['output'];
|
|
3480
3554
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3555
|
+
widgetId?: Maybe<Scalars['ID']['output']>;
|
|
3481
3556
|
};
|
|
3482
3557
|
export declare type AgentStudioWidgetByContainerAriResult = AgentStudioWidget | QueryError;
|
|
3483
3558
|
export declare type AgentStudioWidgetContainer = JiraProject;
|
|
3559
|
+
export declare enum AgentStudioWidgetContainerType {
|
|
3560
|
+
HelpCenter = "HELP_CENTER",
|
|
3561
|
+
Portal = "PORTAL"
|
|
3562
|
+
}
|
|
3484
3563
|
export declare type AgentStudioWidgetContainers = {
|
|
3485
3564
|
__typename?: 'AgentStudioWidgetContainers';
|
|
3486
3565
|
containerAris: Array<Scalars['ID']['output']>;
|
|
@@ -3488,6 +3567,12 @@ export declare type AgentStudioWidgetContainers = {
|
|
|
3488
3567
|
totalCount: Scalars['Int']['output'];
|
|
3489
3568
|
};
|
|
3490
3569
|
export declare type AgentStudioWidgetContainersByAgentIdResult = AgentStudioWidgetContainers | QueryError;
|
|
3570
|
+
export declare type AgentStudioWidgets = {
|
|
3571
|
+
__typename?: 'AgentStudioWidgets';
|
|
3572
|
+
totalCount: Scalars['Int']['output'];
|
|
3573
|
+
widgets?: Maybe<Array<AgentStudioWidget>>;
|
|
3574
|
+
};
|
|
3575
|
+
export declare type AgentStudioWidgetsByAgentIdAndContainerTypeResult = AgentStudioWidgets | QueryError;
|
|
3491
3576
|
export declare enum AiCoreApiQuestionType {
|
|
3492
3577
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
3493
3578
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -3747,15 +3832,6 @@ export declare type AppInstallationsByContextsArgs = {
|
|
|
3747
3832
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3748
3833
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3749
3834
|
};
|
|
3750
|
-
export declare type AppAdminQuery = {
|
|
3751
|
-
__typename?: 'AppAdminQuery';
|
|
3752
|
-
appId: Scalars['ID']['output'];
|
|
3753
|
-
getQuotaInfo?: Maybe<Array<QuotaInfo>>;
|
|
3754
|
-
};
|
|
3755
|
-
export declare type AppAdminQueryGetQuotaInfoArgs = {
|
|
3756
|
-
contextAri: Scalars['ID']['input'];
|
|
3757
|
-
environmentId: Scalars['ID']['input'];
|
|
3758
|
-
};
|
|
3759
3835
|
export declare type AppAuditConnection = {
|
|
3760
3836
|
__typename?: 'AppAuditConnection';
|
|
3761
3837
|
edges?: Maybe<Array<Maybe<AuditEventEdge>>>;
|
|
@@ -5772,6 +5848,88 @@ export declare type AssetsDmDateFormats = {
|
|
|
5772
5848
|
name: Scalars['String']['output'];
|
|
5773
5849
|
tenantId: Scalars['String']['output'];
|
|
5774
5850
|
};
|
|
5851
|
+
export declare enum AssetsDmDefaultAttributeMappingColumnName {
|
|
5852
|
+
AttributeName = "attributeName",
|
|
5853
|
+
ColumnType = "columnType",
|
|
5854
|
+
DataSourceType = "dataSourceType",
|
|
5855
|
+
DestinationColumn = "destinationColumn",
|
|
5856
|
+
IsPrimaryKey = "isPrimaryKey",
|
|
5857
|
+
IsSecondaryKey = "isSecondaryKey",
|
|
5858
|
+
SourceColumn = "sourceColumn"
|
|
5859
|
+
}
|
|
5860
|
+
export declare enum AssetsDmDefaultAttributeMappingColumnType {
|
|
5861
|
+
BigInt = "bigInt",
|
|
5862
|
+
Boolean = "boolean",
|
|
5863
|
+
DateTime = "dateTime",
|
|
5864
|
+
Decimal = "decimal",
|
|
5865
|
+
Integer = "integer",
|
|
5866
|
+
String = "string"
|
|
5867
|
+
}
|
|
5868
|
+
export declare type AssetsDmDefaultAttributeMappingFilterBy = {
|
|
5869
|
+
attributeName?: InputMaybe<Scalars['String']['input']>;
|
|
5870
|
+
dataSourceType?: InputMaybe<Scalars['String']['input']>;
|
|
5871
|
+
};
|
|
5872
|
+
export declare type AssetsDmDefaultAttributeMappingPageInfo = {
|
|
5873
|
+
__typename?: 'AssetsDMDefaultAttributeMappingPageInfo';
|
|
5874
|
+
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5875
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
5876
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
5877
|
+
nextPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5878
|
+
pageSize: Scalars['Int']['output'];
|
|
5879
|
+
previousPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5880
|
+
totalPages: Scalars['Int']['output'];
|
|
5881
|
+
};
|
|
5882
|
+
export declare type AssetsDmDefaultAttributeMappingPageInfoInput = {
|
|
5883
|
+
pageCursor?: InputMaybe<Scalars['Int']['input']>;
|
|
5884
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
5885
|
+
};
|
|
5886
|
+
export declare type AssetsDmDefaultAttributeMappingResponse = {
|
|
5887
|
+
__typename?: 'AssetsDMDefaultAttributeMappingResponse';
|
|
5888
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5889
|
+
pageInfo: AssetsDmDefaultAttributeMappingPageInfo;
|
|
5890
|
+
rows: Array<AssetsDmDefaultAttributeMappingRow>;
|
|
5891
|
+
totalCount: Scalars['Int']['output'];
|
|
5892
|
+
};
|
|
5893
|
+
export declare type AssetsDmDefaultAttributeMappingRow = {
|
|
5894
|
+
__typename?: 'AssetsDMDefaultAttributeMappingRow';
|
|
5895
|
+
attributeName: Scalars['String']['output'];
|
|
5896
|
+
columnType: AssetsDmDefaultAttributeMappingColumnType;
|
|
5897
|
+
dataSourceType: Scalars['String']['output'];
|
|
5898
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
5899
|
+
defaultObjectAttributeMappingId: Scalars['ID']['output'];
|
|
5900
|
+
destinationColumn: Scalars['String']['output'];
|
|
5901
|
+
isPrimaryKey: Scalars['Boolean']['output'];
|
|
5902
|
+
isSecondaryKey: Scalars['Boolean']['output'];
|
|
5903
|
+
objectAttributeId: Scalars['ID']['output'];
|
|
5904
|
+
sourceColumn: Scalars['String']['output'];
|
|
5905
|
+
};
|
|
5906
|
+
export declare type AssetsDmDefaultAttributeMappingSortBy = {
|
|
5907
|
+
name: AssetsDmDefaultAttributeMappingColumnName;
|
|
5908
|
+
order: AssetsDmDefaultAttributeMappingSortOrder;
|
|
5909
|
+
};
|
|
5910
|
+
export declare enum AssetsDmDefaultAttributeMappingSortOrder {
|
|
5911
|
+
Asc = "asc",
|
|
5912
|
+
Desc = "desc"
|
|
5913
|
+
}
|
|
5914
|
+
export declare type AssetsDmDeleteDefaultAttributeMappingResponse = {
|
|
5915
|
+
__typename?: 'AssetsDMDeleteDefaultAttributeMappingResponse';
|
|
5916
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5917
|
+
message: Scalars['String']['output'];
|
|
5918
|
+
};
|
|
5919
|
+
export declare type AssetsDmEditDefaultAttributeMappingInput = {
|
|
5920
|
+
columnType: AssetsDmDefaultAttributeMappingColumnType;
|
|
5921
|
+
dataSourceTypeId: Scalars['ID']['input'];
|
|
5922
|
+
defaultObjectAttributeMappingId: Scalars['ID']['input'];
|
|
5923
|
+
destinationColumnName: Scalars['String']['input'];
|
|
5924
|
+
isSecondaryKey: Scalars['Boolean']['input'];
|
|
5925
|
+
objectAttributeId: Scalars['ID']['input'];
|
|
5926
|
+
sourceColumn: Scalars['String']['input'];
|
|
5927
|
+
};
|
|
5928
|
+
export declare type AssetsDmEditDefaultAttributeMappingResponse = {
|
|
5929
|
+
__typename?: 'AssetsDMEditDefaultAttributeMappingResponse';
|
|
5930
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5931
|
+
message: Scalars['String']['output'];
|
|
5932
|
+
};
|
|
5775
5933
|
export declare type AssetsDmExportedObjectsListFileStatusPayload = {
|
|
5776
5934
|
name: Scalars['String']['input'];
|
|
5777
5935
|
};
|
|
@@ -5812,6 +5970,22 @@ export declare type AssetsDmGetDataSourceForCleansingResponse = {
|
|
|
5812
5970
|
tableName: Scalars['String']['output'];
|
|
5813
5971
|
tenantId: Scalars['ID']['output'];
|
|
5814
5972
|
};
|
|
5973
|
+
export declare type AssetsDmJobDataColumn = {
|
|
5974
|
+
__typename?: 'AssetsDMJobDataColumn';
|
|
5975
|
+
columnName: Scalars['String']['output'];
|
|
5976
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
5977
|
+
};
|
|
5978
|
+
export declare type AssetsDmJobDataResponse = {
|
|
5979
|
+
__typename?: 'AssetsDMJobDataResponse';
|
|
5980
|
+
columns: Array<AssetsDmJobDataColumn>;
|
|
5981
|
+
pagination: AssetsDmPaginationInfo;
|
|
5982
|
+
rows: Array<Scalars['JSON']['output']>;
|
|
5983
|
+
};
|
|
5984
|
+
export declare enum AssetsDmJobDataType {
|
|
5985
|
+
Cleansed = "CLEANSED",
|
|
5986
|
+
Raw = "RAW",
|
|
5987
|
+
Transformed = "TRANSFORMED"
|
|
5988
|
+
}
|
|
5815
5989
|
export declare type AssetsDmMappedColumn = {
|
|
5816
5990
|
__typename?: 'AssetsDMMappedColumn';
|
|
5817
5991
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -5821,6 +5995,12 @@ export declare type AssetsDmMappedColumn = {
|
|
|
5821
5995
|
jobId: Scalars['ID']['output'];
|
|
5822
5996
|
sourceColumnName: Scalars['String']['output'];
|
|
5823
5997
|
};
|
|
5998
|
+
export declare type AssetsDmMappingMatrixResponse = {
|
|
5999
|
+
__typename?: 'AssetsDMMappingMatrixResponse';
|
|
6000
|
+
columns: Array<Scalars['String']['output']>;
|
|
6001
|
+
rows: Array<Scalars['JSON']['output']>;
|
|
6002
|
+
rowsCount: Scalars['Int']['output'];
|
|
6003
|
+
};
|
|
5824
6004
|
export declare type AssetsDmNotificationPayload = {
|
|
5825
6005
|
exportedObjectsListFileStatus?: InputMaybe<Array<InputMaybe<AssetsDmExportedObjectsListFileStatusPayload>>>;
|
|
5826
6006
|
};
|
|
@@ -6039,6 +6219,12 @@ export declare enum AssetsDmObjectsListSearchGroupCondition {
|
|
|
6039
6219
|
Or = "OR",
|
|
6040
6220
|
Ornot = "ORNOT"
|
|
6041
6221
|
}
|
|
6222
|
+
export declare type AssetsDmObjectsListSearchGroupOutput = {
|
|
6223
|
+
__typename?: 'AssetsDMObjectsListSearchGroupOutput';
|
|
6224
|
+
condition?: Maybe<AssetsDmObjectsListSearchGroupCondition>;
|
|
6225
|
+
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
6226
|
+
searchItems: Array<AssetsDmObjectsListSearchItemOutput>;
|
|
6227
|
+
};
|
|
6042
6228
|
export declare type AssetsDmObjectsListSearchItem = {
|
|
6043
6229
|
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
6044
6230
|
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
@@ -6051,6 +6237,19 @@ export declare type AssetsDmObjectsListSearchItem = {
|
|
|
6051
6237
|
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6052
6238
|
whereDataSource?: InputMaybe<Scalars['String']['input']>;
|
|
6053
6239
|
};
|
|
6240
|
+
export declare type AssetsDmObjectsListSearchItemOutput = {
|
|
6241
|
+
__typename?: 'AssetsDMObjectsListSearchItemOutput';
|
|
6242
|
+
columnName: Scalars['String']['output'];
|
|
6243
|
+
condition?: Maybe<AssetsDmObjectsListSearchCondition>;
|
|
6244
|
+
isAttribute: Scalars['Boolean']['output'];
|
|
6245
|
+
isDataSource: Scalars['Boolean']['output'];
|
|
6246
|
+
operator: AssetsDmObjectsListSearchOperator;
|
|
6247
|
+
rawColumnType?: Maybe<AssetsDmObjectsListRawColumnType>;
|
|
6248
|
+
savedSearchId?: Maybe<Scalars['ID']['output']>;
|
|
6249
|
+
tagCodes?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
6250
|
+
values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6251
|
+
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
6252
|
+
};
|
|
6054
6253
|
export declare enum AssetsDmObjectsListSearchOperator {
|
|
6055
6254
|
AfterNext = "AFTER_NEXT",
|
|
6056
6255
|
ComputeIssues = "COMPUTE_ISSUES",
|
|
@@ -6115,6 +6314,7 @@ export declare type AssetsDmPaginationInfo = {
|
|
|
6115
6314
|
pageSize: Scalars['Int']['output'];
|
|
6116
6315
|
previousPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
6117
6316
|
totalPages: Scalars['Int']['output'];
|
|
6317
|
+
totalRowsCount?: Maybe<Scalars['Int']['output']>;
|
|
6118
6318
|
};
|
|
6119
6319
|
export declare type AssetsDmPaginationInput = {
|
|
6120
6320
|
pageCursor?: Scalars['Int']['input'];
|
|
@@ -6156,6 +6356,12 @@ export declare type AssetsDmSavedSearch = {
|
|
|
6156
6356
|
resultCount: Scalars['Int']['output'];
|
|
6157
6357
|
savedSearchId: Scalars['ID']['output'];
|
|
6158
6358
|
};
|
|
6359
|
+
export declare type AssetsDmSavedSearchDetails = {
|
|
6360
|
+
__typename?: 'AssetsDMSavedSearchDetails';
|
|
6361
|
+
name: Scalars['String']['output'];
|
|
6362
|
+
savedSearchId: Scalars['ID']['output'];
|
|
6363
|
+
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
6364
|
+
};
|
|
6159
6365
|
export declare type AssetsDmSavedSearchInput = {
|
|
6160
6366
|
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
6161
6367
|
};
|
|
@@ -9684,6 +9890,7 @@ export declare enum CloudIdProduct {
|
|
|
9684
9890
|
Loom = "LOOM",
|
|
9685
9891
|
Mercury = "MERCURY",
|
|
9686
9892
|
Opsgenie = "OPSGENIE",
|
|
9893
|
+
Passionfruit = "PASSIONFRUIT",
|
|
9687
9894
|
Project = "PROJECT",
|
|
9688
9895
|
Radar = "RADAR",
|
|
9689
9896
|
Statuspage = "STATUSPAGE"
|
|
@@ -15569,6 +15776,7 @@ export declare type ConfluenceAttachmentSettings = {
|
|
|
15569
15776
|
export declare type ConfluenceAudioPreference = {
|
|
15570
15777
|
__typename?: 'ConfluenceAudioPreference';
|
|
15571
15778
|
length: ConfluenceLength;
|
|
15779
|
+
playbackSpeed: Scalars['Float']['output'];
|
|
15572
15780
|
tone: ConfluenceTone;
|
|
15573
15781
|
};
|
|
15574
15782
|
export declare type ConfluenceBasicSpaceRole = {
|
|
@@ -17319,11 +17527,29 @@ export declare type ConfluenceImport = {
|
|
|
17319
17527
|
accountID: Scalars['ID']['output'];
|
|
17320
17528
|
application: ConfluenceApplication;
|
|
17321
17529
|
cloudID: Scalars['ID']['output'];
|
|
17530
|
+
importResult?: Maybe<ConfluenceImportResult>;
|
|
17322
17531
|
spaceName?: Maybe<Scalars['String']['output']>;
|
|
17323
17532
|
taskCreationTime?: Maybe<Scalars['String']['output']>;
|
|
17324
17533
|
taskID: Scalars['ID']['output'];
|
|
17325
17534
|
taskStatus: ConfluenceImportStatus;
|
|
17326
17535
|
};
|
|
17536
|
+
export declare type ConfluenceImportError = {
|
|
17537
|
+
__typename?: 'ConfluenceImportError';
|
|
17538
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
17539
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
17540
|
+
};
|
|
17541
|
+
export declare type ConfluenceImportFailureReason = {
|
|
17542
|
+
__typename?: 'ConfluenceImportFailureReason';
|
|
17543
|
+
entities?: Maybe<Array<Scalars['String']['output']>>;
|
|
17544
|
+
error?: Maybe<ConfluenceImportError>;
|
|
17545
|
+
};
|
|
17546
|
+
export declare type ConfluenceImportResult = {
|
|
17547
|
+
__typename?: 'ConfluenceImportResult';
|
|
17548
|
+
entitiesFailedCount?: Maybe<Scalars['Int']['output']>;
|
|
17549
|
+
entitiesImportedCount?: Maybe<Scalars['Int']['output']>;
|
|
17550
|
+
entitiesReceivedCount?: Maybe<Scalars['Int']['output']>;
|
|
17551
|
+
failureReasons?: Maybe<Array<ConfluenceImportFailureReason>>;
|
|
17552
|
+
};
|
|
17327
17553
|
export declare type ConfluenceImportSpaceConfiguration = {
|
|
17328
17554
|
__typename?: 'ConfluenceImportSpaceConfiguration';
|
|
17329
17555
|
clientId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -17377,6 +17603,7 @@ export declare enum ConfluenceImportStatus {
|
|
|
17377
17603
|
ImportingUser = "IMPORTING_USER",
|
|
17378
17604
|
ImportingWhiteboards = "IMPORTING_WHITEBOARDS",
|
|
17379
17605
|
NestedUnzipping = "NESTED_UNZIPPING",
|
|
17606
|
+
NormalizeManifest = "NORMALIZE_MANIFEST",
|
|
17380
17607
|
PartialFailed = "PARTIAL_FAILED",
|
|
17381
17608
|
PreparedMetadata = "PREPARED_METADATA",
|
|
17382
17609
|
PreparingMetadata = "PREPARING_METADATA",
|
|
@@ -18045,6 +18272,95 @@ export declare type ConfluenceNbmPageInfo = {
|
|
|
18045
18272
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
18046
18273
|
totalPages: Scalars['Int']['output'];
|
|
18047
18274
|
};
|
|
18275
|
+
export declare type ConfluenceNbmPerfMacroUsage = {
|
|
18276
|
+
__typename?: 'ConfluenceNbmPerfMacroUsage';
|
|
18277
|
+
macroName?: Maybe<Scalars['String']['output']>;
|
|
18278
|
+
usageCount?: Maybe<Scalars['Long']['output']>;
|
|
18279
|
+
usagePercentage?: Maybe<Scalars['Float']['output']>;
|
|
18280
|
+
};
|
|
18281
|
+
export declare type ConfluenceNbmPerfMacros = {
|
|
18282
|
+
__typename?: 'ConfluenceNbmPerfMacros';
|
|
18283
|
+
averagePerPage?: Maybe<Scalars['Float']['output']>;
|
|
18284
|
+
maxDepth?: Maybe<Scalars['Long']['output']>;
|
|
18285
|
+
totalUsageCount?: Maybe<Scalars['Long']['output']>;
|
|
18286
|
+
usage: Array<ConfluenceNbmPerfMacroUsage>;
|
|
18287
|
+
};
|
|
18288
|
+
export declare type ConfluenceNbmPerfPage = {
|
|
18289
|
+
__typename?: 'ConfluenceNbmPerfPage';
|
|
18290
|
+
chainDepth?: Maybe<Scalars['Long']['output']>;
|
|
18291
|
+
isDashboard?: Maybe<Scalars['Boolean']['output']>;
|
|
18292
|
+
macroCount?: Maybe<Scalars['Long']['output']>;
|
|
18293
|
+
maxDepth?: Maybe<Scalars['Long']['output']>;
|
|
18294
|
+
pageTitle?: Maybe<Scalars['String']['output']>;
|
|
18295
|
+
pageUrl?: Maybe<Scalars['String']['output']>;
|
|
18296
|
+
riskLevel?: Maybe<Scalars['String']['output']>;
|
|
18297
|
+
score?: Maybe<Scalars['Long']['output']>;
|
|
18298
|
+
spaceId?: Maybe<Scalars['String']['output']>;
|
|
18299
|
+
};
|
|
18300
|
+
export declare type ConfluenceNbmPerfPageSeverity = {
|
|
18301
|
+
__typename?: 'ConfluenceNbmPerfPageSeverity';
|
|
18302
|
+
highCount?: Maybe<Scalars['Long']['output']>;
|
|
18303
|
+
highPercentage?: Maybe<Scalars['Float']['output']>;
|
|
18304
|
+
lowCount?: Maybe<Scalars['Long']['output']>;
|
|
18305
|
+
lowPercentage?: Maybe<Scalars['Float']['output']>;
|
|
18306
|
+
mediumCount?: Maybe<Scalars['Long']['output']>;
|
|
18307
|
+
mediumPercentage?: Maybe<Scalars['Float']['output']>;
|
|
18308
|
+
};
|
|
18309
|
+
export declare type ConfluenceNbmPerfPages = {
|
|
18310
|
+
__typename?: 'ConfluenceNbmPerfPages';
|
|
18311
|
+
analyzedCount?: Maybe<Scalars['Long']['output']>;
|
|
18312
|
+
dashboardCount?: Maybe<Scalars['Long']['output']>;
|
|
18313
|
+
severity?: Maybe<ConfluenceNbmPerfPageSeverity>;
|
|
18314
|
+
sqlDuplicates: Array<ConfluenceNbmPerfSqlDuplicate>;
|
|
18315
|
+
tableJoinerChains: Array<ConfluenceNbmPerfTableJoinerChain>;
|
|
18316
|
+
with2PMacrosCount?: Maybe<Scalars['Long']['output']>;
|
|
18317
|
+
with2PMacrosPercentage?: Maybe<Scalars['Float']['output']>;
|
|
18318
|
+
withTableJoinerChainsCount?: Maybe<Scalars['Long']['output']>;
|
|
18319
|
+
worstPerformingPages: Array<ConfluenceNbmPerfPage>;
|
|
18320
|
+
};
|
|
18321
|
+
export declare type ConfluenceNbmPerfRecommendation = {
|
|
18322
|
+
__typename?: 'ConfluenceNbmPerfRecommendation';
|
|
18323
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
18324
|
+
};
|
|
18325
|
+
export declare type ConfluenceNbmPerfScanResult = {
|
|
18326
|
+
__typename?: 'ConfluenceNbmPerfScanResult';
|
|
18327
|
+
id: Scalars['ID']['output'];
|
|
18328
|
+
macros?: Maybe<ConfluenceNbmPerfMacros>;
|
|
18329
|
+
pages?: Maybe<ConfluenceNbmPerfPages>;
|
|
18330
|
+
recommendations: Array<ConfluenceNbmPerfRecommendation>;
|
|
18331
|
+
spaces?: Maybe<ConfluenceNbmPerfSpaces>;
|
|
18332
|
+
status: ConfluenceNbmScanStatus;
|
|
18333
|
+
};
|
|
18334
|
+
export declare type ConfluenceNbmPerfSpaceRisk = {
|
|
18335
|
+
__typename?: 'ConfluenceNbmPerfSpaceRisk';
|
|
18336
|
+
highIssueCount?: Maybe<Scalars['Long']['output']>;
|
|
18337
|
+
highIssuePercentage?: Maybe<Scalars['Float']['output']>;
|
|
18338
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
18339
|
+
};
|
|
18340
|
+
export declare type ConfluenceNbmPerfSpaceRiskAnalysis = {
|
|
18341
|
+
__typename?: 'ConfluenceNbmPerfSpaceRiskAnalysis';
|
|
18342
|
+
byCount: Array<ConfluenceNbmPerfSpaceRisk>;
|
|
18343
|
+
byPercentage: Array<ConfluenceNbmPerfSpaceRisk>;
|
|
18344
|
+
};
|
|
18345
|
+
export declare type ConfluenceNbmPerfSpaces = {
|
|
18346
|
+
__typename?: 'ConfluenceNbmPerfSpaces';
|
|
18347
|
+
analyzedCount?: Maybe<Scalars['Long']['output']>;
|
|
18348
|
+
riskAnalysis?: Maybe<ConfluenceNbmPerfSpaceRiskAnalysis>;
|
|
18349
|
+
};
|
|
18350
|
+
export declare type ConfluenceNbmPerfSqlDuplicate = {
|
|
18351
|
+
__typename?: 'ConfluenceNbmPerfSqlDuplicate';
|
|
18352
|
+
occurrences?: Maybe<Scalars['Long']['output']>;
|
|
18353
|
+
pageCount?: Maybe<Scalars['Long']['output']>;
|
|
18354
|
+
query?: Maybe<Scalars['String']['output']>;
|
|
18355
|
+
sqlHash?: Maybe<Scalars['String']['output']>;
|
|
18356
|
+
};
|
|
18357
|
+
export declare type ConfluenceNbmPerfTableJoinerChain = {
|
|
18358
|
+
__typename?: 'ConfluenceNbmPerfTableJoinerChain';
|
|
18359
|
+
chainDepth?: Maybe<Scalars['Long']['output']>;
|
|
18360
|
+
groupSize?: Maybe<Scalars['Long']['output']>;
|
|
18361
|
+
pageTitle?: Maybe<Scalars['String']['output']>;
|
|
18362
|
+
pageUrl?: Maybe<Scalars['String']['output']>;
|
|
18363
|
+
};
|
|
18048
18364
|
export declare type ConfluenceNbmRetryScanLongTaskInput = {
|
|
18049
18365
|
scanId: Scalars['ID']['input'];
|
|
18050
18366
|
};
|
|
@@ -19356,6 +19672,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
19356
19672
|
connectionTimeout?: Maybe<Scalars['Int']['output']>;
|
|
19357
19673
|
contactAdministratorsMessage?: Maybe<Scalars['String']['output']>;
|
|
19358
19674
|
customPageSettings?: Maybe<ConfluenceCustomPageSettings>;
|
|
19675
|
+
editorDefaultWidth?: Maybe<ConfluenceSiteConfigurationEditorDefaultWidth>;
|
|
19359
19676
|
formattingSettings?: Maybe<ConfluenceFormattingSettings>;
|
|
19360
19677
|
globalDefaultLocale?: Maybe<ConfluenceLanguage>;
|
|
19361
19678
|
indexingLanguage?: Maybe<Scalars['String']['output']>;
|
|
@@ -19389,6 +19706,11 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
19389
19706
|
socketTimeout?: Maybe<Scalars['Int']['output']>;
|
|
19390
19707
|
teamPresenceSettings?: Maybe<ConfluenceTeamPresenceSettings>;
|
|
19391
19708
|
};
|
|
19709
|
+
export declare enum ConfluenceSiteConfigurationEditorDefaultWidth {
|
|
19710
|
+
Max = "MAX",
|
|
19711
|
+
Narrow = "NARROW",
|
|
19712
|
+
Wide = "WIDE"
|
|
19713
|
+
}
|
|
19392
19714
|
export declare enum ConfluenceSiteEmailAddressStatus {
|
|
19393
19715
|
Active = "ACTIVE",
|
|
19394
19716
|
Inactive = "INACTIVE",
|
|
@@ -19893,6 +20215,26 @@ export declare type ConfluenceUpdateAnswerPayload = Payload & {
|
|
|
19893
20215
|
errors?: Maybe<Array<MutationError>>;
|
|
19894
20216
|
success: Scalars['Boolean']['output'];
|
|
19895
20217
|
};
|
|
20218
|
+
export declare type ConfluenceUpdateAudioPreferenceInput = {
|
|
20219
|
+
length?: InputMaybe<ConfluenceLength>;
|
|
20220
|
+
playbackSpeed?: InputMaybe<Scalars['Float']['input']>;
|
|
20221
|
+
tone?: InputMaybe<ConfluenceTone>;
|
|
20222
|
+
};
|
|
20223
|
+
export declare type ConfluenceUpdateAudioPreferencePayload = {
|
|
20224
|
+
__typename?: 'ConfluenceUpdateAudioPreferencePayload';
|
|
20225
|
+
errors?: Maybe<Array<ConfluenceUpdateAudioPreferencePayloadError>>;
|
|
20226
|
+
preference?: Maybe<ConfluenceAudioPreference>;
|
|
20227
|
+
success: Scalars['Boolean']['output'];
|
|
20228
|
+
};
|
|
20229
|
+
export declare type ConfluenceUpdateAudioPreferencePayloadError = {
|
|
20230
|
+
__typename?: 'ConfluenceUpdateAudioPreferencePayloadError';
|
|
20231
|
+
extensions?: Maybe<ConfluenceUpdateAudioPreferencePayloadErrorExtension>;
|
|
20232
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
20233
|
+
};
|
|
20234
|
+
export declare type ConfluenceUpdateAudioPreferencePayloadErrorExtension = {
|
|
20235
|
+
__typename?: 'ConfluenceUpdateAudioPreferencePayloadErrorExtension';
|
|
20236
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
20237
|
+
};
|
|
19896
20238
|
export declare type ConfluenceUpdateBlogPostInput = {
|
|
19897
20239
|
confluenceContentInput: ConfluenceContentInput;
|
|
19898
20240
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20288,6 +20630,7 @@ export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
|
20288
20630
|
dateFormat: Scalars['String']['input'];
|
|
20289
20631
|
dateTimeFormat: Scalars['String']['input'];
|
|
20290
20632
|
decimalNumberFormat: Scalars['String']['input'];
|
|
20633
|
+
editorDefaultWidth?: InputMaybe<ConfluenceSiteConfigurationEditorDefaultWidth>;
|
|
20291
20634
|
globalDefaultLocale: Scalars['String']['input'];
|
|
20292
20635
|
indexingLanguage: Scalars['String']['input'];
|
|
20293
20636
|
isContactAdministratorsFormEnabled: Scalars['Boolean']['input'];
|
|
@@ -24351,6 +24694,12 @@ export declare type CsmAiCreateCoachingContentPayload = Payload & {
|
|
|
24351
24694
|
errors?: Maybe<Array<MutationError>>;
|
|
24352
24695
|
success: Scalars['Boolean']['output'];
|
|
24353
24696
|
};
|
|
24697
|
+
export declare type CsmAiCreateWidgetPayload = Payload & {
|
|
24698
|
+
__typename?: 'CsmAiCreateWidgetPayload';
|
|
24699
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24700
|
+
success: Scalars['Boolean']['output'];
|
|
24701
|
+
widget?: Maybe<CsmAiWidgetConfig>;
|
|
24702
|
+
};
|
|
24354
24703
|
export declare type CsmAiDeleteActionPayload = Payload & {
|
|
24355
24704
|
__typename?: 'CsmAiDeleteActionPayload';
|
|
24356
24705
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -25871,6 +26220,7 @@ export declare type CustomerServiceStatusPayload = Payload & {
|
|
|
25871
26220
|
export declare type CustomerServiceTemplateForm = Node & {
|
|
25872
26221
|
__typename?: 'CustomerServiceTemplateForm';
|
|
25873
26222
|
defaultRouteRule?: Maybe<CustomerServiceRoutingRule>;
|
|
26223
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
25874
26224
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
25875
26225
|
helpCenterId: Scalars['ID']['output'];
|
|
25876
26226
|
id: Scalars['ID']['output'];
|
|
@@ -25914,6 +26264,7 @@ export declare type CustomerServiceTemplateFormFilterInput = {
|
|
|
25914
26264
|
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
25915
26265
|
export declare type CustomerServiceTemplateFormUpdateInput = {
|
|
25916
26266
|
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
26267
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
25917
26268
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25918
26269
|
};
|
|
25919
26270
|
export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
|
|
@@ -30212,7 +30563,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
30212
30563
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
30213
30564
|
node?: Maybe<ExternalAssociation>;
|
|
30214
30565
|
};
|
|
30215
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
30566
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
30216
30567
|
export declare type ExternalAttachment = {
|
|
30217
30568
|
__typename?: 'ExternalAttachment';
|
|
30218
30569
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -30514,6 +30865,30 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
30514
30865
|
url?: Maybe<Scalars['String']['output']>;
|
|
30515
30866
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
30516
30867
|
};
|
|
30868
|
+
export declare type ExternalCustomerOrgCategory = Node & {
|
|
30869
|
+
__typename?: 'ExternalCustomerOrgCategory';
|
|
30870
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
30871
|
+
categoryType?: Maybe<Scalars['String']['output']>;
|
|
30872
|
+
container?: Maybe<ExternalEntity>;
|
|
30873
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
30874
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30875
|
+
createdBy?: Maybe<ExternalUser>;
|
|
30876
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30877
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
30878
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
30879
|
+
id: Scalars['ID']['output'];
|
|
30880
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
30881
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
30882
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
30883
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
30884
|
+
parent?: Maybe<ExternalEntity>;
|
|
30885
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
30886
|
+
provider?: Maybe<ExternalProvider>;
|
|
30887
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
30888
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
30889
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
30890
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
30891
|
+
};
|
|
30517
30892
|
export declare type ExternalCustomerOrgLastActivity = {
|
|
30518
30893
|
__typename?: 'ExternalCustomerOrgLastActivity';
|
|
30519
30894
|
event?: Maybe<Scalars['String']['output']>;
|
|
@@ -30757,6 +31132,7 @@ export declare type ExternalEntities = {
|
|
|
30757
31132
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
30758
31133
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
30759
31134
|
customerOrg?: Maybe<Array<Maybe<ExternalCustomerOrg>>>;
|
|
31135
|
+
customerOrgCategory?: Maybe<Array<Maybe<ExternalCustomerOrgCategory>>>;
|
|
30760
31136
|
dashboard?: Maybe<Array<Maybe<ExternalDashboard>>>;
|
|
30761
31137
|
dataTable?: Maybe<Array<Maybe<ExternalDataTable>>>;
|
|
30762
31138
|
deal?: Maybe<Array<Maybe<ExternalDeal>>>;
|
|
@@ -30783,7 +31159,7 @@ export declare type ExternalEntities = {
|
|
|
30783
31159
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
30784
31160
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
30785
31161
|
};
|
|
30786
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
31162
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
30787
31163
|
export declare type ExternalEnvironment = {
|
|
30788
31164
|
__typename?: 'ExternalEnvironment';
|
|
30789
31165
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -33868,6 +34244,39 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
33868
34244
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
33869
34245
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
33870
34246
|
};
|
|
34247
|
+
export declare type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
34248
|
+
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
34249
|
+
status: GraphIntegrationActionAdminManagementActionStatus;
|
|
34250
|
+
};
|
|
34251
|
+
export declare type GraphIntegrationActionAdminManagementActionConfigurationInput = {
|
|
34252
|
+
actionId: Scalars['ID']['input'];
|
|
34253
|
+
status?: InputMaybe<GraphIntegrationActionAdminManagementActionStatus>;
|
|
34254
|
+
};
|
|
34255
|
+
export declare type GraphIntegrationActionAdminManagementActionNode = {
|
|
34256
|
+
__typename?: 'GraphIntegrationActionAdminManagementActionNode';
|
|
34257
|
+
configuration?: Maybe<GraphIntegrationActionAdminManagementActionConfiguration>;
|
|
34258
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
34259
|
+
displayName: Scalars['String']['output'];
|
|
34260
|
+
id: Scalars['ID']['output'];
|
|
34261
|
+
};
|
|
34262
|
+
export declare enum GraphIntegrationActionAdminManagementActionStatus {
|
|
34263
|
+
Allow = "ALLOW",
|
|
34264
|
+
Deny = "DENY",
|
|
34265
|
+
NewActionAllow = "NEW_ACTION_ALLOW"
|
|
34266
|
+
}
|
|
34267
|
+
export declare type GraphIntegrationActionAdminManagementUpdateActionConfigurationInput = {
|
|
34268
|
+
actionConfigurations: Array<GraphIntegrationActionAdminManagementActionConfigurationInput>;
|
|
34269
|
+
contextAri: Scalars['ID']['input'];
|
|
34270
|
+
productAri: Scalars['ID']['input'];
|
|
34271
|
+
};
|
|
34272
|
+
export declare type GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload = Payload & {
|
|
34273
|
+
__typename?: 'GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload';
|
|
34274
|
+
contextAri: Scalars['ID']['output'];
|
|
34275
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34276
|
+
productAri: Scalars['ID']['output'];
|
|
34277
|
+
success: Scalars['Boolean']['output'];
|
|
34278
|
+
updatedActions?: Maybe<Array<GraphIntegrationActionAdminManagementActionNode>>;
|
|
34279
|
+
};
|
|
33871
34280
|
export declare type GraphIntegrationActionDirectoryItem = {
|
|
33872
34281
|
__typename?: 'GraphIntegrationActionDirectoryItem';
|
|
33873
34282
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -33980,8 +34389,13 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEd
|
|
|
33980
34389
|
};
|
|
33981
34390
|
export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
33982
34391
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
|
|
34392
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
33983
34393
|
displayName: Scalars['String']['output'];
|
|
34394
|
+
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
34395
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
33984
34396
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
34397
|
+
isInstalled: Scalars['Boolean']['output'];
|
|
34398
|
+
serverUrl: Scalars['String']['output'];
|
|
33985
34399
|
};
|
|
33986
34400
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
33987
34401
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
@@ -34189,6 +34603,7 @@ export declare enum GraphIntegrationSurface {
|
|
|
34189
34603
|
}
|
|
34190
34604
|
export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
34191
34605
|
__typename?: 'GraphIntegrationTwgCapabilityContainer';
|
|
34606
|
+
actionConfigurations: Array<GraphIntegrationActionAdminManagementActionNode>;
|
|
34192
34607
|
connections: Array<GraphIntegrationDataConnectorConnection>;
|
|
34193
34608
|
contextAri: Scalars['ID']['output'];
|
|
34194
34609
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
@@ -37230,12 +37645,20 @@ export declare type GraphStore = {
|
|
|
37230
37645
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
37231
37646
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
37232
37647
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
37648
|
+
meetingHasJiraProject?: Maybe<GraphStoreSimplifiedMeetingHasJiraProjectConnection>;
|
|
37649
|
+
meetingHasJiraProjectInverse?: Maybe<GraphStoreSimplifiedMeetingHasJiraProjectInverseConnection>;
|
|
37233
37650
|
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
37234
37651
|
meetingHasMeetingNotesPageBatch?: Maybe<GraphStoreBatchMeetingHasMeetingNotesPageConnection>;
|
|
37235
37652
|
meetingHasMeetingNotesPageInverse?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseConnection>;
|
|
37236
37653
|
meetingHasMeetingNotesPageInverseBatch?: Maybe<GraphStoreBatchMeetingHasMeetingNotesPageConnection>;
|
|
37654
|
+
meetingHasVideo?: Maybe<GraphStoreSimplifiedMeetingHasVideoConnection>;
|
|
37655
|
+
meetingHasVideoBatch?: Maybe<GraphStoreBatchMeetingHasVideoConnection>;
|
|
37656
|
+
meetingHasVideoInverse?: Maybe<GraphStoreSimplifiedMeetingHasVideoInverseConnection>;
|
|
37657
|
+
meetingHasVideoInverseBatch?: Maybe<GraphStoreBatchMeetingHasVideoConnection>;
|
|
37237
37658
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
37238
37659
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
37660
|
+
meetingRecurrenceHasJiraProject?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectConnection>;
|
|
37661
|
+
meetingRecurrenceHasJiraProjectInverse?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseConnection>;
|
|
37239
37662
|
meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
37240
37663
|
meetingRecurrenceHasMeetingRecurrenceNotesPageBatch?: Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
37241
37664
|
meetingRecurrenceHasMeetingRecurrenceNotesPageInverse?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseConnection>;
|
|
@@ -39911,6 +40334,20 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
|
39911
40334
|
ids: Array<Scalars['ID']['input']>;
|
|
39912
40335
|
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
39913
40336
|
};
|
|
40337
|
+
export declare type GraphStoreMeetingHasJiraProjectArgs = {
|
|
40338
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40339
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40340
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40341
|
+
id: Scalars['ID']['input'];
|
|
40342
|
+
sort?: InputMaybe<GraphStoreMeetingHasJiraProjectSortInput>;
|
|
40343
|
+
};
|
|
40344
|
+
export declare type GraphStoreMeetingHasJiraProjectInverseArgs = {
|
|
40345
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40346
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40347
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40348
|
+
id: Scalars['ID']['input'];
|
|
40349
|
+
sort?: InputMaybe<GraphStoreMeetingHasJiraProjectSortInput>;
|
|
40350
|
+
};
|
|
39914
40351
|
export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
|
|
39915
40352
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39916
40353
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39937,6 +40374,32 @@ export declare type GraphStoreMeetingHasMeetingNotesPageInverseBatchArgs = {
|
|
|
39937
40374
|
ids: Array<Scalars['ID']['input']>;
|
|
39938
40375
|
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
39939
40376
|
};
|
|
40377
|
+
export declare type GraphStoreMeetingHasVideoArgs = {
|
|
40378
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40379
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40380
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40381
|
+
id: Scalars['ID']['input'];
|
|
40382
|
+
sort?: InputMaybe<GraphStoreMeetingHasVideoSortInput>;
|
|
40383
|
+
};
|
|
40384
|
+
export declare type GraphStoreMeetingHasVideoBatchArgs = {
|
|
40385
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40386
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40387
|
+
ids: Array<Scalars['ID']['input']>;
|
|
40388
|
+
sort?: InputMaybe<GraphStoreMeetingHasVideoSortInput>;
|
|
40389
|
+
};
|
|
40390
|
+
export declare type GraphStoreMeetingHasVideoInverseArgs = {
|
|
40391
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40392
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40393
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40394
|
+
id: Scalars['ID']['input'];
|
|
40395
|
+
sort?: InputMaybe<GraphStoreMeetingHasVideoSortInput>;
|
|
40396
|
+
};
|
|
40397
|
+
export declare type GraphStoreMeetingHasVideoInverseBatchArgs = {
|
|
40398
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40399
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40400
|
+
ids: Array<Scalars['ID']['input']>;
|
|
40401
|
+
sort?: InputMaybe<GraphStoreMeetingHasVideoSortInput>;
|
|
40402
|
+
};
|
|
39940
40403
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
39941
40404
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39942
40405
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39951,6 +40414,20 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseA
|
|
|
39951
40414
|
id: Scalars['ID']['input'];
|
|
39952
40415
|
sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
|
|
39953
40416
|
};
|
|
40417
|
+
export declare type GraphStoreMeetingRecurrenceHasJiraProjectArgs = {
|
|
40418
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40419
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40420
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40421
|
+
id: Scalars['ID']['input'];
|
|
40422
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasJiraProjectSortInput>;
|
|
40423
|
+
};
|
|
40424
|
+
export declare type GraphStoreMeetingRecurrenceHasJiraProjectInverseArgs = {
|
|
40425
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40426
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40427
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40428
|
+
id: Scalars['ID']['input'];
|
|
40429
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasJiraProjectSortInput>;
|
|
40430
|
+
};
|
|
39954
40431
|
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
39955
40432
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39956
40433
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44542,6 +45019,47 @@ export declare type GraphStoreBatchMeetingHasMeetingNotesPageStartNode = {
|
|
|
44542
45019
|
id: Scalars['ID']['output'];
|
|
44543
45020
|
};
|
|
44544
45021
|
export declare type GraphStoreBatchMeetingHasMeetingNotesPageStartUnion = LoomMeeting;
|
|
45022
|
+
export declare type GraphStoreBatchMeetingHasVideoConnection = HasPageInfo & {
|
|
45023
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoConnection';
|
|
45024
|
+
edges: Array<Maybe<GraphStoreBatchMeetingHasVideoEdge>>;
|
|
45025
|
+
nodes: Array<Maybe<GraphStoreBatchMeetingHasVideoNode>>;
|
|
45026
|
+
pageInfo: PageInfo;
|
|
45027
|
+
};
|
|
45028
|
+
export declare type GraphStoreBatchMeetingHasVideoEdge = {
|
|
45029
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoEdge';
|
|
45030
|
+
node: GraphStoreBatchMeetingHasVideoInnerConnection;
|
|
45031
|
+
};
|
|
45032
|
+
export declare type GraphStoreBatchMeetingHasVideoEndNode = {
|
|
45033
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoEndNode';
|
|
45034
|
+
data?: Maybe<GraphStoreBatchMeetingHasVideoEndUnion>;
|
|
45035
|
+
id: Scalars['ID']['output'];
|
|
45036
|
+
};
|
|
45037
|
+
export declare type GraphStoreBatchMeetingHasVideoEndUnion = LoomVideo;
|
|
45038
|
+
export declare type GraphStoreBatchMeetingHasVideoInnerConnection = {
|
|
45039
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoInnerConnection';
|
|
45040
|
+
edges: Array<Maybe<GraphStoreBatchMeetingHasVideoInnerEdge>>;
|
|
45041
|
+
nodes: Array<Maybe<GraphStoreBatchMeetingHasVideoNode>>;
|
|
45042
|
+
requestedId: Scalars['ID']['output'];
|
|
45043
|
+
};
|
|
45044
|
+
export declare type GraphStoreBatchMeetingHasVideoInnerEdge = {
|
|
45045
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoInnerEdge';
|
|
45046
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45047
|
+
node: GraphStoreBatchMeetingHasVideoNode;
|
|
45048
|
+
};
|
|
45049
|
+
export declare type GraphStoreBatchMeetingHasVideoNode = Node & {
|
|
45050
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoNode';
|
|
45051
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45052
|
+
from: GraphStoreBatchMeetingHasVideoStartNode;
|
|
45053
|
+
id: Scalars['ID']['output'];
|
|
45054
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45055
|
+
to: GraphStoreBatchMeetingHasVideoEndNode;
|
|
45056
|
+
};
|
|
45057
|
+
export declare type GraphStoreBatchMeetingHasVideoStartNode = {
|
|
45058
|
+
__typename?: 'GraphStoreBatchMeetingHasVideoStartNode';
|
|
45059
|
+
data?: Maybe<GraphStoreBatchMeetingHasVideoStartUnion>;
|
|
45060
|
+
id: Scalars['ID']['output'];
|
|
45061
|
+
};
|
|
45062
|
+
export declare type GraphStoreBatchMeetingHasVideoStartUnion = LoomMeeting;
|
|
44545
45063
|
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
44546
45064
|
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
44547
45065
|
edges: Array<Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>;
|
|
@@ -45106,6 +45624,20 @@ export declare type GraphStoreCreateLoomVideoHasConfluencePageRelationshipInput
|
|
|
45106
45624
|
to: Scalars['ID']['input'];
|
|
45107
45625
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45108
45626
|
};
|
|
45627
|
+
export declare type GraphStoreCreateMeetingHasJiraProjectInput = {
|
|
45628
|
+
relationships: Array<GraphStoreCreateMeetingHasJiraProjectRelationshipInput>;
|
|
45629
|
+
};
|
|
45630
|
+
export declare type GraphStoreCreateMeetingHasJiraProjectPayload = Payload & {
|
|
45631
|
+
__typename?: 'GraphStoreCreateMeetingHasJiraProjectPayload';
|
|
45632
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45633
|
+
success: Scalars['Boolean']['output'];
|
|
45634
|
+
};
|
|
45635
|
+
export declare type GraphStoreCreateMeetingHasJiraProjectRelationshipInput = {
|
|
45636
|
+
from: Scalars['ID']['input'];
|
|
45637
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
45638
|
+
to: Scalars['ID']['input'];
|
|
45639
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45640
|
+
};
|
|
45109
45641
|
export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput = {
|
|
45110
45642
|
relationships: Array<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
|
|
45111
45643
|
};
|
|
@@ -45120,6 +45652,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
45120
45652
|
to: Scalars['ID']['input'];
|
|
45121
45653
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45122
45654
|
};
|
|
45655
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasJiraProjectInput = {
|
|
45656
|
+
relationships: Array<GraphStoreCreateMeetingRecurrenceHasJiraProjectRelationshipInput>;
|
|
45657
|
+
};
|
|
45658
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasJiraProjectPayload = Payload & {
|
|
45659
|
+
__typename?: 'GraphStoreCreateMeetingRecurrenceHasJiraProjectPayload';
|
|
45660
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45661
|
+
success: Scalars['Boolean']['output'];
|
|
45662
|
+
};
|
|
45663
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasJiraProjectRelationshipInput = {
|
|
45664
|
+
from: Scalars['ID']['input'];
|
|
45665
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
45666
|
+
to: Scalars['ID']['input'];
|
|
45667
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45668
|
+
};
|
|
45123
45669
|
export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
|
|
45124
45670
|
relationships: Array<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
|
|
45125
45671
|
};
|
|
@@ -45748,6 +46294,19 @@ export declare type GraphStoreDeleteLoomVideoHasConfluencePageRelationshipInput
|
|
|
45748
46294
|
from: Scalars['ID']['input'];
|
|
45749
46295
|
to: Scalars['ID']['input'];
|
|
45750
46296
|
};
|
|
46297
|
+
export declare type GraphStoreDeleteMeetingHasJiraProjectInput = {
|
|
46298
|
+
relationships: Array<GraphStoreDeleteMeetingHasJiraProjectRelationshipInput>;
|
|
46299
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46300
|
+
};
|
|
46301
|
+
export declare type GraphStoreDeleteMeetingHasJiraProjectPayload = Payload & {
|
|
46302
|
+
__typename?: 'GraphStoreDeleteMeetingHasJiraProjectPayload';
|
|
46303
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46304
|
+
success: Scalars['Boolean']['output'];
|
|
46305
|
+
};
|
|
46306
|
+
export declare type GraphStoreDeleteMeetingHasJiraProjectRelationshipInput = {
|
|
46307
|
+
from: Scalars['ID']['input'];
|
|
46308
|
+
to: Scalars['ID']['input'];
|
|
46309
|
+
};
|
|
45751
46310
|
export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput = {
|
|
45752
46311
|
relationships: Array<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
|
|
45753
46312
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45761,6 +46320,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
45761
46320
|
from: Scalars['ID']['input'];
|
|
45762
46321
|
to: Scalars['ID']['input'];
|
|
45763
46322
|
};
|
|
46323
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasJiraProjectInput = {
|
|
46324
|
+
relationships: Array<GraphStoreDeleteMeetingRecurrenceHasJiraProjectRelationshipInput>;
|
|
46325
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46326
|
+
};
|
|
46327
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasJiraProjectPayload = Payload & {
|
|
46328
|
+
__typename?: 'GraphStoreDeleteMeetingRecurrenceHasJiraProjectPayload';
|
|
46329
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46330
|
+
success: Scalars['Boolean']['output'];
|
|
46331
|
+
};
|
|
46332
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasJiraProjectRelationshipInput = {
|
|
46333
|
+
from: Scalars['ID']['input'];
|
|
46334
|
+
to: Scalars['ID']['input'];
|
|
46335
|
+
};
|
|
45764
46336
|
export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
|
|
45765
46337
|
relationships: Array<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
|
|
45766
46338
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49935,12 +50507,27 @@ export declare type GraphStoreLoomVideoHasConfluencePageSortInput = {
|
|
|
49935
50507
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
49936
50508
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49937
50509
|
};
|
|
50510
|
+
export declare type GraphStoreMeetingHasJiraProjectSortInput = {
|
|
50511
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
50512
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
50513
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50514
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
50515
|
+
};
|
|
49938
50516
|
export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
49939
50517
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49940
50518
|
};
|
|
50519
|
+
export declare type GraphStoreMeetingHasVideoSortInput = {
|
|
50520
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50521
|
+
};
|
|
49941
50522
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
49942
50523
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49943
50524
|
};
|
|
50525
|
+
export declare type GraphStoreMeetingRecurrenceHasJiraProjectSortInput = {
|
|
50526
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
50527
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
50528
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50529
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
50530
|
+
};
|
|
49944
50531
|
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
49945
50532
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49946
50533
|
};
|
|
@@ -49954,7 +50541,9 @@ export declare type GraphStoreMutation = {
|
|
|
49954
50541
|
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
49955
50542
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
49956
50543
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
50544
|
+
createMeetingHasJiraProject?: Maybe<GraphStoreCreateMeetingHasJiraProjectPayload>;
|
|
49957
50545
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
50546
|
+
createMeetingRecurrenceHasJiraProject?: Maybe<GraphStoreCreateMeetingRecurrenceHasJiraProjectPayload>;
|
|
49958
50547
|
createMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
49959
50548
|
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
49960
50549
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -49984,7 +50573,9 @@ export declare type GraphStoreMutation = {
|
|
|
49984
50573
|
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
49985
50574
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
49986
50575
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
50576
|
+
deleteMeetingHasJiraProject?: Maybe<GraphStoreDeleteMeetingHasJiraProjectPayload>;
|
|
49987
50577
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
50578
|
+
deleteMeetingRecurrenceHasJiraProject?: Maybe<GraphStoreDeleteMeetingRecurrenceHasJiraProjectPayload>;
|
|
49988
50579
|
deleteMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
49989
50580
|
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
49990
50581
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -50031,9 +50622,15 @@ export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs =
|
|
|
50031
50622
|
export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
50032
50623
|
input?: InputMaybe<GraphStoreCreateLoomVideoHasConfluencePageInput>;
|
|
50033
50624
|
};
|
|
50625
|
+
export declare type GraphStoreMutationCreateMeetingHasJiraProjectArgs = {
|
|
50626
|
+
input?: InputMaybe<GraphStoreCreateMeetingHasJiraProjectInput>;
|
|
50627
|
+
};
|
|
50034
50628
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
50035
50629
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
50036
50630
|
};
|
|
50631
|
+
export declare type GraphStoreMutationCreateMeetingRecurrenceHasJiraProjectArgs = {
|
|
50632
|
+
input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasJiraProjectInput>;
|
|
50633
|
+
};
|
|
50037
50634
|
export declare type GraphStoreMutationCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
50038
50635
|
input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
50039
50636
|
};
|
|
@@ -50121,9 +50718,15 @@ export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs =
|
|
|
50121
50718
|
export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
50122
50719
|
input?: InputMaybe<GraphStoreDeleteLoomVideoHasConfluencePageInput>;
|
|
50123
50720
|
};
|
|
50721
|
+
export declare type GraphStoreMutationDeleteMeetingHasJiraProjectArgs = {
|
|
50722
|
+
input?: InputMaybe<GraphStoreDeleteMeetingHasJiraProjectInput>;
|
|
50723
|
+
};
|
|
50124
50724
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
50125
50725
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
50126
50726
|
};
|
|
50727
|
+
export declare type GraphStoreMutationDeleteMeetingRecurrenceHasJiraProjectArgs = {
|
|
50728
|
+
input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasJiraProjectInput>;
|
|
50729
|
+
};
|
|
50127
50730
|
export declare type GraphStoreMutationDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
50128
50731
|
input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
50129
50732
|
};
|
|
@@ -53997,6 +54600,38 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
53997
54600
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
53998
54601
|
};
|
|
53999
54602
|
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
54603
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectConnection = HasPageInfo & HasTotal & {
|
|
54604
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasJiraProjectConnection';
|
|
54605
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasJiraProjectEdge>>>;
|
|
54606
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54607
|
+
pageInfo: PageInfo;
|
|
54608
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54609
|
+
};
|
|
54610
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectEdge = {
|
|
54611
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasJiraProjectEdge';
|
|
54612
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54613
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54614
|
+
id: Scalars['ID']['output'];
|
|
54615
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54616
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasJiraProjectUnion>;
|
|
54617
|
+
};
|
|
54618
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
54619
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasJiraProjectInverseConnection';
|
|
54620
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasJiraProjectInverseEdge>>>;
|
|
54621
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54622
|
+
pageInfo: PageInfo;
|
|
54623
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54624
|
+
};
|
|
54625
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectInverseEdge = {
|
|
54626
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasJiraProjectInverseEdge';
|
|
54627
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54628
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54629
|
+
id: Scalars['ID']['output'];
|
|
54630
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54631
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasJiraProjectInverseUnion>;
|
|
54632
|
+
};
|
|
54633
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectInverseUnion = LoomMeeting;
|
|
54634
|
+
export declare type GraphStoreSimplifiedMeetingHasJiraProjectUnion = JiraProject;
|
|
54000
54635
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection = HasPageInfo & {
|
|
54001
54636
|
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection';
|
|
54002
54637
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge>>>;
|
|
@@ -54025,6 +54660,34 @@ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge =
|
|
|
54025
54660
|
};
|
|
54026
54661
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion = LoomMeeting;
|
|
54027
54662
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
54663
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoConnection = HasPageInfo & {
|
|
54664
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasVideoConnection';
|
|
54665
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasVideoEdge>>>;
|
|
54666
|
+
pageInfo: PageInfo;
|
|
54667
|
+
};
|
|
54668
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoEdge = {
|
|
54669
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasVideoEdge';
|
|
54670
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54671
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54672
|
+
id: Scalars['ID']['output'];
|
|
54673
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54674
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasVideoUnion>;
|
|
54675
|
+
};
|
|
54676
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoInverseConnection = HasPageInfo & {
|
|
54677
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasVideoInverseConnection';
|
|
54678
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasVideoInverseEdge>>>;
|
|
54679
|
+
pageInfo: PageInfo;
|
|
54680
|
+
};
|
|
54681
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoInverseEdge = {
|
|
54682
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasVideoInverseEdge';
|
|
54683
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54684
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54685
|
+
id: Scalars['ID']['output'];
|
|
54686
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54687
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasVideoInverseUnion>;
|
|
54688
|
+
};
|
|
54689
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoInverseUnion = LoomMeeting;
|
|
54690
|
+
export declare type GraphStoreSimplifiedMeetingHasVideoUnion = LoomVideo;
|
|
54028
54691
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & {
|
|
54029
54692
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
54030
54693
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
@@ -54053,6 +54716,38 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
54053
54716
|
};
|
|
54054
54717
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54055
54718
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
|
|
54719
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectConnection = HasPageInfo & HasTotal & {
|
|
54720
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectConnection';
|
|
54721
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectEdge>>>;
|
|
54722
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54723
|
+
pageInfo: PageInfo;
|
|
54724
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54725
|
+
};
|
|
54726
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectEdge = {
|
|
54727
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectEdge';
|
|
54728
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54729
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54730
|
+
id: Scalars['ID']['output'];
|
|
54731
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54732
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectUnion>;
|
|
54733
|
+
};
|
|
54734
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
54735
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseConnection';
|
|
54736
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseEdge>>>;
|
|
54737
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54738
|
+
pageInfo: PageInfo;
|
|
54739
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54740
|
+
};
|
|
54741
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseEdge = {
|
|
54742
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseEdge';
|
|
54743
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54744
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54745
|
+
id: Scalars['ID']['output'];
|
|
54746
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54747
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseUnion>;
|
|
54748
|
+
};
|
|
54749
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectInverseUnion = LoomMeetingRecurrence;
|
|
54750
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasJiraProjectUnion = JiraProject;
|
|
54056
54751
|
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
54057
54752
|
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
54058
54753
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>>;
|
|
@@ -61994,6 +62689,10 @@ export declare enum HelpCenterAccessControlType {
|
|
|
61994
62689
|
Internal = "INTERNAL",
|
|
61995
62690
|
Public = "PUBLIC"
|
|
61996
62691
|
}
|
|
62692
|
+
export declare type HelpCenterAddProjectMappingInput = {
|
|
62693
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62694
|
+
syncNewProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62695
|
+
};
|
|
61997
62696
|
export declare type HelpCenterAnnouncement = {
|
|
61998
62697
|
__typename?: 'HelpCenterAnnouncement';
|
|
61999
62698
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -62089,6 +62788,7 @@ export declare type HelpCenterCreateInput = {
|
|
|
62089
62788
|
helpCenterType?: InputMaybe<HelpCenterTypeInput>;
|
|
62090
62789
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
62091
62790
|
name: HelpCenterNameInput;
|
|
62791
|
+
projectMapping?: InputMaybe<HelpCenterAddProjectMappingInput>;
|
|
62092
62792
|
slug: Scalars['String']['input'];
|
|
62093
62793
|
workspaceARI: Scalars['String']['input'];
|
|
62094
62794
|
};
|
|
@@ -65201,6 +65901,27 @@ export declare type JiraAffectedServicesInput = {
|
|
|
65201
65901
|
serviceId: Scalars['ID']['input'];
|
|
65202
65902
|
};
|
|
65203
65903
|
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
65904
|
+
export declare type JiraAggregatedStatusField = JiraIssueField & Node & {
|
|
65905
|
+
__typename?: 'JiraAggregatedStatusField';
|
|
65906
|
+
aggregatedStatusCategory?: Maybe<JiraStatusCategoryProgressConnection>;
|
|
65907
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
65908
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
65909
|
+
fieldId: Scalars['String']['output'];
|
|
65910
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
65911
|
+
id: Scalars['ID']['output'];
|
|
65912
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
65913
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
65914
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
65915
|
+
issue?: Maybe<JiraIssue>;
|
|
65916
|
+
name: Scalars['String']['output'];
|
|
65917
|
+
type: Scalars['String']['output'];
|
|
65918
|
+
};
|
|
65919
|
+
export declare type JiraAggregatedStatusFieldAggregatedStatusCategoryArgs = {
|
|
65920
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65921
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
65922
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65923
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65924
|
+
};
|
|
65204
65925
|
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineVirtualField & Node & {
|
|
65205
65926
|
__typename?: 'JiraAggregatedTimelineField';
|
|
65206
65927
|
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
@@ -69443,6 +70164,12 @@ export declare type JiraDeleteAllAttachmentsPayload = Payload & {
|
|
|
69443
70164
|
errors?: Maybe<Array<MutationError>>;
|
|
69444
70165
|
success: Scalars['Boolean']['output'];
|
|
69445
70166
|
};
|
|
70167
|
+
export declare type JiraDeleteAllIssueResourcesPayload = Payload & {
|
|
70168
|
+
__typename?: 'JiraDeleteAllIssueResourcesPayload';
|
|
70169
|
+
deletedResourceARIs?: Maybe<Array<Scalars['ID']['output']>>;
|
|
70170
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70171
|
+
success: Scalars['Boolean']['output'];
|
|
70172
|
+
};
|
|
69446
70173
|
export declare type JiraDeleteAttachmentsPayload = Payload & {
|
|
69447
70174
|
__typename?: 'JiraDeleteAttachmentsPayload';
|
|
69448
70175
|
deletedAttachmentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -75931,6 +76658,7 @@ export declare type JiraMutation = {
|
|
|
75931
76658
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
75932
76659
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
75933
76660
|
deleteAllAttachments?: Maybe<JiraDeleteAllAttachmentsPayload>;
|
|
76661
|
+
deleteAllConsolidatedResources?: Maybe<JiraDeleteAllIssueResourcesPayload>;
|
|
75934
76662
|
deleteAttachments?: Maybe<JiraDeleteAttachmentsPayload>;
|
|
75935
76663
|
deleteComment?: Maybe<JiraDeleteCommentPayload>;
|
|
75936
76664
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
@@ -76270,6 +76998,9 @@ export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
|
76270
76998
|
export declare type JiraMutationDeleteAllAttachmentsArgs = {
|
|
76271
76999
|
issueId: Scalars['ID']['input'];
|
|
76272
77000
|
};
|
|
77001
|
+
export declare type JiraMutationDeleteAllConsolidatedResourcesArgs = {
|
|
77002
|
+
issueId: Scalars['ID']['input'];
|
|
77003
|
+
};
|
|
76273
77004
|
export declare type JiraMutationDeleteAttachmentsArgs = {
|
|
76274
77005
|
ids: Array<Scalars['ID']['input']>;
|
|
76275
77006
|
};
|
|
@@ -84148,6 +84879,7 @@ export declare type JiraSubscription = {
|
|
|
84148
84879
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
84149
84880
|
onIssueDeletedByProjectsNoEnrichment?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
84150
84881
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
84882
|
+
onIssueMutatedByIssueIdFromDiffUserNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
84151
84883
|
onIssueMutatedByIssueIdNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
84152
84884
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
84153
84885
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
@@ -84240,6 +84972,10 @@ export declare type JiraSubscriptionOnIssueDeletedByProjectsNoEnrichmentArgs = {
|
|
|
84240
84972
|
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
84241
84973
|
input: JiraIssueExportInput;
|
|
84242
84974
|
};
|
|
84975
|
+
export declare type JiraSubscriptionOnIssueMutatedByIssueIdFromDiffUserNoEnrichmentArgs = {
|
|
84976
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
84977
|
+
issueId: Scalars['ID']['input'];
|
|
84978
|
+
};
|
|
84243
84979
|
export declare type JiraSubscriptionOnIssueMutatedByIssueIdNoEnrichmentArgs = {
|
|
84244
84980
|
issueId: Scalars['ID']['input'];
|
|
84245
84981
|
};
|
|
@@ -86340,6 +87076,7 @@ export declare type JiraViewQueryInput = {
|
|
|
86340
87076
|
projectKeyAndItemQuery?: InputMaybe<JiraViewProjectKeyAndItemQuery>;
|
|
86341
87077
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
86342
87078
|
};
|
|
87079
|
+
export declare type JiraViewResult = JiraBoardView | QueryError;
|
|
86343
87080
|
export declare type JiraViewScopeInput = {
|
|
86344
87081
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
86345
87082
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
@@ -88007,6 +88744,65 @@ export declare type JsmChatWebSubscriptionResponse = {
|
|
|
88007
88744
|
conversation?: Maybe<JsmChatMessageEdge>;
|
|
88008
88745
|
result?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
|
|
88009
88746
|
};
|
|
88747
|
+
export declare type JsmConversationClaimConversationInput = {
|
|
88748
|
+
conversationId: Scalars['ID']['input'];
|
|
88749
|
+
};
|
|
88750
|
+
export declare type JsmConversationClaimConversationPayload = Payload & {
|
|
88751
|
+
__typename?: 'JsmConversationClaimConversationPayload';
|
|
88752
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88753
|
+
success: Scalars['Boolean']['output'];
|
|
88754
|
+
};
|
|
88755
|
+
export declare type JsmConversationCloseConversationInput = {
|
|
88756
|
+
conversationId: Scalars['ID']['input'];
|
|
88757
|
+
};
|
|
88758
|
+
export declare type JsmConversationCloseConversationPayload = Payload & {
|
|
88759
|
+
__typename?: 'JsmConversationCloseConversationPayload';
|
|
88760
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88761
|
+
success: Scalars['Boolean']['output'];
|
|
88762
|
+
};
|
|
88763
|
+
export declare type JsmConversationConversation = {
|
|
88764
|
+
__typename?: 'JsmConversationConversation';
|
|
88765
|
+
assignee?: Maybe<Scalars['ID']['output']>;
|
|
88766
|
+
conversationId: Scalars['ID']['output'];
|
|
88767
|
+
conversationStatus?: Maybe<JsmConversationConversationStatus>;
|
|
88768
|
+
helpseeker?: Maybe<Scalars['ID']['output']>;
|
|
88769
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
88770
|
+
waitTimeLeft?: Maybe<Scalars['Long']['output']>;
|
|
88771
|
+
};
|
|
88772
|
+
export declare type JsmConversationConversationConnection = {
|
|
88773
|
+
__typename?: 'JsmConversationConversationConnection';
|
|
88774
|
+
edges?: Maybe<Array<JsmConversationConversationEdge>>;
|
|
88775
|
+
nodes?: Maybe<Array<Maybe<JsmConversationConversation>>>;
|
|
88776
|
+
pageInfo: PageInfo;
|
|
88777
|
+
};
|
|
88778
|
+
export declare type JsmConversationConversationEdge = {
|
|
88779
|
+
__typename?: 'JsmConversationConversationEdge';
|
|
88780
|
+
cursor: Scalars['String']['output'];
|
|
88781
|
+
node?: Maybe<JsmConversationConversation>;
|
|
88782
|
+
};
|
|
88783
|
+
export declare enum JsmConversationConversationStatus {
|
|
88784
|
+
Closed = "CLOSED"
|
|
88785
|
+
}
|
|
88786
|
+
export declare type JsmConversationMessage = {
|
|
88787
|
+
__typename?: 'JsmConversationMessage';
|
|
88788
|
+
author?: Maybe<Scalars['ID']['output']>;
|
|
88789
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
88790
|
+
conversationId: Scalars['ID']['output'];
|
|
88791
|
+
messageId: Scalars['ID']['output'];
|
|
88792
|
+
sentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
88793
|
+
sequenceId?: Maybe<Scalars['String']['output']>;
|
|
88794
|
+
};
|
|
88795
|
+
export declare type JsmConversationMessageConnection = {
|
|
88796
|
+
__typename?: 'JsmConversationMessageConnection';
|
|
88797
|
+
edges?: Maybe<Array<JsmConversationMessageEdge>>;
|
|
88798
|
+
nodes?: Maybe<Array<Maybe<JsmConversationMessage>>>;
|
|
88799
|
+
pageInfo: PageInfo;
|
|
88800
|
+
};
|
|
88801
|
+
export declare type JsmConversationMessageEdge = {
|
|
88802
|
+
__typename?: 'JsmConversationMessageEdge';
|
|
88803
|
+
cursor: Scalars['String']['output'];
|
|
88804
|
+
node?: Maybe<JsmConversationMessage>;
|
|
88805
|
+
};
|
|
88010
88806
|
export declare type JsonContentProperty = {
|
|
88011
88807
|
__typename?: 'JsonContentProperty';
|
|
88012
88808
|
content?: Maybe<Content>;
|
|
@@ -88339,15 +89135,21 @@ export declare type KitsuneChunk = KitsuneNode & {
|
|
|
88339
89135
|
_id: Scalars['ID']['output'];
|
|
88340
89136
|
content?: Maybe<Scalars['String']['output']>;
|
|
88341
89137
|
};
|
|
88342
|
-
export declare type KitsuneFeedback =
|
|
89138
|
+
export declare type KitsuneFeedback = Node & {
|
|
88343
89139
|
__typename?: 'KitsuneFeedback';
|
|
88344
|
-
_id: Scalars['ID']['output'];
|
|
88345
89140
|
content?: Maybe<Scalars['String']['output']>;
|
|
89141
|
+
id: Scalars['ID']['output'];
|
|
88346
89142
|
title?: Maybe<Scalars['String']['output']>;
|
|
88347
89143
|
};
|
|
88348
89144
|
export declare type KitsuneNode = {
|
|
88349
89145
|
_id: Scalars['ID']['output'];
|
|
88350
89146
|
};
|
|
89147
|
+
export declare type KitsuneSourceInput = {
|
|
89148
|
+
sourceWeb?: InputMaybe<KitsuneSourceInputWeb>;
|
|
89149
|
+
};
|
|
89150
|
+
export declare type KitsuneSourceInputWeb = {
|
|
89151
|
+
url: Scalars['String']['input'];
|
|
89152
|
+
};
|
|
88351
89153
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
88352
89154
|
__typename?: 'KnowledgeBaseAccessibleLinkedSourceResult';
|
|
88353
89155
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -88371,6 +89173,7 @@ export declare type KnowledgeBaseAgentArticleSearchInput = {
|
|
|
88371
89173
|
projectIdentifier: Scalars['String']['input'];
|
|
88372
89174
|
searchFilters?: InputMaybe<KnowledgeBaseSearchFiltersInput>;
|
|
88373
89175
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
89176
|
+
shouldFetchCategories?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88374
89177
|
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
88375
89178
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
88376
89179
|
};
|
|
@@ -88405,7 +89208,6 @@ export declare type KnowledgeBaseArticleMetadata = {
|
|
|
88405
89208
|
__typename?: 'KnowledgeBaseArticleMetadata';
|
|
88406
89209
|
categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
|
|
88407
89210
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
88408
|
-
viewCount?: Maybe<Scalars['Int']['output']>;
|
|
88409
89211
|
};
|
|
88410
89212
|
export declare type KnowledgeBaseArticleSearchInput = {
|
|
88411
89213
|
articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -88429,6 +89231,7 @@ export declare enum KnowledgeBaseArticleSearchSortOrder {
|
|
|
88429
89231
|
}
|
|
88430
89232
|
export declare type KnowledgeBaseArticleSource = {
|
|
88431
89233
|
__typename?: 'KnowledgeBaseArticleSource';
|
|
89234
|
+
additionalIdentifier?: Maybe<Scalars['String']['output']>;
|
|
88432
89235
|
ari?: Maybe<Scalars['String']['output']>;
|
|
88433
89236
|
name?: Maybe<Scalars['String']['output']>;
|
|
88434
89237
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -88555,7 +89358,7 @@ export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
88555
89358
|
export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
88556
89359
|
export declare type KnowledgeBaseSearchFiltersInput = {
|
|
88557
89360
|
sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88558
|
-
sourceVisibility?: InputMaybe<Array<
|
|
89361
|
+
sourceVisibility?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88559
89362
|
sources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88560
89363
|
};
|
|
88561
89364
|
export declare type KnowledgeBaseSource = {
|
|
@@ -88608,10 +89411,6 @@ export declare type KnowledgeBaseSourceSuggestions = {
|
|
|
88608
89411
|
sourceSuggestions?: Maybe<Array<KnowledgeBaseSourceSuggestion>>;
|
|
88609
89412
|
};
|
|
88610
89413
|
export declare type KnowledgeBaseSourceSuggestionsResponse = KnowledgeBaseSourceSuggestions | QueryError;
|
|
88611
|
-
export declare enum KnowledgeBaseSourceVisibility {
|
|
88612
|
-
External = "EXTERNAL",
|
|
88613
|
-
Internal = "INTERNAL"
|
|
88614
|
-
}
|
|
88615
89414
|
export declare type KnowledgeBaseSources = {
|
|
88616
89415
|
__typename?: 'KnowledgeBaseSources';
|
|
88617
89416
|
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
@@ -88912,7 +89711,8 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
|
88912
89711
|
export declare enum KnowledgeDiscoveryDetectionType {
|
|
88913
89712
|
EntityRecognition = "ENTITY_RECOGNITION",
|
|
88914
89713
|
Heuristic = "HEURISTIC",
|
|
88915
|
-
Llm = "LLM"
|
|
89714
|
+
Llm = "LLM",
|
|
89715
|
+
Slm = "SLM"
|
|
88916
89716
|
}
|
|
88917
89717
|
export declare type KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput = {
|
|
88918
89718
|
bookmarkAdminhubId: Scalars['ID']['input'];
|
|
@@ -89700,25 +90500,46 @@ export declare type LinksSelf = {
|
|
|
89700
90500
|
__typename?: 'LinksSelf';
|
|
89701
90501
|
self?: Maybe<Scalars['String']['output']>;
|
|
89702
90502
|
};
|
|
90503
|
+
export declare type LiveChatClosed = {
|
|
90504
|
+
__typename?: 'LiveChatClosed';
|
|
90505
|
+
adf: Scalars['String']['output'];
|
|
90506
|
+
};
|
|
89703
90507
|
export declare enum LiveChatEventType {
|
|
89704
90508
|
ChatClosed = "CHAT_CLOSED",
|
|
90509
|
+
ChatStarted = "CHAT_STARTED",
|
|
89705
90510
|
ParticipantJoined = "PARTICIPANT_JOINED",
|
|
89706
90511
|
ParticipantLeft = "PARTICIPANT_LEFT",
|
|
89707
90512
|
SystemMessage = "SYSTEM_MESSAGE",
|
|
89708
90513
|
UserMessage = "USER_MESSAGE"
|
|
89709
90514
|
}
|
|
89710
|
-
export declare type
|
|
89711
|
-
__typename?: '
|
|
90515
|
+
export declare type LiveChatParticipantJoined = {
|
|
90516
|
+
__typename?: 'LiveChatParticipantJoined';
|
|
90517
|
+
adf: Scalars['String']['output'];
|
|
90518
|
+
};
|
|
90519
|
+
export declare type LiveChatParticipantLeft = {
|
|
90520
|
+
__typename?: 'LiveChatParticipantLeft';
|
|
90521
|
+
adf: Scalars['String']['output'];
|
|
90522
|
+
};
|
|
90523
|
+
export declare type LiveChatStarted = {
|
|
90524
|
+
__typename?: 'LiveChatStarted';
|
|
89712
90525
|
adf: Scalars['String']['output'];
|
|
89713
|
-
eventType: LiveChatEventType;
|
|
89714
|
-
senderAccountId?: Maybe<Scalars['String']['output']>;
|
|
89715
90526
|
};
|
|
90527
|
+
export declare type LiveChatSystemMessage = {
|
|
90528
|
+
__typename?: 'LiveChatSystemMessage';
|
|
90529
|
+
adf: Scalars['String']['output'];
|
|
90530
|
+
};
|
|
90531
|
+
export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatUserMessage;
|
|
89716
90532
|
export declare type LiveChatUpdateInput = {
|
|
89717
90533
|
adf: Scalars['String']['input'];
|
|
89718
90534
|
chatAri: Scalars['ID']['input'];
|
|
89719
90535
|
eventType: LiveChatEventType;
|
|
89720
90536
|
senderAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
89721
90537
|
};
|
|
90538
|
+
export declare type LiveChatUserMessage = {
|
|
90539
|
+
__typename?: 'LiveChatUserMessage';
|
|
90540
|
+
adf: Scalars['String']['output'];
|
|
90541
|
+
senderAccountId?: Maybe<Scalars['String']['output']>;
|
|
90542
|
+
};
|
|
89722
90543
|
export declare type LocalStorage = {
|
|
89723
90544
|
__typename?: 'LocalStorage';
|
|
89724
90545
|
booleanValues: Array<Maybe<LocalStorageBooleanPair>>;
|
|
@@ -90530,10 +91351,9 @@ export declare type MarketplaceConsoleAppInput = {
|
|
|
90530
91351
|
appName: Scalars['String']['input'];
|
|
90531
91352
|
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
90532
91353
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
91354
|
+
marketingLabels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
90533
91355
|
onDemandPaymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
90534
|
-
|
|
90535
|
-
summary?: InputMaybe<Scalars['String']['input']>;
|
|
90536
|
-
vendorId: Scalars['Int']['input'];
|
|
91356
|
+
vendorId?: InputMaybe<Scalars['Int']['input']>;
|
|
90537
91357
|
vendorLinks?: InputMaybe<MarketplaceConsoleAppVendorLinksInput>;
|
|
90538
91358
|
version: MarketplaceConsoleAppSoftwareVersionInput;
|
|
90539
91359
|
};
|
|
@@ -90951,11 +91771,11 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
90951
91771
|
Platinum = "PLATINUM",
|
|
90952
91772
|
Silver = "SILVER"
|
|
90953
91773
|
}
|
|
90954
|
-
export declare type MarketplaceConsoleDomainError = {
|
|
91774
|
+
export declare type MarketplaceConsoleDomainError = MarketplaceConsoleError & {
|
|
90955
91775
|
__typename?: 'MarketplaceConsoleDomainError';
|
|
90956
91776
|
code: Scalars['String']['output'];
|
|
90957
|
-
detail: Scalars['String']['output'];
|
|
90958
91777
|
id?: Maybe<Scalars['String']['output']>;
|
|
91778
|
+
message: Scalars['String']['output'];
|
|
90959
91779
|
status: Scalars['String']['output'];
|
|
90960
91780
|
title: Scalars['String']['output'];
|
|
90961
91781
|
};
|
|
@@ -94087,8 +94907,8 @@ export declare type MercuryDismissSuggestedFocusAreaFollowers = Payload & {
|
|
|
94087
94907
|
success: Scalars['Boolean']['output'];
|
|
94088
94908
|
};
|
|
94089
94909
|
export declare type MercuryDismissSuggestedFocusAreaFollowersInput = {
|
|
94090
|
-
|
|
94091
|
-
|
|
94910
|
+
focusAreaId: Scalars['ID']['input'];
|
|
94911
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
94092
94912
|
};
|
|
94093
94913
|
export declare enum MercuryEntityType {
|
|
94094
94914
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
@@ -94735,13 +95555,14 @@ export declare type MercuryInsightsQueryApi = {
|
|
|
94735
95555
|
};
|
|
94736
95556
|
export declare type MercuryInsightsQueryApiFocusAreaFollowerSuggestionsArgs = {
|
|
94737
95557
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94738
|
-
|
|
95558
|
+
focusAreaId: Scalars['ID']['input'];
|
|
94739
95559
|
};
|
|
94740
95560
|
export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
|
|
94741
95561
|
filter?: InputMaybe<MercuryFocusAreaInsightsFilter>;
|
|
94742
95562
|
focusAreaId: Scalars['ID']['input'];
|
|
94743
95563
|
};
|
|
94744
95564
|
export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
|
|
95565
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94745
95566
|
focusAreaId: Scalars['ID']['input'];
|
|
94746
95567
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
94747
95568
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97080,9 +97901,11 @@ export declare type Mutation = {
|
|
|
97080
97901
|
assetsDM_dataSourceCleansingRulesRunCleanse?: Maybe<AssetsDmDataSourceCleansingRulesRunCleanseResponse>;
|
|
97081
97902
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
97082
97903
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
97904
|
+
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
97083
97905
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
97084
97906
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
97085
97907
|
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
97908
|
+
assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
|
|
97086
97909
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
97087
97910
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
97088
97911
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
@@ -97201,6 +98024,7 @@ export declare type Mutation = {
|
|
|
97201
98024
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
97202
98025
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
97203
98026
|
confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
|
|
98027
|
+
confluence_updateAudioPreference?: Maybe<ConfluenceUpdateAudioPreferencePayload>;
|
|
97204
98028
|
confluence_updateBlogPost?: Maybe<ConfluenceUpdateBlogPostPayload>;
|
|
97205
98029
|
confluence_updateCalendarCustomEventType?: Maybe<ConfluenceUpdateCalendarCustomEventTypePayload>;
|
|
97206
98030
|
confluence_updateCalendarEvent?: Maybe<ConfluenceUpdateCalendarEventPayload>;
|
|
@@ -97295,7 +98119,7 @@ export declare type Mutation = {
|
|
|
97295
98119
|
csmAi_createAction?: Maybe<CsmAiCreateActionPayload>;
|
|
97296
98120
|
csmAi_createActionForAgent?: Maybe<CsmAiCreateActionPayload>;
|
|
97297
98121
|
csmAi_createCoachingContent?: Maybe<CsmAiCreateCoachingContentPayload>;
|
|
97298
|
-
csmAi_createEmbedWidget?: Maybe<
|
|
98122
|
+
csmAi_createEmbedWidget?: Maybe<CsmAiCreateWidgetPayload>;
|
|
97299
98123
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
97300
98124
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
97301
98125
|
csmAi_deleteKnowledgeSource?: Maybe<CsmAiDeleteKnowledgeSourcePayload>;
|
|
@@ -97415,15 +98239,19 @@ export declare type Mutation = {
|
|
|
97415
98239
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
97416
98240
|
goals_editRisk?: Maybe<TownsquareGoalsEditRiskPayload>;
|
|
97417
98241
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
98242
|
+
goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
|
|
97418
98243
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
97419
98244
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
97420
98245
|
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
98246
|
+
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
98247
|
+
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
97421
98248
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
97422
98249
|
goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
|
|
97423
98250
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
97424
98251
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
97425
98252
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
97426
98253
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
98254
|
+
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
97427
98255
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
97428
98256
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
97429
98257
|
graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
|
|
@@ -97552,10 +98380,12 @@ export declare type Mutation = {
|
|
|
97552
98380
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
97553
98381
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
97554
98382
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
98383
|
+
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
98384
|
+
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
97555
98385
|
jsw?: Maybe<JswMutation>;
|
|
97556
98386
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
97557
98387
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
97558
|
-
kitsune_suggestSnippets?: Maybe<
|
|
98388
|
+
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
97559
98389
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
97560
98390
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
97561
98391
|
knowledgeBase_linkSources?: Maybe<KnowledgeBaseLinkSourcesResponse>;
|
|
@@ -97648,6 +98478,7 @@ export declare type Mutation = {
|
|
|
97648
98478
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
97649
98479
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
97650
98480
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
98481
|
+
radar_deleteView?: Maybe<RadarView>;
|
|
97651
98482
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
97652
98483
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
97653
98484
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
@@ -97655,6 +98486,7 @@ export declare type Mutation = {
|
|
|
97655
98486
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
97656
98487
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
97657
98488
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
98489
|
+
radar_upsertView?: Maybe<RadarView>;
|
|
97658
98490
|
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
97659
98491
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
97660
98492
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
@@ -98147,6 +98979,11 @@ export declare type MutationAssetsDm_DataSourceRunTransformArgs = {
|
|
|
98147
98979
|
jobId: Scalars['ID']['input'];
|
|
98148
98980
|
workspaceId: Scalars['ID']['input'];
|
|
98149
98981
|
};
|
|
98982
|
+
export declare type MutationAssetsDm_DeleteDefaultAttributeMappingArgs = {
|
|
98983
|
+
cloudId: Scalars['ID']['input'];
|
|
98984
|
+
defaultObjectAttributeMappingId: Scalars['ID']['input'];
|
|
98985
|
+
workspaceId: Scalars['ID']['input'];
|
|
98986
|
+
};
|
|
98150
98987
|
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
98151
98988
|
cloudId: Scalars['ID']['input'];
|
|
98152
98989
|
tagId: Scalars['ID']['input'];
|
|
@@ -98162,6 +98999,11 @@ export declare type MutationAssetsDm_DissociateObjectTagArgs = {
|
|
|
98162
98999
|
input: AssetsDmObjectTagDissociateInput;
|
|
98163
99000
|
workspaceId: Scalars['ID']['input'];
|
|
98164
99001
|
};
|
|
99002
|
+
export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
|
|
99003
|
+
cloudId: Scalars['ID']['input'];
|
|
99004
|
+
payload: AssetsDmEditDefaultAttributeMappingInput;
|
|
99005
|
+
workspaceId: Scalars['ID']['input'];
|
|
99006
|
+
};
|
|
98165
99007
|
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
98166
99008
|
cloudId: Scalars['ID']['input'];
|
|
98167
99009
|
input: Array<AssetsDmObjectTagEditInput>;
|
|
@@ -98585,6 +99427,10 @@ export declare type MutationConfluence_UpdateAnswerArgs = {
|
|
|
98585
99427
|
cloudId: Scalars['ID']['input'];
|
|
98586
99428
|
input: ConfluenceUpdateAnswerInput;
|
|
98587
99429
|
};
|
|
99430
|
+
export declare type MutationConfluence_UpdateAudioPreferenceArgs = {
|
|
99431
|
+
cloudId: Scalars['ID']['input'];
|
|
99432
|
+
input: ConfluenceUpdateAudioPreferenceInput;
|
|
99433
|
+
};
|
|
98588
99434
|
export declare type MutationConfluence_UpdateBlogPostArgs = {
|
|
98589
99435
|
cloudId: Scalars['ID']['input'];
|
|
98590
99436
|
input: ConfluenceUpdateBlogPostInput;
|
|
@@ -99336,6 +100182,9 @@ export declare type MutationGoals_EditRiskArgs = {
|
|
|
99336
100182
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
99337
100183
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
99338
100184
|
};
|
|
100185
|
+
export declare type MutationGoals_GrantAccessArgs = {
|
|
100186
|
+
input: TownsquareGoalGrantAccessInput;
|
|
100187
|
+
};
|
|
99339
100188
|
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
99340
100189
|
input: TownsquareGoalsLinkWorkItemInput;
|
|
99341
100190
|
};
|
|
@@ -99345,6 +100194,12 @@ export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
|
99345
100194
|
export declare type MutationGoals_RemoveMetricTargetArgs = {
|
|
99346
100195
|
input: TownsquareGoalsRemoveMetricTargetInput;
|
|
99347
100196
|
};
|
|
100197
|
+
export declare type MutationGoals_RevokeAccessArgs = {
|
|
100198
|
+
input: TownsquareGoalRevokeAccessInput;
|
|
100199
|
+
};
|
|
100200
|
+
export declare type MutationGoals_SetUserWatchingTeamArgs = {
|
|
100201
|
+
input: TownsquareGoalsSetUserWatchingTeamInput;
|
|
100202
|
+
};
|
|
99348
100203
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
99349
100204
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
99350
100205
|
};
|
|
@@ -99363,6 +100218,9 @@ export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
|
99363
100218
|
export declare type MutationGrantContentAccessArgs = {
|
|
99364
100219
|
grantContentAccessInput: GrantContentAccessInput;
|
|
99365
100220
|
};
|
|
100221
|
+
export declare type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
100222
|
+
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
100223
|
+
};
|
|
99366
100224
|
export declare type MutationGraphIntegration_AddTwgCapabilityContainerArgs = {
|
|
99367
100225
|
input: GraphIntegrationAddTwgCapabilityContainerInput;
|
|
99368
100226
|
};
|
|
@@ -99762,9 +100620,16 @@ export declare type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
|
99762
100620
|
input: JsmChannelsTaskAgentConfigurationInput;
|
|
99763
100621
|
jiraProjectAri: Scalars['ID']['input'];
|
|
99764
100622
|
};
|
|
100623
|
+
export declare type MutationJsmConversation_ClaimConversationArgs = {
|
|
100624
|
+
input: JsmConversationClaimConversationInput;
|
|
100625
|
+
};
|
|
100626
|
+
export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
100627
|
+
input: JsmConversationCloseConversationInput;
|
|
100628
|
+
};
|
|
99765
100629
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
99766
100630
|
content: Scalars['String']['input'];
|
|
99767
100631
|
projectAri: Scalars['ID']['input'];
|
|
100632
|
+
source?: InputMaybe<KitsuneSourceInput>;
|
|
99768
100633
|
title: Scalars['String']['input'];
|
|
99769
100634
|
};
|
|
99770
100635
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
@@ -100042,6 +100907,9 @@ export declare type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
|
100042
100907
|
cloudId: Scalars['ID']['input'];
|
|
100043
100908
|
input: RadarRoleAssignmentRequest;
|
|
100044
100909
|
};
|
|
100910
|
+
export declare type MutationRadar_DeleteViewArgs = {
|
|
100911
|
+
id: Scalars['ID']['input'];
|
|
100912
|
+
};
|
|
100045
100913
|
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
100046
100914
|
cloudId: Scalars['ID']['input'];
|
|
100047
100915
|
input: RadarConnectorsInput;
|
|
@@ -100070,6 +100938,10 @@ export declare type MutationRadar_UpsertLastAppliedFilterArgs = {
|
|
|
100070
100938
|
cloudId: Scalars['ID']['input'];
|
|
100071
100939
|
input: RadarLastAppliedFilterInput;
|
|
100072
100940
|
};
|
|
100941
|
+
export declare type MutationRadar_UpsertViewArgs = {
|
|
100942
|
+
cloudId: Scalars['ID']['input'];
|
|
100943
|
+
input: RadarUpsertViewInput;
|
|
100944
|
+
};
|
|
100073
100945
|
export declare type MutationRadar_UpsertWorkTypeAllocationsArgs = {
|
|
100074
100946
|
cloudId: Scalars['ID']['input'];
|
|
100075
100947
|
input: Array<RadarWorkTypeAllocationInput>;
|
|
@@ -103016,8 +103888,8 @@ export declare type PolarisValueRule = {
|
|
|
103016
103888
|
};
|
|
103017
103889
|
export declare type PolarisView = {
|
|
103018
103890
|
__typename?: 'PolarisView';
|
|
103891
|
+
columnSize?: Maybe<PolarisColumnSize>;
|
|
103019
103892
|
comments?: Maybe<Array<PolarisComment>>;
|
|
103020
|
-
connectionsColumnSize?: Maybe<PolarisColumnSize>;
|
|
103021
103893
|
connectionsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
103022
103894
|
connectionsLayoutType?: Maybe<PolarisConnectionsLayout>;
|
|
103023
103895
|
containsArchived: Scalars['Boolean']['output'];
|
|
@@ -103606,6 +104478,7 @@ export declare type Query = {
|
|
|
103606
104478
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
103607
104479
|
admin_org?: Maybe<AdminOrganization>;
|
|
103608
104480
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
104481
|
+
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
103609
104482
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
103610
104483
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
103611
104484
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
@@ -103638,9 +104511,10 @@ export declare type Query = {
|
|
|
103638
104511
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
103639
104512
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
103640
104513
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
104514
|
+
agentStudio_getWidgetsByAgentIdAndContainerType?: Maybe<AgentStudioWidgetsByAgentIdAndContainerTypeResult>;
|
|
103641
104515
|
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
103642
104516
|
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
|
|
103643
|
-
agentStudio_jobRuns:
|
|
104517
|
+
agentStudio_jobRuns: AgentStudioBatchEvaluationJobRunResult;
|
|
103644
104518
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
103645
104519
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
103646
104520
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -103660,7 +104534,6 @@ export declare type Query = {
|
|
|
103660
104534
|
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
103661
104535
|
app?: Maybe<App>;
|
|
103662
104536
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
103663
|
-
appAdmin?: Maybe<AppAdminQuery>;
|
|
103664
104537
|
appContainer?: Maybe<AppContainer>;
|
|
103665
104538
|
appContainerRegistryLogin?: Maybe<AppContainerRegistryLogin>;
|
|
103666
104539
|
appContainerServices?: Maybe<AppContainerServices>;
|
|
@@ -103696,8 +104569,11 @@ export declare type Query = {
|
|
|
103696
104569
|
assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
|
|
103697
104570
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
103698
104571
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
104572
|
+
assetsDM_defaultAttributeMapping?: Maybe<AssetsDmDefaultAttributeMappingResponse>;
|
|
103699
104573
|
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
103700
104574
|
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
104575
|
+
assetsDM_getMappingMatrix?: Maybe<AssetsDmMappingMatrixResponse>;
|
|
104576
|
+
assetsDM_jobData?: Maybe<AssetsDmJobDataResponse>;
|
|
103701
104577
|
assetsDM_notifications?: Maybe<AssetsDmNotificationResponse>;
|
|
103702
104578
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
103703
104579
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
@@ -103710,6 +104586,7 @@ export declare type Query = {
|
|
|
103710
104586
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
103711
104587
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
103712
104588
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
104589
|
+
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
103713
104590
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
103714
104591
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
103715
104592
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
@@ -103842,6 +104719,7 @@ export declare type Query = {
|
|
|
103842
104719
|
confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
|
|
103843
104720
|
confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
|
|
103844
104721
|
confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
|
|
104722
|
+
confluence_nbmPerfScanResult?: Maybe<ConfluenceNbmPerfScanResult>;
|
|
103845
104723
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
103846
104724
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
103847
104725
|
confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
|
|
@@ -104165,6 +105043,7 @@ export declare type Query = {
|
|
|
104165
105043
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
104166
105044
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
104167
105045
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
105046
|
+
jira_view?: Maybe<JiraViewResult>;
|
|
104168
105047
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
104169
105048
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
104170
105049
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -104174,7 +105053,10 @@ export declare type Query = {
|
|
|
104174
105053
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
104175
105054
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
104176
105055
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
105056
|
+
jsmConversation_conversations?: Maybe<JsmConversationConversationConnection>;
|
|
105057
|
+
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
104177
105058
|
jsw?: Maybe<JswQuery>;
|
|
105059
|
+
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
104178
105060
|
kitsune_hello?: Maybe<Scalars['String']['output']>;
|
|
104179
105061
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
104180
105062
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -104335,6 +105217,9 @@ export declare type Query = {
|
|
|
104335
105217
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
104336
105218
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
104337
105219
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
105220
|
+
radar_viewByAri?: Maybe<RadarView>;
|
|
105221
|
+
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
105222
|
+
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
104338
105223
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
104339
105224
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
104340
105225
|
radar_workspace: RadarWorkspace;
|
|
@@ -104625,6 +105510,16 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
104625
105510
|
principalId: Scalars['ID']['input'];
|
|
104626
105511
|
resourceId: Scalars['ID']['input'];
|
|
104627
105512
|
};
|
|
105513
|
+
export declare type QueryAdmin_TokensArgs = {
|
|
105514
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
105515
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
105516
|
+
filters?: InputMaybe<AdminTokenFilters>;
|
|
105517
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105518
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
105519
|
+
orgId: Scalars['ID']['input'];
|
|
105520
|
+
sortBy?: InputMaybe<AdminSortBy>;
|
|
105521
|
+
tokenType: AdminTokenType;
|
|
105522
|
+
};
|
|
104628
105523
|
export declare type QueryAdmin_UnitCreateStatusArgs = {
|
|
104629
105524
|
orgId: Scalars['ID']['input'];
|
|
104630
105525
|
requestId: Scalars['ID']['input'];
|
|
@@ -104768,7 +105663,7 @@ export declare type QueryAgentStudio_DatasetsArgs = {
|
|
|
104768
105663
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104769
105664
|
productType: AgentStudioProductType;
|
|
104770
105665
|
projectContainerAri: Scalars['ID']['input'];
|
|
104771
|
-
projectId
|
|
105666
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
104772
105667
|
};
|
|
104773
105668
|
export declare type QueryAgentStudio_EvaluationProjectArgs = {
|
|
104774
105669
|
cloudId: Scalars['String']['input'];
|
|
@@ -104803,6 +105698,11 @@ export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
|
|
|
104803
105698
|
agentId: Scalars['ID']['input'];
|
|
104804
105699
|
cloudId: Scalars['String']['input'];
|
|
104805
105700
|
};
|
|
105701
|
+
export declare type QueryAgentStudio_GetWidgetsByAgentIdAndContainerTypeArgs = {
|
|
105702
|
+
agentId: Scalars['ID']['input'];
|
|
105703
|
+
cloudId: Scalars['String']['input'];
|
|
105704
|
+
widgetContainerType: AgentStudioWidgetContainerType;
|
|
105705
|
+
};
|
|
104806
105706
|
export declare type QueryAgentStudio_InsightsConfigurationArgs = {
|
|
104807
105707
|
cloudId: Scalars['String']['input'];
|
|
104808
105708
|
id: Scalars['ID']['input'];
|
|
@@ -104916,9 +105816,6 @@ export declare type QueryAppActiveTunnelsArgs = {
|
|
|
104916
105816
|
appId: Scalars['ID']['input'];
|
|
104917
105817
|
environmentId: Scalars['ID']['input'];
|
|
104918
105818
|
};
|
|
104919
|
-
export declare type QueryAppAdminArgs = {
|
|
104920
|
-
appId: Scalars['ID']['input'];
|
|
104921
|
-
};
|
|
104922
105819
|
export declare type QueryAppContainerArgs = {
|
|
104923
105820
|
appId: Scalars['ID']['input'];
|
|
104924
105821
|
containerKey: Scalars['String']['input'];
|
|
@@ -105096,6 +105993,13 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
105096
105993
|
dataSourceId: Scalars['ID']['input'];
|
|
105097
105994
|
workspaceId: Scalars['ID']['input'];
|
|
105098
105995
|
};
|
|
105996
|
+
export declare type QueryAssetsDm_DefaultAttributeMappingArgs = {
|
|
105997
|
+
cloudId: Scalars['ID']['input'];
|
|
105998
|
+
filterBy?: InputMaybe<AssetsDmDefaultAttributeMappingFilterBy>;
|
|
105999
|
+
pageInfo?: InputMaybe<AssetsDmDefaultAttributeMappingPageInfoInput>;
|
|
106000
|
+
sortBy?: InputMaybe<AssetsDmDefaultAttributeMappingSortBy>;
|
|
106001
|
+
workspaceId: Scalars['ID']['input'];
|
|
106002
|
+
};
|
|
105099
106003
|
export declare type QueryAssetsDm_GetCleansingExecutiveArgs = {
|
|
105100
106004
|
cloudId: Scalars['ID']['input'];
|
|
105101
106005
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -105106,6 +106010,18 @@ export declare type QueryAssetsDm_GetDataSourceForCleansingArgs = {
|
|
|
105106
106010
|
dataSourceId: Scalars['ID']['input'];
|
|
105107
106011
|
workspaceId: Scalars['ID']['input'];
|
|
105108
106012
|
};
|
|
106013
|
+
export declare type QueryAssetsDm_GetMappingMatrixArgs = {
|
|
106014
|
+
cloudId: Scalars['ID']['input'];
|
|
106015
|
+
objectClassId: Scalars['String']['input'];
|
|
106016
|
+
workspaceId: Scalars['ID']['input'];
|
|
106017
|
+
};
|
|
106018
|
+
export declare type QueryAssetsDm_JobDataArgs = {
|
|
106019
|
+
cloudId: Scalars['ID']['input'];
|
|
106020
|
+
dataType: AssetsDmJobDataType;
|
|
106021
|
+
jobId: Scalars['ID']['input'];
|
|
106022
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
106023
|
+
workspaceId: Scalars['ID']['input'];
|
|
106024
|
+
};
|
|
105109
106025
|
export declare type QueryAssetsDm_NotificationsArgs = {
|
|
105110
106026
|
cloudId: Scalars['ID']['input'];
|
|
105111
106027
|
payload: AssetsDmNotificationPayload;
|
|
@@ -105135,7 +106051,10 @@ export declare type QueryAssetsDm_ObjectHistoryArgs = {
|
|
|
105135
106051
|
};
|
|
105136
106052
|
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
105137
106053
|
cloudId: Scalars['ID']['input'];
|
|
106054
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
105138
106055
|
objectId: Scalars['ID']['input'];
|
|
106056
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
106057
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
105139
106058
|
workspaceId: Scalars['ID']['input'];
|
|
105140
106059
|
};
|
|
105141
106060
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
@@ -105175,6 +106094,11 @@ export declare type QueryAssetsDm_RawDataArgs = {
|
|
|
105175
106094
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
105176
106095
|
workspaceId: Scalars['ID']['input'];
|
|
105177
106096
|
};
|
|
106097
|
+
export declare type QueryAssetsDm_SavedSearchDetailsArgs = {
|
|
106098
|
+
cloudId: Scalars['ID']['input'];
|
|
106099
|
+
savedSearchId: Scalars['ID']['input'];
|
|
106100
|
+
workspaceId: Scalars['ID']['input'];
|
|
106101
|
+
};
|
|
105178
106102
|
export declare type QueryAssetsDm_SavedSearchesListArgs = {
|
|
105179
106103
|
cloudId: Scalars['ID']['input'];
|
|
105180
106104
|
objectId: Scalars['ID']['input'];
|
|
@@ -105723,6 +106647,10 @@ export declare type QueryConfluence_NbmPerfReportListArgs = {
|
|
|
105723
106647
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105724
106648
|
status?: InputMaybe<ConfluenceNbmScanStatus>;
|
|
105725
106649
|
};
|
|
106650
|
+
export declare type QueryConfluence_NbmPerfScanResultArgs = {
|
|
106651
|
+
cloudId: Scalars['ID']['input'];
|
|
106652
|
+
scanId: Scalars['ID']['input'];
|
|
106653
|
+
};
|
|
105726
106654
|
export declare type QueryConfluence_NbmScanListArgs = {
|
|
105727
106655
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
105728
106656
|
cloudId: Scalars['ID']['input'];
|
|
@@ -107102,6 +108030,9 @@ export declare type QueryJira_UserSegRedirectAdviceArgs = {
|
|
|
107102
108030
|
accountId: Scalars['ID']['input'];
|
|
107103
108031
|
cloudId: Scalars['ID']['input'];
|
|
107104
108032
|
};
|
|
108033
|
+
export declare type QueryJira_ViewArgs = {
|
|
108034
|
+
input: JiraViewQueryInput;
|
|
108035
|
+
};
|
|
107105
108036
|
export declare type QueryJpdViewsService_EchoArgs = {
|
|
107106
108037
|
cloudId: Scalars['ID']['input'];
|
|
107107
108038
|
message: Scalars['String']['input'];
|
|
@@ -107136,6 +108067,23 @@ export declare type QueryJsmChannels_TaskAgentsArgs = {
|
|
|
107136
108067
|
experience: JsmChannelsExperience;
|
|
107137
108068
|
jiraProjectAri: Scalars['ID']['input'];
|
|
107138
108069
|
};
|
|
108070
|
+
export declare type QueryJsmConversation_ConversationsArgs = {
|
|
108071
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108072
|
+
cloudId: Scalars['ID']['input'];
|
|
108073
|
+
conversationAssignee?: InputMaybe<Scalars['String']['input']>;
|
|
108074
|
+
conversationStatus?: InputMaybe<Scalars['String']['input']>;
|
|
108075
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108076
|
+
projectKey: Scalars['String']['input'];
|
|
108077
|
+
};
|
|
108078
|
+
export declare type QueryJsmConversation_MessagesArgs = {
|
|
108079
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108080
|
+
cloudId: Scalars['ID']['input'];
|
|
108081
|
+
conversationAri: Scalars['ID']['input'];
|
|
108082
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108083
|
+
};
|
|
108084
|
+
export declare type QueryKitsune_FeedbacksArgs = {
|
|
108085
|
+
ids: Array<Scalars['ID']['input']>;
|
|
108086
|
+
};
|
|
107139
108087
|
export declare type QueryKitsune_HelloArgs = {
|
|
107140
108088
|
projectAri: Scalars['ID']['input'];
|
|
107141
108089
|
};
|
|
@@ -107568,6 +108516,7 @@ export declare type QueryProjects_SearchJiraWorkItemsToLinkArgs = {
|
|
|
107568
108516
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107569
108517
|
projectId: Scalars['ID']['input'];
|
|
107570
108518
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
108519
|
+
strictlyReturnFirstItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
107571
108520
|
};
|
|
107572
108521
|
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
107573
108522
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
@@ -107676,6 +108625,15 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
107676
108625
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107677
108626
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
107678
108627
|
};
|
|
108628
|
+
export declare type QueryRadar_ViewByAriArgs = {
|
|
108629
|
+
id: Scalars['ID']['input'];
|
|
108630
|
+
};
|
|
108631
|
+
export declare type QueryRadar_ViewsByArisArgs = {
|
|
108632
|
+
ids: Array<Scalars['ID']['input']>;
|
|
108633
|
+
};
|
|
108634
|
+
export declare type QueryRadar_ViewsSearchArgs = {
|
|
108635
|
+
cloudId: Scalars['ID']['input'];
|
|
108636
|
+
};
|
|
107679
108637
|
export declare type QueryRadar_WorkerByAriArgs = {
|
|
107680
108638
|
id: Scalars['ID']['input'];
|
|
107681
108639
|
};
|
|
@@ -108465,12 +109423,6 @@ export declare type QuickReloadComment = {
|
|
|
108465
109423
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
108466
109424
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
108467
109425
|
};
|
|
108468
|
-
export declare type QuotaInfo = {
|
|
108469
|
-
__typename?: 'QuotaInfo';
|
|
108470
|
-
contextAri: Scalars['ID']['output'];
|
|
108471
|
-
encrypted: Scalars['Boolean']['output'];
|
|
108472
|
-
quotaUsage: Scalars['Int']['output'];
|
|
108473
|
-
};
|
|
108474
109426
|
export declare type RadarAriFieldValue = {
|
|
108475
109427
|
__typename?: 'RadarAriFieldValue';
|
|
108476
109428
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -108968,6 +109920,15 @@ export declare type RadarUpdatePositionLaborCostResponse = {
|
|
|
108968
109920
|
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
108969
109921
|
success: Scalars['Boolean']['output'];
|
|
108970
109922
|
};
|
|
109923
|
+
export declare type RadarUpsertViewInput = {
|
|
109924
|
+
groupingField?: InputMaybe<Scalars['String']['input']>;
|
|
109925
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
109926
|
+
orderedColumns?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
109927
|
+
pageName: RadarViewPageName;
|
|
109928
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
109929
|
+
viewName: Scalars['String']['input'];
|
|
109930
|
+
visibility: RadarViewVisibility;
|
|
109931
|
+
};
|
|
108971
109932
|
export declare type RadarUrlFieldValue = {
|
|
108972
109933
|
__typename?: 'RadarUrlFieldValue';
|
|
108973
109934
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -108986,6 +109947,39 @@ export declare enum RadarUserFieldPermission {
|
|
|
108986
109947
|
PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
|
|
108987
109948
|
PartialOnlySelf = "PartialOnlySelf"
|
|
108988
109949
|
}
|
|
109950
|
+
export declare type RadarView = Node & {
|
|
109951
|
+
__typename?: 'RadarView';
|
|
109952
|
+
groupingField?: Maybe<Scalars['String']['output']>;
|
|
109953
|
+
id: Scalars['ID']['output'];
|
|
109954
|
+
orderedColumns?: Maybe<Array<Scalars['String']['output']>>;
|
|
109955
|
+
ownerAaid: Scalars['ID']['output'];
|
|
109956
|
+
pageName: RadarViewPageName;
|
|
109957
|
+
rql?: Maybe<Scalars['String']['output']>;
|
|
109958
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
109959
|
+
viewName: Scalars['String']['output'];
|
|
109960
|
+
visibility: RadarViewVisibility;
|
|
109961
|
+
workspaceId: Scalars['ID']['output'];
|
|
109962
|
+
};
|
|
109963
|
+
export declare type RadarViewConnection = {
|
|
109964
|
+
__typename?: 'RadarViewConnection';
|
|
109965
|
+
edges: Array<RadarViewEdge>;
|
|
109966
|
+
nodes: Array<RadarView>;
|
|
109967
|
+
pageInfo: PageInfo;
|
|
109968
|
+
totalCount: Scalars['Int']['output'];
|
|
109969
|
+
};
|
|
109970
|
+
export declare type RadarViewEdge = {
|
|
109971
|
+
__typename?: 'RadarViewEdge';
|
|
109972
|
+
cursor: Scalars['String']['output'];
|
|
109973
|
+
node: RadarView;
|
|
109974
|
+
};
|
|
109975
|
+
export declare enum RadarViewPageName {
|
|
109976
|
+
TalentPositionsPage = "TALENT_POSITIONS_PAGE",
|
|
109977
|
+
TalentSubPositionsPage = "TALENT_SUB_POSITIONS_PAGE"
|
|
109978
|
+
}
|
|
109979
|
+
export declare enum RadarViewVisibility {
|
|
109980
|
+
Restricted = "RESTRICTED",
|
|
109981
|
+
SharedReadOnly = "SHARED_READ_ONLY"
|
|
109982
|
+
}
|
|
108989
109983
|
export declare type RadarWorkAllocationUnit = {
|
|
108990
109984
|
__typename?: 'RadarWorkAllocationUnit';
|
|
108991
109985
|
name: Scalars['String']['output'];
|
|
@@ -111308,6 +112302,23 @@ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
|
111308
112302
|
type: SearchResultType;
|
|
111309
112303
|
url: Scalars['String']['output'];
|
|
111310
112304
|
};
|
|
112305
|
+
export declare type SearchResultAtlasTag = SearchResult & {
|
|
112306
|
+
__typename?: 'SearchResultAtlasTag';
|
|
112307
|
+
description: Scalars['String']['output'];
|
|
112308
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
112309
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
112310
|
+
id: Scalars['ID']['output'];
|
|
112311
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
112312
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
112313
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
112314
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
112315
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
112316
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
112317
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
112318
|
+
title: Scalars['String']['output'];
|
|
112319
|
+
type: SearchResultType;
|
|
112320
|
+
url: Scalars['String']['output'];
|
|
112321
|
+
};
|
|
111311
112322
|
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
111312
112323
|
__typename?: 'SearchResultBitbucketRepository';
|
|
111313
112324
|
description: Scalars['String']['output'];
|
|
@@ -132266,7 +133277,6 @@ export declare type SpfUpdateAskDescriptionInput = {
|
|
|
132266
133277
|
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
132267
133278
|
id: Scalars['ID']['input'];
|
|
132268
133279
|
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
132269
|
-
impactedWorkUrl?: InputMaybe<Scalars['String']['input']>;
|
|
132270
133280
|
};
|
|
132271
133281
|
export declare type SpfUpdateAskJustificationInput = {
|
|
132272
133282
|
id: Scalars['ID']['input'];
|
|
@@ -134479,6 +135489,7 @@ export declare type TeamMutation = {
|
|
|
134479
135489
|
addChild?: Maybe<TeamV2>;
|
|
134480
135490
|
addParent?: Maybe<TeamV2>;
|
|
134481
135491
|
assignTeamToType?: Maybe<TeamV2>;
|
|
135492
|
+
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
134482
135493
|
createTeam?: Maybe<TeamCreateTeamPayload>;
|
|
134483
135494
|
createTeamType?: Maybe<TeamType>;
|
|
134484
135495
|
removeChild?: Maybe<TeamV2>;
|
|
@@ -134500,6 +135511,11 @@ export declare type TeamMutationAssignTeamToTypeArgs = {
|
|
|
134500
135511
|
teamId: Scalars['ID']['input'];
|
|
134501
135512
|
typeId: Scalars['ID']['input'];
|
|
134502
135513
|
};
|
|
135514
|
+
export declare type TeamMutationBulkAssignTeamsToTypeArgs = {
|
|
135515
|
+
scopeId: Scalars['ID']['input'];
|
|
135516
|
+
teamIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
135517
|
+
typeId: Scalars['ID']['input'];
|
|
135518
|
+
};
|
|
134503
135519
|
export declare type TeamMutationCreateTeamArgs = {
|
|
134504
135520
|
input: TeamCreateTeamInput;
|
|
134505
135521
|
};
|
|
@@ -134547,6 +135563,7 @@ export declare type TeamQuery = {
|
|
|
134547
135563
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
134548
135564
|
teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
|
|
134549
135565
|
teamV2?: Maybe<TeamV2>;
|
|
135566
|
+
teamV3?: Maybe<TeamV2>;
|
|
134550
135567
|
teamsV2?: Maybe<Array<Maybe<TeamV2>>>;
|
|
134551
135568
|
typeInformation?: Maybe<TeamType>;
|
|
134552
135569
|
typesWithinScope?: Maybe<TeamTypeConnection>;
|
|
@@ -134581,6 +135598,9 @@ export declare type TeamQueryTeamV2Args = {
|
|
|
134581
135598
|
id: Scalars['ID']['input'];
|
|
134582
135599
|
siteId: Scalars['String']['input'];
|
|
134583
135600
|
};
|
|
135601
|
+
export declare type TeamQueryTeamV3Args = {
|
|
135602
|
+
id: Scalars['ID']['input'];
|
|
135603
|
+
};
|
|
134584
135604
|
export declare type TeamQueryTeamsV2Args = {
|
|
134585
135605
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
134586
135606
|
siteId: Scalars['String']['input'];
|
|
@@ -135721,6 +136741,10 @@ export declare type TownsquareGoalWorkItemsArgs = {
|
|
|
135721
136741
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
135722
136742
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135723
136743
|
};
|
|
136744
|
+
export declare enum TownsquareGoalAccessRoleInput {
|
|
136745
|
+
Editor = "EDITOR",
|
|
136746
|
+
Viewer = "VIEWER"
|
|
136747
|
+
}
|
|
135724
136748
|
export declare type TownsquareGoalCapabilities = {
|
|
135725
136749
|
__typename?: 'TownsquareGoalCapabilities';
|
|
135726
136750
|
canAddJiraAlignItems?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -135775,6 +136799,18 @@ export declare type TownsquareGoalEdge = {
|
|
|
135775
136799
|
cursor: Scalars['String']['output'];
|
|
135776
136800
|
node?: Maybe<TownsquareGoal>;
|
|
135777
136801
|
};
|
|
136802
|
+
export declare type TownsquareGoalGrantAccessInput = {
|
|
136803
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136804
|
+
goalId: Scalars['ID']['input'];
|
|
136805
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
136806
|
+
role: TownsquareGoalAccessRoleInput;
|
|
136807
|
+
};
|
|
136808
|
+
export declare type TownsquareGoalGrantAccessPayload = {
|
|
136809
|
+
__typename?: 'TownsquareGoalGrantAccessPayload';
|
|
136810
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136811
|
+
goal?: Maybe<TownsquareGoal>;
|
|
136812
|
+
success: Scalars['Boolean']['output'];
|
|
136813
|
+
};
|
|
135778
136814
|
export declare type TownsquareGoalIcon = {
|
|
135779
136815
|
__typename?: 'TownsquareGoalIcon';
|
|
135780
136816
|
appearance?: Maybe<TownsquareGoalIconAppearance>;
|
|
@@ -135802,6 +136838,16 @@ export declare enum TownsquareGoalProgressType {
|
|
|
135802
136838
|
AverageSuccessMeasureRollup = "AVERAGE_SUCCESS_MEASURE_ROLLUP",
|
|
135803
136839
|
None = "NONE"
|
|
135804
136840
|
}
|
|
136841
|
+
export declare type TownsquareGoalRevokeAccessInput = {
|
|
136842
|
+
goalId: Scalars['ID']['input'];
|
|
136843
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
136844
|
+
};
|
|
136845
|
+
export declare type TownsquareGoalRevokeAccessPayload = {
|
|
136846
|
+
__typename?: 'TownsquareGoalRevokeAccessPayload';
|
|
136847
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136848
|
+
goal?: Maybe<TownsquareGoal>;
|
|
136849
|
+
success: Scalars['Boolean']['output'];
|
|
136850
|
+
};
|
|
135805
136851
|
export declare enum TownsquareGoalScoringMode {
|
|
135806
136852
|
Okr = "OKR",
|
|
135807
136853
|
Simple = "SIMPLE"
|
|
@@ -136258,6 +137304,17 @@ export declare type TownsquareGoalsRemoveMetricTargetPayload = {
|
|
|
136258
137304
|
goal?: Maybe<TownsquareGoal>;
|
|
136259
137305
|
success: Scalars['Boolean']['output'];
|
|
136260
137306
|
};
|
|
137307
|
+
export declare type TownsquareGoalsSetUserWatchingTeamInput = {
|
|
137308
|
+
containerId: Scalars['ID']['input'];
|
|
137309
|
+
isWatching: Scalars['Boolean']['input'];
|
|
137310
|
+
teamId: Scalars['ID']['input'];
|
|
137311
|
+
};
|
|
137312
|
+
export declare type TownsquareGoalsSetUserWatchingTeamPayload = {
|
|
137313
|
+
__typename?: 'TownsquareGoalsSetUserWatchingTeamPayload';
|
|
137314
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137315
|
+
success: Scalars['Boolean']['output'];
|
|
137316
|
+
team?: Maybe<TeamV2>;
|
|
137317
|
+
};
|
|
136261
137318
|
export declare type TownsquareGoalsSetWatchingGoalInput = {
|
|
136262
137319
|
goalId: Scalars['ID']['input'];
|
|
136263
137320
|
isWatching: Scalars['Boolean']['input'];
|
|
@@ -137711,6 +138768,18 @@ export declare type TransitionFilter = {
|
|
|
137711
138768
|
from: Scalars['String']['input'];
|
|
137712
138769
|
to: Scalars['String']['input'];
|
|
137713
138770
|
};
|
|
138771
|
+
export declare type TrelloAcceptProposedEventsInput = {
|
|
138772
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
138773
|
+
proposedEventIds: Array<Scalars['ID']['input']>;
|
|
138774
|
+
providerAccountId: Scalars['ID']['input'];
|
|
138775
|
+
};
|
|
138776
|
+
export declare type TrelloAcceptProposedEventsPayload = Payload & {
|
|
138777
|
+
__typename?: 'TrelloAcceptProposedEventsPayload';
|
|
138778
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138779
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
138780
|
+
proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
138781
|
+
success: Scalars['Boolean']['output'];
|
|
138782
|
+
};
|
|
137714
138783
|
export declare type TrelloAction = {
|
|
137715
138784
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
137716
138785
|
creator?: Maybe<TrelloMember>;
|
|
@@ -138118,12 +139187,17 @@ export declare type TrelloBaseBoard = {
|
|
|
138118
139187
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
138119
139188
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
138120
139189
|
id: Scalars['ID']['output'];
|
|
139190
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
138121
139191
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
138122
139192
|
limits?: Maybe<TrelloBoardLimits>;
|
|
138123
139193
|
lists?: Maybe<TrelloListConnection>;
|
|
138124
139194
|
objectId: Scalars['ID']['output'];
|
|
138125
139195
|
workspace?: Maybe<TrelloWorkspace>;
|
|
138126
139196
|
};
|
|
139197
|
+
export declare type TrelloBaseBoardLabelsArgs = {
|
|
139198
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
139199
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139200
|
+
};
|
|
138127
139201
|
export declare type TrelloBaseBoardListsArgs = {
|
|
138128
139202
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
138129
139203
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
@@ -138137,6 +139211,7 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
138137
139211
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
138138
139212
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
138139
139213
|
id?: Maybe<Scalars['ID']['output']>;
|
|
139214
|
+
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
138140
139215
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
138141
139216
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
138142
139217
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
@@ -138153,6 +139228,7 @@ export declare type TrelloBaseCard = {
|
|
|
138153
139228
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
138154
139229
|
due?: Maybe<TrelloCardDueInfo>;
|
|
138155
139230
|
id: Scalars['ID']['output'];
|
|
139231
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
138156
139232
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
138157
139233
|
limits?: Maybe<TrelloCardLimits>;
|
|
138158
139234
|
list?: Maybe<TrelloList>;
|
|
@@ -138183,6 +139259,10 @@ export declare type TrelloBaseCardChecklistsArgs = {
|
|
|
138183
139259
|
checklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
138184
139260
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138185
139261
|
};
|
|
139262
|
+
export declare type TrelloBaseCardLabelsArgs = {
|
|
139263
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
139264
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139265
|
+
};
|
|
138186
139266
|
export declare type TrelloBaseCardUpdated = {
|
|
138187
139267
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
138188
139268
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
@@ -139475,6 +140555,14 @@ export declare type TrelloDeleteAttachmentFromCardActionDisplayEntities = {
|
|
|
139475
140555
|
card?: Maybe<TrelloActionCardEntity>;
|
|
139476
140556
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
139477
140557
|
};
|
|
140558
|
+
export declare type TrelloDeleteBoardBackgroundInput = {
|
|
140559
|
+
boardBackgroundId: Scalars['String']['input'];
|
|
140560
|
+
};
|
|
140561
|
+
export declare type TrelloDeleteBoardBackgroundPayload = Payload & {
|
|
140562
|
+
__typename?: 'TrelloDeleteBoardBackgroundPayload';
|
|
140563
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140564
|
+
success: Scalars['Boolean']['output'];
|
|
140565
|
+
};
|
|
139478
140566
|
export declare type TrelloDeletePlannerCalendarEventInput = {
|
|
139479
140567
|
plannerCalendarEventId: Scalars['ID']['input'];
|
|
139480
140568
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -139505,11 +140593,13 @@ export declare type TrelloEditPlannerCalendarEventOptions = {
|
|
|
139505
140593
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
139506
140594
|
id: Scalars['ID']['input'];
|
|
139507
140595
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
140596
|
+
targetPlannerCalendar?: InputMaybe<TrelloMovePlannerCalendarEventTargetOptions>;
|
|
139508
140597
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
139509
140598
|
};
|
|
139510
140599
|
export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
|
|
139511
140600
|
__typename?: 'TrelloEditPlannerCalendarEventPayload';
|
|
139512
140601
|
errors?: Maybe<Array<MutationError>>;
|
|
140602
|
+
movedEvent?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
139513
140603
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
139514
140604
|
success: Scalars['Boolean']['output'];
|
|
139515
140605
|
};
|
|
@@ -139586,6 +140676,7 @@ export declare type TrelloInbox = TrelloBaseBoard & {
|
|
|
139586
140676
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
139587
140677
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
139588
140678
|
id: Scalars['ID']['output'];
|
|
140679
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
139589
140680
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
139590
140681
|
limits?: Maybe<TrelloBoardLimits>;
|
|
139591
140682
|
lists?: Maybe<TrelloListConnection>;
|
|
@@ -139593,6 +140684,10 @@ export declare type TrelloInbox = TrelloBaseBoard & {
|
|
|
139593
140684
|
prefs: TrelloInboxPrefs;
|
|
139594
140685
|
workspace?: Maybe<TrelloWorkspace>;
|
|
139595
140686
|
};
|
|
140687
|
+
export declare type TrelloInboxLabelsArgs = {
|
|
140688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
140689
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140690
|
+
};
|
|
139596
140691
|
export declare type TrelloInboxListsArgs = {
|
|
139597
140692
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139598
140693
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
@@ -139611,6 +140706,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
139611
140706
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
139612
140707
|
due?: Maybe<TrelloCardDueInfo>;
|
|
139613
140708
|
id: Scalars['ID']['output'];
|
|
140709
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
139614
140710
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
139615
140711
|
limits?: Maybe<TrelloCardLimits>;
|
|
139616
140712
|
list?: Maybe<TrelloList>;
|
|
@@ -139641,6 +140737,10 @@ export declare type TrelloInboxCardChecklistsArgs = {
|
|
|
139641
140737
|
checklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
139642
140738
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139643
140739
|
};
|
|
140740
|
+
export declare type TrelloInboxCardLabelsArgs = {
|
|
140741
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
140742
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140743
|
+
};
|
|
139644
140744
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
139645
140745
|
__typename?: 'TrelloInboxCardUpdated';
|
|
139646
140746
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -139693,6 +140793,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
139693
140793
|
board: TrelloBoardUpdated;
|
|
139694
140794
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
139695
140795
|
id?: Maybe<Scalars['ID']['output']>;
|
|
140796
|
+
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
139696
140797
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
139697
140798
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
139698
140799
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
@@ -139891,6 +140992,7 @@ export declare type TrelloMember = Node & {
|
|
|
139891
140992
|
objectId: Scalars['ID']['output'];
|
|
139892
140993
|
planner?: Maybe<TrelloPlanner>;
|
|
139893
140994
|
prefs?: Maybe<TrelloMemberPrefs>;
|
|
140995
|
+
referral?: Maybe<TrelloMemberReferral>;
|
|
139894
140996
|
referrer?: Maybe<TrelloMember>;
|
|
139895
140997
|
url?: Maybe<Scalars['URL']['output']>;
|
|
139896
140998
|
user?: Maybe<User>;
|
|
@@ -139963,6 +141065,14 @@ export declare type TrelloMemberPrefs = {
|
|
|
139963
141065
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
139964
141066
|
keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
139965
141067
|
};
|
|
141068
|
+
export declare type TrelloMemberReferral = {
|
|
141069
|
+
__typename?: 'TrelloMemberReferral';
|
|
141070
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
141071
|
+
eligibleForReward?: Maybe<Scalars['Boolean']['output']>;
|
|
141072
|
+
rewardClaimed?: Maybe<Scalars['Boolean']['output']>;
|
|
141073
|
+
rewardClaimedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
141074
|
+
rewardThreshold?: Maybe<Scalars['Int']['output']>;
|
|
141075
|
+
};
|
|
139966
141076
|
export declare type TrelloMemberUpdated = {
|
|
139967
141077
|
__typename?: 'TrelloMemberUpdated';
|
|
139968
141078
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -140112,6 +141222,7 @@ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
|
|
|
140112
141222
|
};
|
|
140113
141223
|
export declare type TrelloMutationApi = {
|
|
140114
141224
|
__typename?: 'TrelloMutationApi';
|
|
141225
|
+
acceptProposedEvents?: Maybe<TrelloAcceptProposedEventsPayload>;
|
|
140115
141226
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
140116
141227
|
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
140117
141228
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
@@ -140126,6 +141237,7 @@ export declare type TrelloMutationApi = {
|
|
|
140126
141237
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
140127
141238
|
createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
|
|
140128
141239
|
deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
|
|
141240
|
+
deleteBoardBackground?: Maybe<TrelloDeleteBoardBackgroundPayload>;
|
|
140129
141241
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
140130
141242
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
140131
141243
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
@@ -140135,6 +141247,7 @@ export declare type TrelloMutationApi = {
|
|
|
140135
141247
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
140136
141248
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
140137
141249
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
141250
|
+
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
140138
141251
|
rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
|
|
140139
141252
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
140140
141253
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -140174,6 +141287,9 @@ export declare type TrelloMutationApi = {
|
|
|
140174
141287
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
140175
141288
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
140176
141289
|
};
|
|
141290
|
+
export declare type TrelloMutationApiAcceptProposedEventsArgs = {
|
|
141291
|
+
input: TrelloAcceptProposedEventsInput;
|
|
141292
|
+
};
|
|
140177
141293
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
140178
141294
|
input: TrelloAddBoardStarInput;
|
|
140179
141295
|
};
|
|
@@ -140216,6 +141332,9 @@ export declare type TrelloMutationApiCreateWorkspaceTagArgs = {
|
|
|
140216
141332
|
export declare type TrelloMutationApiDeleteAiRuleArgs = {
|
|
140217
141333
|
input: TrelloDeleteAiRuleInput;
|
|
140218
141334
|
};
|
|
141335
|
+
export declare type TrelloMutationApiDeleteBoardBackgroundArgs = {
|
|
141336
|
+
input: TrelloDeleteBoardBackgroundInput;
|
|
141337
|
+
};
|
|
140219
141338
|
export declare type TrelloMutationApiDeletePlannerCalendarEventArgs = {
|
|
140220
141339
|
input: TrelloDeletePlannerCalendarEventInput;
|
|
140221
141340
|
};
|
|
@@ -140243,6 +141362,9 @@ export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
|
140243
141362
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
140244
141363
|
input: TrelloPinCardInput;
|
|
140245
141364
|
};
|
|
141365
|
+
export declare type TrelloMutationApiProposePlannerEventsArgs = {
|
|
141366
|
+
input: TrelloProposePlannerEventsInput;
|
|
141367
|
+
};
|
|
140246
141368
|
export declare type TrelloMutationApiRejectProposedEventsArgs = {
|
|
140247
141369
|
input: TrelloRejectProposedEventsInput;
|
|
140248
141370
|
};
|
|
@@ -140860,6 +141982,16 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
140860
141982
|
__typename?: 'TrelloPowerUpUpdated';
|
|
140861
141983
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
140862
141984
|
};
|
|
141985
|
+
export declare type TrelloProposePlannerEventsInput = {
|
|
141986
|
+
cardIds: Array<Scalars['ID']['input']>;
|
|
141987
|
+
timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
|
|
141988
|
+
};
|
|
141989
|
+
export declare type TrelloProposePlannerEventsPayload = Payload & {
|
|
141990
|
+
__typename?: 'TrelloProposePlannerEventsPayload';
|
|
141991
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141992
|
+
planner?: Maybe<TrelloPlanner>;
|
|
141993
|
+
success: Scalars['Boolean']['output'];
|
|
141994
|
+
};
|
|
140863
141995
|
export declare type TrelloProposedEvent = {
|
|
140864
141996
|
__typename?: 'TrelloProposedEvent';
|
|
140865
141997
|
cards?: Maybe<TrelloProposedEventCardConnection>;
|
|
@@ -141134,6 +142266,7 @@ export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
|
141134
142266
|
export declare type TrelloRemoveCardFromPlannerCalendarEventPayload = Payload & {
|
|
141135
142267
|
__typename?: 'TrelloRemoveCardFromPlannerCalendarEventPayload';
|
|
141136
142268
|
errors?: Maybe<Array<MutationError>>;
|
|
142269
|
+
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
141137
142270
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardDeleted>;
|
|
141138
142271
|
success: Scalars['Boolean']['output'];
|
|
141139
142272
|
};
|
|
@@ -143866,7 +144999,7 @@ export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
|
143866
144999
|
success: Scalars['Boolean']['output'];
|
|
143867
145000
|
};
|
|
143868
145001
|
export declare type UpdatePolarisViewInput = {
|
|
143869
|
-
|
|
145002
|
+
columnSize?: InputMaybe<PolarisColumnSize>;
|
|
143870
145003
|
connectionsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
143871
145004
|
connectionsLayoutType?: InputMaybe<PolarisConnectionsLayout>;
|
|
143872
145005
|
description?: InputMaybe<Scalars['JSON']['input']>;
|