@forge/cli-shared 2.2.1-next.2 → 2.2.1-next.6
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
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.1-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [7b2d17a]
|
|
8
|
+
- @forge/manifest@3.1.0-next.6
|
|
9
|
+
|
|
10
|
+
## 2.2.1-next.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [f6901fd]
|
|
15
|
+
- @forge/manifest@3.1.0-next.5
|
|
16
|
+
|
|
17
|
+
## 2.2.1-next.4
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [d3ccc04]
|
|
22
|
+
- @forge/manifest@3.1.0-next.4
|
|
23
|
+
|
|
24
|
+
## 2.2.1-next.3
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [debe251]
|
|
29
|
+
- @forge/manifest@3.1.0-next.3
|
|
30
|
+
|
|
3
31
|
## 2.2.1-next.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
|
@@ -213,7 +213,7 @@ export declare type ActivityFilterArgs = {
|
|
|
213
213
|
products?: Maybe<Array<Scalars['String']>>;
|
|
214
214
|
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
215
215
|
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
216
|
-
transitions?: Maybe<Array<
|
|
216
|
+
transitions?: Maybe<Array<TransitionFilter>>;
|
|
217
217
|
containerIds?: Maybe<Array<Scalars['ID']>>;
|
|
218
218
|
earliestStart?: Maybe<Scalars['DateTime']>;
|
|
219
219
|
latestStart?: Maybe<Scalars['DateTime']>;
|
|
@@ -2424,6 +2424,7 @@ export declare type CompassScorecard = Node & {
|
|
|
2424
2424
|
importance: CompassScorecardImportance;
|
|
2425
2425
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
2426
2426
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
2427
|
+
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
2427
2428
|
changeMetadata: CompassChangeMetadata;
|
|
2428
2429
|
};
|
|
2429
2430
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
@@ -3345,7 +3346,7 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3345
3346
|
__typename?: 'ContentPlatformPracticePage';
|
|
3346
3347
|
name: Scalars['String'];
|
|
3347
3348
|
tagline: Scalars['String'];
|
|
3348
|
-
|
|
3349
|
+
introToPractice: ContentPlatformIntroToPractice;
|
|
3349
3350
|
whatIs: ContentPlatformChunkWhatIs;
|
|
3350
3351
|
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
3351
3352
|
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
@@ -3354,6 +3355,16 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3354
3355
|
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
3355
3356
|
practice: ContentPlatformWhatPractice;
|
|
3356
3357
|
};
|
|
3358
|
+
export declare type ContentPlatformPracticePagesConnection = {
|
|
3359
|
+
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
3360
|
+
pageInfo: PageInfo;
|
|
3361
|
+
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
3362
|
+
};
|
|
3363
|
+
export declare type ContentPlatformPracticePagesEdge = {
|
|
3364
|
+
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
3365
|
+
node: ContentPlatformPracticePage;
|
|
3366
|
+
cursor: Scalars['String'];
|
|
3367
|
+
};
|
|
3357
3368
|
export declare type ContentPlatformReleaseNote = {
|
|
3358
3369
|
__typename?: 'ContentPlatformReleaseNote';
|
|
3359
3370
|
releaseNoteId: Scalars['String'];
|
|
@@ -3665,6 +3676,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
3665
3676
|
componentType: CompassComponentType;
|
|
3666
3677
|
importance: CompassScorecardImportance;
|
|
3667
3678
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
3679
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
3668
3680
|
};
|
|
3669
3681
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
3670
3682
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -3949,6 +3961,10 @@ export declare type CreatePolarisViewSetPayload = Payload & {
|
|
|
3949
3961
|
errors?: Maybe<Array<MutationError>>;
|
|
3950
3962
|
node?: Maybe<PolarisViewSet>;
|
|
3951
3963
|
};
|
|
3964
|
+
export declare type CreateRankingListInput = {
|
|
3965
|
+
listId: Scalars['ID'];
|
|
3966
|
+
items?: Maybe<Array<Scalars['String']>>;
|
|
3967
|
+
};
|
|
3952
3968
|
export declare type CreateSprintInput = {
|
|
3953
3969
|
boardId: Scalars['ID'];
|
|
3954
3970
|
};
|
|
@@ -4364,6 +4380,13 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4364
4380
|
success: Scalars['Boolean'];
|
|
4365
4381
|
errors?: Maybe<Array<MutationError>>;
|
|
4366
4382
|
};
|
|
4383
|
+
export declare type DevOps = {
|
|
4384
|
+
__typename?: 'DevOps';
|
|
4385
|
+
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4386
|
+
};
|
|
4387
|
+
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4388
|
+
ids: Array<Scalars['ID']>;
|
|
4389
|
+
};
|
|
4367
4390
|
export declare type DevOpsAvatar = {
|
|
4368
4391
|
__typename?: 'DevOpsAvatar';
|
|
4369
4392
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -4824,6 +4847,13 @@ export declare type DevOpsServicesFilterInput = {
|
|
|
4824
4847
|
nameContains?: Maybe<Scalars['String']>;
|
|
4825
4848
|
tierLevelIn?: Maybe<Array<Scalars['Int']>>;
|
|
4826
4849
|
};
|
|
4850
|
+
export declare type DevOpsSummarisedDeployments = {
|
|
4851
|
+
__typename?: 'DevOpsSummarisedDeployments';
|
|
4852
|
+
entityId: Scalars['ID'];
|
|
4853
|
+
count?: Maybe<Scalars['Int']>;
|
|
4854
|
+
deploymentState?: Maybe<DeploymentState>;
|
|
4855
|
+
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
4856
|
+
};
|
|
4827
4857
|
export declare type DevOpsThirdPartyRepository = {
|
|
4828
4858
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
4829
4859
|
id: Scalars['ID'];
|
|
@@ -6840,6 +6870,7 @@ export declare type JiraIssue = Node & {
|
|
|
6840
6870
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6841
6871
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6842
6872
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6873
|
+
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
6843
6874
|
};
|
|
6844
6875
|
export declare type JiraIssueFieldsArgs = {
|
|
6845
6876
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -8744,6 +8775,7 @@ export declare type JiraQuery = {
|
|
|
8744
8775
|
issueById?: Maybe<JiraIssue>;
|
|
8745
8776
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8746
8777
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8778
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8747
8779
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8748
8780
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8749
8781
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -9992,6 +10024,7 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
9992
10024
|
InProgress = "IN_PROGRESS",
|
|
9993
10025
|
Done = "DONE",
|
|
9994
10026
|
UnreviewedCode = "UNREVIEWED_CODE",
|
|
10027
|
+
OpenReview = "OPEN_REVIEW",
|
|
9995
10028
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
9996
10029
|
FailingBuild = "FAILING_BUILD"
|
|
9997
10030
|
}
|
|
@@ -10009,6 +10042,7 @@ export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
|
10009
10042
|
export declare type JiraVersionWarningConfig = {
|
|
10010
10043
|
__typename?: 'JiraVersionWarningConfig';
|
|
10011
10044
|
openPullRequest?: Maybe<JiraVersionWarningConfigState>;
|
|
10045
|
+
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
10012
10046
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
10013
10047
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
10014
10048
|
};
|
|
@@ -10603,8 +10637,10 @@ export declare type Mutation = {
|
|
|
10603
10637
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
10604
10638
|
jira?: Maybe<JiraMutation>;
|
|
10605
10639
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10640
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
10606
10641
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10607
10642
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10643
|
+
polaris?: Maybe<PolarisMutationNamespace>;
|
|
10608
10644
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
10609
10645
|
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
10610
10646
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
@@ -11911,6 +11947,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
11911
11947
|
__typename?: 'PolarisMatrixConfig';
|
|
11912
11948
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
11913
11949
|
};
|
|
11950
|
+
export declare type PolarisMutationNamespace = {
|
|
11951
|
+
__typename?: 'PolarisMutationNamespace';
|
|
11952
|
+
ranking?: Maybe<PolarisRankingMutationNamespace>;
|
|
11953
|
+
};
|
|
11914
11954
|
export declare type PolarisPlay = {
|
|
11915
11955
|
__typename?: 'PolarisPlay';
|
|
11916
11956
|
id: Scalars['ID'];
|
|
@@ -11982,6 +12022,55 @@ export declare type PolarisProjectTemplate = {
|
|
|
11982
12022
|
__typename?: 'PolarisProjectTemplate';
|
|
11983
12023
|
ideas?: Maybe<Scalars['JSON']>;
|
|
11984
12024
|
};
|
|
12025
|
+
export declare type PolarisQueryNamespace = {
|
|
12026
|
+
__typename?: 'PolarisQueryNamespace';
|
|
12027
|
+
ranking?: Maybe<PolarisRankingQueryNamespace>;
|
|
12028
|
+
};
|
|
12029
|
+
export declare type PolarisRankingMutationNamespace = {
|
|
12030
|
+
__typename?: 'PolarisRankingMutationNamespace';
|
|
12031
|
+
createList?: Maybe<RankingDiffPayload>;
|
|
12032
|
+
deleteList?: Maybe<RankingDiffPayload>;
|
|
12033
|
+
makeFirst?: Maybe<RankingDiffPayload>;
|
|
12034
|
+
makeLast?: Maybe<RankingDiffPayload>;
|
|
12035
|
+
makeBefore?: Maybe<RankingDiffPayload>;
|
|
12036
|
+
makeAfter?: Maybe<RankingDiffPayload>;
|
|
12037
|
+
makeUnranked?: Maybe<RankingDiffPayload>;
|
|
12038
|
+
};
|
|
12039
|
+
export declare type PolarisRankingMutationNamespaceCreateListArgs = {
|
|
12040
|
+
input: CreateRankingListInput;
|
|
12041
|
+
};
|
|
12042
|
+
export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
12043
|
+
listId: Scalars['ID'];
|
|
12044
|
+
};
|
|
12045
|
+
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12046
|
+
listId: Scalars['ID'];
|
|
12047
|
+
id: Scalars['ID'];
|
|
12048
|
+
};
|
|
12049
|
+
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12050
|
+
listId: Scalars['ID'];
|
|
12051
|
+
id: Scalars['ID'];
|
|
12052
|
+
};
|
|
12053
|
+
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12054
|
+
listId: Scalars['ID'];
|
|
12055
|
+
refId: Scalars['ID'];
|
|
12056
|
+
id: Scalars['ID'];
|
|
12057
|
+
};
|
|
12058
|
+
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12059
|
+
listId: Scalars['ID'];
|
|
12060
|
+
refId: Scalars['ID'];
|
|
12061
|
+
id: Scalars['ID'];
|
|
12062
|
+
};
|
|
12063
|
+
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12064
|
+
listId: Scalars['ID'];
|
|
12065
|
+
id: Scalars['ID'];
|
|
12066
|
+
};
|
|
12067
|
+
export declare type PolarisRankingQueryNamespace = {
|
|
12068
|
+
__typename?: 'PolarisRankingQueryNamespace';
|
|
12069
|
+
list?: Maybe<Array<Maybe<RankItem>>>;
|
|
12070
|
+
};
|
|
12071
|
+
export declare type PolarisRankingQueryNamespaceListArgs = {
|
|
12072
|
+
listId: Scalars['ID'];
|
|
12073
|
+
};
|
|
11985
12074
|
export declare enum PolarisRefreshError {
|
|
11986
12075
|
NeedAuth = "NEED_AUTH",
|
|
11987
12076
|
InvalidSnippet = "INVALID_SNIPPET",
|
|
@@ -12267,7 +12356,7 @@ export declare type Query = {
|
|
|
12267
12356
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
12268
12357
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
12269
12358
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
12270
|
-
practicePages:
|
|
12359
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
12271
12360
|
practicePage: ContentPlatformPracticePage;
|
|
12272
12361
|
apps?: Maybe<AppConnection>;
|
|
12273
12362
|
app?: Maybe<App>;
|
|
@@ -12277,6 +12366,7 @@ export declare type Query = {
|
|
|
12277
12366
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
12278
12367
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
12279
12368
|
search?: Maybe<SearchQueryApi>;
|
|
12369
|
+
devOps?: Maybe<DevOps>;
|
|
12280
12370
|
me: AuthenticationContext;
|
|
12281
12371
|
user?: Maybe<User>;
|
|
12282
12372
|
users?: Maybe<Array<User>>;
|
|
@@ -12328,6 +12418,7 @@ export declare type Query = {
|
|
|
12328
12418
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
12329
12419
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
12330
12420
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
12421
|
+
polaris?: Maybe<PolarisQueryNamespace>;
|
|
12331
12422
|
dvcs?: Maybe<DvcsQuery>;
|
|
12332
12423
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
12333
12424
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -12379,6 +12470,10 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
12379
12470
|
id: Scalars['String'];
|
|
12380
12471
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
12381
12472
|
};
|
|
12473
|
+
export declare type QueryPracticePagesArgs = {
|
|
12474
|
+
after?: Maybe<Scalars['String']>;
|
|
12475
|
+
first?: Maybe<Scalars['Int']>;
|
|
12476
|
+
};
|
|
12382
12477
|
export declare type QueryPracticePageArgs = {
|
|
12383
12478
|
id: Scalars['String'];
|
|
12384
12479
|
};
|
|
@@ -12653,6 +12748,17 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
12653
12748
|
success: Scalars['Boolean'];
|
|
12654
12749
|
message: Scalars['String'];
|
|
12655
12750
|
};
|
|
12751
|
+
export declare type RankItem = {
|
|
12752
|
+
__typename?: 'RankItem';
|
|
12753
|
+
id: Scalars['ID'];
|
|
12754
|
+
rank: Scalars['Float'];
|
|
12755
|
+
};
|
|
12756
|
+
export declare type RankingDiffPayload = {
|
|
12757
|
+
__typename?: 'RankingDiffPayload';
|
|
12758
|
+
added?: Maybe<Array<RankItem>>;
|
|
12759
|
+
changed?: Maybe<Array<RankItem>>;
|
|
12760
|
+
deleted?: Maybe<Array<RankItem>>;
|
|
12761
|
+
};
|
|
12656
12762
|
export declare enum RateLimitingCurrency {
|
|
12657
12763
|
TestingService = "TESTING_SERVICE",
|
|
12658
12764
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
@@ -12805,6 +12911,21 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
12805
12911
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
12806
12912
|
sprintField?: Maybe<Scalars['ID']>;
|
|
12807
12913
|
};
|
|
12914
|
+
export declare type RoadmapFeatureToggleInput = {
|
|
12915
|
+
sourceARI: Scalars['ID'];
|
|
12916
|
+
enabled: Scalars['Boolean'];
|
|
12917
|
+
};
|
|
12918
|
+
export declare type RoadmapFeatureToggleOutput = {
|
|
12919
|
+
__typename?: 'RoadmapFeatureToggleOutput';
|
|
12920
|
+
enabled: Scalars['Boolean'];
|
|
12921
|
+
isCrossProject: Scalars['Boolean'];
|
|
12922
|
+
};
|
|
12923
|
+
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
12924
|
+
__typename?: 'RoadmapFeatureTogglePayload';
|
|
12925
|
+
success: Scalars['Boolean'];
|
|
12926
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12927
|
+
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
12928
|
+
};
|
|
12808
12929
|
export declare type RoadmapItem = {
|
|
12809
12930
|
__typename?: 'RoadmapItem';
|
|
12810
12931
|
id: Scalars['ID'];
|
|
@@ -12877,6 +12998,11 @@ export declare type RoadmapMetadata = {
|
|
|
12877
12998
|
hasExceededIssueLimit: Scalars['Boolean'];
|
|
12878
12999
|
corruptedIssueCount: Scalars['Int'];
|
|
12879
13000
|
};
|
|
13001
|
+
export declare type RoadmapMutationErrorExtension = MutationErrorExtension & {
|
|
13002
|
+
__typename?: 'RoadmapMutationErrorExtension';
|
|
13003
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
13004
|
+
errorType?: Maybe<Scalars['String']>;
|
|
13005
|
+
};
|
|
12880
13006
|
export declare enum RoadmapPaletteColor {
|
|
12881
13007
|
Purple = "PURPLE",
|
|
12882
13008
|
Blue = "BLUE",
|
|
@@ -12991,6 +13117,13 @@ export declare type RoadmapViewSettings = {
|
|
|
12991
13117
|
period: Scalars['Int'];
|
|
12992
13118
|
showCompleted: Scalars['Boolean'];
|
|
12993
13119
|
};
|
|
13120
|
+
export declare type RoadmapsMutation = {
|
|
13121
|
+
__typename?: 'RoadmapsMutation';
|
|
13122
|
+
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13123
|
+
};
|
|
13124
|
+
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13125
|
+
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
13126
|
+
};
|
|
12994
13127
|
export declare type RoadmapsQuery = {
|
|
12995
13128
|
__typename?: 'RoadmapsQuery';
|
|
12996
13129
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -13883,7 +14016,12 @@ export declare type SupportRequestUser = {
|
|
|
13883
14016
|
username?: Maybe<Scalars['String']>;
|
|
13884
14017
|
email?: Maybe<Scalars['String']>;
|
|
13885
14018
|
displayName?: Maybe<Scalars['String']>;
|
|
14019
|
+
userType?: Maybe<SupportRequestUserType>;
|
|
13886
14020
|
};
|
|
14021
|
+
export declare enum SupportRequestUserType {
|
|
14022
|
+
Customer = "CUSTOMER",
|
|
14023
|
+
Partner = "PARTNER"
|
|
14024
|
+
}
|
|
13887
14025
|
export declare type SupportRequestUsers = {
|
|
13888
14026
|
__typename?: 'SupportRequestUsers';
|
|
13889
14027
|
searchUsers: Array<SupportRequestUser>;
|
|
@@ -14162,6 +14300,10 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
14162
14300
|
q?: Maybe<Scalars['String']>;
|
|
14163
14301
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
14164
14302
|
};
|
|
14303
|
+
export declare type TransitionFilter = {
|
|
14304
|
+
from: Scalars['String'];
|
|
14305
|
+
to: Scalars['String'];
|
|
14306
|
+
};
|
|
14165
14307
|
export declare type TunnelDefinitionsInput = {
|
|
14166
14308
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
14167
14309
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|
|
@@ -14324,6 +14466,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
14324
14466
|
ownerId?: Maybe<Scalars['ID']>;
|
|
14325
14467
|
componentType?: Maybe<CompassComponentType>;
|
|
14326
14468
|
importance?: Maybe<CompassScorecardImportance>;
|
|
14469
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
14327
14470
|
};
|
|
14328
14471
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
14329
14472
|
__typename?: 'UpdateCompassScorecardPayload';
|