@forge/cli-shared 8.17.1-next.4 → 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 +6 -0
- package/out/graphql/graphql-types.d.ts +213 -22
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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']>;
|
|
@@ -149826,6 +149906,7 @@ export declare type Query = {
|
|
|
149826
149906
|
ccp_transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
149827
149907
|
ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
149828
149908
|
cfo_analytics?: Maybe<CfoAnalyticsResult>;
|
|
149909
|
+
champion?: Maybe<UnifiedChampionQuery>;
|
|
149829
149910
|
changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
|
|
149830
149911
|
changeManagement_globalRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
|
|
149831
149912
|
changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
|
|
@@ -150375,7 +150456,9 @@ export declare type Query = {
|
|
|
150375
150456
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
150376
150457
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
150377
150458
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
150459
|
+
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
150378
150460
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
150461
|
+
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
150379
150462
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
150380
150463
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
150381
150464
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
@@ -151328,7 +151411,8 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
151328
151411
|
projectKey: Scalars['String']['input'];
|
|
151329
151412
|
};
|
|
151330
151413
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
151331
|
-
|
|
151414
|
+
cloudId: Scalars['ID']['input'];
|
|
151415
|
+
projectKey: Scalars['String']['input'];
|
|
151332
151416
|
};
|
|
151333
151417
|
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
151334
151418
|
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
@@ -154504,6 +154588,13 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
154504
154588
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
154505
154589
|
workspaceAri: Scalars['ID']['input'];
|
|
154506
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
|
+
};
|
|
154507
154598
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
154508
154599
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154509
154600
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -154512,6 +154603,12 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
154512
154603
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
154513
154604
|
workspaceAri: Scalars['ID']['input'];
|
|
154514
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
|
+
};
|
|
154515
154612
|
export declare type QueryKitsune_SectionsArgs = {
|
|
154516
154613
|
ids: Array<Scalars['ID']['input']>;
|
|
154517
154614
|
};
|
|
@@ -158937,7 +159034,8 @@ export declare enum SearchLinkedEntitiesType {
|
|
|
158937
159034
|
export declare enum SearchLinkedEntityGranularity {
|
|
158938
159035
|
AllMatchingMessages = "ALL_MATCHING_MESSAGES",
|
|
158939
159036
|
Default = "DEFAULT",
|
|
158940
|
-
FullThread = "FULL_THREAD"
|
|
159037
|
+
FullThread = "FULL_THREAD",
|
|
159038
|
+
OnlyLinkedEntities = "ONLY_LINKED_ENTITIES"
|
|
158941
159039
|
}
|
|
158942
159040
|
export declare type SearchLinkedResult = SearchResult & {
|
|
158943
159041
|
__typename?: 'SearchLinkedResult';
|
|
@@ -159251,7 +159349,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
159251
159349
|
type: SearchResultType;
|
|
159252
159350
|
url: Scalars['String']['output'];
|
|
159253
159351
|
};
|
|
159254
|
-
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;
|
|
159255
159353
|
export declare type SearchResultFederated = SearchResult & {
|
|
159256
159354
|
__typename?: 'SearchResultFederated';
|
|
159257
159355
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -159352,6 +159450,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
159352
159450
|
links?: Maybe<Array<Scalars['String']['output']>>;
|
|
159353
159451
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
159354
159452
|
owner?: Maybe<ThirdPartyUser>;
|
|
159453
|
+
parentId?: Maybe<Scalars['String']['output']>;
|
|
159355
159454
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
159356
159455
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
159357
159456
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -159758,6 +159857,7 @@ export declare type SearchThirdPartyProduct = {
|
|
|
159758
159857
|
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
159759
159858
|
entities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
159760
159859
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
159860
|
+
linkedEntities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
159761
159861
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
159762
159862
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
159763
159863
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182599,6 +182699,7 @@ export declare type Subscription = {
|
|
|
182599
182699
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
182600
182700
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
182601
182701
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
182702
|
+
cpls_suggestionsExist: CplsSuggestionsExistencePayload;
|
|
182602
182703
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
182603
182704
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
182604
182705
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -182649,6 +182750,9 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
|
182649
182750
|
cloudId: Scalars['ID']['input'];
|
|
182650
182751
|
conversationId: Scalars['ID']['input'];
|
|
182651
182752
|
};
|
|
182753
|
+
export declare type SubscriptionCpls_SuggestionsExistArgs = {
|
|
182754
|
+
scopeId: Scalars['ID']['input'];
|
|
182755
|
+
};
|
|
182652
182756
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
182653
182757
|
cloudId: Scalars['ID']['input'];
|
|
182654
182758
|
jobId: Scalars['ID']['input'];
|
|
@@ -182714,15 +182818,17 @@ export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
|
182714
182818
|
chatAri: Scalars['ID']['input'];
|
|
182715
182819
|
};
|
|
182716
182820
|
export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
182717
|
-
activeScopes?: InputMaybe<
|
|
182821
|
+
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
182718
182822
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
182823
|
+
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
182719
182824
|
placementId: Scalars['String']['input'];
|
|
182720
182825
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
182721
182826
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
182722
182827
|
};
|
|
182723
182828
|
export declare type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
182724
|
-
activeScopes?: InputMaybe<
|
|
182829
|
+
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
182725
182830
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
182831
|
+
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
182726
182832
|
placementId: Scalars['String']['input'];
|
|
182727
182833
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
182728
182834
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -183513,6 +183619,7 @@ export declare type TeamMutation = {
|
|
|
183513
183619
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
183514
183620
|
unlinkManagedTeams?: Maybe<TeamUnlinkManagedTeamsPayload>;
|
|
183515
183621
|
updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
183622
|
+
updateCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
183516
183623
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
183517
183624
|
updateTeam?: Maybe<TeamUpdatePayload>;
|
|
183518
183625
|
updateTeamTypePermissions?: Maybe<TeamUpdateTeamTypePermissionsPayload>;
|
|
@@ -183602,6 +183709,10 @@ export declare type TeamMutationUpdateCustomFieldArgs = {
|
|
|
183602
183709
|
customFieldData: TeamUpdateCustomFieldPayload;
|
|
183603
183710
|
id: Scalars['ID']['input'];
|
|
183604
183711
|
};
|
|
183712
|
+
export declare type TeamMutationUpdateCustomFieldValueArgs = {
|
|
183713
|
+
customFieldValueData: TeamUpdateCustomFieldValuePayload;
|
|
183714
|
+
id: Scalars['ID']['input'];
|
|
183715
|
+
};
|
|
183605
183716
|
export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
183606
183717
|
organizationId: Scalars['ID']['input'];
|
|
183607
183718
|
principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -183954,6 +184065,9 @@ export declare type TeamUpdateCustomFieldPayload = {
|
|
|
183954
184065
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
183955
184066
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
183956
184067
|
};
|
|
184068
|
+
export declare type TeamUpdateCustomFieldValuePayload = {
|
|
184069
|
+
value: Scalars['String']['input'];
|
|
184070
|
+
};
|
|
183957
184071
|
export declare type TeamUpdatePayload = Payload & {
|
|
183958
184072
|
__typename?: 'TeamUpdatePayload';
|
|
183959
184073
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -188679,6 +188793,7 @@ export declare type TrelloBoardBackground = {
|
|
|
188679
188793
|
bottomColor?: Maybe<Scalars['String']['output']>;
|
|
188680
188794
|
brightness?: Maybe<Scalars['String']['output']>;
|
|
188681
188795
|
color?: Maybe<Scalars['String']['output']>;
|
|
188796
|
+
darkColor?: Maybe<Scalars['String']['output']>;
|
|
188682
188797
|
darkImage?: Maybe<Scalars['String']['output']>;
|
|
188683
188798
|
image?: Maybe<Scalars['String']['output']>;
|
|
188684
188799
|
imageScaled?: Maybe<Array<TrelloScaleProps>>;
|
|
@@ -188722,6 +188837,13 @@ export declare type TrelloBoardChecklistsLimits = {
|
|
|
188722
188837
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
188723
188838
|
perCard?: Maybe<TrelloLimitProps>;
|
|
188724
188839
|
};
|
|
188840
|
+
export declare enum TrelloBoardCommentingPermissions {
|
|
188841
|
+
Board = "BOARD",
|
|
188842
|
+
Disabled = "DISABLED",
|
|
188843
|
+
Observers = "OBSERVERS",
|
|
188844
|
+
Public = "PUBLIC",
|
|
188845
|
+
Workspace = "WORKSPACE"
|
|
188846
|
+
}
|
|
188725
188847
|
export declare type TrelloBoardConnectionUpdated = {
|
|
188726
188848
|
__typename?: 'TrelloBoardConnectionUpdated';
|
|
188727
188849
|
edges?: Maybe<Array<TrelloBoardUpdatedEdge>>;
|
|
@@ -190682,6 +190804,10 @@ export declare type TrelloMemberReferralUpdated = {
|
|
|
190682
190804
|
rewardClaimedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
190683
190805
|
rewardThreshold?: Maybe<Scalars['Int']['output']>;
|
|
190684
190806
|
};
|
|
190807
|
+
export declare type TrelloMemberReferrerUpdated = {
|
|
190808
|
+
__typename?: 'TrelloMemberReferrerUpdated';
|
|
190809
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
190810
|
+
};
|
|
190685
190811
|
export declare type TrelloMemberUpdated = {
|
|
190686
190812
|
__typename?: 'TrelloMemberUpdated';
|
|
190687
190813
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -190696,6 +190822,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
190696
190822
|
notifications?: Maybe<TrelloMemberNotificationsUpdated>;
|
|
190697
190823
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
190698
190824
|
referral?: Maybe<TrelloMemberReferralUpdated>;
|
|
190825
|
+
referrer?: Maybe<TrelloMemberReferrerUpdated>;
|
|
190699
190826
|
username?: Maybe<Scalars['String']['output']>;
|
|
190700
190827
|
};
|
|
190701
190828
|
export declare type TrelloMemberUpdatedConnection = {
|
|
@@ -190902,6 +191029,7 @@ export declare type TrelloMutationApi = {
|
|
|
190902
191029
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
190903
191030
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
190904
191031
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
191032
|
+
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
190905
191033
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
190906
191034
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
190907
191035
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
@@ -191110,6 +191238,9 @@ export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
|
191110
191238
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
191111
191239
|
input: TrelloUpdateBoardBackgroundInput;
|
|
191112
191240
|
};
|
|
191241
|
+
export declare type TrelloMutationApiUpdateBoardCommentingPermissionsArgs = {
|
|
191242
|
+
input: TrelloUpdateBoardCommentingPermissionsInput;
|
|
191243
|
+
};
|
|
191113
191244
|
export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
|
|
191114
191245
|
input: TrelloUpdateBoardDescriptionInput;
|
|
191115
191246
|
};
|
|
@@ -192593,6 +192724,16 @@ export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
|
192593
192724
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
192594
192725
|
success: Scalars['Boolean']['output'];
|
|
192595
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
|
+
};
|
|
192596
192737
|
export declare type TrelloUpdateBoardDescriptionInput = {
|
|
192597
192738
|
boardId: Scalars['ID']['input'];
|
|
192598
192739
|
description: Scalars['String']['input'];
|
|
@@ -193729,16 +193870,61 @@ export declare type UnifiedCachingQueryGetCachedDataFromFieldArgs = {
|
|
|
193729
193870
|
export declare type UnifiedCachingQueryGetSimpleCacheKeyArgs = {
|
|
193730
193871
|
id: Scalars['String']['input'];
|
|
193731
193872
|
};
|
|
193873
|
+
export declare type UnifiedChampionConsentInput = {
|
|
193874
|
+
aaid: Scalars['String']['input'];
|
|
193875
|
+
consentProgramAgreement: Scalars['Boolean']['input'];
|
|
193876
|
+
consentSuccessChampionAgreement: Scalars['Boolean']['input'];
|
|
193877
|
+
};
|
|
193878
|
+
export declare type UnifiedChampionConsentMutation = {
|
|
193879
|
+
__typename?: 'UnifiedChampionConsentMutation';
|
|
193880
|
+
setChampionPageConsent?: Maybe<UnifiedChampionConsentPayload>;
|
|
193881
|
+
};
|
|
193882
|
+
export declare type UnifiedChampionConsentMutationSetChampionPageConsentArgs = {
|
|
193883
|
+
input: UnifiedChampionConsentInput;
|
|
193884
|
+
};
|
|
193885
|
+
export declare type UnifiedChampionConsentPayload = UnifiedPayload & {
|
|
193886
|
+
__typename?: 'UnifiedChampionConsentPayload';
|
|
193887
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
193888
|
+
consentsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
193889
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
193890
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
193891
|
+
success: Scalars['Boolean']['output'];
|
|
193892
|
+
};
|
|
193893
|
+
export declare type UnifiedChampionConsentQuery = {
|
|
193894
|
+
__typename?: 'UnifiedChampionConsentQuery';
|
|
193895
|
+
getChampionConsent?: Maybe<UnifiedUChampionConsentResult>;
|
|
193896
|
+
};
|
|
193897
|
+
export declare type UnifiedChampionConsentQueryGetChampionConsentArgs = {
|
|
193898
|
+
aaid: Scalars['String']['input'];
|
|
193899
|
+
};
|
|
193900
|
+
export declare type UnifiedChampionConsentResponse = {
|
|
193901
|
+
__typename?: 'UnifiedChampionConsentResponse';
|
|
193902
|
+
aaid: Scalars['String']['output'];
|
|
193903
|
+
consents: Array<UnifiedChampionConsentStatus>;
|
|
193904
|
+
hasAllRequiredConsents: Scalars['Boolean']['output'];
|
|
193905
|
+
missingConsents: Array<Scalars['String']['output']>;
|
|
193906
|
+
};
|
|
193907
|
+
export declare type UnifiedChampionConsentStatus = {
|
|
193908
|
+
__typename?: 'UnifiedChampionConsentStatus';
|
|
193909
|
+
consentKey: Scalars['String']['output'];
|
|
193910
|
+
consentStatus: Scalars['Boolean']['output'];
|
|
193911
|
+
displayedText?: Maybe<Scalars['String']['output']>;
|
|
193912
|
+
grantedAt?: Maybe<Scalars['String']['output']>;
|
|
193913
|
+
};
|
|
193732
193914
|
export declare type UnifiedChampionMutation = {
|
|
193733
193915
|
__typename?: 'UnifiedChampionMutation';
|
|
193916
|
+
championConsent?: Maybe<UnifiedChampionConsentMutation>;
|
|
193734
193917
|
championSignup?: Maybe<UnifiedChampionSignupMutation>;
|
|
193735
193918
|
};
|
|
193919
|
+
export declare type UnifiedChampionQuery = {
|
|
193920
|
+
__typename?: 'UnifiedChampionQuery';
|
|
193921
|
+
championConsent?: Maybe<UnifiedChampionConsentQuery>;
|
|
193922
|
+
};
|
|
193736
193923
|
export declare type UnifiedChampionSignupInput = {
|
|
193924
|
+
aaid: Scalars['String']['input'];
|
|
193737
193925
|
aceExperience?: InputMaybe<Scalars['String']['input']>;
|
|
193738
193926
|
activeCug?: InputMaybe<Scalars['String']['input']>;
|
|
193739
193927
|
activityAndEvent?: InputMaybe<Scalars['String']['input']>;
|
|
193740
|
-
agreeNda?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193741
|
-
agreePrivacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193742
193928
|
attendedAce?: InputMaybe<Scalars['String']['input']>;
|
|
193743
193929
|
bestContent1?: InputMaybe<Scalars['String']['input']>;
|
|
193744
193930
|
bestContent2?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -193748,20 +193934,24 @@ export declare type UnifiedChampionSignupInput = {
|
|
|
193748
193934
|
city?: InputMaybe<Scalars['String']['input']>;
|
|
193749
193935
|
coeFocus?: InputMaybe<Scalars['String']['input']>;
|
|
193750
193936
|
commitSharingContent?: InputMaybe<Scalars['String']['input']>;
|
|
193751
|
-
communityProfileUrl
|
|
193937
|
+
communityProfileUrl: Scalars['String']['input'];
|
|
193938
|
+
consentNda: Scalars['Boolean']['input'];
|
|
193939
|
+
consentPrivacyPolicy: Scalars['Boolean']['input'];
|
|
193940
|
+
consentProgramAgreement: Scalars['Boolean']['input'];
|
|
193941
|
+
consentSuccessChampionAgreement?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193752
193942
|
contentSharingFrequency?: InputMaybe<Scalars['String']['input']>;
|
|
193753
193943
|
country?: InputMaybe<Scalars['String']['input']>;
|
|
193754
193944
|
discussInCoE?: InputMaybe<Scalars['String']['input']>;
|
|
193755
|
-
email
|
|
193945
|
+
email: Scalars['String']['input'];
|
|
193756
193946
|
eventsPerYear?: InputMaybe<Scalars['String']['input']>;
|
|
193757
|
-
firstName
|
|
193947
|
+
firstName: Scalars['String']['input'];
|
|
193758
193948
|
fourEventsPerYear?: InputMaybe<Scalars['String']['input']>;
|
|
193759
193949
|
howContributeOnline?: InputMaybe<Scalars['String']['input']>;
|
|
193760
193950
|
howHeard?: InputMaybe<Scalars['String']['input']>;
|
|
193761
193951
|
howHeardEmployee?: InputMaybe<Scalars['String']['input']>;
|
|
193762
193952
|
howHeardOther?: InputMaybe<Scalars['String']['input']>;
|
|
193763
|
-
lastName
|
|
193764
|
-
linkedinUrl
|
|
193953
|
+
lastName: Scalars['String']['input'];
|
|
193954
|
+
linkedinUrl: Scalars['String']['input'];
|
|
193765
193955
|
otherAtlassianProducts?: InputMaybe<Scalars['String']['input']>;
|
|
193766
193956
|
otherExcellence?: InputMaybe<Scalars['String']['input']>;
|
|
193767
193957
|
otherURL?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -194494,6 +194684,7 @@ export declare type UnifiedUAtlassianOneUserResult = UnifiedAtlassianOneUser | U
|
|
|
194494
194684
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
194495
194685
|
export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
|
|
194496
194686
|
export declare type UnifiedUCacheResult = UnifiedCacheResult | UnifiedQueryError;
|
|
194687
|
+
export declare type UnifiedUChampionConsentResult = UnifiedChampionConsentResponse | UnifiedQueryError;
|
|
194497
194688
|
export declare type UnifiedUConsentStatusResult = UnifiedConsentStatus | UnifiedQueryError;
|
|
194498
194689
|
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
194499
194690
|
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|