@forge/cli-shared 8.5.0-next.7 → 8.5.0
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 +33 -0
- package/out/graphql/graphql-types.d.ts +189 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +48 -26
- package/out/shared/assistant-cli.d.ts +14 -0
- package/out/shared/assistant-cli.d.ts.map +1 -0
- package/out/shared/assistant-cli.js +73 -0
- package/out/shared/error-handling.d.ts +5 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +5 -1
- package/out/shared/index.d.ts +1 -0
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/tunnel/tunnel-options.d.ts +1 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/ui/text.d.ts +13 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +15 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 924b093: Allow installation of previous major versions
|
|
8
|
+
- be30715: Add integration tests for developer space flow, comment T&C flow
|
|
9
|
+
- a209a3d: integrate with rovo dev cli
|
|
10
|
+
- 2a0dadd: Remove Node18 runtime
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- b262081: Minor bug fix with handling containers image list pagination command
|
|
15
|
+
- 725a653: Don't collect metadata from symlinked external dependencies
|
|
16
|
+
- a0e621c: Error handling, renaming few error messages in developer space flow
|
|
17
|
+
- 7b15cc4: Hide TypeScript bundler behind an EAP
|
|
18
|
+
- bda7c8d: Send 'app packaged' analytics event
|
|
19
|
+
- Updated dependencies [7e13ccd]
|
|
20
|
+
- Updated dependencies [acb3247]
|
|
21
|
+
- Updated dependencies [17dfed4]
|
|
22
|
+
- Updated dependencies [2a0dadd]
|
|
23
|
+
- Updated dependencies [d3b9bde]
|
|
24
|
+
- @forge/manifest@10.4.0
|
|
25
|
+
|
|
26
|
+
## 8.5.0-next.8
|
|
27
|
+
|
|
28
|
+
### Minor Changes
|
|
29
|
+
|
|
30
|
+
- a209a3d: integrate with rovo dev cli
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- b262081: Minor bug fix with handling containers image list pagination command
|
|
35
|
+
|
|
3
36
|
## 8.5.0-next.7
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
|
@@ -1994,6 +1994,7 @@ export declare type AgentStudioActionConfiguration = {
|
|
|
1994
1994
|
};
|
|
1995
1995
|
export declare type AgentStudioActionConfigurationInput = {
|
|
1996
1996
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1997
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
1997
1998
|
};
|
|
1998
1999
|
export declare type AgentStudioActionInput = {
|
|
1999
2000
|
actionKey: Scalars['String']['input'];
|
|
@@ -2029,6 +2030,7 @@ export declare type AgentStudioAddGroupsToCreatePermissionPayload = Payload & {
|
|
|
2029
2030
|
export declare type AgentStudioAgent = {
|
|
2030
2031
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2031
2032
|
description?: Maybe<Scalars['String']['output']>;
|
|
2033
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2032
2034
|
id: Scalars['ID']['output'];
|
|
2033
2035
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2034
2036
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -2064,6 +2066,7 @@ export declare type AgentStudioAgentPermissions = {
|
|
|
2064
2066
|
};
|
|
2065
2067
|
export declare type AgentStudioAgentQueryInput = {
|
|
2066
2068
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2069
|
+
onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2067
2070
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2068
2071
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2069
2072
|
onlyTemplateAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -2091,6 +2094,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
2091
2094
|
creator?: Maybe<User>;
|
|
2092
2095
|
creatorType?: Maybe<Scalars['String']['output']>;
|
|
2093
2096
|
description?: Maybe<Scalars['String']['output']>;
|
|
2097
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2094
2098
|
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
2095
2099
|
icon?: Maybe<Scalars['String']['output']>;
|
|
2096
2100
|
id: Scalars['ID']['output'];
|
|
@@ -2238,6 +2242,7 @@ export declare type AgentStudioKnowledgeConfiguration = {
|
|
|
2238
2242
|
};
|
|
2239
2243
|
export declare type AgentStudioKnowledgeConfigurationInput = {
|
|
2240
2244
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2245
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2241
2246
|
sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
|
|
2242
2247
|
};
|
|
2243
2248
|
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter | AgentStudioJsmKnowledgeFilter | AgentStudioSlackKnowledgeFilter;
|
|
@@ -2349,6 +2354,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
2349
2354
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2350
2355
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
2351
2356
|
description?: Maybe<Scalars['String']['output']>;
|
|
2357
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2352
2358
|
id: Scalars['ID']['output'];
|
|
2353
2359
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2354
2360
|
linkedJiraProject?: Maybe<JiraProject>;
|
|
@@ -2459,6 +2465,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
2459
2465
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
2460
2466
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
2461
2467
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2468
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2462
2469
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
2463
2470
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2464
2471
|
};
|
|
@@ -2486,6 +2493,7 @@ export declare type AgentStudioUpdateAgentPermissionPayload = Payload & {
|
|
|
2486
2493
|
};
|
|
2487
2494
|
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
2488
2495
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2496
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2489
2497
|
};
|
|
2490
2498
|
export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
2491
2499
|
__typename?: 'AgentStudioUpdateConversationStartersPayload';
|
|
@@ -2718,6 +2726,7 @@ export declare enum ApiGroup {
|
|
|
2718
2726
|
DevopsToolchain = "DEVOPS_TOOLCHAIN",
|
|
2719
2727
|
FeatureReleaseQuery = "FEATURE_RELEASE_QUERY",
|
|
2720
2728
|
Forge = "FORGE",
|
|
2729
|
+
Goals = "GOALS",
|
|
2721
2730
|
GuardDetect = "GUARD_DETECT",
|
|
2722
2731
|
Help = "HELP",
|
|
2723
2732
|
Identity = "IDENTITY",
|
|
@@ -2725,6 +2734,7 @@ export declare enum ApiGroup {
|
|
|
2725
2734
|
Jira = "JIRA",
|
|
2726
2735
|
Papi = "PAPI",
|
|
2727
2736
|
Polaris = "POLARIS",
|
|
2737
|
+
Projects = "PROJECTS",
|
|
2728
2738
|
ServiceHubAgentConfiguration = "SERVICE_HUB_AGENT_CONFIGURATION",
|
|
2729
2739
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
2730
2740
|
Teams = "TEAMS",
|
|
@@ -4649,8 +4659,10 @@ export declare type AssetsDmObjectsListDataColumn = {
|
|
|
4649
4659
|
__typename?: 'AssetsDMObjectsListDataColumn';
|
|
4650
4660
|
columnName: Scalars['String']['output'];
|
|
4651
4661
|
columnType: AssetsDmObjectsListColumnType;
|
|
4652
|
-
|
|
4662
|
+
isAttribute: Scalars['Boolean']['output'];
|
|
4663
|
+
isDataSource: Scalars['Boolean']['output'];
|
|
4653
4664
|
isPrimary: Scalars['Boolean']['output'];
|
|
4665
|
+
rawColumnType: AssetsDmObjectsListRawColumnType;
|
|
4654
4666
|
};
|
|
4655
4667
|
export declare type AssetsDmObjectsListDataRow = {
|
|
4656
4668
|
__typename?: 'AssetsDMObjectsListDataRow';
|
|
@@ -4829,6 +4841,24 @@ export declare type AssetsDmSavedSearch = {
|
|
|
4829
4841
|
resultCount: Scalars['Int']['output'];
|
|
4830
4842
|
savedSearchId: Scalars['ID']['output'];
|
|
4831
4843
|
};
|
|
4844
|
+
export declare type AssetsDmSavedSearchInput = {
|
|
4845
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
4846
|
+
};
|
|
4847
|
+
export declare type AssetsDmSavedSearchesCreateArgs = {
|
|
4848
|
+
cloudId: Scalars['ID']['input'];
|
|
4849
|
+
isExportToAsset?: Scalars['Boolean']['input'];
|
|
4850
|
+
isPublic?: Scalars['Boolean']['input'];
|
|
4851
|
+
name: Scalars['String']['input'];
|
|
4852
|
+
objectId: Scalars['ID']['input'];
|
|
4853
|
+
searchInput: AssetsDmSavedSearchInput;
|
|
4854
|
+
workspaceId: Scalars['ID']['input'];
|
|
4855
|
+
};
|
|
4856
|
+
export declare type AssetsDmSavedSearchesCreateResponse = {
|
|
4857
|
+
__typename?: 'AssetsDMSavedSearchesCreateResponse';
|
|
4858
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
4859
|
+
message: Scalars['String']['output'];
|
|
4860
|
+
returnValue: Scalars['String']['output'];
|
|
4861
|
+
};
|
|
4832
4862
|
export declare type AssetsDmSavedSearchesDeleteArgs = {
|
|
4833
4863
|
cloudId: Scalars['ID']['input'];
|
|
4834
4864
|
savedSearchId: Scalars['ID']['input'];
|
|
@@ -6397,6 +6427,24 @@ export declare type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
|
6397
6427
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
6398
6428
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
6399
6429
|
};
|
|
6430
|
+
export declare type CcpExtension = {
|
|
6431
|
+
__typename?: 'CcpExtension';
|
|
6432
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
6433
|
+
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
6434
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
6435
|
+
data?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
6436
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
6437
|
+
entityType?: Maybe<CcpExtensionEntityType>;
|
|
6438
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
6439
|
+
revisionKey?: Maybe<Scalars['String']['output']>;
|
|
6440
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
6441
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
6442
|
+
};
|
|
6443
|
+
export declare enum CcpExtensionEntityType {
|
|
6444
|
+
Offering = "OFFERING",
|
|
6445
|
+
PricingPlan = "PRICING_PLAN",
|
|
6446
|
+
Product = "PRODUCT"
|
|
6447
|
+
}
|
|
6400
6448
|
export declare type CcpInvoiceGroup = CommerceInvoiceGroup & {
|
|
6401
6449
|
__typename?: 'CcpInvoiceGroup';
|
|
6402
6450
|
experienceCapabilities?: Maybe<CcpInvoiceGroupExperienceCapabilities>;
|
|
@@ -6933,6 +6981,7 @@ export declare enum CcpPricingType {
|
|
|
6933
6981
|
export declare type CcpProduct = Node & {
|
|
6934
6982
|
__typename?: 'CcpProduct';
|
|
6935
6983
|
catalogAccountId?: Maybe<Scalars['ID']['output']>;
|
|
6984
|
+
extensions?: Maybe<Array<Maybe<CcpExtension>>>;
|
|
6936
6985
|
id: Scalars['ID']['output'];
|
|
6937
6986
|
name?: Maybe<Scalars['String']['output']>;
|
|
6938
6987
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
@@ -6940,6 +6989,9 @@ export declare type CcpProduct = Node & {
|
|
|
6940
6989
|
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
6941
6990
|
version?: Maybe<Scalars['Int']['output']>;
|
|
6942
6991
|
};
|
|
6992
|
+
export declare type CcpProductExtensionsArgs = {
|
|
6993
|
+
revisionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6994
|
+
};
|
|
6943
6995
|
export declare enum CcpProductStatus {
|
|
6944
6996
|
Active = "ACTIVE",
|
|
6945
6997
|
AtNotice = "AT_NOTICE",
|
|
@@ -14653,6 +14705,24 @@ export declare type ConfluenceCustomContentInfo = {
|
|
|
14653
14705
|
customContentTypeName: Scalars['String']['output'];
|
|
14654
14706
|
supportedPermissions: Array<Maybe<ConfluenceCustomContentPermissionType>>;
|
|
14655
14707
|
};
|
|
14708
|
+
export declare type ConfluenceCustomContentPermissionAssignment = {
|
|
14709
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignment';
|
|
14710
|
+
confluenceCustomContentPrincipal?: Maybe<ConfluenceCustomContentPrincipal>;
|
|
14711
|
+
customContentTypeKey?: Maybe<Scalars['String']['output']>;
|
|
14712
|
+
customContentTypeName?: Maybe<Scalars['String']['output']>;
|
|
14713
|
+
permissionType?: Maybe<ConfluenceCustomContentPermissionType>;
|
|
14714
|
+
};
|
|
14715
|
+
export declare type ConfluenceCustomContentPermissionAssignmentConnection = {
|
|
14716
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignmentConnection';
|
|
14717
|
+
edges?: Maybe<Array<Maybe<ConfluenceCustomContentPermissionAssignmentEdge>>>;
|
|
14718
|
+
nodes?: Maybe<Array<Maybe<ConfluenceCustomContentPermissionAssignment>>>;
|
|
14719
|
+
pageInfo: ConfluencePageInfo;
|
|
14720
|
+
};
|
|
14721
|
+
export declare type ConfluenceCustomContentPermissionAssignmentEdge = {
|
|
14722
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignmentEdge';
|
|
14723
|
+
cursor: Scalars['String']['output'];
|
|
14724
|
+
node?: Maybe<ConfluenceCustomContentPermissionAssignment>;
|
|
14725
|
+
};
|
|
14656
14726
|
export declare type ConfluenceCustomContentPermissionInput = {
|
|
14657
14727
|
customContentTypeKey: Scalars['String']['input'];
|
|
14658
14728
|
permission: ConfluenceCustomContentPermissionType;
|
|
@@ -14668,6 +14738,11 @@ export declare enum ConfluenceCustomContentPermissionType {
|
|
|
14668
14738
|
Delete = "DELETE",
|
|
14669
14739
|
Read = "READ"
|
|
14670
14740
|
}
|
|
14741
|
+
export declare type ConfluenceCustomContentPrincipal = {
|
|
14742
|
+
__typename?: 'ConfluenceCustomContentPrincipal';
|
|
14743
|
+
principalId: Scalars['ID']['output'];
|
|
14744
|
+
principalType: ConfluenceCustomContentPermissionPrincipalType;
|
|
14745
|
+
};
|
|
14671
14746
|
export declare type ConfluenceCustomContentPrincipalInput = {
|
|
14672
14747
|
principalId: Scalars['ID']['input'];
|
|
14673
14748
|
principalType: ConfluenceCustomContentPermissionPrincipalType;
|
|
@@ -20089,6 +20164,7 @@ export declare type CplsAddContributionInput = {
|
|
|
20089
20164
|
export declare type CplsAddContributionsInput = {
|
|
20090
20165
|
cloudId: Scalars['ID']['input'];
|
|
20091
20166
|
contributions: Array<CplsAddContributionInput>;
|
|
20167
|
+
scopeId: Scalars['ID']['input'];
|
|
20092
20168
|
};
|
|
20093
20169
|
export declare type CplsAddContributionsPayload = {
|
|
20094
20170
|
__typename?: 'CplsAddContributionsPayload';
|
|
@@ -21100,6 +21176,7 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
21100
21176
|
export declare type CsmAiByodContent = {
|
|
21101
21177
|
__typename?: 'CsmAiByodContent';
|
|
21102
21178
|
datasourceId: Scalars['String']['output'];
|
|
21179
|
+
integrationId?: Maybe<Scalars['String']['output']>;
|
|
21103
21180
|
workspaceName: Scalars['String']['output'];
|
|
21104
21181
|
workspaceUrl: Scalars['String']['output'];
|
|
21105
21182
|
};
|
|
@@ -26040,6 +26117,7 @@ export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
|
26040
26117
|
isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26041
26118
|
name: Scalars['String']['input'];
|
|
26042
26119
|
payload: Scalars['String']['input'];
|
|
26120
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
26043
26121
|
};
|
|
26044
26122
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
26045
26123
|
input: RemoveAppContributorsInput;
|
|
@@ -26208,6 +26286,7 @@ export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
|
26208
26286
|
installationId: Scalars['ID']['input'];
|
|
26209
26287
|
isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26210
26288
|
name: Scalars['String']['input'];
|
|
26289
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
26211
26290
|
};
|
|
26212
26291
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
26213
26292
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
@@ -30299,7 +30378,8 @@ export declare enum GraphIntegrationMcpAdminManagementMcpServerStatus {
|
|
|
30299
30378
|
Deleting = "DELETING",
|
|
30300
30379
|
Provisioning = "PROVISIONING",
|
|
30301
30380
|
Registered = "REGISTERED",
|
|
30302
|
-
Suspended = "SUSPENDED"
|
|
30381
|
+
Suspended = "SUSPENDED",
|
|
30382
|
+
ToolConfigurationPending = "TOOL_CONFIGURATION_PENDING"
|
|
30303
30383
|
}
|
|
30304
30384
|
export declare enum GraphIntegrationMcpAdminManagementMcpServerType {
|
|
30305
30385
|
Http = "HTTP",
|
|
@@ -33191,6 +33271,8 @@ export declare type GraphStore = {
|
|
|
33191
33271
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
33192
33272
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
33193
33273
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
33274
|
+
customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
|
|
33275
|
+
customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
|
|
33194
33276
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
33195
33277
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
33196
33278
|
cypherQueryV2Batch: GraphStoreCypherQueryV2BatchConnection;
|
|
@@ -34629,6 +34711,20 @@ export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
|
34629
34711
|
id: Scalars['ID']['input'];
|
|
34630
34712
|
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
34631
34713
|
};
|
|
34714
|
+
export declare type GraphStoreCustomerAssociatedIssueArgs = {
|
|
34715
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34716
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34717
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34718
|
+
id: Scalars['ID']['input'];
|
|
34719
|
+
sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
|
|
34720
|
+
};
|
|
34721
|
+
export declare type GraphStoreCustomerAssociatedIssueInverseArgs = {
|
|
34722
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34723
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34724
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34725
|
+
id: Scalars['ID']['input'];
|
|
34726
|
+
sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
|
|
34727
|
+
};
|
|
34632
34728
|
export declare type GraphStoreCypherQueryArgs = {
|
|
34633
34729
|
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
34634
34730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40998,6 +41094,9 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
40998
41094
|
Sca = "SCA",
|
|
40999
41095
|
Unknown = "UNKNOWN"
|
|
41000
41096
|
}
|
|
41097
|
+
export declare type GraphStoreCustomerAssociatedIssueSortInput = {
|
|
41098
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41099
|
+
};
|
|
41001
41100
|
export declare type GraphStoreCypherQueryBooleanObject = {
|
|
41002
41101
|
__typename?: 'GraphStoreCypherQueryBooleanObject';
|
|
41003
41102
|
value: Scalars['Boolean']['output'];
|
|
@@ -47537,6 +47636,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
47537
47636
|
};
|
|
47538
47637
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
47539
47638
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
47639
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueConnection = HasPageInfo & {
|
|
47640
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueConnection';
|
|
47641
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueEdge>>>;
|
|
47642
|
+
pageInfo: PageInfo;
|
|
47643
|
+
};
|
|
47644
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueEdge = {
|
|
47645
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueEdge';
|
|
47646
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47647
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47648
|
+
id: Scalars['ID']['output'];
|
|
47649
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47650
|
+
node?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueUnion>;
|
|
47651
|
+
};
|
|
47652
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection = HasPageInfo & {
|
|
47653
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection';
|
|
47654
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge>>>;
|
|
47655
|
+
pageInfo: PageInfo;
|
|
47656
|
+
};
|
|
47657
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge = {
|
|
47658
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge';
|
|
47659
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47660
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47661
|
+
id: Scalars['ID']['output'];
|
|
47662
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47663
|
+
node?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion>;
|
|
47664
|
+
};
|
|
47665
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion = Customer360Customer;
|
|
47666
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueUnion = JiraIssue;
|
|
47540
47667
|
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection = HasPageInfo & {
|
|
47541
47668
|
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection';
|
|
47542
47669
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge>>>;
|
|
@@ -56129,7 +56256,9 @@ export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
|
56129
56256
|
};
|
|
56130
56257
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
56131
56258
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
56259
|
+
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
56132
56260
|
EditionParity = "EDITION_PARITY",
|
|
56261
|
+
Reactivation = "REACTIVATION",
|
|
56133
56262
|
ReverseTrial = "REVERSE_TRIAL",
|
|
56134
56263
|
Ui = "UI"
|
|
56135
56264
|
}
|
|
@@ -67028,7 +67157,8 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
67028
67157
|
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
67029
67158
|
NinProject = "NIN_PROJECT",
|
|
67030
67159
|
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
67031
|
-
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
67160
|
+
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST",
|
|
67161
|
+
TimelineProject = "TIMELINE_PROJECT"
|
|
67032
67162
|
}
|
|
67033
67163
|
export declare type JiraIssueSearchOptions = {
|
|
67034
67164
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -80987,6 +81117,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
80987
81117
|
definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
80988
81118
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
80989
81119
|
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
81120
|
+
querySuggestions?: Maybe<KnowledgeDiscoveryQuerySuggestionsResult>;
|
|
80990
81121
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
80991
81122
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
80992
81123
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
@@ -81058,6 +81189,12 @@ export declare type KnowledgeDiscoveryQueryApiPopularSearchQueryArgs = {
|
|
|
81058
81189
|
cloudId: Scalars['String']['input'];
|
|
81059
81190
|
searchQuery: Scalars['String']['input'];
|
|
81060
81191
|
};
|
|
81192
|
+
export declare type KnowledgeDiscoveryQueryApiQuerySuggestionsArgs = {
|
|
81193
|
+
cloudId: Scalars['String']['input'];
|
|
81194
|
+
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
81195
|
+
query: Scalars['String']['input'];
|
|
81196
|
+
searchHistory: Array<Scalars['String']['input']>;
|
|
81197
|
+
};
|
|
81061
81198
|
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
81062
81199
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81063
81200
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -81101,6 +81238,11 @@ export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
|
81101
81238
|
cloudId: Scalars['String']['input'];
|
|
81102
81239
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
81103
81240
|
};
|
|
81241
|
+
export declare type KnowledgeDiscoveryQuerySuggestions = {
|
|
81242
|
+
__typename?: 'KnowledgeDiscoveryQuerySuggestions';
|
|
81243
|
+
suggestions: Array<Scalars['String']['output']>;
|
|
81244
|
+
};
|
|
81245
|
+
export declare type KnowledgeDiscoveryQuerySuggestionsResult = KnowledgeDiscoveryQuerySuggestions | QueryError;
|
|
81104
81246
|
export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
|
|
81105
81247
|
export declare type KnowledgeDiscoveryRelatedEntityAction = {
|
|
81106
81248
|
action?: InputMaybe<KnowledgeDiscoveryRelatedEntityActionType>;
|
|
@@ -87644,6 +87786,7 @@ export declare type Mutation = {
|
|
|
87644
87786
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
87645
87787
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
87646
87788
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
87789
|
+
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
87647
87790
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
87648
87791
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
87649
87792
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
@@ -87921,6 +88064,7 @@ export declare type Mutation = {
|
|
|
87921
88064
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
87922
88065
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
87923
88066
|
home_addTagsByName?: Maybe<TownsquareAddTagsByNamePayload>;
|
|
88067
|
+
home_createTag?: Maybe<TownsquareCreateTagPayload>;
|
|
87924
88068
|
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
87925
88069
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
87926
88070
|
installApp?: Maybe<AppInstallationResponse>;
|
|
@@ -88411,6 +88555,9 @@ export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
|
88411
88555
|
input: AssetsDmObjectTagCreateInput;
|
|
88412
88556
|
workspaceId: Scalars['ID']['input'];
|
|
88413
88557
|
};
|
|
88558
|
+
export declare type MutationAssetsDm_CreateSavedSearchArgs = {
|
|
88559
|
+
args: AssetsDmSavedSearchesCreateArgs;
|
|
88560
|
+
};
|
|
88414
88561
|
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
88415
88562
|
cloudId: Scalars['ID']['input'];
|
|
88416
88563
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89371,6 +89518,9 @@ export declare type MutationHome_AddTagsByIdArgs = {
|
|
|
89371
89518
|
export declare type MutationHome_AddTagsByNameArgs = {
|
|
89372
89519
|
input: TownsquareAddTagsByNameInput;
|
|
89373
89520
|
};
|
|
89521
|
+
export declare type MutationHome_CreateTagArgs = {
|
|
89522
|
+
input: TownsquareCreateTagInput;
|
|
89523
|
+
};
|
|
89374
89524
|
export declare type MutationHome_RemoveTagsArgs = {
|
|
89375
89525
|
input: TownsquareRemoveTagsInput;
|
|
89376
89526
|
};
|
|
@@ -93380,6 +93530,7 @@ export declare type Query = {
|
|
|
93380
93530
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
93381
93531
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
93382
93532
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
93533
|
+
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
93383
93534
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
93384
93535
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
93385
93536
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
@@ -93401,6 +93552,7 @@ export declare type Query = {
|
|
|
93401
93552
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
93402
93553
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
93403
93554
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
93555
|
+
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
93404
93556
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
93405
93557
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
93406
93558
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -94630,6 +94782,10 @@ export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
|
94630
94782
|
cloudId: Scalars['ID']['input'];
|
|
94631
94783
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
94632
94784
|
};
|
|
94785
|
+
export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
94786
|
+
cloudId: Scalars['ID']['input'];
|
|
94787
|
+
contentId: Scalars['ID']['input'];
|
|
94788
|
+
};
|
|
94633
94789
|
export declare type QueryConfluence_ContentAiSummariesArgs = {
|
|
94634
94790
|
contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
94635
94791
|
objectType: KnowledgeGraphObjectType;
|
|
@@ -94743,6 +94899,14 @@ export declare type QueryConfluence_GetAllAppsArgs = {
|
|
|
94743
94899
|
cloudId: Scalars['ID']['input'];
|
|
94744
94900
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94745
94901
|
};
|
|
94902
|
+
export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs = {
|
|
94903
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94904
|
+
appId: Scalars['ID']['input'];
|
|
94905
|
+
appType: ConfluenceAppType;
|
|
94906
|
+
cloudId: Scalars['ID']['input'];
|
|
94907
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94908
|
+
spaceId: Scalars['ID']['input'];
|
|
94909
|
+
};
|
|
94746
94910
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
94747
94911
|
cloudId: Scalars['ID']['input'];
|
|
94748
94912
|
};
|
|
@@ -98904,8 +99068,11 @@ export declare enum Scope {
|
|
|
98904
99068
|
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
98905
99069
|
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
98906
99070
|
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
99071
|
+
DeleteConfluenceDatabase = "DELETE_CONFLUENCE_DATABASE",
|
|
99072
|
+
DeleteConfluenceFolder = "DELETE_CONFLUENCE_FOLDER",
|
|
98907
99073
|
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
98908
99074
|
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
99075
|
+
DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
|
|
98909
99076
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
98910
99077
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
98911
99078
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
@@ -99071,6 +99238,8 @@ export declare enum Scope {
|
|
|
99071
99238
|
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
99072
99239
|
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
99073
99240
|
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
99241
|
+
ReadConfluenceDatabase = "READ_CONFLUENCE_DATABASE",
|
|
99242
|
+
ReadConfluenceFolder = "READ_CONFLUENCE_FOLDER",
|
|
99074
99243
|
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
99075
99244
|
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
99076
99245
|
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
@@ -99084,6 +99253,7 @@ export declare enum Scope {
|
|
|
99084
99253
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
99085
99254
|
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
99086
99255
|
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
99256
|
+
ReadConfluenceWhiteboard = "READ_CONFLUENCE_WHITEBOARD",
|
|
99087
99257
|
ReadContainer = "READ_CONTAINER",
|
|
99088
99258
|
ReadCustomer = "READ_CUSTOMER",
|
|
99089
99259
|
ReadDesign = "READ_DESIGN",
|
|
@@ -99179,6 +99349,8 @@ export declare enum Scope {
|
|
|
99179
99349
|
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
99180
99350
|
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
99181
99351
|
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
99352
|
+
WriteConfluenceDatabase = "WRITE_CONFLUENCE_DATABASE",
|
|
99353
|
+
WriteConfluenceFolder = "WRITE_CONFLUENCE_FOLDER",
|
|
99182
99354
|
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
99183
99355
|
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
99184
99356
|
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
@@ -99191,6 +99363,7 @@ export declare enum Scope {
|
|
|
99191
99363
|
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
99192
99364
|
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
99193
99365
|
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
99366
|
+
WriteConfluenceWhiteboard = "WRITE_CONFLUENCE_WHITEBOARD",
|
|
99194
99367
|
WriteContainer = "WRITE_CONTAINER",
|
|
99195
99368
|
WriteCustomer = "WRITE_CUSTOMER",
|
|
99196
99369
|
WriteDesign = "WRITE_DESIGN",
|
|
@@ -99595,6 +99768,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
99595
99768
|
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
99596
99769
|
filters: SearchFilterInput;
|
|
99597
99770
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99771
|
+
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99598
99772
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99599
99773
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
99600
99774
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105883,6 +106057,16 @@ export declare type TownsquareCreateRelationshipsPayload = {
|
|
|
105883
106057
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
105884
106058
|
success: Scalars['Boolean']['output'];
|
|
105885
106059
|
};
|
|
106060
|
+
export declare type TownsquareCreateTagInput = {
|
|
106061
|
+
containerId: Scalars['ID']['input'];
|
|
106062
|
+
name: Scalars['String']['input'];
|
|
106063
|
+
};
|
|
106064
|
+
export declare type TownsquareCreateTagPayload = {
|
|
106065
|
+
__typename?: 'TownsquareCreateTagPayload';
|
|
106066
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106067
|
+
success: Scalars['Boolean']['output'];
|
|
106068
|
+
tag?: Maybe<TownsquareTag>;
|
|
106069
|
+
};
|
|
105886
106070
|
export declare type TownsquareDecision = TownsquareHighlight & {
|
|
105887
106071
|
__typename?: 'TownsquareDecision';
|
|
105888
106072
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -108462,6 +108646,7 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
108462
108646
|
node: TrelloCardUpdated;
|
|
108463
108647
|
};
|
|
108464
108648
|
export declare enum TrelloCardExternalSource {
|
|
108649
|
+
BrowserExtension = "BROWSER_EXTENSION",
|
|
108465
108650
|
Email = "EMAIL",
|
|
108466
108651
|
Loom = "LOOM",
|
|
108467
108652
|
Msteams = "MSTEAMS",
|
|
@@ -109558,7 +109743,6 @@ export declare type TrelloMutationApi = {
|
|
|
109558
109743
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
109559
109744
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
109560
109745
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
109561
|
-
updateApplicationBasicInformation?: Maybe<TrelloUpdateApplicationBasicInformationPayload>;
|
|
109562
109746
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
109563
109747
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
109564
109748
|
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
@@ -109649,9 +109833,6 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
109649
109833
|
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
109650
109834
|
input: TrelloUpdateAiRuleInput;
|
|
109651
109835
|
};
|
|
109652
|
-
export declare type TrelloMutationApiUpdateApplicationBasicInformationArgs = {
|
|
109653
|
-
input: TrelloUpdateApplicationBasicInformationInput;
|
|
109654
|
-
};
|
|
109655
109836
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
109656
109837
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
109657
109838
|
};
|
|
@@ -110314,6 +110495,7 @@ export declare type TrelloReaction = {
|
|
|
110314
110495
|
__typename?: 'TrelloReaction';
|
|
110315
110496
|
emoji?: Maybe<TrelloEmoji>;
|
|
110316
110497
|
member?: Maybe<TrelloMember>;
|
|
110498
|
+
objectId: Scalars['ID']['output'];
|
|
110317
110499
|
};
|
|
110318
110500
|
export declare type TrelloReactionLimits = {
|
|
110319
110501
|
__typename?: 'TrelloReactionLimits';
|
|
@@ -110554,21 +110736,6 @@ export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
|
110554
110736
|
errors?: Maybe<Array<MutationError>>;
|
|
110555
110737
|
success: Scalars['Boolean']['output'];
|
|
110556
110738
|
};
|
|
110557
|
-
export declare type TrelloUpdateApplicationBasicInformationInput = {
|
|
110558
|
-
author?: InputMaybe<Scalars['String']['input']>;
|
|
110559
|
-
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
110560
|
-
email?: InputMaybe<Scalars['String']['input']>;
|
|
110561
|
-
icon?: InputMaybe<Scalars['String']['input']>;
|
|
110562
|
-
id: Scalars['ID']['input'];
|
|
110563
|
-
iframeConnectorUrl?: InputMaybe<Scalars['String']['input']>;
|
|
110564
|
-
supportContact?: InputMaybe<Scalars['String']['input']>;
|
|
110565
|
-
};
|
|
110566
|
-
export declare type TrelloUpdateApplicationBasicInformationPayload = Payload & {
|
|
110567
|
-
__typename?: 'TrelloUpdateApplicationBasicInformationPayload';
|
|
110568
|
-
application?: Maybe<TrelloApplication>;
|
|
110569
|
-
errors?: Maybe<Array<MutationError>>;
|
|
110570
|
-
success: Scalars['Boolean']['output'];
|
|
110571
|
-
};
|
|
110572
110739
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
110573
110740
|
boardId: Scalars['ID']['input'];
|
|
110574
110741
|
value: Scalars['Boolean']['input'];
|