@forge/cli-shared 8.5.0-next.7 → 8.5.0-next.8
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 +10 -0
- package/out/graphql/graphql-types.d.ts +139 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +44 -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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.5.0-next.8
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a209a3d: integrate with rovo dev cli
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- b262081: Minor bug fix with handling containers image list pagination command
|
|
12
|
+
|
|
3
13
|
## 8.5.0-next.7
|
|
4
14
|
|
|
5
15
|
### 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']>;
|
|
@@ -2091,6 +2093,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
2091
2093
|
creator?: Maybe<User>;
|
|
2092
2094
|
creatorType?: Maybe<Scalars['String']['output']>;
|
|
2093
2095
|
description?: Maybe<Scalars['String']['output']>;
|
|
2096
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2094
2097
|
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
2095
2098
|
icon?: Maybe<Scalars['String']['output']>;
|
|
2096
2099
|
id: Scalars['ID']['output'];
|
|
@@ -2238,6 +2241,7 @@ export declare type AgentStudioKnowledgeConfiguration = {
|
|
|
2238
2241
|
};
|
|
2239
2242
|
export declare type AgentStudioKnowledgeConfigurationInput = {
|
|
2240
2243
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2244
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2241
2245
|
sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
|
|
2242
2246
|
};
|
|
2243
2247
|
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter | AgentStudioJsmKnowledgeFilter | AgentStudioSlackKnowledgeFilter;
|
|
@@ -2349,6 +2353,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
2349
2353
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2350
2354
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
2351
2355
|
description?: Maybe<Scalars['String']['output']>;
|
|
2356
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2352
2357
|
id: Scalars['ID']['output'];
|
|
2353
2358
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2354
2359
|
linkedJiraProject?: Maybe<JiraProject>;
|
|
@@ -2459,6 +2464,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
2459
2464
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
2460
2465
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
2461
2466
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2467
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2462
2468
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
2463
2469
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2464
2470
|
};
|
|
@@ -2486,6 +2492,7 @@ export declare type AgentStudioUpdateAgentPermissionPayload = Payload & {
|
|
|
2486
2492
|
};
|
|
2487
2493
|
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
2488
2494
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2495
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2489
2496
|
};
|
|
2490
2497
|
export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
2491
2498
|
__typename?: 'AgentStudioUpdateConversationStartersPayload';
|
|
@@ -6397,6 +6404,24 @@ export declare type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
|
6397
6404
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
6398
6405
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
6399
6406
|
};
|
|
6407
|
+
export declare type CcpExtension = {
|
|
6408
|
+
__typename?: 'CcpExtension';
|
|
6409
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
6410
|
+
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
6411
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
6412
|
+
data?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
6413
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
6414
|
+
entityType?: Maybe<CcpExtensionEntityType>;
|
|
6415
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
6416
|
+
revisionKey?: Maybe<Scalars['String']['output']>;
|
|
6417
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
6418
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
6419
|
+
};
|
|
6420
|
+
export declare enum CcpExtensionEntityType {
|
|
6421
|
+
Offering = "OFFERING",
|
|
6422
|
+
PricingPlan = "PRICING_PLAN",
|
|
6423
|
+
Product = "PRODUCT"
|
|
6424
|
+
}
|
|
6400
6425
|
export declare type CcpInvoiceGroup = CommerceInvoiceGroup & {
|
|
6401
6426
|
__typename?: 'CcpInvoiceGroup';
|
|
6402
6427
|
experienceCapabilities?: Maybe<CcpInvoiceGroupExperienceCapabilities>;
|
|
@@ -6933,6 +6958,7 @@ export declare enum CcpPricingType {
|
|
|
6933
6958
|
export declare type CcpProduct = Node & {
|
|
6934
6959
|
__typename?: 'CcpProduct';
|
|
6935
6960
|
catalogAccountId?: Maybe<Scalars['ID']['output']>;
|
|
6961
|
+
extensions?: Maybe<Array<Maybe<CcpExtension>>>;
|
|
6936
6962
|
id: Scalars['ID']['output'];
|
|
6937
6963
|
name?: Maybe<Scalars['String']['output']>;
|
|
6938
6964
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
@@ -6940,6 +6966,9 @@ export declare type CcpProduct = Node & {
|
|
|
6940
6966
|
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
6941
6967
|
version?: Maybe<Scalars['Int']['output']>;
|
|
6942
6968
|
};
|
|
6969
|
+
export declare type CcpProductExtensionsArgs = {
|
|
6970
|
+
revisionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6971
|
+
};
|
|
6943
6972
|
export declare enum CcpProductStatus {
|
|
6944
6973
|
Active = "ACTIVE",
|
|
6945
6974
|
AtNotice = "AT_NOTICE",
|
|
@@ -14653,6 +14682,24 @@ export declare type ConfluenceCustomContentInfo = {
|
|
|
14653
14682
|
customContentTypeName: Scalars['String']['output'];
|
|
14654
14683
|
supportedPermissions: Array<Maybe<ConfluenceCustomContentPermissionType>>;
|
|
14655
14684
|
};
|
|
14685
|
+
export declare type ConfluenceCustomContentPermissionAssignment = {
|
|
14686
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignment';
|
|
14687
|
+
confluenceCustomContentPrincipal?: Maybe<ConfluenceCustomContentPrincipal>;
|
|
14688
|
+
customContentTypeKey?: Maybe<Scalars['String']['output']>;
|
|
14689
|
+
customContentTypeName?: Maybe<Scalars['String']['output']>;
|
|
14690
|
+
permissionType?: Maybe<ConfluenceCustomContentPermissionType>;
|
|
14691
|
+
};
|
|
14692
|
+
export declare type ConfluenceCustomContentPermissionAssignmentConnection = {
|
|
14693
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignmentConnection';
|
|
14694
|
+
edges?: Maybe<Array<Maybe<ConfluenceCustomContentPermissionAssignmentEdge>>>;
|
|
14695
|
+
nodes?: Maybe<Array<Maybe<ConfluenceCustomContentPermissionAssignment>>>;
|
|
14696
|
+
pageInfo: ConfluencePageInfo;
|
|
14697
|
+
};
|
|
14698
|
+
export declare type ConfluenceCustomContentPermissionAssignmentEdge = {
|
|
14699
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignmentEdge';
|
|
14700
|
+
cursor: Scalars['String']['output'];
|
|
14701
|
+
node?: Maybe<ConfluenceCustomContentPermissionAssignment>;
|
|
14702
|
+
};
|
|
14656
14703
|
export declare type ConfluenceCustomContentPermissionInput = {
|
|
14657
14704
|
customContentTypeKey: Scalars['String']['input'];
|
|
14658
14705
|
permission: ConfluenceCustomContentPermissionType;
|
|
@@ -14668,6 +14715,11 @@ export declare enum ConfluenceCustomContentPermissionType {
|
|
|
14668
14715
|
Delete = "DELETE",
|
|
14669
14716
|
Read = "READ"
|
|
14670
14717
|
}
|
|
14718
|
+
export declare type ConfluenceCustomContentPrincipal = {
|
|
14719
|
+
__typename?: 'ConfluenceCustomContentPrincipal';
|
|
14720
|
+
principalId: Scalars['ID']['output'];
|
|
14721
|
+
principalType: ConfluenceCustomContentPermissionPrincipalType;
|
|
14722
|
+
};
|
|
14671
14723
|
export declare type ConfluenceCustomContentPrincipalInput = {
|
|
14672
14724
|
principalId: Scalars['ID']['input'];
|
|
14673
14725
|
principalType: ConfluenceCustomContentPermissionPrincipalType;
|
|
@@ -20089,6 +20141,7 @@ export declare type CplsAddContributionInput = {
|
|
|
20089
20141
|
export declare type CplsAddContributionsInput = {
|
|
20090
20142
|
cloudId: Scalars['ID']['input'];
|
|
20091
20143
|
contributions: Array<CplsAddContributionInput>;
|
|
20144
|
+
scopeId: Scalars['ID']['input'];
|
|
20092
20145
|
};
|
|
20093
20146
|
export declare type CplsAddContributionsPayload = {
|
|
20094
20147
|
__typename?: 'CplsAddContributionsPayload';
|
|
@@ -26040,6 +26093,7 @@ export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
|
26040
26093
|
isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26041
26094
|
name: Scalars['String']['input'];
|
|
26042
26095
|
payload: Scalars['String']['input'];
|
|
26096
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
26043
26097
|
};
|
|
26044
26098
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
26045
26099
|
input: RemoveAppContributorsInput;
|
|
@@ -26208,6 +26262,7 @@ export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
|
26208
26262
|
installationId: Scalars['ID']['input'];
|
|
26209
26263
|
isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26210
26264
|
name: Scalars['String']['input'];
|
|
26265
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
26211
26266
|
};
|
|
26212
26267
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
26213
26268
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
@@ -33191,6 +33246,8 @@ export declare type GraphStore = {
|
|
|
33191
33246
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
33192
33247
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
33193
33248
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
33249
|
+
customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
|
|
33250
|
+
customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
|
|
33194
33251
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
33195
33252
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
33196
33253
|
cypherQueryV2Batch: GraphStoreCypherQueryV2BatchConnection;
|
|
@@ -34629,6 +34686,20 @@ export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
|
34629
34686
|
id: Scalars['ID']['input'];
|
|
34630
34687
|
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
34631
34688
|
};
|
|
34689
|
+
export declare type GraphStoreCustomerAssociatedIssueArgs = {
|
|
34690
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34691
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34692
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34693
|
+
id: Scalars['ID']['input'];
|
|
34694
|
+
sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
|
|
34695
|
+
};
|
|
34696
|
+
export declare type GraphStoreCustomerAssociatedIssueInverseArgs = {
|
|
34697
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34698
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34699
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34700
|
+
id: Scalars['ID']['input'];
|
|
34701
|
+
sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
|
|
34702
|
+
};
|
|
34632
34703
|
export declare type GraphStoreCypherQueryArgs = {
|
|
34633
34704
|
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
34634
34705
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40998,6 +41069,9 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
40998
41069
|
Sca = "SCA",
|
|
40999
41070
|
Unknown = "UNKNOWN"
|
|
41000
41071
|
}
|
|
41072
|
+
export declare type GraphStoreCustomerAssociatedIssueSortInput = {
|
|
41073
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41074
|
+
};
|
|
41001
41075
|
export declare type GraphStoreCypherQueryBooleanObject = {
|
|
41002
41076
|
__typename?: 'GraphStoreCypherQueryBooleanObject';
|
|
41003
41077
|
value: Scalars['Boolean']['output'];
|
|
@@ -47537,6 +47611,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
47537
47611
|
};
|
|
47538
47612
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
47539
47613
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
47614
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueConnection = HasPageInfo & {
|
|
47615
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueConnection';
|
|
47616
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueEdge>>>;
|
|
47617
|
+
pageInfo: PageInfo;
|
|
47618
|
+
};
|
|
47619
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueEdge = {
|
|
47620
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueEdge';
|
|
47621
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47622
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47623
|
+
id: Scalars['ID']['output'];
|
|
47624
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47625
|
+
node?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueUnion>;
|
|
47626
|
+
};
|
|
47627
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection = HasPageInfo & {
|
|
47628
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection';
|
|
47629
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge>>>;
|
|
47630
|
+
pageInfo: PageInfo;
|
|
47631
|
+
};
|
|
47632
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge = {
|
|
47633
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge';
|
|
47634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47636
|
+
id: Scalars['ID']['output'];
|
|
47637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47638
|
+
node?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion>;
|
|
47639
|
+
};
|
|
47640
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion = Customer360Customer;
|
|
47641
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueUnion = JiraIssue;
|
|
47540
47642
|
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection = HasPageInfo & {
|
|
47541
47643
|
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection';
|
|
47542
47644
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge>>>;
|
|
@@ -56129,7 +56231,9 @@ export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
|
56129
56231
|
};
|
|
56130
56232
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
56131
56233
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
56234
|
+
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
56132
56235
|
EditionParity = "EDITION_PARITY",
|
|
56236
|
+
Reactivation = "REACTIVATION",
|
|
56133
56237
|
ReverseTrial = "REVERSE_TRIAL",
|
|
56134
56238
|
Ui = "UI"
|
|
56135
56239
|
}
|
|
@@ -67028,7 +67132,8 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
67028
67132
|
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
67029
67133
|
NinProject = "NIN_PROJECT",
|
|
67030
67134
|
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
67031
|
-
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
67135
|
+
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST",
|
|
67136
|
+
TimelineProject = "TIMELINE_PROJECT"
|
|
67032
67137
|
}
|
|
67033
67138
|
export declare type JiraIssueSearchOptions = {
|
|
67034
67139
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -87921,6 +88026,7 @@ export declare type Mutation = {
|
|
|
87921
88026
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
87922
88027
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
87923
88028
|
home_addTagsByName?: Maybe<TownsquareAddTagsByNamePayload>;
|
|
88029
|
+
home_createTag?: Maybe<TownsquareCreateTagPayload>;
|
|
87924
88030
|
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
87925
88031
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
87926
88032
|
installApp?: Maybe<AppInstallationResponse>;
|
|
@@ -89371,6 +89477,9 @@ export declare type MutationHome_AddTagsByIdArgs = {
|
|
|
89371
89477
|
export declare type MutationHome_AddTagsByNameArgs = {
|
|
89372
89478
|
input: TownsquareAddTagsByNameInput;
|
|
89373
89479
|
};
|
|
89480
|
+
export declare type MutationHome_CreateTagArgs = {
|
|
89481
|
+
input: TownsquareCreateTagInput;
|
|
89482
|
+
};
|
|
89374
89483
|
export declare type MutationHome_RemoveTagsArgs = {
|
|
89375
89484
|
input: TownsquareRemoveTagsInput;
|
|
89376
89485
|
};
|
|
@@ -93401,6 +93510,7 @@ export declare type Query = {
|
|
|
93401
93510
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
93402
93511
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
93403
93512
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
93513
|
+
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
93404
93514
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
93405
93515
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
93406
93516
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -94743,6 +94853,14 @@ export declare type QueryConfluence_GetAllAppsArgs = {
|
|
|
94743
94853
|
cloudId: Scalars['ID']['input'];
|
|
94744
94854
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94745
94855
|
};
|
|
94856
|
+
export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs = {
|
|
94857
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94858
|
+
appId: Scalars['ID']['input'];
|
|
94859
|
+
appType: ConfluenceAppType;
|
|
94860
|
+
cloudId: Scalars['ID']['input'];
|
|
94861
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94862
|
+
spaceId: Scalars['ID']['input'];
|
|
94863
|
+
};
|
|
94746
94864
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
94747
94865
|
cloudId: Scalars['ID']['input'];
|
|
94748
94866
|
};
|
|
@@ -98904,8 +99022,11 @@ export declare enum Scope {
|
|
|
98904
99022
|
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
98905
99023
|
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
98906
99024
|
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
99025
|
+
DeleteConfluenceDatabase = "DELETE_CONFLUENCE_DATABASE",
|
|
99026
|
+
DeleteConfluenceFolder = "DELETE_CONFLUENCE_FOLDER",
|
|
98907
99027
|
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
98908
99028
|
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
99029
|
+
DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
|
|
98909
99030
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
98910
99031
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
98911
99032
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
@@ -99071,6 +99192,8 @@ export declare enum Scope {
|
|
|
99071
99192
|
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
99072
99193
|
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
99073
99194
|
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
99195
|
+
ReadConfluenceDatabase = "READ_CONFLUENCE_DATABASE",
|
|
99196
|
+
ReadConfluenceFolder = "READ_CONFLUENCE_FOLDER",
|
|
99074
99197
|
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
99075
99198
|
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
99076
99199
|
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
@@ -99084,6 +99207,7 @@ export declare enum Scope {
|
|
|
99084
99207
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
99085
99208
|
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
99086
99209
|
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
99210
|
+
ReadConfluenceWhiteboard = "READ_CONFLUENCE_WHITEBOARD",
|
|
99087
99211
|
ReadContainer = "READ_CONTAINER",
|
|
99088
99212
|
ReadCustomer = "READ_CUSTOMER",
|
|
99089
99213
|
ReadDesign = "READ_DESIGN",
|
|
@@ -99179,6 +99303,8 @@ export declare enum Scope {
|
|
|
99179
99303
|
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
99180
99304
|
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
99181
99305
|
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
99306
|
+
WriteConfluenceDatabase = "WRITE_CONFLUENCE_DATABASE",
|
|
99307
|
+
WriteConfluenceFolder = "WRITE_CONFLUENCE_FOLDER",
|
|
99182
99308
|
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
99183
99309
|
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
99184
99310
|
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
@@ -99191,6 +99317,7 @@ export declare enum Scope {
|
|
|
99191
99317
|
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
99192
99318
|
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
99193
99319
|
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
99320
|
+
WriteConfluenceWhiteboard = "WRITE_CONFLUENCE_WHITEBOARD",
|
|
99194
99321
|
WriteContainer = "WRITE_CONTAINER",
|
|
99195
99322
|
WriteCustomer = "WRITE_CUSTOMER",
|
|
99196
99323
|
WriteDesign = "WRITE_DESIGN",
|
|
@@ -99595,6 +99722,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
99595
99722
|
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
99596
99723
|
filters: SearchFilterInput;
|
|
99597
99724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99725
|
+
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99598
99726
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99599
99727
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
99600
99728
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105883,6 +106011,16 @@ export declare type TownsquareCreateRelationshipsPayload = {
|
|
|
105883
106011
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
105884
106012
|
success: Scalars['Boolean']['output'];
|
|
105885
106013
|
};
|
|
106014
|
+
export declare type TownsquareCreateTagInput = {
|
|
106015
|
+
containerId: Scalars['ID']['input'];
|
|
106016
|
+
name: Scalars['String']['input'];
|
|
106017
|
+
};
|
|
106018
|
+
export declare type TownsquareCreateTagPayload = {
|
|
106019
|
+
__typename?: 'TownsquareCreateTagPayload';
|
|
106020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106021
|
+
success: Scalars['Boolean']['output'];
|
|
106022
|
+
tag?: Maybe<TownsquareTag>;
|
|
106023
|
+
};
|
|
105886
106024
|
export declare type TownsquareDecision = TownsquareHighlight & {
|
|
105887
106025
|
__typename?: 'TownsquareDecision';
|
|
105888
106026
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|