@forge/cli-shared 8.17.1-next.4-experimental-13a01c2 → 8.18.0-next.5
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 +3 -8
- package/out/graphql/graphql-types.d.ts +155 -15
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +17 -2
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +9 -0
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.
|
|
3
|
+
## 8.18.0-next.5
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- Updated dependencies [34fc90d]
|
|
9
|
-
- Updated dependencies [a1a0375]
|
|
10
|
-
- Updated dependencies [06c240c]
|
|
11
|
-
- Updated dependencies [2e6f63a]
|
|
12
|
-
- @forge/manifest@12.4.0-next.3-experimental-13a01c2
|
|
7
|
+
- e3947f2: Add app enforcement warning message for deploy,install and tunnel commands
|
|
13
8
|
|
|
14
9
|
## 8.17.1-next.4
|
|
15
10
|
|
|
@@ -1182,6 +1182,7 @@ export declare type AvpHotTierFilterConfigInput = {
|
|
|
1182
1182
|
semanticModel?: InputMaybe<Scalars['String']['input']>;
|
|
1183
1183
|
};
|
|
1184
1184
|
export declare enum AvpIntegrationId {
|
|
1185
|
+
AssetsVertical = "ASSETS_VERTICAL",
|
|
1185
1186
|
JiraSummaryPage = "JIRA_SUMMARY_PAGE",
|
|
1186
1187
|
JsmAssets = "JSM_ASSETS",
|
|
1187
1188
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
@@ -5620,13 +5621,15 @@ export declare type AgentWorkspaceCatalogsInput = {
|
|
|
5620
5621
|
export declare type AgentWorkspaceCreateAndLinkTeamsInput = {
|
|
5621
5622
|
groups: Array<AgentWorkspaceCreateTeamFromGroupInput>;
|
|
5622
5623
|
projectARI: Scalars['ID']['input'];
|
|
5623
|
-
|
|
5624
|
+
teamARIs: Array<Scalars['ID']['input']>;
|
|
5624
5625
|
};
|
|
5625
5626
|
export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
|
|
5626
5627
|
__typename?: 'AgentWorkspaceCreateAndLinkTeamsPayload';
|
|
5627
5628
|
createdTeamIds: Array<Scalars['ID']['output']>;
|
|
5628
5629
|
linkedTeamIds: Array<Scalars['ID']['output']>;
|
|
5629
5630
|
success: Scalars['Boolean']['output'];
|
|
5631
|
+
teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
|
|
5632
|
+
teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
|
|
5630
5633
|
};
|
|
5631
5634
|
export declare type AgentWorkspaceCreateCatalogConfigInput = {
|
|
5632
5635
|
catalogId: Scalars['ID']['input'];
|
|
@@ -5687,7 +5690,7 @@ export declare type AgentWorkspaceCreateSchedulePayload = {
|
|
|
5687
5690
|
success: Scalars['Boolean']['output'];
|
|
5688
5691
|
};
|
|
5689
5692
|
export declare type AgentWorkspaceCreateTeamFromGroupInput = {
|
|
5690
|
-
|
|
5693
|
+
groupAri: Scalars['ID']['input'];
|
|
5691
5694
|
groupName: Scalars['String']['input'];
|
|
5692
5695
|
};
|
|
5693
5696
|
export declare enum AgentWorkspaceDayOfWeek {
|
|
@@ -6239,6 +6242,16 @@ export declare type AgentWorkspaceSubscribeSkillPayload = {
|
|
|
6239
6242
|
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
6240
6243
|
success: Scalars['Boolean']['output'];
|
|
6241
6244
|
};
|
|
6245
|
+
export declare type AgentWorkspaceTeamCreationFailure = {
|
|
6246
|
+
__typename?: 'AgentWorkspaceTeamCreationFailure';
|
|
6247
|
+
groupAri: Scalars['ID']['output'];
|
|
6248
|
+
message: Scalars['String']['output'];
|
|
6249
|
+
};
|
|
6250
|
+
export declare type AgentWorkspaceTeamLinkFailure = {
|
|
6251
|
+
__typename?: 'AgentWorkspaceTeamLinkFailure';
|
|
6252
|
+
message: Scalars['String']['output'];
|
|
6253
|
+
teamId: Scalars['ID']['output'];
|
|
6254
|
+
};
|
|
6242
6255
|
export declare type AgentWorkspaceTeamSchedules = {
|
|
6243
6256
|
__typename?: 'AgentWorkspaceTeamSchedules';
|
|
6244
6257
|
hasSchedules: Scalars['Boolean']['output'];
|
|
@@ -8274,7 +8287,7 @@ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
8274
8287
|
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
8275
8288
|
value?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
8276
8289
|
};
|
|
8277
|
-
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | TeamV2;
|
|
8290
|
+
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | JiraProject | TeamV2;
|
|
8278
8291
|
export declare type AssetsAttributeOnObject = {
|
|
8279
8292
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8280
8293
|
id: Scalars['ID']['output'];
|
|
@@ -10587,6 +10600,7 @@ export declare type AssetsObjectAqlResult = {
|
|
|
10587
10600
|
export declare type AssetsObjectAttribute = AssetsObjectTypeAttribute & {
|
|
10588
10601
|
__typename?: 'AssetsObjectAttribute';
|
|
10589
10602
|
id: Scalars['ID']['output'];
|
|
10603
|
+
includeChildObjectTypes?: Maybe<Scalars['Boolean']['output']>;
|
|
10590
10604
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
10591
10605
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
10592
10606
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -16801,6 +16815,7 @@ export declare type CommerceExpCreateEntitlementNewEntitlementInformation = {
|
|
|
16801
16815
|
};
|
|
16802
16816
|
export declare type CommerceExpCreateEntitlementOrderOptions = {
|
|
16803
16817
|
billingCycle?: InputMaybe<CommerceExpPricingPlanInterval>;
|
|
16818
|
+
chargeQuantities?: InputMaybe<Array<CommerceExpChargeElementDetails>>;
|
|
16804
16819
|
invoiceGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
16805
16820
|
pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
16806
16821
|
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -18492,6 +18507,11 @@ export declare type CommerceExpPurchaseOrderInput = {
|
|
|
18492
18507
|
export declare type CommerceExpQuoteFilter = {
|
|
18493
18508
|
status?: InputMaybe<CommerceExpQuoteStatusFilter>;
|
|
18494
18509
|
};
|
|
18510
|
+
export declare type CommerceExpQuoteLineItemBillingSchedule = {
|
|
18511
|
+
__typename?: 'CommerceExpQuoteLineItemBillingSchedule';
|
|
18512
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
18513
|
+
type: CommerceExpBillDateType;
|
|
18514
|
+
};
|
|
18495
18515
|
export declare type CommerceExpQuoteLineItemConnection = {
|
|
18496
18516
|
__typename?: 'CommerceExpQuoteLineItemConnection';
|
|
18497
18517
|
edges?: Maybe<Array<Maybe<CommerceExpQuoteLineItemEdge>>>;
|
|
@@ -18506,6 +18526,7 @@ export declare enum CommerceExpQuoteLineItemContainerType {
|
|
|
18506
18526
|
}
|
|
18507
18527
|
export declare type CommerceExpQuoteLineItemEdge = {
|
|
18508
18528
|
__typename?: 'CommerceExpQuoteLineItemEdge';
|
|
18529
|
+
billingSchedules: Array<CommerceExpQuoteLineItemBillingSchedule>;
|
|
18509
18530
|
cursor: Scalars['String']['output'];
|
|
18510
18531
|
node?: Maybe<CommerceExpLineItemResponse>;
|
|
18511
18532
|
};
|
|
@@ -33426,6 +33447,14 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
33426
33447
|
page: Scalars['String']['output'];
|
|
33427
33448
|
user: Scalars['Int']['output'];
|
|
33428
33449
|
};
|
|
33450
|
+
export declare type CplsAcceptAllSuggestionsInput = {
|
|
33451
|
+
scopeId: Scalars['ID']['input'];
|
|
33452
|
+
};
|
|
33453
|
+
export declare type CplsAcceptAllSuggestionsPayload = Payload & {
|
|
33454
|
+
__typename?: 'CplsAcceptAllSuggestionsPayload';
|
|
33455
|
+
errors?: Maybe<Array<MutationError>>;
|
|
33456
|
+
success: Scalars['Boolean']['output'];
|
|
33457
|
+
};
|
|
33429
33458
|
export declare type CplsAddContributionInput = {
|
|
33430
33459
|
contributorDataId: Scalars['ID']['input'];
|
|
33431
33460
|
endDate: Scalars['Date']['input'];
|
|
@@ -33896,6 +33925,11 @@ export declare type CplsSearchCustomContributionTargetsInput = {
|
|
|
33896
33925
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
33897
33926
|
};
|
|
33898
33927
|
export declare type CplsSettings = CplsPlanSettings | QueryError;
|
|
33928
|
+
export declare type CplsSuggestionsExistencePayload = {
|
|
33929
|
+
__typename?: 'CplsSuggestionsExistencePayload';
|
|
33930
|
+
hasSuggestions: Scalars['Boolean']['output'];
|
|
33931
|
+
scopeId: Scalars['ID']['output'];
|
|
33932
|
+
};
|
|
33899
33933
|
export declare type CplsTimeCell = {
|
|
33900
33934
|
__typename?: 'CplsTimeCell';
|
|
33901
33935
|
endDate: Scalars['Date']['output'];
|
|
@@ -46089,7 +46123,8 @@ export declare enum GraphIntegrationTwgCapabilityStatus {
|
|
|
46089
46123
|
Enabled = "ENABLED"
|
|
46090
46124
|
}
|
|
46091
46125
|
export declare enum GraphIntegrationTwgCapabilityType {
|
|
46092
|
-
PlatformMcpServer = "PLATFORM_MCP_SERVER"
|
|
46126
|
+
PlatformMcpServer = "PLATFORM_MCP_SERVER",
|
|
46127
|
+
ThirdPartyAction = "THIRD_PARTY_ACTION"
|
|
46093
46128
|
}
|
|
46094
46129
|
export declare type GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting = {
|
|
46095
46130
|
__typename?: 'GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting';
|
|
@@ -99854,6 +99889,7 @@ export declare type HelpCenterBrandingInput = {
|
|
|
99854
99889
|
colors?: InputMaybe<HelpCenterBrandingColorsInput>;
|
|
99855
99890
|
homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
|
|
99856
99891
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
99892
|
+
navigationBar?: InputMaybe<HelpCenterNavigationBarInput>;
|
|
99857
99893
|
};
|
|
99858
99894
|
export declare type HelpCenterBulkCreateTopicsInput = {
|
|
99859
99895
|
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
@@ -100089,6 +100125,15 @@ export declare enum HelpCenterNavigationBarBorderType {
|
|
|
100089
100125
|
BottomBorder = "BOTTOM_BORDER",
|
|
100090
100126
|
NoBorder = "NO_BORDER"
|
|
100091
100127
|
}
|
|
100128
|
+
export declare type HelpCenterNavigationBarInput = {
|
|
100129
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
100130
|
+
borderColor?: InputMaybe<Scalars['String']['input']>;
|
|
100131
|
+
borderType?: InputMaybe<HelpCenterNavigationBarBorderType>;
|
|
100132
|
+
cornerRadius?: InputMaybe<Scalars['Int']['input']>;
|
|
100133
|
+
padding?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100134
|
+
positionType?: InputMaybe<HelpCenterNavigationBarPositionType>;
|
|
100135
|
+
textColor?: InputMaybe<Scalars['String']['input']>;
|
|
100136
|
+
};
|
|
100092
100137
|
export declare enum HelpCenterNavigationBarPositionType {
|
|
100093
100138
|
Fixed = "FIXED",
|
|
100094
100139
|
Floating = "FLOATING"
|
|
@@ -100101,6 +100146,7 @@ export declare type HelpCenterPage = Node & {
|
|
|
100101
100146
|
id: Scalars['ID']['output'];
|
|
100102
100147
|
name?: Maybe<HelpCenterPageName>;
|
|
100103
100148
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
100149
|
+
pageType?: Maybe<HelpCenterPageType>;
|
|
100104
100150
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
100105
100151
|
};
|
|
100106
100152
|
export declare type HelpCenterPageCreateInput = {
|
|
@@ -100156,7 +100202,8 @@ export declare type HelpCenterPageQueryResultEdge = {
|
|
|
100156
100202
|
node?: Maybe<HelpCenterPageQueryResult>;
|
|
100157
100203
|
};
|
|
100158
100204
|
export declare enum HelpCenterPageType {
|
|
100159
|
-
Custom = "CUSTOM"
|
|
100205
|
+
Custom = "CUSTOM",
|
|
100206
|
+
Portal = "PORTAL"
|
|
100160
100207
|
}
|
|
100161
100208
|
export declare type HelpCenterPageUpdateInput = {
|
|
100162
100209
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104780,6 +104827,7 @@ export declare type JiraBacklogViewQueryInput = {
|
|
|
104780
104827
|
export declare type JiraBacklogViewSettings = {
|
|
104781
104828
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
104782
104829
|
quickFilterIds?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
104830
|
+
skipCollapsedIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104783
104831
|
};
|
|
104784
104832
|
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & Node & {
|
|
104785
104833
|
__typename?: 'JiraBacklogViewSprintCardList';
|
|
@@ -129660,7 +129708,8 @@ export declare enum KitsuneComparisonOperator {
|
|
|
129660
129708
|
IsLowerThanOrEqualTo = "IS_LOWER_THAN_OR_EQUAL_TO",
|
|
129661
129709
|
IsNot = "IS_NOT",
|
|
129662
129710
|
IsNotEmpty = "IS_NOT_EMPTY",
|
|
129663
|
-
IsTrue = "IS_TRUE"
|
|
129711
|
+
IsTrue = "IS_TRUE",
|
|
129712
|
+
PastNbDays = "PAST_NB_DAYS"
|
|
129664
129713
|
}
|
|
129665
129714
|
export declare type KitsuneConnection = {
|
|
129666
129715
|
edges: Array<KitsuneEdge>;
|
|
@@ -129673,6 +129722,21 @@ export declare type KitsuneCustomer = {
|
|
|
129673
129722
|
id: Scalars['ID']['output'];
|
|
129674
129723
|
organizations?: Maybe<Array<KitsuneOrganization>>;
|
|
129675
129724
|
};
|
|
129725
|
+
export declare type KitsuneCustomerConnection = KitsuneConnection & {
|
|
129726
|
+
__typename?: 'KitsuneCustomerConnection';
|
|
129727
|
+
edges: Array<KitsuneCustomerEdge>;
|
|
129728
|
+
pageInfo: PageInfo;
|
|
129729
|
+
};
|
|
129730
|
+
export declare type KitsuneCustomerEdge = KitsuneEdge & {
|
|
129731
|
+
__typename?: 'KitsuneCustomerEdge';
|
|
129732
|
+
cursor: Scalars['String']['output'];
|
|
129733
|
+
node?: Maybe<KitsuneCustomer>;
|
|
129734
|
+
};
|
|
129735
|
+
export declare type KitsuneCustomerNode = {
|
|
129736
|
+
__typename?: 'KitsuneCustomerNode';
|
|
129737
|
+
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
129738
|
+
customerId: Scalars['ID']['output'];
|
|
129739
|
+
};
|
|
129676
129740
|
export declare type KitsuneDateValue = {
|
|
129677
129741
|
__typename?: 'KitsuneDateValue';
|
|
129678
129742
|
_id: Scalars['ID']['output'];
|
|
@@ -129802,7 +129866,7 @@ export declare type KitsuneFilterInput = {
|
|
|
129802
129866
|
logicalOperator: KitsuneLogicalOperator;
|
|
129803
129867
|
values: KitsuneFilterValueInput;
|
|
129804
129868
|
};
|
|
129805
|
-
export declare type KitsuneFilterValue = KitsuneDateValue | KitsuneFieldValue | KitsuneNumberValue | KitsuneSourceCategory | KitsuneTextValue | KitsuneUser;
|
|
129869
|
+
export declare type KitsuneFilterValue = KitsuneCustomerNode | KitsuneDateValue | KitsuneFieldValue | KitsuneNumberValue | KitsuneSourceCategory | KitsuneTextValue | KitsuneUser;
|
|
129806
129870
|
export declare type KitsuneFilterValueInput = {
|
|
129807
129871
|
valueDate?: InputMaybe<Array<Scalars['Date']['input']>>;
|
|
129808
129872
|
valueId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -129869,6 +129933,16 @@ export declare type KitsuneOrganization = {
|
|
|
129869
129933
|
id: Scalars['ID']['output'];
|
|
129870
129934
|
name: Scalars['String']['output'];
|
|
129871
129935
|
};
|
|
129936
|
+
export declare type KitsuneOrganizationConnection = KitsuneConnection & {
|
|
129937
|
+
__typename?: 'KitsuneOrganizationConnection';
|
|
129938
|
+
edges: Array<KitsuneOrganizationEdge>;
|
|
129939
|
+
pageInfo: PageInfo;
|
|
129940
|
+
};
|
|
129941
|
+
export declare type KitsuneOrganizationEdge = KitsuneEdge & {
|
|
129942
|
+
__typename?: 'KitsuneOrganizationEdge';
|
|
129943
|
+
cursor: Scalars['String']['output'];
|
|
129944
|
+
node?: Maybe<KitsuneOrganization>;
|
|
129945
|
+
};
|
|
129872
129946
|
export declare type KitsunePaginationInput = {
|
|
129873
129947
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129874
129948
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131213,7 +131287,8 @@ export declare enum KnowledgeDiscoveryQueryClassification {
|
|
|
131213
131287
|
OrgChart = "ORG_CHART",
|
|
131214
131288
|
Person = "PERSON",
|
|
131215
131289
|
Team = "TEAM",
|
|
131216
|
-
Topic = "TOPIC"
|
|
131290
|
+
Topic = "TOPIC",
|
|
131291
|
+
Visual = "VISUAL"
|
|
131217
131292
|
}
|
|
131218
131293
|
export declare enum KnowledgeDiscoveryQuerySubType {
|
|
131219
131294
|
Command = "COMMAND",
|
|
@@ -131274,7 +131349,8 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
131274
131349
|
OrgChart = "ORG_CHART",
|
|
131275
131350
|
Person = "PERSON",
|
|
131276
131351
|
Team = "TEAM",
|
|
131277
|
-
Topic = "TOPIC"
|
|
131352
|
+
Topic = "TOPIC",
|
|
131353
|
+
Visual = "VISUAL"
|
|
131278
131354
|
}
|
|
131279
131355
|
export declare enum KnowledgeDiscoverySearchQueryClassificationSubtype {
|
|
131280
131356
|
Command = "COMMAND",
|
|
@@ -141758,6 +141834,7 @@ export declare type Mutation = {
|
|
|
141758
141834
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
141759
141835
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
141760
141836
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
141837
|
+
cpls_acceptAllSuggestions?: Maybe<CplsAcceptAllSuggestionsPayload>;
|
|
141761
141838
|
cpls_addContributions?: Maybe<CplsAddContributionsPayload>;
|
|
141762
141839
|
cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
141763
141840
|
cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
@@ -143979,6 +144056,9 @@ export declare type MutationCopySpacePermissionsArgs = {
|
|
|
143979
144056
|
sourceSpaceKey: Scalars['String']['input'];
|
|
143980
144057
|
targetSpaceKey: Scalars['String']['input'];
|
|
143981
144058
|
};
|
|
144059
|
+
export declare type MutationCpls_AcceptAllSuggestionsArgs = {
|
|
144060
|
+
input: CplsAcceptAllSuggestionsInput;
|
|
144061
|
+
};
|
|
143982
144062
|
export declare type MutationCpls_AddContributionsArgs = {
|
|
143983
144063
|
input: CplsAddContributionsInput;
|
|
143984
144064
|
};
|
|
@@ -149151,7 +149231,7 @@ export declare type PostOfficeScopeEntryInput = {
|
|
|
149151
149231
|
name: Scalars['String']['input'];
|
|
149152
149232
|
};
|
|
149153
149233
|
export declare type PostOfficeSubscriptionMatchersInput = {
|
|
149154
|
-
activeScopes?: InputMaybe<
|
|
149234
|
+
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
149155
149235
|
atlassianAccountId: Scalars['String']['input'];
|
|
149156
149236
|
placementId: Scalars['String']['input'];
|
|
149157
149237
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -150376,7 +150456,9 @@ export declare type Query = {
|
|
|
150376
150456
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
150377
150457
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
150378
150458
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
150459
|
+
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
150379
150460
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
150461
|
+
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
150380
150462
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
150381
150463
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
150382
150464
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
@@ -151329,7 +151411,8 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
151329
151411
|
projectKey: Scalars['String']['input'];
|
|
151330
151412
|
};
|
|
151331
151413
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
151332
|
-
|
|
151414
|
+
cloudId: Scalars['ID']['input'];
|
|
151415
|
+
projectKey: Scalars['String']['input'];
|
|
151333
151416
|
};
|
|
151334
151417
|
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
151335
151418
|
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
@@ -154505,6 +154588,13 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
154505
154588
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
154506
154589
|
workspaceAri: Scalars['ID']['input'];
|
|
154507
154590
|
};
|
|
154591
|
+
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
154592
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
154593
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
154594
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
154595
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
154596
|
+
workspaceAri: Scalars['ID']['input'];
|
|
154597
|
+
};
|
|
154508
154598
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
154509
154599
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154510
154600
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -154513,6 +154603,12 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
154513
154603
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
154514
154604
|
workspaceAri: Scalars['ID']['input'];
|
|
154515
154605
|
};
|
|
154606
|
+
export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
154607
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
154608
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
154609
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
154610
|
+
workspaceAri: Scalars['ID']['input'];
|
|
154611
|
+
};
|
|
154516
154612
|
export declare type QueryKitsune_SectionsArgs = {
|
|
154517
154613
|
ids: Array<Scalars['ID']['input']>;
|
|
154518
154614
|
};
|
|
@@ -158938,7 +159034,8 @@ export declare enum SearchLinkedEntitiesType {
|
|
|
158938
159034
|
export declare enum SearchLinkedEntityGranularity {
|
|
158939
159035
|
AllMatchingMessages = "ALL_MATCHING_MESSAGES",
|
|
158940
159036
|
Default = "DEFAULT",
|
|
158941
|
-
FullThread = "FULL_THREAD"
|
|
159037
|
+
FullThread = "FULL_THREAD",
|
|
159038
|
+
OnlyLinkedEntities = "ONLY_LINKED_ENTITIES"
|
|
158942
159039
|
}
|
|
158943
159040
|
export declare type SearchLinkedResult = SearchResult & {
|
|
158944
159041
|
__typename?: 'SearchLinkedResult';
|
|
@@ -159252,7 +159349,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
159252
159349
|
type: SearchResultType;
|
|
159253
159350
|
url: Scalars['String']['output'];
|
|
159254
159351
|
};
|
|
159255
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
159352
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
159256
159353
|
export declare type SearchResultFederated = SearchResult & {
|
|
159257
159354
|
__typename?: 'SearchResultFederated';
|
|
159258
159355
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -159353,6 +159450,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
159353
159450
|
links?: Maybe<Array<Scalars['String']['output']>>;
|
|
159354
159451
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
159355
159452
|
owner?: Maybe<ThirdPartyUser>;
|
|
159453
|
+
parentId?: Maybe<Scalars['String']['output']>;
|
|
159356
159454
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
159357
159455
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
159358
159456
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -159759,6 +159857,7 @@ export declare type SearchThirdPartyProduct = {
|
|
|
159759
159857
|
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
159760
159858
|
entities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
159761
159859
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
159860
|
+
linkedEntities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
159762
159861
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
159763
159862
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
159764
159863
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182600,6 +182699,7 @@ export declare type Subscription = {
|
|
|
182600
182699
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
182601
182700
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
182602
182701
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
182702
|
+
cpls_suggestionsExist: CplsSuggestionsExistencePayload;
|
|
182603
182703
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
182604
182704
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
182605
182705
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -182650,6 +182750,9 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
|
182650
182750
|
cloudId: Scalars['ID']['input'];
|
|
182651
182751
|
conversationId: Scalars['ID']['input'];
|
|
182652
182752
|
};
|
|
182753
|
+
export declare type SubscriptionCpls_SuggestionsExistArgs = {
|
|
182754
|
+
scopeId: Scalars['ID']['input'];
|
|
182755
|
+
};
|
|
182653
182756
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
182654
182757
|
cloudId: Scalars['ID']['input'];
|
|
182655
182758
|
jobId: Scalars['ID']['input'];
|
|
@@ -182715,15 +182818,17 @@ export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
|
182715
182818
|
chatAri: Scalars['ID']['input'];
|
|
182716
182819
|
};
|
|
182717
182820
|
export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
182718
|
-
activeScopes?: InputMaybe<
|
|
182821
|
+
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
182719
182822
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
182823
|
+
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
182720
182824
|
placementId: Scalars['String']['input'];
|
|
182721
182825
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
182722
182826
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
182723
182827
|
};
|
|
182724
182828
|
export declare type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
182725
|
-
activeScopes?: InputMaybe<
|
|
182829
|
+
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
182726
182830
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
182831
|
+
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
182727
182832
|
placementId: Scalars['String']['input'];
|
|
182728
182833
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
182729
182834
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -183514,6 +183619,7 @@ export declare type TeamMutation = {
|
|
|
183514
183619
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
183515
183620
|
unlinkManagedTeams?: Maybe<TeamUnlinkManagedTeamsPayload>;
|
|
183516
183621
|
updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
183622
|
+
updateCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
183517
183623
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
183518
183624
|
updateTeam?: Maybe<TeamUpdatePayload>;
|
|
183519
183625
|
updateTeamTypePermissions?: Maybe<TeamUpdateTeamTypePermissionsPayload>;
|
|
@@ -183603,6 +183709,10 @@ export declare type TeamMutationUpdateCustomFieldArgs = {
|
|
|
183603
183709
|
customFieldData: TeamUpdateCustomFieldPayload;
|
|
183604
183710
|
id: Scalars['ID']['input'];
|
|
183605
183711
|
};
|
|
183712
|
+
export declare type TeamMutationUpdateCustomFieldValueArgs = {
|
|
183713
|
+
customFieldValueData: TeamUpdateCustomFieldValuePayload;
|
|
183714
|
+
id: Scalars['ID']['input'];
|
|
183715
|
+
};
|
|
183606
183716
|
export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
183607
183717
|
organizationId: Scalars['ID']['input'];
|
|
183608
183718
|
principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -183955,6 +184065,9 @@ export declare type TeamUpdateCustomFieldPayload = {
|
|
|
183955
184065
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
183956
184066
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
183957
184067
|
};
|
|
184068
|
+
export declare type TeamUpdateCustomFieldValuePayload = {
|
|
184069
|
+
value: Scalars['String']['input'];
|
|
184070
|
+
};
|
|
183958
184071
|
export declare type TeamUpdatePayload = Payload & {
|
|
183959
184072
|
__typename?: 'TeamUpdatePayload';
|
|
183960
184073
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -188680,6 +188793,7 @@ export declare type TrelloBoardBackground = {
|
|
|
188680
188793
|
bottomColor?: Maybe<Scalars['String']['output']>;
|
|
188681
188794
|
brightness?: Maybe<Scalars['String']['output']>;
|
|
188682
188795
|
color?: Maybe<Scalars['String']['output']>;
|
|
188796
|
+
darkColor?: Maybe<Scalars['String']['output']>;
|
|
188683
188797
|
darkImage?: Maybe<Scalars['String']['output']>;
|
|
188684
188798
|
image?: Maybe<Scalars['String']['output']>;
|
|
188685
188799
|
imageScaled?: Maybe<Array<TrelloScaleProps>>;
|
|
@@ -188723,6 +188837,13 @@ export declare type TrelloBoardChecklistsLimits = {
|
|
|
188723
188837
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
188724
188838
|
perCard?: Maybe<TrelloLimitProps>;
|
|
188725
188839
|
};
|
|
188840
|
+
export declare enum TrelloBoardCommentingPermissions {
|
|
188841
|
+
Board = "BOARD",
|
|
188842
|
+
Disabled = "DISABLED",
|
|
188843
|
+
Observers = "OBSERVERS",
|
|
188844
|
+
Public = "PUBLIC",
|
|
188845
|
+
Workspace = "WORKSPACE"
|
|
188846
|
+
}
|
|
188726
188847
|
export declare type TrelloBoardConnectionUpdated = {
|
|
188727
188848
|
__typename?: 'TrelloBoardConnectionUpdated';
|
|
188728
188849
|
edges?: Maybe<Array<TrelloBoardUpdatedEdge>>;
|
|
@@ -190683,6 +190804,10 @@ export declare type TrelloMemberReferralUpdated = {
|
|
|
190683
190804
|
rewardClaimedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
190684
190805
|
rewardThreshold?: Maybe<Scalars['Int']['output']>;
|
|
190685
190806
|
};
|
|
190807
|
+
export declare type TrelloMemberReferrerUpdated = {
|
|
190808
|
+
__typename?: 'TrelloMemberReferrerUpdated';
|
|
190809
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
190810
|
+
};
|
|
190686
190811
|
export declare type TrelloMemberUpdated = {
|
|
190687
190812
|
__typename?: 'TrelloMemberUpdated';
|
|
190688
190813
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -190697,6 +190822,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
190697
190822
|
notifications?: Maybe<TrelloMemberNotificationsUpdated>;
|
|
190698
190823
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
190699
190824
|
referral?: Maybe<TrelloMemberReferralUpdated>;
|
|
190825
|
+
referrer?: Maybe<TrelloMemberReferrerUpdated>;
|
|
190700
190826
|
username?: Maybe<Scalars['String']['output']>;
|
|
190701
190827
|
};
|
|
190702
190828
|
export declare type TrelloMemberUpdatedConnection = {
|
|
@@ -190903,6 +191029,7 @@ export declare type TrelloMutationApi = {
|
|
|
190903
191029
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
190904
191030
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
190905
191031
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
191032
|
+
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
190906
191033
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
190907
191034
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
190908
191035
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
@@ -191111,6 +191238,9 @@ export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
|
191111
191238
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
191112
191239
|
input: TrelloUpdateBoardBackgroundInput;
|
|
191113
191240
|
};
|
|
191241
|
+
export declare type TrelloMutationApiUpdateBoardCommentingPermissionsArgs = {
|
|
191242
|
+
input: TrelloUpdateBoardCommentingPermissionsInput;
|
|
191243
|
+
};
|
|
191114
191244
|
export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
|
|
191115
191245
|
input: TrelloUpdateBoardDescriptionInput;
|
|
191116
191246
|
};
|
|
@@ -192594,6 +192724,16 @@ export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
|
192594
192724
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
192595
192725
|
success: Scalars['Boolean']['output'];
|
|
192596
192726
|
};
|
|
192727
|
+
export declare type TrelloUpdateBoardCommentingPermissionsInput = {
|
|
192728
|
+
boardId: Scalars['ID']['input'];
|
|
192729
|
+
commenting: TrelloBoardCommentingPermissions;
|
|
192730
|
+
};
|
|
192731
|
+
export declare type TrelloUpdateBoardCommentingPermissionsPayload = Payload & {
|
|
192732
|
+
__typename?: 'TrelloUpdateBoardCommentingPermissionsPayload';
|
|
192733
|
+
board?: Maybe<TrelloBoard>;
|
|
192734
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192735
|
+
success: Scalars['Boolean']['output'];
|
|
192736
|
+
};
|
|
192597
192737
|
export declare type TrelloUpdateBoardDescriptionInput = {
|
|
192598
192738
|
boardId: Scalars['ID']['input'];
|
|
192599
192739
|
description: Scalars['String']['input'];
|