@forge/cli-shared 5.5.2-next.5 → 5.5.2
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 +20 -0
- package/out/graphql/graphql-types.d.ts +154 -19
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +58 -18
- package/out/service/feature-flag-service.d.ts +0 -2
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +0 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bb8baa2: Use workspaceAri for installApp and updateApp mutation
|
|
8
|
+
- a30b439: Ensure unexpected translation state only raise UserError in i18n resource bundling service
|
|
9
|
+
- 5edaced: Fix forge CLI not categorizing UI-kit2 resources in modules entry point
|
|
10
|
+
- d07d506: Clean up feature flags
|
|
11
|
+
- Updated dependencies [981965f]
|
|
12
|
+
- Updated dependencies [455ab8a]
|
|
13
|
+
- Updated dependencies [65bb6b7]
|
|
14
|
+
- Updated dependencies [025fc1f]
|
|
15
|
+
- @forge/manifest@7.8.0
|
|
16
|
+
|
|
17
|
+
## 5.5.2-next.6
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- d07d506: Clean up feature flags
|
|
22
|
+
|
|
3
23
|
## 5.5.2-next.5
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -3288,8 +3288,12 @@ export declare type CompassCampaignEdge = {
|
|
|
3288
3288
|
node?: Maybe<CompassCampaign>;
|
|
3289
3289
|
};
|
|
3290
3290
|
export declare type CompassCampaignQuery = {
|
|
3291
|
+
filter?: InputMaybe<CompassCampaignQueryFilter>;
|
|
3291
3292
|
sort?: InputMaybe<CompassCampaignQuerySort>;
|
|
3292
3293
|
};
|
|
3294
|
+
export declare type CompassCampaignQueryFilter = {
|
|
3295
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
3296
|
+
};
|
|
3293
3297
|
export declare type CompassCampaignQuerySort = {
|
|
3294
3298
|
name: Scalars['String']['input'];
|
|
3295
3299
|
order?: InputMaybe<CompassCampaignQuerySortOrder>;
|
|
@@ -3963,6 +3967,19 @@ export declare type CompassComponentApiStatsEndpointChangesConnection = {
|
|
|
3963
3967
|
nodes: Array<CompassComponentApiStatsEndpointChange>;
|
|
3964
3968
|
pageInfo: PageInfo;
|
|
3965
3969
|
};
|
|
3970
|
+
export declare type CompassComponentCreationTimeFilter = {
|
|
3971
|
+
__typename?: 'CompassComponentCreationTimeFilter';
|
|
3972
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3973
|
+
filter?: Maybe<Scalars['String']['output']>;
|
|
3974
|
+
};
|
|
3975
|
+
export declare type CompassComponentCreationTimeFilterInput = {
|
|
3976
|
+
createdAt: Scalars['DateTime']['input'];
|
|
3977
|
+
filter: CompassComponentCreationTimeFilterType;
|
|
3978
|
+
};
|
|
3979
|
+
export declare enum CompassComponentCreationTimeFilterType {
|
|
3980
|
+
After = "AFTER",
|
|
3981
|
+
Before = "BEFORE"
|
|
3982
|
+
}
|
|
3966
3983
|
export declare type CompassComponentDataManager = {
|
|
3967
3984
|
__typename?: 'CompassComponentDataManager';
|
|
3968
3985
|
ecosystemAppId: Scalars['ID']['output'];
|
|
@@ -5430,7 +5447,7 @@ export declare type CompassLifecycleFilter = {
|
|
|
5430
5447
|
};
|
|
5431
5448
|
export declare type CompassLifecycleFilterInput = {
|
|
5432
5449
|
operator: CompassLifecycleFilterOperator;
|
|
5433
|
-
values: Array<
|
|
5450
|
+
values: Array<Scalars['String']['input']>;
|
|
5434
5451
|
};
|
|
5435
5452
|
export declare enum CompassLifecycleFilterOperator {
|
|
5436
5453
|
Nor = "NOR",
|
|
@@ -5932,6 +5949,7 @@ export declare type CompassScorecardAppliedToComponentsTypesFilter = {
|
|
|
5932
5949
|
export declare type CompassScorecardAutomaticApplicationModel = CompassScorecardApplicationModel & {
|
|
5933
5950
|
__typename?: 'CompassScorecardAutomaticApplicationModel';
|
|
5934
5951
|
applicationType: Scalars['String']['output'];
|
|
5952
|
+
componentCreationTimeFilter?: Maybe<CompassComponentCreationTimeFilter>;
|
|
5935
5953
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
5936
5954
|
componentLifecycleStages?: Maybe<CompassLifecycleFilter>;
|
|
5937
5955
|
componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -14172,7 +14190,7 @@ export declare type ContentPlatformCallToAction = {
|
|
|
14172
14190
|
url?: Maybe<Scalars['String']['output']>;
|
|
14173
14191
|
valueProposition?: Maybe<Scalars['String']['output']>;
|
|
14174
14192
|
};
|
|
14175
|
-
export declare type
|
|
14193
|
+
export declare type ContentPlatformCallToActionAndCallToActionMicrocopyUnion = ContentPlatformCallToAction | ContentPlatformCallToActionMicrocopy;
|
|
14176
14194
|
export declare type ContentPlatformCallToActionMicrocopy = {
|
|
14177
14195
|
__typename?: 'ContentPlatformCallToActionMicrocopy';
|
|
14178
14196
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14333,7 +14351,7 @@ export declare type ContentPlatformFeature = {
|
|
|
14333
14351
|
__typename?: 'ContentPlatformFeature';
|
|
14334
14352
|
callOut?: Maybe<Scalars['String']['output']>;
|
|
14335
14353
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14336
|
-
description?: Maybe<Scalars['
|
|
14354
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14337
14355
|
featureAdditionalInformation?: Maybe<Array<ContentPlatformFeatureAdditionalInformation>>;
|
|
14338
14356
|
featureNameExternal?: Maybe<Scalars['String']['output']>;
|
|
14339
14357
|
product?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
@@ -14420,7 +14438,7 @@ export declare type ContentPlatformFullTutorial = {
|
|
|
14420
14438
|
export declare type ContentPlatformHighlightedFeature = {
|
|
14421
14439
|
__typename?: 'ContentPlatformHighlightedFeature';
|
|
14422
14440
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14423
|
-
highlightedFeatureDetails?: Maybe<Scalars['
|
|
14441
|
+
highlightedFeatureDetails?: Maybe<Scalars['String']['output']>;
|
|
14424
14442
|
highlightedFeatureTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14425
14443
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14426
14444
|
};
|
|
@@ -14616,7 +14634,7 @@ export declare type ContentPlatformPlan = {
|
|
|
14616
14634
|
errors?: Maybe<Array<ContentPlatformPricingErrors>>;
|
|
14617
14635
|
highlightedFeaturesContainer?: Maybe<Array<ContentPlatformHighlightedFeature>>;
|
|
14618
14636
|
highlightedFeaturesTitle?: Maybe<Scalars['String']['output']>;
|
|
14619
|
-
microCta?: Maybe<Array<
|
|
14637
|
+
microCta?: Maybe<Array<ContentPlatformCallToActionAndCallToActionMicrocopyUnion>>;
|
|
14620
14638
|
planOneLiner?: Maybe<Scalars['String']['output']>;
|
|
14621
14639
|
planTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14622
14640
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
@@ -14639,14 +14657,14 @@ export declare type ContentPlatformPlanBenefits = {
|
|
|
14639
14657
|
export declare type ContentPlatformPlanDetails = {
|
|
14640
14658
|
__typename?: 'ContentPlatformPlanDetails';
|
|
14641
14659
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14642
|
-
planAdditionalDetails?: Maybe<Scalars['
|
|
14660
|
+
planAdditionalDetails?: Maybe<Scalars['String']['output']>;
|
|
14643
14661
|
planAdditionalDetailsTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14644
14662
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14645
14663
|
};
|
|
14646
14664
|
export declare type ContentPlatformPricing = {
|
|
14647
14665
|
__typename?: 'ContentPlatformPricing';
|
|
14648
14666
|
additionalDetails?: Maybe<Array<ContentPlatformPlanDetails>>;
|
|
14649
|
-
callToActionContainer?: Maybe<Array<
|
|
14667
|
+
callToActionContainer?: Maybe<Array<ContentPlatformCallToActionAndCallToActionMicrocopyUnion>>;
|
|
14650
14668
|
compareFeatures?: Maybe<Array<ContentPlatformFeatureGroup>>;
|
|
14651
14669
|
compareFeaturesTitle?: Maybe<Scalars['String']['output']>;
|
|
14652
14670
|
comparePlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
@@ -14654,22 +14672,15 @@ export declare type ContentPlatformPricing = {
|
|
|
14654
14672
|
datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
14655
14673
|
getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
|
|
14656
14674
|
headline?: Maybe<Scalars['String']['output']>;
|
|
14675
|
+
pageDescription?: Maybe<Scalars['String']['output']>;
|
|
14657
14676
|
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14658
|
-
questions?: Maybe<Scalars['JSON']['output']>;
|
|
14659
14677
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
14660
14678
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14661
14679
|
};
|
|
14662
|
-
export declare type ContentPlatformPricingCallToActionMicrocopy = {
|
|
14663
|
-
__typename?: 'ContentPlatformPricingCallToActionMicrocopy';
|
|
14664
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14665
|
-
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
14666
|
-
ctaMicrocopyTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14667
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14668
|
-
};
|
|
14669
14680
|
export declare type ContentPlatformPricingErrors = {
|
|
14670
14681
|
__typename?: 'ContentPlatformPricingErrors';
|
|
14671
14682
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14672
|
-
errorText?: Maybe<Scalars['
|
|
14683
|
+
errorText?: Maybe<Scalars['String']['output']>;
|
|
14673
14684
|
errorTrigger?: Maybe<Scalars['String']['output']>;
|
|
14674
14685
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14675
14686
|
};
|
|
@@ -15517,6 +15528,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
15517
15528
|
hasOwner?: InputMaybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
15518
15529
|
};
|
|
15519
15530
|
export declare type CreateCompassScorecardInput = {
|
|
15531
|
+
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
15520
15532
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15521
15533
|
componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
|
|
15522
15534
|
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -36711,6 +36723,7 @@ export declare type HelpCenter = Node & {
|
|
|
36711
36723
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
36712
36724
|
name?: Maybe<HelpCenterName>;
|
|
36713
36725
|
portals?: Maybe<HelpCenterPortals>;
|
|
36726
|
+
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
36714
36727
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
36715
36728
|
slug?: Maybe<Scalars['String']['output']>;
|
|
36716
36729
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
@@ -36722,6 +36735,12 @@ export declare type HelpCenterPortalsArgs = {
|
|
|
36722
36735
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
36723
36736
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
36724
36737
|
};
|
|
36738
|
+
export declare enum HelpCenterAccessControlType {
|
|
36739
|
+
External = "EXTERNAL",
|
|
36740
|
+
GroupBased = "GROUP_BASED",
|
|
36741
|
+
Internal = "INTERNAL",
|
|
36742
|
+
Public = "PUBLIC"
|
|
36743
|
+
}
|
|
36725
36744
|
export declare type HelpCenterAnnouncement = {
|
|
36726
36745
|
__typename?: 'HelpCenterAnnouncement';
|
|
36727
36746
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -36941,6 +36960,12 @@ export declare type HelpCenterNameInput = {
|
|
|
36941
36960
|
default: Scalars['String']['input'];
|
|
36942
36961
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
36943
36962
|
};
|
|
36963
|
+
export declare type HelpCenterPermissions = {
|
|
36964
|
+
__typename?: 'HelpCenterPermissions';
|
|
36965
|
+
allowedGroups?: Maybe<Array<Scalars['String']['output']>>;
|
|
36966
|
+
helpCenterAccessControl?: Maybe<HelpCenterAccessControlType>;
|
|
36967
|
+
};
|
|
36968
|
+
export declare type HelpCenterPermissionsResult = HelpCenterPermissions | QueryError;
|
|
36944
36969
|
export declare type HelpCenterPortal = {
|
|
36945
36970
|
__typename?: 'HelpCenterPortal';
|
|
36946
36971
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -36957,6 +36982,10 @@ export declare type HelpCenterPortal = {
|
|
|
36957
36982
|
export declare type HelpCenterPortalFilter = {
|
|
36958
36983
|
typeFilter?: InputMaybe<Array<HelpCenterPortalsType>>;
|
|
36959
36984
|
};
|
|
36985
|
+
export declare type HelpCenterPortalMetaData = {
|
|
36986
|
+
__typename?: 'HelpCenterPortalMetaData';
|
|
36987
|
+
portalId: Scalars['String']['output'];
|
|
36988
|
+
};
|
|
36960
36989
|
export declare type HelpCenterPortals = {
|
|
36961
36990
|
__typename?: 'HelpCenterPortals';
|
|
36962
36991
|
portalsList?: Maybe<Array<HelpCenterPortal>>;
|
|
@@ -36982,6 +37011,16 @@ export declare enum HelpCenterPortalsType {
|
|
|
36982
37011
|
Hidden = "HIDDEN",
|
|
36983
37012
|
Visible = "VISIBLE"
|
|
36984
37013
|
}
|
|
37014
|
+
export declare type HelpCenterProjectMappingData = {
|
|
37015
|
+
__typename?: 'HelpCenterProjectMappingData';
|
|
37016
|
+
projectMapping?: Maybe<Array<HelpCenterProjectMappingEntry>>;
|
|
37017
|
+
syncNewProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
37018
|
+
};
|
|
37019
|
+
export declare type HelpCenterProjectMappingEntry = {
|
|
37020
|
+
__typename?: 'HelpCenterProjectMappingEntry';
|
|
37021
|
+
portalMetadata: HelpCenterPortalMetaData;
|
|
37022
|
+
projectId: Scalars['String']['output'];
|
|
37023
|
+
};
|
|
36985
37024
|
export declare enum HelpCenterProjectMappingOperationType {
|
|
36986
37025
|
MapProjects = "MAP_PROJECTS",
|
|
36987
37026
|
UnmapProjects = "UNMAP_PROJECTS"
|
|
@@ -37006,9 +37045,11 @@ export declare type HelpCenterQueryApi = {
|
|
|
37006
37045
|
helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
|
|
37007
37046
|
helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
|
|
37008
37047
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
37048
|
+
helpCenterPermissions?: Maybe<HelpCenterPermissionsResult>;
|
|
37009
37049
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
37010
37050
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
37011
37051
|
helpCenters?: Maybe<HelpCenterQueryResultConnection>;
|
|
37052
|
+
helpCentersByProjectId?: Maybe<HelpCenterQueryResultConnection>;
|
|
37012
37053
|
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
37013
37054
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
37014
37055
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
@@ -37023,6 +37064,9 @@ export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
|
|
|
37023
37064
|
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
37024
37065
|
helpCenterAri: Scalars['ID']['input'];
|
|
37025
37066
|
};
|
|
37067
|
+
export declare type HelpCenterQueryApiHelpCenterPermissionsArgs = {
|
|
37068
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
37069
|
+
};
|
|
37026
37070
|
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
|
|
37027
37071
|
helpCenterAri: Scalars['ID']['input'];
|
|
37028
37072
|
};
|
|
@@ -37036,6 +37080,13 @@ export declare type HelpCenterQueryApiHelpCentersArgs = {
|
|
|
37036
37080
|
sortOrder: HelpCenterSortOrder;
|
|
37037
37081
|
workspaceAri: Scalars['ID']['input'];
|
|
37038
37082
|
};
|
|
37083
|
+
export declare type HelpCenterQueryApiHelpCentersByProjectIdArgs = {
|
|
37084
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37085
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37086
|
+
projectId: Scalars['String']['input'];
|
|
37087
|
+
sortOrder: HelpCenterSortOrder;
|
|
37088
|
+
workspaceAri: Scalars['ID']['input'];
|
|
37089
|
+
};
|
|
37039
37090
|
export declare type HelpCenterQueryApiHelpCentersConfigArgs = {
|
|
37040
37091
|
workspaceAri: Scalars['ID']['input'];
|
|
37041
37092
|
};
|
|
@@ -42397,6 +42448,21 @@ export declare type JiraFieldType = {
|
|
|
42397
42448
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
42398
42449
|
name: Scalars['String']['output'];
|
|
42399
42450
|
};
|
|
42451
|
+
export declare type JiraFieldTypeGroup = {
|
|
42452
|
+
__typename?: 'JiraFieldTypeGroup';
|
|
42453
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
42454
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
42455
|
+
};
|
|
42456
|
+
export declare type JiraFieldTypeGroupConnection = {
|
|
42457
|
+
__typename?: 'JiraFieldTypeGroupConnection';
|
|
42458
|
+
edges?: Maybe<Array<Maybe<JiraFieldTypeGroupEdge>>>;
|
|
42459
|
+
pageInfo: PageInfo;
|
|
42460
|
+
};
|
|
42461
|
+
export declare type JiraFieldTypeGroupEdge = {
|
|
42462
|
+
__typename?: 'JiraFieldTypeGroupEdge';
|
|
42463
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42464
|
+
node?: Maybe<JiraFieldTypeGroup>;
|
|
42465
|
+
};
|
|
42400
42466
|
export declare type JiraFieldValidationMutationErrorExtension = MutationErrorExtension & {
|
|
42401
42467
|
__typename?: 'JiraFieldValidationMutationErrorExtension';
|
|
42402
42468
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -47229,6 +47295,7 @@ export declare type JiraProject = Node & {
|
|
|
47229
47295
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
47230
47296
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
47231
47297
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
47298
|
+
projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
|
|
47232
47299
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
47233
47300
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
47234
47301
|
projectType?: Maybe<JiraProjectType>;
|
|
@@ -47345,6 +47412,10 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
47345
47412
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47346
47413
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47347
47414
|
};
|
|
47415
|
+
export declare type JiraProjectProjectFieldTypeGroupsArgs = {
|
|
47416
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
47417
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47418
|
+
};
|
|
47348
47419
|
export declare type JiraProjectRepositoriesArgs = {
|
|
47349
47420
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47350
47421
|
filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
|
|
@@ -47484,6 +47555,10 @@ export declare enum JiraProjectAndRepositoryRelationshipSortBy {
|
|
|
47484
47555
|
export declare type JiraProjectAssociatedFieldsInput = {
|
|
47485
47556
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
47486
47557
|
};
|
|
47558
|
+
export declare type JiraProjectAvailableFieldsInput = {
|
|
47559
|
+
fieldTypeGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
47560
|
+
filterContains?: InputMaybe<Scalars['String']['input']>;
|
|
47561
|
+
};
|
|
47487
47562
|
export declare type JiraProjectCategory = Node & {
|
|
47488
47563
|
__typename?: 'JiraProjectCategory';
|
|
47489
47564
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -47911,6 +47986,7 @@ export declare type JiraProjectWithIssueTypeIds = {
|
|
|
47911
47986
|
export declare type JiraProjectWithIssueTypeIdsAvailableFieldsArgs = {
|
|
47912
47987
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47913
47988
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47989
|
+
input?: InputMaybe<JiraProjectAvailableFieldsInput>;
|
|
47914
47990
|
};
|
|
47915
47991
|
export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArgs = {
|
|
47916
47992
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -53673,7 +53749,7 @@ export declare type JsmChatCreateConversationResponse = {
|
|
|
53673
53749
|
export declare type JsmChatCreateWebConversationMessage = {
|
|
53674
53750
|
__typename?: 'JsmChatCreateWebConversationMessage';
|
|
53675
53751
|
appendices?: Maybe<Array<Maybe<JsmChatConversationAppendixAction>>>;
|
|
53676
|
-
authorType:
|
|
53752
|
+
authorType: JsmChatCreateWebConversationUserRole;
|
|
53677
53753
|
content: Scalars['JSON']['output'];
|
|
53678
53754
|
contentType: JsmChatCreateWebConversationMessageContentType;
|
|
53679
53755
|
id: Scalars['ID']['output'];
|
|
@@ -53691,6 +53767,13 @@ export declare type JsmChatCreateWebConversationMessagePayload = Payload & {
|
|
|
53691
53767
|
errors?: Maybe<Array<MutationError>>;
|
|
53692
53768
|
success: Scalars['Boolean']['output'];
|
|
53693
53769
|
};
|
|
53770
|
+
export declare enum JsmChatCreateWebConversationUserRole {
|
|
53771
|
+
Init = "Init",
|
|
53772
|
+
JsmAgent = "JSM_Agent",
|
|
53773
|
+
Participant = "Participant",
|
|
53774
|
+
Reporter = "Reporter",
|
|
53775
|
+
VirtualAgent = "VirtualAgent"
|
|
53776
|
+
}
|
|
53694
53777
|
export declare type JsmChatDeleteSlackChannelMappingOutput = {
|
|
53695
53778
|
__typename?: 'JsmChatDeleteSlackChannelMappingOutput';
|
|
53696
53779
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -53792,6 +53875,7 @@ export declare type JsmChatMsTeamsUpdatedProjectSettings = {
|
|
|
53792
53875
|
export declare type JsmChatMutation = {
|
|
53793
53876
|
__typename?: 'JsmChatMutation';
|
|
53794
53877
|
addConversationInteraction?: Maybe<JsmChatAddConversationInteractionPayload>;
|
|
53878
|
+
addWebConversationInteraction?: Maybe<JsmChatWebAddConversationInteractionPayload>;
|
|
53795
53879
|
createChannel: JsmChatCreateChannelOutput;
|
|
53796
53880
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
53797
53881
|
createConversation?: Maybe<JsmChatCreateConversationPayload>;
|
|
@@ -53811,6 +53895,11 @@ export declare type JsmChatMutationAddConversationInteractionArgs = {
|
|
|
53811
53895
|
input: JsmChatAddConversationInteractionInput;
|
|
53812
53896
|
workspaceAri: Scalars['ID']['input'];
|
|
53813
53897
|
};
|
|
53898
|
+
export declare type JsmChatMutationAddWebConversationInteractionArgs = {
|
|
53899
|
+
conversationId: Scalars['ID']['input'];
|
|
53900
|
+
input: JsmChatWebAddConversationInteractionInput;
|
|
53901
|
+
workspaceAri: Scalars['ID']['input'];
|
|
53902
|
+
};
|
|
53814
53903
|
export declare type JsmChatMutationCreateChannelArgs = {
|
|
53815
53904
|
input?: InputMaybe<JsmChatCreateChannelInput>;
|
|
53816
53905
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -53949,7 +54038,7 @@ export declare type JsmChatSlackConfig = {
|
|
|
53949
54038
|
export declare type JsmChatSubscription = {
|
|
53950
54039
|
__typename?: 'JsmChatSubscription';
|
|
53951
54040
|
onConversationUpdate?: Maybe<JsmChatConversationUpdateSubscriptionPayload>;
|
|
53952
|
-
updateConversation?: Maybe<
|
|
54041
|
+
updateConversation?: Maybe<JsmChatWebSubscriptionResponse>;
|
|
53953
54042
|
};
|
|
53954
54043
|
export declare type JsmChatSubscriptionOnConversationUpdateArgs = {
|
|
53955
54044
|
conversationId: Scalars['ID']['input'];
|
|
@@ -54022,6 +54111,17 @@ export declare type JsmChatUpdatedProjectSettings = {
|
|
|
54022
54111
|
requesterIssueClosedMessageDisabled: Scalars['Boolean']['input'];
|
|
54023
54112
|
requesterThreadMessageDisabled: Scalars['Boolean']['input'];
|
|
54024
54113
|
};
|
|
54114
|
+
export declare type JsmChatWebAddConversationInteractionInput = {
|
|
54115
|
+
authorId: Scalars['String']['input'];
|
|
54116
|
+
interactionType: JsmChatWebInteractionType;
|
|
54117
|
+
jiraFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
54118
|
+
selectedValue: Scalars['String']['input'];
|
|
54119
|
+
};
|
|
54120
|
+
export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
54121
|
+
__typename?: 'JsmChatWebAddConversationInteractionPayload';
|
|
54122
|
+
errors?: Maybe<Array<MutationError>>;
|
|
54123
|
+
success: Scalars['Boolean']['output'];
|
|
54124
|
+
};
|
|
54025
54125
|
export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
54026
54126
|
export declare enum JsmChatWebConversationMessageContentType {
|
|
54027
54127
|
Adf = "ADF"
|
|
@@ -54032,17 +54132,27 @@ export declare type JsmChatWebConversationUpdateQueryError = {
|
|
|
54032
54132
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
54033
54133
|
message?: Maybe<Scalars['String']['output']>;
|
|
54034
54134
|
};
|
|
54035
|
-
export declare type JsmChatWebConversationUpdateSubscriptionPayload =
|
|
54135
|
+
export declare type JsmChatWebConversationUpdateSubscriptionPayload = JsmChatWebConversationUpdateQueryError | JsmChatWebSubscriptionEstablishedPayload;
|
|
54036
54136
|
export declare enum JsmChatWebConversationUserRole {
|
|
54037
54137
|
JsmAgent = "JSM_Agent",
|
|
54038
54138
|
Participant = "Participant",
|
|
54039
54139
|
Reporter = "Reporter",
|
|
54040
54140
|
VirtualAgent = "VirtualAgent"
|
|
54041
54141
|
}
|
|
54142
|
+
export declare enum JsmChatWebInteractionType {
|
|
54143
|
+
Buttons = "BUTTONS",
|
|
54144
|
+
Dropdown = "DROPDOWN",
|
|
54145
|
+
JiraField = "JIRA_FIELD"
|
|
54146
|
+
}
|
|
54042
54147
|
export declare type JsmChatWebSubscriptionEstablishedPayload = {
|
|
54043
54148
|
__typename?: 'JsmChatWebSubscriptionEstablishedPayload';
|
|
54044
54149
|
id: Scalars['ID']['output'];
|
|
54045
54150
|
};
|
|
54151
|
+
export declare type JsmChatWebSubscriptionResponse = {
|
|
54152
|
+
__typename?: 'JsmChatWebSubscriptionResponse';
|
|
54153
|
+
conversation?: Maybe<JsmChatMessageEdge>;
|
|
54154
|
+
result?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
|
|
54155
|
+
};
|
|
54046
54156
|
export declare type JswAvailableCardLayoutField = Node & {
|
|
54047
54157
|
__typename?: 'JswAvailableCardLayoutField';
|
|
54048
54158
|
fieldId: Scalars['ID']['output'];
|
|
@@ -64559,6 +64669,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
64559
64669
|
creatorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64560
64670
|
isVerified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64561
64671
|
labelsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64672
|
+
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64562
64673
|
pageStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64563
64674
|
range?: InputMaybe<Array<InputMaybe<SearchConfluenceRangeFilter>>>;
|
|
64564
64675
|
spacesFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -68120,6 +68231,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
68120
68231
|
description?: Maybe<Scalars['String']['output']>;
|
|
68121
68232
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
68122
68233
|
goalType?: Maybe<TownsquareGoalType>;
|
|
68234
|
+
icon?: Maybe<TownsquareGoalIcon>;
|
|
68123
68235
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
68124
68236
|
id: Scalars['ID']['output'];
|
|
68125
68237
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -68149,6 +68261,17 @@ export declare type TownsquareGoalEdge = {
|
|
|
68149
68261
|
cursor: Scalars['String']['output'];
|
|
68150
68262
|
node?: Maybe<TownsquareGoal>;
|
|
68151
68263
|
};
|
|
68264
|
+
export declare type TownsquareGoalIcon = {
|
|
68265
|
+
__typename?: 'TownsquareGoalIcon';
|
|
68266
|
+
appearance?: Maybe<TownsquareGoalIconAppearance>;
|
|
68267
|
+
key?: Maybe<TownsquareGoalTypeIconKey>;
|
|
68268
|
+
};
|
|
68269
|
+
export declare enum TownsquareGoalIconAppearance {
|
|
68270
|
+
AtRisk = "AT_RISK",
|
|
68271
|
+
Default = "DEFAULT",
|
|
68272
|
+
OffTrack = "OFF_TRACK",
|
|
68273
|
+
OnTrack = "ON_TRACK"
|
|
68274
|
+
}
|
|
68152
68275
|
export declare enum TownsquareGoalSortEnum {
|
|
68153
68276
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
68154
68277
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -68191,6 +68314,7 @@ export declare type TownsquareGoalType = Node & {
|
|
|
68191
68314
|
__typename?: 'TownsquareGoalType';
|
|
68192
68315
|
allowedChildTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
68193
68316
|
allowedParentTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
68317
|
+
icon?: Maybe<TownsquareGoalTypeIcon>;
|
|
68194
68318
|
id: Scalars['ID']['output'];
|
|
68195
68319
|
name?: Maybe<TownsquareGoalTypeName>;
|
|
68196
68320
|
state?: Maybe<TownsquareGoalTypeState>;
|
|
@@ -68219,6 +68343,15 @@ export declare type TownsquareGoalTypeEdge = {
|
|
|
68219
68343
|
cursor: Scalars['String']['output'];
|
|
68220
68344
|
node?: Maybe<TownsquareGoalType>;
|
|
68221
68345
|
};
|
|
68346
|
+
export declare type TownsquareGoalTypeIcon = {
|
|
68347
|
+
__typename?: 'TownsquareGoalTypeIcon';
|
|
68348
|
+
key?: Maybe<TownsquareGoalTypeIconKey>;
|
|
68349
|
+
};
|
|
68350
|
+
export declare enum TownsquareGoalTypeIconKey {
|
|
68351
|
+
Goal = "GOAL",
|
|
68352
|
+
KeyResult = "KEY_RESULT",
|
|
68353
|
+
Objective = "OBJECTIVE"
|
|
68354
|
+
}
|
|
68222
68355
|
export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
|
|
68223
68356
|
export declare enum TownsquareGoalTypeState {
|
|
68224
68357
|
Disabled = "DISABLED",
|
|
@@ -69513,6 +69646,7 @@ export declare enum TrelloPlannerCalendarEventStatus {
|
|
|
69513
69646
|
Tentative = "TENTATIVE"
|
|
69514
69647
|
}
|
|
69515
69648
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
69649
|
+
Default = "DEFAULT",
|
|
69516
69650
|
Private = "PRIVATE",
|
|
69517
69651
|
Public = "PUBLIC"
|
|
69518
69652
|
}
|
|
@@ -70661,6 +70795,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
70661
70795
|
hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
70662
70796
|
};
|
|
70663
70797
|
export declare type UpdateCompassScorecardInput = {
|
|
70798
|
+
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
70664
70799
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
70665
70800
|
componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
|
|
70666
70801
|
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|