@forge/cli-shared 5.6.0-next.5 → 5.6.0-next.7
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 +14 -0
- package/out/graphql/graphql-types.d.ts +115 -17
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +19 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.6.0-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [c4391fa]
|
|
8
|
+
- @forge/manifest@7.9.0-next.6
|
|
9
|
+
|
|
10
|
+
## 5.6.0-next.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [3fe0097]
|
|
15
|
+
- @forge/manifest@7.9.0-next.5
|
|
16
|
+
|
|
3
17
|
## 5.6.0-next.5
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -38768,7 +38768,6 @@ export declare type InvokeExtensionInput = {
|
|
|
38768
38768
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
38769
38769
|
extensionId?: InputMaybe<Scalars['ID']['input']>;
|
|
38770
38770
|
payload: Scalars['JSON']['input'];
|
|
38771
|
-
schema?: InputMaybe<Scalars['String']['input']>;
|
|
38772
38771
|
};
|
|
38773
38772
|
export declare type InvokeExtensionPayloadErrorExtension = MutationErrorExtension & {
|
|
38774
38773
|
__typename?: 'InvokeExtensionPayloadErrorExtension';
|
|
@@ -40364,6 +40363,8 @@ export declare type JiraCalendarCrossProjectVersionsArgs = {
|
|
|
40364
40363
|
};
|
|
40365
40364
|
export declare type JiraCalendarIssueArgs = {
|
|
40366
40365
|
id: Scalars['ID']['input'];
|
|
40366
|
+
issuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
40367
|
+
unscheduledIssuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
40367
40368
|
};
|
|
40368
40369
|
export declare type JiraCalendarIssuesArgs = {
|
|
40369
40370
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43454,6 +43455,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43454
43455
|
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
43455
43456
|
summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
|
|
43456
43457
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
43458
|
+
timeTrackingField?: Maybe<JiraTimeTrackingField>;
|
|
43457
43459
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
43458
43460
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
43459
43461
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
@@ -44538,6 +44540,10 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
44538
44540
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44539
44541
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44540
44542
|
};
|
|
44543
|
+
export declare type JiraIssueSearchViewConfigInput = {
|
|
44544
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
44545
|
+
viewInput?: InputMaybe<JiraIssueSearchViewInput>;
|
|
44546
|
+
};
|
|
44541
44547
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
44542
44548
|
projectContext?: InputMaybe<JiraIssueSearchViewFieldSetsProjectContext>;
|
|
44543
44549
|
};
|
|
@@ -44545,6 +44551,10 @@ export declare type JiraIssueSearchViewFieldSetsProjectContext = {
|
|
|
44545
44551
|
issueType?: InputMaybe<Scalars['ID']['input']>;
|
|
44546
44552
|
project?: InputMaybe<Scalars['ID']['input']>;
|
|
44547
44553
|
};
|
|
44554
|
+
export declare type JiraIssueSearchViewInput = {
|
|
44555
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
44556
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
44557
|
+
};
|
|
44548
44558
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
44549
44559
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
44550
44560
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -44740,6 +44750,8 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
44740
44750
|
export declare type JiraIssueWithScenario = {
|
|
44741
44751
|
__typename?: 'JiraIssueWithScenario';
|
|
44742
44752
|
errors?: Maybe<Array<QueryError>>;
|
|
44753
|
+
isInScope?: Maybe<Scalars['Boolean']['output']>;
|
|
44754
|
+
isUnscheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
44743
44755
|
scenarioIssueLike?: Maybe<JiraScenarioIssueLike>;
|
|
44744
44756
|
};
|
|
44745
44757
|
export declare enum JiraIteration {
|
|
@@ -46003,6 +46015,7 @@ export declare type JiraMutation = {
|
|
|
46003
46015
|
updateMultipleSelectUserPickerField?: Maybe<JiraMultipleSelectUserPickerFieldPayload>;
|
|
46004
46016
|
updateMultipleVersionPickerField?: Maybe<JiraMultipleVersionPickerFieldPayload>;
|
|
46005
46017
|
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
46018
|
+
updateOriginalTimeEstimateField?: Maybe<JiraOriginalTimeEstimateFieldPayload>;
|
|
46006
46019
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
46007
46020
|
updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
|
|
46008
46021
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
@@ -46448,6 +46461,9 @@ export declare type JiraMutationUpdateMultipleVersionPickerFieldArgs = {
|
|
|
46448
46461
|
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
46449
46462
|
input: JiraUpdateNumberFieldInput;
|
|
46450
46463
|
};
|
|
46464
|
+
export declare type JiraMutationUpdateOriginalTimeEstimateFieldArgs = {
|
|
46465
|
+
input: JiraOriginalTimeEstimateFieldInput;
|
|
46466
|
+
};
|
|
46451
46467
|
export declare type JiraMutationUpdateParentFieldArgs = {
|
|
46452
46468
|
input: JiraUpdateParentFieldInput;
|
|
46453
46469
|
};
|
|
@@ -46964,6 +46980,7 @@ export declare type JiraOpsgenieTeam = Node & {
|
|
|
46964
46980
|
};
|
|
46965
46981
|
export declare type JiraOption = JiraSelectableValue & Node & {
|
|
46966
46982
|
__typename?: 'JiraOption';
|
|
46983
|
+
color?: Maybe<JiraColor>;
|
|
46967
46984
|
id: Scalars['ID']['output'];
|
|
46968
46985
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
46969
46986
|
optionId: Scalars['String']['output'];
|
|
@@ -47040,6 +47057,16 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
47040
47057
|
type: Scalars['String']['output'];
|
|
47041
47058
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
47042
47059
|
};
|
|
47060
|
+
export declare type JiraOriginalTimeEstimateFieldInput = {
|
|
47061
|
+
id: Scalars['ID']['input'];
|
|
47062
|
+
originalEstimate: JiraEstimateInput;
|
|
47063
|
+
};
|
|
47064
|
+
export declare type JiraOriginalTimeEstimateFieldPayload = Payload & {
|
|
47065
|
+
__typename?: 'JiraOriginalTimeEstimateFieldPayload';
|
|
47066
|
+
errors?: Maybe<Array<MutationError>>;
|
|
47067
|
+
field?: Maybe<JiraOriginalTimeEstimateField>;
|
|
47068
|
+
success: Scalars['Boolean']['output'];
|
|
47069
|
+
};
|
|
47043
47070
|
export declare type JiraOutgoingEmailSettings = {
|
|
47044
47071
|
__typename?: 'JiraOutgoingEmailSettings';
|
|
47045
47072
|
emailDisabledDueToSpamProtectionRateLimit: Scalars['Boolean']['output'];
|
|
@@ -48806,6 +48833,7 @@ export declare type JiraQueryIssueSearchArgs = {
|
|
|
48806
48833
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48807
48834
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
48808
48835
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48836
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
48809
48837
|
};
|
|
48810
48838
|
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
48811
48839
|
id: Scalars['ID']['input'];
|
|
@@ -51851,8 +51879,10 @@ export declare type JiraSubscriptionOnAutodevJobUpdatedArgs = {
|
|
|
51851
51879
|
export declare type JiraSubscriptionOnCalendarIssueCreatedArgs = {
|
|
51852
51880
|
cloudId: Scalars['ID']['input'];
|
|
51853
51881
|
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
51882
|
+
issuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
51854
51883
|
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
51855
51884
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
51885
|
+
unscheduledIssuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
51856
51886
|
};
|
|
51857
51887
|
export declare type JiraSubscriptionOnCalendarIssueDeletedArgs = {
|
|
51858
51888
|
cloudId: Scalars['ID']['input'];
|
|
@@ -51861,8 +51891,10 @@ export declare type JiraSubscriptionOnCalendarIssueDeletedArgs = {
|
|
|
51861
51891
|
export declare type JiraSubscriptionOnCalendarIssueUpdatedArgs = {
|
|
51862
51892
|
cloudId: Scalars['ID']['input'];
|
|
51863
51893
|
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
51894
|
+
issuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
51864
51895
|
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
51865
51896
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
51897
|
+
unscheduledIssuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
51866
51898
|
};
|
|
51867
51899
|
export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
|
|
51868
51900
|
cloudId: Scalars['ID']['input'];
|
|
@@ -54142,7 +54174,6 @@ export declare enum JsmChatCreateWebConversationMessageContentType {
|
|
|
54142
54174
|
Adf = "ADF"
|
|
54143
54175
|
}
|
|
54144
54176
|
export declare type JsmChatCreateWebConversationMessageInput = {
|
|
54145
|
-
authorId: Scalars['String']['input'];
|
|
54146
54177
|
message: Scalars['String']['input'];
|
|
54147
54178
|
};
|
|
54148
54179
|
export declare type JsmChatCreateWebConversationMessagePayload = Payload & {
|
|
@@ -55540,6 +55571,13 @@ export declare type LpPageInfo = {
|
|
|
55540
55571
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
55541
55572
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
55542
55573
|
};
|
|
55574
|
+
export declare type LpQueryError = Node & {
|
|
55575
|
+
__typename?: 'LpQueryError';
|
|
55576
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
55577
|
+
id: Scalars['ID']['output'];
|
|
55578
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
55579
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
55580
|
+
};
|
|
55543
55581
|
export declare enum LpSortOrder {
|
|
55544
55582
|
Asc = "ASC",
|
|
55545
55583
|
Desc = "DESC"
|
|
@@ -55745,6 +55783,18 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
55745
55783
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
55746
55784
|
scopes: Array<ConnectAppScope>;
|
|
55747
55785
|
};
|
|
55786
|
+
export declare enum MarketplaceConsoleAsvlLegacyVersionApprovalStatus {
|
|
55787
|
+
Approved = "APPROVED",
|
|
55788
|
+
Archived = "ARCHIVED",
|
|
55789
|
+
Deleted = "DELETED",
|
|
55790
|
+
Rejected = "REJECTED",
|
|
55791
|
+
Submitted = "SUBMITTED",
|
|
55792
|
+
Uninitiated = "UNINITIATED"
|
|
55793
|
+
}
|
|
55794
|
+
export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
|
|
55795
|
+
Private = "PRIVATE",
|
|
55796
|
+
Public = "PUBLIC"
|
|
55797
|
+
}
|
|
55748
55798
|
export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
55749
55799
|
__typename?: 'MarketplaceConsoleAppPrivateListingsPageInfo';
|
|
55750
55800
|
endCursor: Scalars['String']['output'];
|
|
@@ -55825,9 +55875,9 @@ export declare enum MarketplaceConsoleAppSoftwareVersionLicenseTypeId {
|
|
|
55825
55875
|
}
|
|
55826
55876
|
export declare type MarketplaceConsoleAppSoftwareVersionListing = {
|
|
55827
55877
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionListing';
|
|
55828
|
-
appSoftwareId: Scalars['
|
|
55878
|
+
appSoftwareId: Scalars['String']['output'];
|
|
55829
55879
|
approvalStatus: Scalars['String']['output'];
|
|
55830
|
-
buildNumber: Scalars['
|
|
55880
|
+
buildNumber: Scalars['Int']['output'];
|
|
55831
55881
|
createdAt: Scalars['String']['output'];
|
|
55832
55882
|
createdBy: Scalars['String']['output'];
|
|
55833
55883
|
deploymentInstructions?: Maybe<Array<Maybe<MarketplaceConsoleDeploymentInstruction>>>;
|
|
@@ -55839,7 +55889,7 @@ export declare type MarketplaceConsoleAppSoftwareVersionListing = {
|
|
|
55839
55889
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
55840
55890
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
55841
55891
|
vendorLinks?: Maybe<MarketplaceConsoleAppSoftwareVersionListingLinks>;
|
|
55842
|
-
version?: Maybe<Scalars['
|
|
55892
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
55843
55893
|
youtubeId?: Maybe<Scalars['String']['output']>;
|
|
55844
55894
|
};
|
|
55845
55895
|
export declare type MarketplaceConsoleAppSoftwareVersionListingLinks = {
|
|
@@ -55858,10 +55908,16 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
55858
55908
|
Rejected = "REJECTED",
|
|
55859
55909
|
Submitted = "SUBMITTED"
|
|
55860
55910
|
}
|
|
55861
|
-
export declare type
|
|
55862
|
-
__typename?: '
|
|
55863
|
-
appSoftwareId: Scalars['
|
|
55864
|
-
|
|
55911
|
+
export declare type MarketplaceConsoleAppSoftwareVersionsListItem = {
|
|
55912
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersionsListItem';
|
|
55913
|
+
appSoftwareId: Scalars['String']['output'];
|
|
55914
|
+
buildNumber: Scalars['Int']['output'];
|
|
55915
|
+
legacyAppVersionApprovalStatus?: Maybe<MarketplaceConsoleAsvlLegacyVersionApprovalStatus>;
|
|
55916
|
+
legacyAppVersionStatus?: Maybe<MarketplaceConsoleAsvlLegacyVersionStatus>;
|
|
55917
|
+
releaseDate?: Maybe<Scalars['String']['output']>;
|
|
55918
|
+
releaseSummary?: Maybe<Scalars['String']['output']>;
|
|
55919
|
+
releasedByUserName?: Maybe<Scalars['String']['output']>;
|
|
55920
|
+
versionNumber?: Maybe<Scalars['String']['output']>;
|
|
55865
55921
|
};
|
|
55866
55922
|
export declare type MarketplaceConsoleAppSoftwares = {
|
|
55867
55923
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
@@ -55878,6 +55934,12 @@ export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
|
55878
55934
|
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
55879
55935
|
buildNumber: Scalars['ID']['input'];
|
|
55880
55936
|
};
|
|
55937
|
+
export declare type MarketplaceConsoleAppVersionsList = {
|
|
55938
|
+
__typename?: 'MarketplaceConsoleAppVersionsList';
|
|
55939
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
55940
|
+
nextCursor?: Maybe<Scalars['Int']['output']>;
|
|
55941
|
+
versions: Array<MarketplaceConsoleAppSoftwareVersionsListItem>;
|
|
55942
|
+
};
|
|
55881
55943
|
export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
55882
55944
|
__typename?: 'MarketplaceConsoleArtifactFileInfo';
|
|
55883
55945
|
checksum: Scalars['String']['output'];
|
|
@@ -56083,6 +56145,12 @@ export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
|
56083
56145
|
__typename?: 'MarketplaceConsoleGenericError';
|
|
56084
56146
|
message: Scalars['String']['output'];
|
|
56085
56147
|
};
|
|
56148
|
+
export declare type MarketplaceConsoleGetVersionsListInput = {
|
|
56149
|
+
appSoftwareIds: Array<Scalars['ID']['input']>;
|
|
56150
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
56151
|
+
legacyAppVersionApprovalStatus?: InputMaybe<Array<MarketplaceConsoleAsvlLegacyVersionApprovalStatus>>;
|
|
56152
|
+
legacyAppVersionStatus?: InputMaybe<Array<MarketplaceConsoleAsvlLegacyVersionStatus>>;
|
|
56153
|
+
};
|
|
56086
56154
|
export declare enum MarketplaceConsoleHosting {
|
|
56087
56155
|
Cloud = "CLOUD",
|
|
56088
56156
|
DataCenter = "DATA_CENTER",
|
|
@@ -56437,7 +56505,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
56437
56505
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
56438
56506
|
appSoftwareVersionByAppId?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
56439
56507
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
56440
|
-
|
|
56508
|
+
appSoftwareVersionsList: MarketplaceConsoleAppVersionsList;
|
|
56441
56509
|
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
56442
56510
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
56443
56511
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
@@ -56466,8 +56534,8 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
56466
56534
|
appId: Scalars['ID']['input'];
|
|
56467
56535
|
buildNumber: Scalars['ID']['input'];
|
|
56468
56536
|
};
|
|
56469
|
-
export declare type
|
|
56470
|
-
|
|
56537
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionsListArgs = {
|
|
56538
|
+
versionsListInput: MarketplaceConsoleGetVersionsListInput;
|
|
56471
56539
|
};
|
|
56472
56540
|
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
56473
56541
|
appId: Scalars['ID']['input'];
|
|
@@ -65548,6 +65616,7 @@ export declare type SearchItemConnection = {
|
|
|
65548
65616
|
edges: Array<SearchResultItemEdge>;
|
|
65549
65617
|
interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
|
|
65550
65618
|
pageInfo: PageInfo;
|
|
65619
|
+
queryInfo?: Maybe<SearchQueryInfo>;
|
|
65551
65620
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
65552
65621
|
totalCounts: Array<SearchProductCount>;
|
|
65553
65622
|
};
|
|
@@ -65599,6 +65668,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
65599
65668
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65600
65669
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
65601
65670
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
65671
|
+
disableQueryReplacement?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65602
65672
|
disableWildcardMatching?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65603
65673
|
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65604
65674
|
enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -65610,6 +65680,15 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
65610
65680
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
65611
65681
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
65612
65682
|
};
|
|
65683
|
+
export declare type SearchQueryInfo = {
|
|
65684
|
+
__typename?: 'SearchQueryInfo';
|
|
65685
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
65686
|
+
originalQuery?: Maybe<Scalars['String']['output']>;
|
|
65687
|
+
originalQueryType?: Maybe<Scalars['String']['output']>;
|
|
65688
|
+
replacementQuery?: Maybe<Scalars['String']['output']>;
|
|
65689
|
+
shouldTriggerAutocorrectionExperience?: Maybe<Scalars['Boolean']['output']>;
|
|
65690
|
+
suggestedQuery?: Maybe<Scalars['String']['output']>;
|
|
65691
|
+
};
|
|
65613
65692
|
export declare type SearchRecentFilterInput = {
|
|
65614
65693
|
entities: Array<Scalars['String']['input']>;
|
|
65615
65694
|
locations: Array<Scalars['String']['input']>;
|
|
@@ -67313,11 +67392,7 @@ export declare type ShepherdUpdateAlertsPayload = Payload & {
|
|
|
67313
67392
|
success: Scalars['Boolean']['output'];
|
|
67314
67393
|
};
|
|
67315
67394
|
export declare type ShepherdUpdateSlackInput = {
|
|
67316
|
-
|
|
67317
|
-
callbackURL?: InputMaybe<Scalars['URL']['input']>;
|
|
67318
|
-
channelId?: InputMaybe<Scalars['String']['input']>;
|
|
67319
|
-
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
67320
|
-
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
67395
|
+
status: ShepherdSubscriptionStatus;
|
|
67321
67396
|
};
|
|
67322
67397
|
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
67323
67398
|
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
@@ -69560,6 +69635,10 @@ export declare type TrelloBoardChecklistsLimits = {
|
|
|
69560
69635
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
69561
69636
|
perCard?: Maybe<TrelloLimitProps>;
|
|
69562
69637
|
};
|
|
69638
|
+
export declare type TrelloBoardConnectionUpdated = {
|
|
69639
|
+
__typename?: 'TrelloBoardConnectionUpdated';
|
|
69640
|
+
edges?: Maybe<Array<TrelloBoardUpdatedEdge>>;
|
|
69641
|
+
};
|
|
69563
69642
|
export declare type TrelloBoardCustomFieldOptionsLimits = {
|
|
69564
69643
|
__typename?: 'TrelloBoardCustomFieldOptionsLimits';
|
|
69565
69644
|
perField?: Maybe<TrelloLimitProps>;
|
|
@@ -69695,6 +69774,10 @@ export declare type TrelloBoardUpdated = {
|
|
|
69695
69774
|
url?: Maybe<Scalars['URL']['output']>;
|
|
69696
69775
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
69697
69776
|
};
|
|
69777
|
+
export declare type TrelloBoardUpdatedEdge = {
|
|
69778
|
+
__typename?: 'TrelloBoardUpdatedEdge';
|
|
69779
|
+
node: TrelloBoardUpdated;
|
|
69780
|
+
};
|
|
69698
69781
|
export declare type TrelloBoardViewer = {
|
|
69699
69782
|
__typename?: 'TrelloBoardViewer';
|
|
69700
69783
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -69741,6 +69824,7 @@ export declare type TrelloCard = Node & {
|
|
|
69741
69824
|
location?: Maybe<TrelloCardLocation>;
|
|
69742
69825
|
members?: Maybe<TrelloMemberConnection>;
|
|
69743
69826
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
69827
|
+
mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
|
|
69744
69828
|
name?: Maybe<Scalars['String']['output']>;
|
|
69745
69829
|
objectId: Scalars['ID']['output'];
|
|
69746
69830
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -70250,6 +70334,12 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
70250
70334
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
70251
70335
|
initials?: Maybe<Scalars['String']['output']>;
|
|
70252
70336
|
};
|
|
70337
|
+
export declare type TrelloMemberUpdated = {
|
|
70338
|
+
__typename?: 'TrelloMemberUpdated';
|
|
70339
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
70340
|
+
boards?: Maybe<TrelloBoardConnectionUpdated>;
|
|
70341
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
70342
|
+
};
|
|
70253
70343
|
export declare type TrelloMemberWorkspaceConnection = {
|
|
70254
70344
|
__typename?: 'TrelloMemberWorkspaceConnection';
|
|
70255
70345
|
edges?: Maybe<Array<TrelloMemberWorkspaceEdge>>;
|
|
@@ -70348,6 +70438,8 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
|
|
|
70348
70438
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70349
70439
|
id: Scalars['ID']['output'];
|
|
70350
70440
|
objectId: Scalars['ID']['output'];
|
|
70441
|
+
providerCalendarId: Scalars['ID']['output'];
|
|
70442
|
+
readOnly: Scalars['Boolean']['output'];
|
|
70351
70443
|
timezone: Scalars['String']['output'];
|
|
70352
70444
|
title: Scalars['String']['output'];
|
|
70353
70445
|
type: TrelloSupportedPlannerProviders;
|
|
@@ -70448,6 +70540,7 @@ export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalenda
|
|
|
70448
70540
|
color: Scalars['String']['output'];
|
|
70449
70541
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70450
70542
|
id: Scalars['ID']['output'];
|
|
70543
|
+
readOnly: Scalars['Boolean']['output'];
|
|
70451
70544
|
timezone: Scalars['String']['output'];
|
|
70452
70545
|
title: Scalars['String']['output'];
|
|
70453
70546
|
type: TrelloSupportedPlannerProviders;
|
|
@@ -70521,6 +70614,7 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
70521
70614
|
export declare type TrelloProviderCalendarInterface = {
|
|
70522
70615
|
color: Scalars['String']['output'];
|
|
70523
70616
|
id: Scalars['ID']['output'];
|
|
70617
|
+
readOnly: Scalars['Boolean']['output'];
|
|
70524
70618
|
timezone: Scalars['String']['output'];
|
|
70525
70619
|
title: Scalars['String']['output'];
|
|
70526
70620
|
type: TrelloSupportedPlannerProviders;
|
|
@@ -70640,10 +70734,14 @@ export declare type TrelloStickerEdge = {
|
|
|
70640
70734
|
export declare type TrelloSubscriptionApi = {
|
|
70641
70735
|
__typename?: 'TrelloSubscriptionApi';
|
|
70642
70736
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
70737
|
+
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
70643
70738
|
};
|
|
70644
70739
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
70645
70740
|
id: Scalars['ID']['input'];
|
|
70646
70741
|
};
|
|
70742
|
+
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
70743
|
+
id: Scalars['ID']['input'];
|
|
70744
|
+
};
|
|
70647
70745
|
export declare enum TrelloSupportedPlannerProviders {
|
|
70648
70746
|
Google = "GOOGLE"
|
|
70649
70747
|
}
|