@forge/cli-shared 3.6.1-next.0 → 3.6.1-next.1
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,14 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.6.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- af4c149: Update webpack-related packages and remove unused
|
|
8
|
+
- Updated dependencies [af4c149]
|
|
9
|
+
- @forge/util@1.2.1-next.0
|
|
10
|
+
- @forge/manifest@4.6.1-next.1
|
|
11
|
+
|
|
3
12
|
## 3.6.1-next.0
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -803,6 +803,48 @@ export declare type AppPrincipal = {
|
|
|
803
803
|
__typename?: 'AppPrincipal';
|
|
804
804
|
id?: Maybe<Scalars['ID']>;
|
|
805
805
|
};
|
|
806
|
+
export declare type AppRecContext = {
|
|
807
|
+
containers?: Maybe<Scalars['JSON']>;
|
|
808
|
+
product?: Maybe<Scalars['String']>;
|
|
809
|
+
subproduct?: Maybe<Scalars['String']>;
|
|
810
|
+
tenantId?: Maybe<Scalars['ID']>;
|
|
811
|
+
userId?: Maybe<Scalars['ID']>;
|
|
812
|
+
};
|
|
813
|
+
export declare type AppRecDismissRecommendationInput = {
|
|
814
|
+
appId: Scalars['ID'];
|
|
815
|
+
};
|
|
816
|
+
export declare type AppRecDismissRecommendationPayload = Payload & {
|
|
817
|
+
__typename?: 'AppRecDismissRecommendationPayload';
|
|
818
|
+
dismissal?: Maybe<AppRecDismissal>;
|
|
819
|
+
errors?: Maybe<Array<MutationError>>;
|
|
820
|
+
success: Scalars['Boolean'];
|
|
821
|
+
};
|
|
822
|
+
export declare type AppRecDismissal = {
|
|
823
|
+
__typename?: 'AppRecDismissal';
|
|
824
|
+
appId: Scalars['ID'];
|
|
825
|
+
dismissedAt: Scalars['String'];
|
|
826
|
+
};
|
|
827
|
+
export declare type AppRecMutation = {
|
|
828
|
+
__typename?: 'AppRecMutation';
|
|
829
|
+
dismissRecommendation?: Maybe<AppRecDismissRecommendationPayload>;
|
|
830
|
+
};
|
|
831
|
+
export declare type AppRecMutationDismissRecommendationArgs = {
|
|
832
|
+
input: AppRecDismissRecommendationInput;
|
|
833
|
+
};
|
|
834
|
+
export declare type AppRecQuery = {
|
|
835
|
+
__typename?: 'AppRecQuery';
|
|
836
|
+
recommendations?: Maybe<Array<AppRecRecommendationResult>>;
|
|
837
|
+
};
|
|
838
|
+
export declare type AppRecQueryRecommendationsArgs = {
|
|
839
|
+
context?: Maybe<AppRecContext>;
|
|
840
|
+
first?: Maybe<Scalars['Int']>;
|
|
841
|
+
};
|
|
842
|
+
export declare type AppRecRecommendation = {
|
|
843
|
+
__typename?: 'AppRecRecommendation';
|
|
844
|
+
appId: Scalars['ID'];
|
|
845
|
+
reasons?: Maybe<Array<Scalars['String']>>;
|
|
846
|
+
};
|
|
847
|
+
export declare type AppRecRecommendationResult = QueryError | AppRecRecommendation;
|
|
806
848
|
export declare type AppSecurityPoliciesPermission = {
|
|
807
849
|
__typename?: 'AppSecurityPoliciesPermission';
|
|
808
850
|
type?: Maybe<AppSecurityPoliciesPermissionType>;
|
|
@@ -3097,6 +3139,7 @@ export declare type CompassLink = {
|
|
|
3097
3139
|
type: CompassLinkType;
|
|
3098
3140
|
url: Scalars['URL'];
|
|
3099
3141
|
name?: Maybe<Scalars['String']>;
|
|
3142
|
+
eventSources?: Maybe<Array<EventSource>>;
|
|
3100
3143
|
};
|
|
3101
3144
|
export declare enum CompassLinkType {
|
|
3102
3145
|
Document = "DOCUMENT",
|
|
@@ -6900,7 +6943,6 @@ export declare type DevOpsToolIntegrationProduct = DevOpsToolIntegration & {
|
|
|
6900
6943
|
key: Scalars['String'];
|
|
6901
6944
|
productName: Scalars['String'];
|
|
6902
6945
|
name: Scalars['String'];
|
|
6903
|
-
available: Scalars['Boolean'];
|
|
6904
6946
|
iconUrl?: Maybe<Scalars['String']>;
|
|
6905
6947
|
};
|
|
6906
6948
|
export declare enum DevOpsToolIntegrationType {
|
|
@@ -7244,7 +7286,9 @@ export declare type EstimationConfig = {
|
|
|
7244
7286
|
export declare enum EventKnownAvIs {
|
|
7245
7287
|
AviJiraIssueCreated = "AVI_JIRA_ISSUE_CREATED",
|
|
7246
7288
|
AviJiraIssueUpdated = "AVI_JIRA_ISSUE_UPDATED",
|
|
7247
|
-
AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED"
|
|
7289
|
+
AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED",
|
|
7290
|
+
AviDevopsRelationshipCreated = "AVI_DEVOPS_RELATIONSHIP_CREATED",
|
|
7291
|
+
AviDevopsRelationshipUpdated = "AVI_DEVOPS_RELATIONSHIP_UPDATED"
|
|
7248
7292
|
}
|
|
7249
7293
|
export declare enum EventMatchingStrategies {
|
|
7250
7294
|
JiraByCloud = "JIRA_BY_CLOUD",
|
|
@@ -7252,7 +7296,8 @@ export declare enum EventMatchingStrategies {
|
|
|
7252
7296
|
JiraByIssue = "JIRA_BY_ISSUE",
|
|
7253
7297
|
BitbucketByRepo = "BITBUCKET_BY_REPO",
|
|
7254
7298
|
ByAccount = "BY_ACCOUNT",
|
|
7255
|
-
JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT"
|
|
7299
|
+
JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT",
|
|
7300
|
+
PrByProjectByRelationshipType = "PR_BY_PROJECT_BY_RELATIONSHIP_TYPE"
|
|
7256
7301
|
}
|
|
7257
7302
|
export declare type EventSource = Node & {
|
|
7258
7303
|
__typename?: 'EventSource';
|
|
@@ -8090,6 +8135,7 @@ export declare type Icon = {
|
|
|
8090
8135
|
export declare type InCompleteCardsDestination = {
|
|
8091
8136
|
__typename?: 'InCompleteCardsDestination';
|
|
8092
8137
|
sprintId?: Maybe<Scalars['ID']>;
|
|
8138
|
+
sprintName?: Maybe<Scalars['String']>;
|
|
8093
8139
|
destination?: Maybe<SoftwareCardsDestinationEnum>;
|
|
8094
8140
|
};
|
|
8095
8141
|
export declare type InlineCardCreateConfig = {
|
|
@@ -10805,6 +10851,10 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
|
10805
10851
|
before?: Maybe<Scalars['String']>;
|
|
10806
10852
|
after?: Maybe<Scalars['String']>;
|
|
10807
10853
|
};
|
|
10854
|
+
export declare type JiraIssueSearchStatus = {
|
|
10855
|
+
__typename?: 'JiraIssueSearchStatus';
|
|
10856
|
+
functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
|
|
10857
|
+
};
|
|
10808
10858
|
export declare type JiraIssueSearchView = Node & {
|
|
10809
10859
|
__typename?: 'JiraIssueSearchView';
|
|
10810
10860
|
id: Scalars['ID'];
|
|
@@ -10926,6 +10976,7 @@ export declare type JiraJqlBuilderFieldsArgs = {
|
|
|
10926
10976
|
forClause?: Maybe<JiraJqlClauseType>;
|
|
10927
10977
|
first?: Maybe<Scalars['Int']>;
|
|
10928
10978
|
after?: Maybe<Scalars['String']>;
|
|
10979
|
+
viewContext?: Maybe<JiraJqlViewContext>;
|
|
10929
10980
|
};
|
|
10930
10981
|
export declare type JiraJqlBuilderRecentFieldsArgs = {
|
|
10931
10982
|
jqlContext?: Maybe<Scalars['String']>;
|
|
@@ -11055,6 +11106,17 @@ export declare type JiraJqlFunction = {
|
|
|
11055
11106
|
isList?: Maybe<Scalars['Boolean']>;
|
|
11056
11107
|
dataTypes: Array<Scalars['String']>;
|
|
11057
11108
|
};
|
|
11109
|
+
export declare type JiraJqlFunctionProcessingStatus = {
|
|
11110
|
+
__typename?: 'JiraJqlFunctionProcessingStatus';
|
|
11111
|
+
status?: Maybe<JiraJqlFunctionStatus>;
|
|
11112
|
+
function?: Maybe<Scalars['String']>;
|
|
11113
|
+
app?: Maybe<Scalars['String']>;
|
|
11114
|
+
};
|
|
11115
|
+
export declare enum JiraJqlFunctionStatus {
|
|
11116
|
+
Processing = "PROCESSING",
|
|
11117
|
+
Finished = "FINISHED",
|
|
11118
|
+
Unknown = "UNKNOWN"
|
|
11119
|
+
}
|
|
11058
11120
|
export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
11059
11121
|
__typename?: 'JiraJqlGroupFieldValue';
|
|
11060
11122
|
jqlTerm: Scalars['String'];
|
|
@@ -11328,6 +11390,9 @@ export declare type JiraJqlVersionsArchivedArgs = {
|
|
|
11328
11390
|
last?: Maybe<Scalars['Int']>;
|
|
11329
11391
|
before?: Maybe<Scalars['String']>;
|
|
11330
11392
|
};
|
|
11393
|
+
export declare enum JiraJqlViewContext {
|
|
11394
|
+
Jwm = "JWM"
|
|
11395
|
+
}
|
|
11331
11396
|
export declare type JiraLabel = {
|
|
11332
11397
|
__typename?: 'JiraLabel';
|
|
11333
11398
|
labelId?: Maybe<Scalars['String']>;
|
|
@@ -12719,6 +12784,7 @@ export declare type JiraQuery = {
|
|
|
12719
12784
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
12720
12785
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
12721
12786
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
12787
|
+
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
12722
12788
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
12723
12789
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
12724
12790
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
@@ -12971,6 +13037,10 @@ export declare type JiraQueryIssueSearchTotalCountArgs = {
|
|
|
12971
13037
|
cloudId: Scalars['ID'];
|
|
12972
13038
|
issueSearchInput: JiraIssueSearchInput;
|
|
12973
13039
|
};
|
|
13040
|
+
export declare type JiraQueryIssueSearchStatusArgs = {
|
|
13041
|
+
cloudId: Scalars['ID'];
|
|
13042
|
+
jql: Scalars['String'];
|
|
13043
|
+
};
|
|
12974
13044
|
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
12975
13045
|
id: Scalars['ID'];
|
|
12976
13046
|
};
|
|
@@ -16172,6 +16242,7 @@ export declare type Mutation = {
|
|
|
16172
16242
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
16173
16243
|
updateReleaseNote: ContentPlatformReleaseNote;
|
|
16174
16244
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
16245
|
+
appRecommendations?: Maybe<AppRecMutation>;
|
|
16175
16246
|
devOps?: Maybe<DevOpsMutation>;
|
|
16176
16247
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
16177
16248
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -19530,7 +19601,7 @@ export declare enum PrincipalType {
|
|
|
19530
19601
|
export declare type ProductListing = {
|
|
19531
19602
|
__typename?: 'ProductListing';
|
|
19532
19603
|
name: Scalars['String'];
|
|
19533
|
-
|
|
19604
|
+
productId: Scalars['ID'];
|
|
19534
19605
|
shortDescription: Scalars['String'];
|
|
19535
19606
|
links: ProductListingLinks;
|
|
19536
19607
|
logoUrl?: Maybe<Scalars['String']>;
|
|
@@ -19548,6 +19619,7 @@ export declare type ProductListingLinks = {
|
|
|
19548
19619
|
__typename?: 'ProductListingLinks';
|
|
19549
19620
|
tryUrl?: Maybe<Scalars['String']>;
|
|
19550
19621
|
};
|
|
19622
|
+
export declare type ProductListingResult = ProductListing | QueryError;
|
|
19551
19623
|
export declare type ProjectAvatars = {
|
|
19552
19624
|
__typename?: 'ProjectAvatars';
|
|
19553
19625
|
x16: Scalars['URL'];
|
|
@@ -19568,6 +19640,7 @@ export declare type Query = {
|
|
|
19568
19640
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
19569
19641
|
smarts?: Maybe<SmartsQueryApi>;
|
|
19570
19642
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
19643
|
+
appRecommendations?: Maybe<AppRecQuery>;
|
|
19571
19644
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
19572
19645
|
devOps?: Maybe<DevOps>;
|
|
19573
19646
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -19631,8 +19704,8 @@ export declare type Query = {
|
|
|
19631
19704
|
myMarketplaceApps?: Maybe<MarketplaceAppConnection>;
|
|
19632
19705
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
19633
19706
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
19634
|
-
productListing?: Maybe<
|
|
19635
|
-
productListings: Array<
|
|
19707
|
+
productListing?: Maybe<ProductListingResult>;
|
|
19708
|
+
productListings: Array<ProductListingResult>;
|
|
19636
19709
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
19637
19710
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
19638
19711
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
@@ -20254,6 +20327,41 @@ export declare type RoadmapBoardConfiguration = {
|
|
|
20254
20327
|
isChildIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
20255
20328
|
derivedFields?: Maybe<Array<RoadmapField>>;
|
|
20256
20329
|
};
|
|
20330
|
+
export declare type RoadmapChildItem = {
|
|
20331
|
+
__typename?: 'RoadmapChildItem';
|
|
20332
|
+
id: Scalars['ID'];
|
|
20333
|
+
projectId: Scalars['ID'];
|
|
20334
|
+
key: Scalars['String'];
|
|
20335
|
+
itemTypeId: Scalars['ID'];
|
|
20336
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
20337
|
+
summary?: Maybe<Scalars['String']>;
|
|
20338
|
+
assignee?: Maybe<User>;
|
|
20339
|
+
dueDateRFC3339?: Maybe<Scalars['Date']>;
|
|
20340
|
+
startDateRFC3339?: Maybe<Scalars['Date']>;
|
|
20341
|
+
status?: Maybe<RoadmapItemStatus>;
|
|
20342
|
+
dependencies?: Maybe<Array<Scalars['ID']>>;
|
|
20343
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
20344
|
+
rank?: Maybe<Scalars['String']>;
|
|
20345
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
20346
|
+
versionIds?: Maybe<Array<Scalars['ID']>>;
|
|
20347
|
+
sprintIds?: Maybe<Array<Scalars['ID']>>;
|
|
20348
|
+
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
20349
|
+
inferredDueDate?: Maybe<Scalars['Date']>;
|
|
20350
|
+
inferredStartDate?: Maybe<Scalars['Date']>;
|
|
20351
|
+
resolved?: Maybe<Scalars['Boolean']>;
|
|
20352
|
+
};
|
|
20353
|
+
export declare type RoadmapChildItemConnection = {
|
|
20354
|
+
__typename?: 'RoadmapChildItemConnection';
|
|
20355
|
+
edges: Array<Maybe<RoadmapChildItemEdge>>;
|
|
20356
|
+
nodes: Array<Maybe<RoadmapChildItem>>;
|
|
20357
|
+
pageInfo: PageInfo;
|
|
20358
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
20359
|
+
};
|
|
20360
|
+
export declare type RoadmapChildItemEdge = {
|
|
20361
|
+
__typename?: 'RoadmapChildItemEdge';
|
|
20362
|
+
cursor: Scalars['String'];
|
|
20363
|
+
node?: Maybe<RoadmapChildItem>;
|
|
20364
|
+
};
|
|
20257
20365
|
export declare type RoadmapComponent = {
|
|
20258
20366
|
__typename?: 'RoadmapComponent';
|
|
20259
20367
|
id: Scalars['ID'];
|
|
@@ -20278,6 +20386,7 @@ export declare type RoadmapContent = {
|
|
|
20278
20386
|
configuration: RoadmapConfiguration;
|
|
20279
20387
|
items: RoadmapItemConnection;
|
|
20280
20388
|
levelOneItems: RoadmapLevelOneItemConnection;
|
|
20389
|
+
childItems: RoadmapChildItemConnection;
|
|
20281
20390
|
};
|
|
20282
20391
|
export declare type RoadmapContentLevelOneItemsArgs = {
|
|
20283
20392
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -20285,6 +20394,13 @@ export declare type RoadmapContentLevelOneItemsArgs = {
|
|
|
20285
20394
|
last?: Maybe<Scalars['Int']>;
|
|
20286
20395
|
before?: Maybe<Scalars['String']>;
|
|
20287
20396
|
};
|
|
20397
|
+
export declare type RoadmapContentChildItemsArgs = {
|
|
20398
|
+
first?: Maybe<Scalars['Int']>;
|
|
20399
|
+
after?: Maybe<Scalars['String']>;
|
|
20400
|
+
last?: Maybe<Scalars['Int']>;
|
|
20401
|
+
before?: Maybe<Scalars['String']>;
|
|
20402
|
+
parentIds: Array<Scalars['ID']>;
|
|
20403
|
+
};
|
|
20288
20404
|
export declare type RoadmapCreateLevelOneIssueType = {
|
|
20289
20405
|
epicTypeName: Scalars['String'];
|
|
20290
20406
|
epicTypeDescription: Scalars['String'];
|
|
@@ -21817,6 +21933,7 @@ export declare type ShepherdQuery = {
|
|
|
21817
21933
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
21818
21934
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
21819
21935
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
21936
|
+
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
21820
21937
|
};
|
|
21821
21938
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
21822
21939
|
actions?: Maybe<Array<Maybe<ShepherdActionType>>>;
|
|
@@ -22386,9 +22503,13 @@ export declare type Storage = {
|
|
|
22386
22503
|
};
|
|
22387
22504
|
export declare type Subscription = {
|
|
22388
22505
|
__typename?: 'Subscription';
|
|
22506
|
+
onPullRequestCreatedOrUpdatedForProject?: Maybe<AriGraphRelationshipConnection>;
|
|
22389
22507
|
onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
|
|
22390
22508
|
onTestingActivityItemUpdate?: Maybe<Node>;
|
|
22391
22509
|
};
|
|
22510
|
+
export declare type SubscriptionOnPullRequestCreatedOrUpdatedForProjectArgs = {
|
|
22511
|
+
projectId: Scalars['ID'];
|
|
22512
|
+
};
|
|
22392
22513
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
22393
22514
|
cloudId: Scalars['ID'];
|
|
22394
22515
|
accountId: Scalars['ID'];
|
|
@@ -23185,53 +23306,6 @@ export declare enum TownsquareGoalStateValue {
|
|
|
23185
23306
|
Paused = "paused",
|
|
23186
23307
|
Pending = "pending"
|
|
23187
23308
|
}
|
|
23188
|
-
export declare type TownsquareHelpPointer = Node & {
|
|
23189
|
-
__typename?: 'TownsquareHelpPointer';
|
|
23190
|
-
cloudId?: Maybe<Scalars['String']>;
|
|
23191
|
-
creationDate?: Maybe<Scalars['DateTime']>;
|
|
23192
|
-
creatorAaid?: Maybe<Scalars['String']>;
|
|
23193
|
-
description?: Maybe<Scalars['String']>;
|
|
23194
|
-
id: Scalars['ID'];
|
|
23195
|
-
link?: Maybe<Scalars['String']>;
|
|
23196
|
-
name?: Maybe<Scalars['String']>;
|
|
23197
|
-
owner?: Maybe<TownsquareHelpPointerOwner>;
|
|
23198
|
-
tags?: Maybe<TownsquareTagConnection>;
|
|
23199
|
-
teamId?: Maybe<Scalars['String']>;
|
|
23200
|
-
type?: Maybe<TownsquareHelpPointerType>;
|
|
23201
|
-
iconData?: Maybe<Scalars['String']>;
|
|
23202
|
-
};
|
|
23203
|
-
export declare type TownsquareHelpPointerTagsArgs = {
|
|
23204
|
-
after?: Maybe<Scalars['String']>;
|
|
23205
|
-
first?: Maybe<Scalars['Int']>;
|
|
23206
|
-
};
|
|
23207
|
-
export declare type TownsquareHelpPointerConnection = {
|
|
23208
|
-
__typename?: 'TownsquareHelpPointerConnection';
|
|
23209
|
-
count: Scalars['Int'];
|
|
23210
|
-
edges?: Maybe<Array<Maybe<TownsquareHelpPointerEdge>>>;
|
|
23211
|
-
pageInfo: PageInfo;
|
|
23212
|
-
};
|
|
23213
|
-
export declare type TownsquareHelpPointerEdge = {
|
|
23214
|
-
__typename?: 'TownsquareHelpPointerEdge';
|
|
23215
|
-
cursor: Scalars['String'];
|
|
23216
|
-
node?: Maybe<TownsquareHelpPointer>;
|
|
23217
|
-
};
|
|
23218
|
-
export declare type TownsquareHelpPointerOwner = {
|
|
23219
|
-
__typename?: 'TownsquareHelpPointerOwner';
|
|
23220
|
-
displayName?: Maybe<Scalars['String']>;
|
|
23221
|
-
id?: Maybe<Scalars['String']>;
|
|
23222
|
-
largeAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
23223
|
-
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
23224
|
-
};
|
|
23225
|
-
export declare type TownsquareHelpPointerSearchResponse = {
|
|
23226
|
-
__typename?: 'TownsquareHelpPointerSearchResponse';
|
|
23227
|
-
results?: Maybe<TownsquareHelpPointerConnection>;
|
|
23228
|
-
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
23229
|
-
teams?: Maybe<Array<Maybe<TownsquareTeam>>>;
|
|
23230
|
-
};
|
|
23231
|
-
export declare enum TownsquareHelpPointerType {
|
|
23232
|
-
Action = "ACTION",
|
|
23233
|
-
Information = "INFORMATION"
|
|
23234
|
-
}
|
|
23235
23309
|
export declare type TownsquareProject = Node & {
|
|
23236
23310
|
__typename?: 'TownsquareProject';
|
|
23237
23311
|
archived: Scalars['Boolean'];
|
|
@@ -23296,9 +23370,6 @@ export declare type TownsquareQueryApi = {
|
|
|
23296
23370
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
23297
23371
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
23298
23372
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
23299
|
-
helpPointerSearch?: Maybe<TownsquareHelpPointerSearchResponse>;
|
|
23300
|
-
helpPointersByCloudIds?: Maybe<TownsquareHelpPointerConnection>;
|
|
23301
|
-
helpPointersByTeam?: Maybe<TownsquareHelpPointerConnection>;
|
|
23302
23373
|
};
|
|
23303
23374
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
23304
23375
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -23330,22 +23401,6 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
23330
23401
|
q?: Maybe<Scalars['String']>;
|
|
23331
23402
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
23332
23403
|
};
|
|
23333
|
-
export declare type TownsquareQueryApiHelpPointerSearchArgs = {
|
|
23334
|
-
after?: Maybe<Scalars['String']>;
|
|
23335
|
-
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
23336
|
-
first?: Maybe<Scalars['Int']>;
|
|
23337
|
-
q?: Maybe<Scalars['String']>;
|
|
23338
|
-
};
|
|
23339
|
-
export declare type TownsquareQueryApiHelpPointersByCloudIdsArgs = {
|
|
23340
|
-
after?: Maybe<Scalars['String']>;
|
|
23341
|
-
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
23342
|
-
first?: Maybe<Scalars['Int']>;
|
|
23343
|
-
};
|
|
23344
|
-
export declare type TownsquareQueryApiHelpPointersByTeamArgs = {
|
|
23345
|
-
after?: Maybe<Scalars['String']>;
|
|
23346
|
-
first?: Maybe<Scalars['Int']>;
|
|
23347
|
-
teamId: Scalars['String'];
|
|
23348
|
-
};
|
|
23349
23404
|
export declare type TownsquareTag = Node & {
|
|
23350
23405
|
__typename?: 'TownsquareTag';
|
|
23351
23406
|
description?: Maybe<Scalars['String']>;
|