@forge/cli-shared 9.3.0-next.3 → 9.3.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +264 -16
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +98 -48
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7275,6 +7275,10 @@ export type AgentStudioTemplateListResult = {
|
|
|
7275
7275
|
pageInfo: PageInfo;
|
|
7276
7276
|
};
|
|
7277
7277
|
export type AgentStudioTemplateResult = AgentStudioAgentTemplate | QueryError;
|
|
7278
|
+
export declare enum AgentStudioTemplateUsePermission {
|
|
7279
|
+
Private = "PRIVATE",
|
|
7280
|
+
Public = "PUBLIC"
|
|
7281
|
+
}
|
|
7278
7282
|
export type AgentStudioThirdPartyApp = AgentStudioApp & {
|
|
7279
7283
|
__typename?: 'AgentStudioThirdPartyApp';
|
|
7280
7284
|
authConsentStatus: AgentStudioThirdPartyAuthConsentStatus;
|
|
@@ -9945,6 +9949,7 @@ export type AiPlannerPlan = {
|
|
|
9945
9949
|
id: Scalars['String']['output'];
|
|
9946
9950
|
name: Scalars['String']['output'];
|
|
9947
9951
|
owner?: Maybe<AiPlannerPlanOwner>;
|
|
9952
|
+
publishedState: Scalars['String']['output'];
|
|
9948
9953
|
readinessScore?: Maybe<Scalars['Int']['output']>;
|
|
9949
9954
|
tasks: AiPlannerPlanTaskConnection;
|
|
9950
9955
|
updatedAt: Scalars['String']['output'];
|
|
@@ -20469,7 +20474,7 @@ export type CloudifyCloudProjectTargetInput = {
|
|
|
20469
20474
|
};
|
|
20470
20475
|
export type CloudifyDcInstanceTarget = {
|
|
20471
20476
|
__typename?: 'CloudifyDcInstanceTarget';
|
|
20472
|
-
srsLinkId:
|
|
20477
|
+
srsLinkId: Scalars['String']['output'];
|
|
20473
20478
|
};
|
|
20474
20479
|
export type CloudifyDcInstanceTargetInput = {
|
|
20475
20480
|
srsLinkId: Scalars['ID']['input'];
|
|
@@ -20509,6 +20514,7 @@ export type CloudifyRecommendation = {
|
|
|
20509
20514
|
createdAt: Scalars['String']['output'];
|
|
20510
20515
|
id: CloudifyRecommendationId;
|
|
20511
20516
|
reasoning: Scalars['String']['output'];
|
|
20517
|
+
source: CloudifyRecommendationSource;
|
|
20512
20518
|
status: CloudifyRecommendationStatus;
|
|
20513
20519
|
steps: Array<CloudifyRecommendationStep>;
|
|
20514
20520
|
target: CloudifyRecommendationTarget;
|
|
@@ -20530,6 +20536,12 @@ export type CloudifyRecommendationInput = {
|
|
|
20530
20536
|
target: CloudifyTargetInput;
|
|
20531
20537
|
title: Scalars['String']['input'];
|
|
20532
20538
|
};
|
|
20539
|
+
export type CloudifyRecommendationSource = {
|
|
20540
|
+
__typename?: 'CloudifyRecommendationSource';
|
|
20541
|
+
data: Array<CloudifySourceDataEntry>;
|
|
20542
|
+
identifier: Scalars['String']['output'];
|
|
20543
|
+
type: CloudifySourceInstanceType;
|
|
20544
|
+
};
|
|
20533
20545
|
export declare enum CloudifyRecommendationStatus {
|
|
20534
20546
|
Failed = "FAILED",
|
|
20535
20547
|
New = "NEW",
|
|
@@ -20552,10 +20564,15 @@ export type CloudifySiteTarget = {
|
|
|
20552
20564
|
export type CloudifySiteTargetInput = {
|
|
20553
20565
|
siteId: Scalars['ID']['input'];
|
|
20554
20566
|
};
|
|
20555
|
-
export type
|
|
20556
|
-
__typename?: '
|
|
20567
|
+
export type CloudifySourceDataEntry = {
|
|
20568
|
+
__typename?: 'CloudifySourceDataEntry';
|
|
20569
|
+
key: Scalars['String']['output'];
|
|
20557
20570
|
value: Scalars['String']['output'];
|
|
20558
20571
|
};
|
|
20572
|
+
export declare enum CloudifySourceInstanceType {
|
|
20573
|
+
Cloud = "CLOUD",
|
|
20574
|
+
Dc = "DC"
|
|
20575
|
+
}
|
|
20559
20576
|
export type CloudifyStepInput = {
|
|
20560
20577
|
arguments: Array<CloudifyArgumentInput>;
|
|
20561
20578
|
reasoning: Scalars['String']['input'];
|
|
@@ -33962,7 +33979,18 @@ export type ConfluenceNbmTransformerParameter = {
|
|
|
33962
33979
|
__typename?: 'ConfluenceNbmTransformerParameter';
|
|
33963
33980
|
key: Scalars['String']['output'];
|
|
33964
33981
|
value: Scalars['String']['output'];
|
|
33982
|
+
valueType?: Maybe<ConfluenceNbmTransformerParameterValueType>;
|
|
33965
33983
|
};
|
|
33984
|
+
export declare enum ConfluenceNbmTransformerParameterValueType {
|
|
33985
|
+
Boolean = "BOOLEAN",
|
|
33986
|
+
ConditionArray = "CONDITION_ARRAY",
|
|
33987
|
+
ConditionObject = "CONDITION_OBJECT",
|
|
33988
|
+
Integer = "INTEGER",
|
|
33989
|
+
Object = "OBJECT",
|
|
33990
|
+
String = "STRING",
|
|
33991
|
+
StringArray = "STRING_ARRAY",
|
|
33992
|
+
Unknown = "UNKNOWN"
|
|
33993
|
+
}
|
|
33966
33994
|
export type ConfluenceNbmTransformers = {
|
|
33967
33995
|
__typename?: 'ConfluenceNbmTransformers';
|
|
33968
33996
|
transformers: Array<Maybe<ConfluenceNbmConfigurableTransformer>>;
|
|
@@ -40813,6 +40841,19 @@ export type CsmAiAgentToolConfigurationInput = {
|
|
|
40813
40841
|
properties?: InputMaybe<Array<CsmAiAgentToolPropertyConfigurationInput>>;
|
|
40814
40842
|
requiresConfirmation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40815
40843
|
};
|
|
40844
|
+
export type CsmAiAgentToolMapping = {
|
|
40845
|
+
__typename?: 'CsmAiAgentToolMapping';
|
|
40846
|
+
configuration?: Maybe<CsmAiAgentToolConfiguration>;
|
|
40847
|
+
definitionId: Scalars['String']['output'];
|
|
40848
|
+
id: Scalars['ID']['output'];
|
|
40849
|
+
source: CsmAiAgentToolSource;
|
|
40850
|
+
};
|
|
40851
|
+
export type CsmAiAgentToolMappingInput = {
|
|
40852
|
+
definitionId: Scalars['String']['input'];
|
|
40853
|
+
source: CsmAiAgentToolSource;
|
|
40854
|
+
toolMappingId: Scalars['ID']['input'];
|
|
40855
|
+
};
|
|
40856
|
+
export type CsmAiAgentToolMappingResult = CsmAiAgentToolMapping | QueryError;
|
|
40816
40857
|
export type CsmAiAgentToolPropertyConfiguration = {
|
|
40817
40858
|
__typename?: 'CsmAiAgentToolPropertyConfiguration';
|
|
40818
40859
|
allowedValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -40843,6 +40884,7 @@ export type CsmAiAgentVersion = {
|
|
|
40843
40884
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
40844
40885
|
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
40845
40886
|
publishedAt?: Maybe<Scalars['Long']['output']>;
|
|
40887
|
+
toolMappings?: Maybe<Array<CsmAiAgentToolMappingResult>>;
|
|
40846
40888
|
tools?: Maybe<Array<CsmAiAgentToolResult>>;
|
|
40847
40889
|
versionId: Scalars['ID']['output'];
|
|
40848
40890
|
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
@@ -41225,6 +41267,15 @@ export type CsmAiUpdateAgentToolConfigurationPayload = Payload & {
|
|
|
41225
41267
|
success: Scalars['Boolean']['output'];
|
|
41226
41268
|
tool?: Maybe<CsmAiAgentTool>;
|
|
41227
41269
|
};
|
|
41270
|
+
export type CsmAiUpdateAgentToolMappingsInput = {
|
|
41271
|
+
toolMappings: Array<CsmAiAgentToolMappingInput>;
|
|
41272
|
+
};
|
|
41273
|
+
export type CsmAiUpdateAgentToolMappingsPayload = Payload & {
|
|
41274
|
+
__typename?: 'CsmAiUpdateAgentToolMappingsPayload';
|
|
41275
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41276
|
+
success: Scalars['Boolean']['output'];
|
|
41277
|
+
toolMappings?: Maybe<Array<CsmAiAgentToolMapping>>;
|
|
41278
|
+
};
|
|
41228
41279
|
export type CsmAiUpdateAgentToolsInput = {
|
|
41229
41280
|
tools: Array<CsmAiAgentToolSelectionInput>;
|
|
41230
41281
|
};
|
|
@@ -41749,17 +41800,11 @@ export type CustomerServiceAssetsFieldConfig = {
|
|
|
41749
41800
|
objectType: CustomerServiceAssetsFieldObjectTypeMetadata;
|
|
41750
41801
|
schema: CustomerServiceAssetsFieldSchemaMetadata;
|
|
41751
41802
|
};
|
|
41752
|
-
export type CustomerServiceAssetsFieldData = {
|
|
41753
|
-
__typename?: 'CustomerServiceAssetsFieldData';
|
|
41754
|
-
assetsObjectTypeId: Scalars['String']['output'];
|
|
41755
|
-
assetsObjects?: Maybe<Array<CustomerServiceAssetsFieldObject>>;
|
|
41756
|
-
};
|
|
41757
41803
|
export type CustomerServiceAssetsFieldObject = {
|
|
41758
41804
|
__typename?: 'CustomerServiceAssetsFieldObject';
|
|
41759
41805
|
avatar?: Maybe<CustomerServiceAssetsAvatar>;
|
|
41760
41806
|
id: Scalars['ID']['output'];
|
|
41761
41807
|
label: Scalars['String']['output'];
|
|
41762
|
-
objectKey: Scalars['ID']['output'];
|
|
41763
41808
|
objectSchemaId: Scalars['ID']['output'];
|
|
41764
41809
|
objectTypeId: Scalars['ID']['output'];
|
|
41765
41810
|
};
|
|
@@ -42021,7 +42066,7 @@ export type CustomerServiceConnectedFieldConfig = {
|
|
|
42021
42066
|
};
|
|
42022
42067
|
export type CustomerServiceConnectedFieldData = {
|
|
42023
42068
|
__typename?: 'CustomerServiceConnectedFieldData';
|
|
42024
|
-
|
|
42069
|
+
assetsObjects?: Maybe<Array<CustomerServiceAssetsFieldObject>>;
|
|
42025
42070
|
};
|
|
42026
42071
|
export type CustomerServiceContext = {
|
|
42027
42072
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -42245,6 +42290,7 @@ export type CustomerServiceEmailChannelConfig = {
|
|
|
42245
42290
|
__typename?: 'CustomerServiceEmailChannelConfig';
|
|
42246
42291
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42247
42292
|
enabledBy?: Maybe<Scalars['String']['output']>;
|
|
42293
|
+
enabledSupportEmailIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
42248
42294
|
helpCenterId: Scalars['ID']['output'];
|
|
42249
42295
|
id: Scalars['ID']['output'];
|
|
42250
42296
|
isEnabled: Scalars['Boolean']['output'];
|
|
@@ -42254,6 +42300,7 @@ export type CustomerServiceEmailChannelConfig = {
|
|
|
42254
42300
|
};
|
|
42255
42301
|
export type CustomerServiceEmailChannelConfigQueryResult = CustomerServiceEmailChannelConfig | QueryError;
|
|
42256
42302
|
export type CustomerServiceEmailChannelConfigUpsertInput = {
|
|
42303
|
+
enabledSupportEmailIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
42257
42304
|
isEnabled: Scalars['Boolean']['input'];
|
|
42258
42305
|
replyToAddress?: InputMaybe<Scalars['String']['input']>;
|
|
42259
42306
|
supportEmail?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43240,6 +43287,22 @@ export type CustomerServiceUserDetailValue = {
|
|
|
43240
43287
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
43241
43288
|
name?: Maybe<Scalars['String']['output']>;
|
|
43242
43289
|
};
|
|
43290
|
+
export type CustomerServiceWorkItemAiSummary = {
|
|
43291
|
+
__typename?: 'CustomerServiceWorkItemAiSummary';
|
|
43292
|
+
adf: Scalars['String']['output'];
|
|
43293
|
+
text: Scalars['String']['output'];
|
|
43294
|
+
};
|
|
43295
|
+
export type CustomerServiceWorkItemAiSummaryMeta = {
|
|
43296
|
+
__typename?: 'CustomerServiceWorkItemAiSummaryMeta';
|
|
43297
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
43298
|
+
};
|
|
43299
|
+
export type CustomerServiceWorkItemAiSummaryQueryResult = CustomerServiceWorkItemAiSummaryResponse | QueryError;
|
|
43300
|
+
export type CustomerServiceWorkItemAiSummaryResponse = {
|
|
43301
|
+
__typename?: 'CustomerServiceWorkItemAiSummaryResponse';
|
|
43302
|
+
id: Scalars['ID']['output'];
|
|
43303
|
+
meta?: Maybe<CustomerServiceWorkItemAiSummaryMeta>;
|
|
43304
|
+
summary?: Maybe<CustomerServiceWorkItemAiSummary>;
|
|
43305
|
+
};
|
|
43243
43306
|
export type CustomerUser = LocalizationContext & User & {
|
|
43244
43307
|
__typename?: 'CustomerUser';
|
|
43245
43308
|
accountId: Scalars['ID']['output'];
|
|
@@ -117405,6 +117468,7 @@ export type HelpCenterPageCreatePayload = Payload & {
|
|
|
117405
117468
|
};
|
|
117406
117469
|
export type HelpCenterPageDeleteInput = {
|
|
117407
117470
|
helpCenterPageAri: Scalars['String']['input'];
|
|
117471
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117408
117472
|
};
|
|
117409
117473
|
export type HelpCenterPageDeletePayload = Payload & {
|
|
117410
117474
|
__typename?: 'HelpCenterPageDeletePayload';
|
|
@@ -120719,6 +120783,40 @@ export declare enum JiraAgentCreatorType {
|
|
|
120719
120783
|
System = "SYSTEM",
|
|
120720
120784
|
ThirdParty = "THIRD_PARTY"
|
|
120721
120785
|
}
|
|
120786
|
+
export type JiraAgentInSpace = {
|
|
120787
|
+
__typename?: 'JiraAgentInSpace';
|
|
120788
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
120789
|
+
agentId: Scalars['ID']['output'];
|
|
120790
|
+
sources: Array<JiraAgentInSpaceSource>;
|
|
120791
|
+
};
|
|
120792
|
+
export type JiraAgentInSpaceConnection = HasPageInfo & {
|
|
120793
|
+
__typename?: 'JiraAgentInSpaceConnection';
|
|
120794
|
+
edges?: Maybe<Array<Maybe<JiraAgentInSpaceEdge>>>;
|
|
120795
|
+
nodes?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
|
|
120796
|
+
pageInfo: PageInfo;
|
|
120797
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
120798
|
+
};
|
|
120799
|
+
export type JiraAgentInSpaceEdge = {
|
|
120800
|
+
__typename?: 'JiraAgentInSpaceEdge';
|
|
120801
|
+
cursor: Scalars['String']['output'];
|
|
120802
|
+
node?: Maybe<JiraAgentInSpace>;
|
|
120803
|
+
};
|
|
120804
|
+
export declare enum JiraAgentInSpaceSource {
|
|
120805
|
+
JiraAutomation = "JIRA_AUTOMATION",
|
|
120806
|
+
StudioAutomation = "STUDIO_AUTOMATION",
|
|
120807
|
+
Workflow = "WORKFLOW"
|
|
120808
|
+
}
|
|
120809
|
+
export declare enum JiraAgentInSpaceSourceState {
|
|
120810
|
+
Failed = "FAILED",
|
|
120811
|
+
Ok = "OK",
|
|
120812
|
+
Skipped = "SKIPPED"
|
|
120813
|
+
}
|
|
120814
|
+
export type JiraAgentInSpaceSourceStatus = {
|
|
120815
|
+
__typename?: 'JiraAgentInSpaceSourceStatus';
|
|
120816
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
120817
|
+
source: JiraAgentInSpaceSource;
|
|
120818
|
+
state: JiraAgentInSpaceSourceState;
|
|
120819
|
+
};
|
|
120722
120820
|
export type JiraAgentSession = {
|
|
120723
120821
|
__typename?: 'JiraAgentSession';
|
|
120724
120822
|
agent?: Maybe<User>;
|
|
@@ -120835,6 +120933,14 @@ export type JiraAgenticUser = JiraActor & {
|
|
|
120835
120933
|
totalUniqueUsersLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
120836
120934
|
user?: Maybe<User>;
|
|
120837
120935
|
};
|
|
120936
|
+
export type JiraAgentsInSpace = {
|
|
120937
|
+
__typename?: 'JiraAgentsInSpace';
|
|
120938
|
+
agents?: Maybe<JiraAgentInSpaceConnection>;
|
|
120939
|
+
sourceStatuses: Array<JiraAgentInSpaceSourceStatus>;
|
|
120940
|
+
};
|
|
120941
|
+
export type JiraAgentsInSpaceInput = {
|
|
120942
|
+
projectAri: Scalars['ID']['input'];
|
|
120943
|
+
};
|
|
120838
120944
|
export type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
120839
120945
|
export type JiraAggregatedIssueLink = {
|
|
120840
120946
|
__typename?: 'JiraAggregatedIssueLink';
|
|
@@ -142481,6 +142587,7 @@ export type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
|
|
|
142481
142587
|
};
|
|
142482
142588
|
export type JiraServiceManagementCaseManagementRequestTypeCreationOption = {
|
|
142483
142589
|
__typename?: 'JiraServiceManagementCaseManagementRequestTypeCreationOption';
|
|
142590
|
+
avatar?: Maybe<JiraAvatar>;
|
|
142484
142591
|
existingRequestType?: Maybe<JiraServiceManagementRequestType>;
|
|
142485
142592
|
key: Scalars['String']['output'];
|
|
142486
142593
|
name: Scalars['String']['output'];
|
|
@@ -151025,7 +151132,6 @@ export type JsmTelemetryDashboardChartQueryInput = {
|
|
|
151025
151132
|
filters: Array<JsmTelemetryMetricFilterInput>;
|
|
151026
151133
|
metricName: Scalars['String']['input'];
|
|
151027
151134
|
resolution?: InputMaybe<JsmTelemetryMetricResolutionInput>;
|
|
151028
|
-
telemetryConnectionId: Scalars['ID']['input'];
|
|
151029
151135
|
timeRange?: InputMaybe<JsmTelemetryTimeRangeInput>;
|
|
151030
151136
|
};
|
|
151031
151137
|
export type JsmTelemetryDashboardChartQueryResult = {
|
|
@@ -151034,7 +151140,6 @@ export type JsmTelemetryDashboardChartQueryResult = {
|
|
|
151034
151140
|
filters: Array<JsmTelemetryMetricFilter>;
|
|
151035
151141
|
metricName: Scalars['String']['output'];
|
|
151036
151142
|
resolution?: Maybe<JsmTelemetryMetricResolution>;
|
|
151037
|
-
telemetryConnectionId: Scalars['ID']['output'];
|
|
151038
151143
|
timeRange?: Maybe<JsmTelemetryTimeRange>;
|
|
151039
151144
|
};
|
|
151040
151145
|
export type JsmTelemetryDashboardChartResult = {
|
|
@@ -151137,8 +151242,9 @@ export type JsmTelemetryMetricAttributeSearchInput = {
|
|
|
151137
151242
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
151138
151243
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
151139
151244
|
metricName: Scalars['String']['input'];
|
|
151245
|
+
provider: JsmTelemetryProviderType;
|
|
151140
151246
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
151141
|
-
telemetryConnectionId
|
|
151247
|
+
telemetryConnectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
151142
151248
|
};
|
|
151143
151249
|
export type JsmTelemetryMetricAttributeValue = {
|
|
151144
151250
|
__typename?: 'JsmTelemetryMetricAttributeValue';
|
|
@@ -151157,8 +151263,9 @@ export type JsmTelemetryMetricAttributeValueSearchInput = {
|
|
|
151157
151263
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
151158
151264
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
151159
151265
|
metricName: Scalars['String']['input'];
|
|
151266
|
+
provider: JsmTelemetryProviderType;
|
|
151160
151267
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
151161
|
-
telemetryConnectionId
|
|
151268
|
+
telemetryConnectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
151162
151269
|
};
|
|
151163
151270
|
export type JsmTelemetryMetricAttributeValuesResult = {
|
|
151164
151271
|
__typename?: 'JsmTelemetryMetricAttributeValuesResult';
|
|
@@ -151179,8 +151286,9 @@ export type JsmTelemetryMetricDataQueryInput = {
|
|
|
151179
151286
|
aggregation?: InputMaybe<JsmTelemetryMetricAggregationInput>;
|
|
151180
151287
|
filters: Array<JsmTelemetryMetricFilterInput>;
|
|
151181
151288
|
metricName: Scalars['String']['input'];
|
|
151289
|
+
provider: JsmTelemetryProviderType;
|
|
151182
151290
|
resolution?: InputMaybe<JsmTelemetryMetricResolutionInput>;
|
|
151183
|
-
telemetryConnectionId
|
|
151291
|
+
telemetryConnectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
151184
151292
|
timeRange: JsmTelemetryTimeRangeInput;
|
|
151185
151293
|
};
|
|
151186
151294
|
export type JsmTelemetryMetricDataResponse = {
|
|
@@ -151236,8 +151344,9 @@ export type JsmTelemetryMetricResolutionInput = {
|
|
|
151236
151344
|
export type JsmTelemetryMetricSearchInput = {
|
|
151237
151345
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
151238
151346
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
151347
|
+
provider: JsmTelemetryProviderType;
|
|
151239
151348
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
151240
|
-
telemetryConnectionId
|
|
151349
|
+
telemetryConnectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
151241
151350
|
};
|
|
151242
151351
|
export type JsmTelemetryMetricSearchResponse = {
|
|
151243
151352
|
__typename?: 'JsmTelemetryMetricSearchResponse';
|
|
@@ -155455,6 +155564,7 @@ export type MarketplaceAppVersion = {
|
|
|
155455
155564
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
155456
155565
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155457
155566
|
endUserLicenseAgreementUrl?: Maybe<Scalars['URL']['output']>;
|
|
155567
|
+
extensionTypeKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
155458
155568
|
heroImage?: Maybe<MarketplaceListingImage>;
|
|
155459
155569
|
highlights?: Maybe<Array<MarketplaceListingHighlight>>;
|
|
155460
155570
|
isForgeROACompliant?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -169666,6 +169776,7 @@ export type Mutation = {
|
|
|
169666
169776
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
169667
169777
|
csmAi_updateAgentIdentity?: Maybe<CsmAiUpdateAgentIdentityPayload>;
|
|
169668
169778
|
csmAi_updateAgentToolConfiguration?: Maybe<CsmAiUpdateAgentToolConfigurationPayload>;
|
|
169779
|
+
csmAi_updateAgentToolMappings?: Maybe<CsmAiUpdateAgentToolMappingsPayload>;
|
|
169669
169780
|
csmAi_updateAgentTools?: Maybe<CsmAiUpdateAgentToolsPayload>;
|
|
169670
169781
|
csmAi_updateCoachingContent?: Maybe<CsmAiUpdateCoachingContentPayload>;
|
|
169671
169782
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
@@ -170950,6 +171061,7 @@ export type MutationAgentStudio_CreateAgentArgs = {
|
|
|
170950
171061
|
export type MutationAgentStudio_CreateAgentFromTemplateArgs = {
|
|
170951
171062
|
cloudId: Scalars['String']['input'];
|
|
170952
171063
|
templateId: Scalars['ID']['input'];
|
|
171064
|
+
usePermission?: InputMaybe<AgentStudioTemplateUsePermission>;
|
|
170953
171065
|
};
|
|
170954
171066
|
export type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
|
|
170955
171067
|
cloudId: Scalars['String']['input'];
|
|
@@ -173002,6 +173114,11 @@ export type MutationCsmAi_UpdateAgentToolConfigurationArgs = {
|
|
|
173002
173114
|
input: CsmAiAgentToolConfigurationInput;
|
|
173003
173115
|
toolId: Scalars['ID']['input'];
|
|
173004
173116
|
};
|
|
173117
|
+
export type MutationCsmAi_UpdateAgentToolMappingsArgs = {
|
|
173118
|
+
csmAgentId: Scalars['ID']['input'];
|
|
173119
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
173120
|
+
input: CsmAiUpdateAgentToolMappingsInput;
|
|
173121
|
+
};
|
|
173005
173122
|
export type MutationCsmAi_UpdateAgentToolsArgs = {
|
|
173006
173123
|
csmAgentId: Scalars['ID']['input'];
|
|
173007
173124
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -180526,6 +180643,7 @@ export type Query = {
|
|
|
180526
180643
|
csm_statusMapping?: Maybe<CustomerServiceStatusMappingQueryResult>;
|
|
180527
180644
|
csm_templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
180528
180645
|
csm_templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
180646
|
+
csm_workItemAiSummary?: Maybe<CustomerServiceWorkItemAiSummaryQueryResult>;
|
|
180529
180647
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
180530
180648
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
180531
180649
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
@@ -182895,6 +183013,7 @@ export type Query = {
|
|
|
182895
183013
|
jira_agentContextSettings?: Maybe<JiraAgentContextSettings>;
|
|
182896
183014
|
jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
|
|
182897
183015
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
183016
|
+
jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
|
|
182898
183017
|
jira_availableStatuses?: Maybe<JiraStatusConnection>;
|
|
182899
183018
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
182900
183019
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
@@ -187199,6 +187318,9 @@ export type QueryCsm_TemplateFormsArgs = {
|
|
|
187199
187318
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
187200
187319
|
helpCenterId: Scalars['ID']['input'];
|
|
187201
187320
|
};
|
|
187321
|
+
export type QueryCsm_WorkItemAiSummaryArgs = {
|
|
187322
|
+
workItemId: Scalars['ID']['input'];
|
|
187323
|
+
};
|
|
187202
187324
|
export type QueryCustomer360_CustomerArgs = {
|
|
187203
187325
|
domain: Scalars['String']['input'];
|
|
187204
187326
|
};
|
|
@@ -203904,6 +204026,12 @@ export type QueryJira_AgentContextSourcesArgs = {
|
|
|
203904
204026
|
export type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
|
|
203905
204027
|
cloudId: Scalars['ID']['input'];
|
|
203906
204028
|
};
|
|
204029
|
+
export type QueryJira_AgentsInSpaceArgs = {
|
|
204030
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204031
|
+
cloudId: Scalars['ID']['input'];
|
|
204032
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204033
|
+
input: JiraAgentsInSpaceInput;
|
|
204034
|
+
};
|
|
203907
204035
|
export type QueryJira_AvailableStatusesArgs = {
|
|
203908
204036
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
203909
204037
|
category?: InputMaybe<JiraStatusCategoryFilter>;
|
|
@@ -234245,6 +234373,7 @@ export type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
234245
234373
|
};
|
|
234246
234374
|
export type Subscription = {
|
|
234247
234375
|
__typename?: 'Subscription';
|
|
234376
|
+
aiops_onInvestigationProgressChanged?: Maybe<AiOpsInvestigationQueryResult>;
|
|
234248
234377
|
assetsVertical_onAsyncTaskUpdated?: Maybe<AssetsVerticalAsyncTask>;
|
|
234249
234378
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
234250
234379
|
blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
|
|
@@ -234293,6 +234422,11 @@ export type Subscription = {
|
|
|
234293
234422
|
testing?: Maybe<TestingSubscription>;
|
|
234294
234423
|
trello: TrelloSubscriptionApi;
|
|
234295
234424
|
};
|
|
234425
|
+
export type SubscriptionAiops_OnInvestigationProgressChangedArgs = {
|
|
234426
|
+
agentic: Scalars['Boolean']['input'];
|
|
234427
|
+
cloudId: Scalars['ID']['input'];
|
|
234428
|
+
investigationId: Scalars['ID']['input'];
|
|
234429
|
+
};
|
|
234296
234430
|
export type SubscriptionAssetsVertical_OnAsyncTaskUpdatedArgs = {
|
|
234297
234431
|
cloudId: Scalars['ID']['input'];
|
|
234298
234432
|
taskId: Scalars['ID']['input'];
|
|
@@ -239759,6 +239893,7 @@ export type TownsquareProjectsCreateDecisionPayload = {
|
|
|
239759
239893
|
success: Scalars['Boolean']['output'];
|
|
239760
239894
|
};
|
|
239761
239895
|
export type TownsquareProjectsCreateInput = {
|
|
239896
|
+
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
239762
239897
|
containerId: Scalars['String']['input'];
|
|
239763
239898
|
icon?: InputMaybe<TownsquareIconInput>;
|
|
239764
239899
|
name: Scalars['String']['input'];
|
|
@@ -241255,13 +241390,23 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
241255
241390
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
241256
241391
|
id: Scalars['ID']['output'];
|
|
241257
241392
|
};
|
|
241393
|
+
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
241394
|
+
__typename?: 'TrelloAgentSessionUpdated';
|
|
241395
|
+
sessionId: Scalars['ID']['output'];
|
|
241396
|
+
tasks: TrelloAgentTaskUpdatedConnection;
|
|
241397
|
+
};
|
|
241258
241398
|
export type TrelloAgentTask = {
|
|
241259
241399
|
__typename?: 'TrelloAgentTask';
|
|
241260
241400
|
id: Scalars['ID']['output'];
|
|
241261
241401
|
key: Scalars['String']['output'];
|
|
241262
241402
|
objectId: Scalars['ID']['output'];
|
|
241403
|
+
sessionId: Scalars['ID']['output'];
|
|
241263
241404
|
status: TrelloAgentTaskStatus;
|
|
241264
241405
|
};
|
|
241406
|
+
export type TrelloAgentTaskEdgeUpdated = {
|
|
241407
|
+
__typename?: 'TrelloAgentTaskEdgeUpdated';
|
|
241408
|
+
node: TrelloAgentTaskUpdated;
|
|
241409
|
+
};
|
|
241265
241410
|
export declare enum TrelloAgentTaskState {
|
|
241266
241411
|
ApprovalRequired = "APPROVAL_REQUIRED",
|
|
241267
241412
|
AuthRequired = "AUTH_REQUIRED",
|
|
@@ -241280,6 +241425,22 @@ export type TrelloAgentTaskStatus = {
|
|
|
241280
241425
|
state: TrelloAgentTaskState;
|
|
241281
241426
|
timestamp: Scalars['DateTime']['output'];
|
|
241282
241427
|
};
|
|
241428
|
+
export type TrelloAgentTaskStatusUpdated = {
|
|
241429
|
+
__typename?: 'TrelloAgentTaskStatusUpdated';
|
|
241430
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
241431
|
+
state: TrelloAgentTaskState;
|
|
241432
|
+
timestamp: Scalars['DateTime']['output'];
|
|
241433
|
+
};
|
|
241434
|
+
export type TrelloAgentTaskUpdated = {
|
|
241435
|
+
__typename?: 'TrelloAgentTaskUpdated';
|
|
241436
|
+
id: Scalars['ID']['output'];
|
|
241437
|
+
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
241438
|
+
status?: Maybe<TrelloAgentTaskStatusUpdated>;
|
|
241439
|
+
};
|
|
241440
|
+
export type TrelloAgentTaskUpdatedConnection = {
|
|
241441
|
+
__typename?: 'TrelloAgentTaskUpdatedConnection';
|
|
241442
|
+
edges?: Maybe<Array<TrelloAgentTaskEdgeUpdated>>;
|
|
241443
|
+
};
|
|
241283
241444
|
export type TrelloAgenticActivity = {
|
|
241284
241445
|
__typename?: 'TrelloAgenticActivity';
|
|
241285
241446
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -241670,6 +241831,7 @@ export type TrelloAttachmentUpdated = {
|
|
|
241670
241831
|
id: Scalars['ID']['output'];
|
|
241671
241832
|
};
|
|
241672
241833
|
export type TrelloBaseBoard = {
|
|
241834
|
+
actions?: Maybe<TrelloCardActionConnection>;
|
|
241673
241835
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
241674
241836
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
241675
241837
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
@@ -241683,6 +241845,11 @@ export type TrelloBaseBoard = {
|
|
|
241683
241845
|
prefs: TrelloBaseBoardPrefs;
|
|
241684
241846
|
workspace?: Maybe<TrelloWorkspace>;
|
|
241685
241847
|
};
|
|
241848
|
+
export type TrelloBaseBoardActionsArgs = {
|
|
241849
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
241850
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
241851
|
+
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
241852
|
+
};
|
|
241686
241853
|
export type TrelloBaseBoardLabelsArgs = {
|
|
241687
241854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
241688
241855
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -241831,6 +241998,7 @@ export type TrelloBaseCardUpdated = {
|
|
|
241831
241998
|
};
|
|
241832
241999
|
export type TrelloBoard = Node & TrelloBaseBoard & {
|
|
241833
242000
|
__typename?: 'TrelloBoard';
|
|
242001
|
+
actions?: Maybe<TrelloCardActionConnection>;
|
|
241834
242002
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
241835
242003
|
closed: Scalars['Boolean']['output'];
|
|
241836
242004
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
@@ -241864,6 +242032,11 @@ export type TrelloBoard = Node & TrelloBaseBoard & {
|
|
|
241864
242032
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
241865
242033
|
workspace?: Maybe<TrelloWorkspace>;
|
|
241866
242034
|
};
|
|
242035
|
+
export type TrelloBoardActionsArgs = {
|
|
242036
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
242037
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
242038
|
+
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
242039
|
+
};
|
|
241867
242040
|
export type TrelloBoardCustomFieldsArgs = {
|
|
241868
242041
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
241869
242042
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -243960,6 +244133,7 @@ export type TrelloImagePreviewUpdatedConnection = {
|
|
|
243960
244133
|
};
|
|
243961
244134
|
export type TrelloInbox = TrelloBaseBoard & {
|
|
243962
244135
|
__typename?: 'TrelloInbox';
|
|
244136
|
+
actions?: Maybe<TrelloCardActionConnection>;
|
|
243963
244137
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
243964
244138
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
243965
244139
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
@@ -243973,6 +244147,11 @@ export type TrelloInbox = TrelloBaseBoard & {
|
|
|
243973
244147
|
prefs: TrelloInboxPrefs;
|
|
243974
244148
|
workspace?: Maybe<TrelloWorkspace>;
|
|
243975
244149
|
};
|
|
244150
|
+
export type TrelloInboxActionsArgs = {
|
|
244151
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
244152
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
244153
|
+
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
244154
|
+
};
|
|
243976
244155
|
export type TrelloInboxLabelsArgs = {
|
|
243977
244156
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
243978
244157
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -244870,6 +245049,48 @@ export type TrelloMovePlannerCalendarEventTargetOptions = {
|
|
|
244870
245049
|
plannerCalendarId: Scalars['ID']['input'];
|
|
244871
245050
|
providerAccountId: Scalars['ID']['input'];
|
|
244872
245051
|
};
|
|
245052
|
+
export type TrelloMultiboardCardDateFilterInput = {
|
|
245053
|
+
date?: InputMaybe<TrelloMultiboardDateRangeInput>;
|
|
245054
|
+
dueStart?: InputMaybe<TrelloMultiboardDueStartFilterInput>;
|
|
245055
|
+
};
|
|
245056
|
+
export declare enum TrelloMultiboardCardSortField {
|
|
245057
|
+
BoardName = "BOARD_NAME",
|
|
245058
|
+
BoardOrder = "BOARD_ORDER",
|
|
245059
|
+
Due = "DUE",
|
|
245060
|
+
Id = "ID",
|
|
245061
|
+
ListPos = "LIST_POS",
|
|
245062
|
+
Name = "NAME",
|
|
245063
|
+
Pos = "POS",
|
|
245064
|
+
ShortLink = "SHORT_LINK",
|
|
245065
|
+
Start = "START"
|
|
245066
|
+
}
|
|
245067
|
+
export type TrelloMultiboardCardSortInput = {
|
|
245068
|
+
direction?: InputMaybe<TrelloMultiboardSortDirection>;
|
|
245069
|
+
field: TrelloMultiboardCardSortField;
|
|
245070
|
+
};
|
|
245071
|
+
export type TrelloMultiboardDateFieldFilterInput = {
|
|
245072
|
+
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245073
|
+
none?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245074
|
+
noneOrRange?: InputMaybe<TrelloMultiboardDateRangeInput>;
|
|
245075
|
+
range?: InputMaybe<TrelloMultiboardDateRangeInput>;
|
|
245076
|
+
};
|
|
245077
|
+
export type TrelloMultiboardDateRangeInput = {
|
|
245078
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
245079
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
245080
|
+
};
|
|
245081
|
+
export type TrelloMultiboardDueStartFilterInput = {
|
|
245082
|
+
due?: InputMaybe<TrelloMultiboardDateFieldFilterInput>;
|
|
245083
|
+
start?: InputMaybe<TrelloMultiboardDateFieldFilterInput>;
|
|
245084
|
+
};
|
|
245085
|
+
export type TrelloMultiboardMemberFilterInput = {
|
|
245086
|
+
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245087
|
+
memberIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
245088
|
+
none?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245089
|
+
};
|
|
245090
|
+
export declare enum TrelloMultiboardSortDirection {
|
|
245091
|
+
Asc = "ASC",
|
|
245092
|
+
Desc = "DESC"
|
|
245093
|
+
}
|
|
244873
245094
|
export type TrelloMutationApi = {
|
|
244874
245095
|
__typename?: 'TrelloMutationApi';
|
|
244875
245096
|
acceptProposedEvents?: Maybe<TrelloAcceptProposedEventsPayload>;
|
|
@@ -246426,6 +246647,7 @@ export type TrelloQueryApi = {
|
|
|
246426
246647
|
usersById?: Maybe<Array<Maybe<TrelloMember>>>;
|
|
246427
246648
|
workOverviewDashboardJob?: Maybe<TrelloWorkOverviewDashboardJob>;
|
|
246428
246649
|
workspace?: Maybe<TrelloWorkspace>;
|
|
246650
|
+
workspaceMultiboardView?: Maybe<TrelloWorkspaceMultiboard>;
|
|
246429
246651
|
};
|
|
246430
246652
|
export type TrelloQueryApiApplicationArgs = {
|
|
246431
246653
|
id: Scalars['ID']['input'];
|
|
@@ -246580,6 +246802,9 @@ export type TrelloQueryApiWorkOverviewDashboardJobArgs = {
|
|
|
246580
246802
|
export type TrelloQueryApiWorkspaceArgs = {
|
|
246581
246803
|
id: Scalars['ID']['input'];
|
|
246582
246804
|
};
|
|
246805
|
+
export type TrelloQueryApiWorkspaceMultiboardViewArgs = {
|
|
246806
|
+
id: Scalars['ID']['input'];
|
|
246807
|
+
};
|
|
246583
246808
|
export type TrelloQuickCaptureBoard = {
|
|
246584
246809
|
__typename?: 'TrelloQuickCaptureBoard';
|
|
246585
246810
|
id: Scalars['ID']['output'];
|
|
@@ -247963,6 +248188,29 @@ export type TrelloWorkspaceMembershipsConnection = {
|
|
|
247963
248188
|
nodes?: Maybe<Array<TrelloMember>>;
|
|
247964
248189
|
pageInfo: PageInfo;
|
|
247965
248190
|
};
|
|
248191
|
+
export type TrelloWorkspaceMultiboard = {
|
|
248192
|
+
__typename?: 'TrelloWorkspaceMultiboard';
|
|
248193
|
+
cards?: Maybe<TrelloWorkspaceMultiboardCards>;
|
|
248194
|
+
};
|
|
248195
|
+
export type TrelloWorkspaceMultiboardCardsArgs = {
|
|
248196
|
+
boardIds: Array<Scalars['ID']['input']>;
|
|
248197
|
+
cardRoles?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
248198
|
+
created?: InputMaybe<TrelloMultiboardDateRangeInput>;
|
|
248199
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
248200
|
+
dateFilter?: InputMaybe<TrelloMultiboardCardDateFilterInput>;
|
|
248201
|
+
dueComplete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
248202
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
248203
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
248204
|
+
listIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
248205
|
+
memberFilter?: InputMaybe<TrelloMultiboardMemberFilterInput>;
|
|
248206
|
+
sortBy?: InputMaybe<Array<TrelloMultiboardCardSortInput>>;
|
|
248207
|
+
};
|
|
248208
|
+
export type TrelloWorkspaceMultiboardCards = {
|
|
248209
|
+
__typename?: 'TrelloWorkspaceMultiboardCards';
|
|
248210
|
+
cards: Array<TrelloBaseCard>;
|
|
248211
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
248212
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
248213
|
+
};
|
|
247966
248214
|
export type TrelloWorkspacePrefs = {
|
|
247967
248215
|
__typename?: 'TrelloWorkspacePrefs';
|
|
247968
248216
|
associatedDomain?: Maybe<Scalars['String']['output']>;
|