@forge/cli-shared 8.8.2-next.1 → 8.8.2-next.3
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 +181 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +33 -14
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.8.2-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [260eb24]
|
|
8
|
+
- @forge/manifest@11.0.0-next.2
|
|
9
|
+
|
|
10
|
+
## 8.8.2-next.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [9a6d346]
|
|
15
|
+
- @forge/manifest@11.0.0-next.1
|
|
16
|
+
|
|
3
17
|
## 8.8.2-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -1606,6 +1606,10 @@ export declare type AdminCcpOffering = {
|
|
|
1606
1606
|
productKey?: Maybe<Scalars['ID']['output']>;
|
|
1607
1607
|
productListing?: Maybe<AdminProductListingResult>;
|
|
1608
1608
|
};
|
|
1609
|
+
export declare type AdminCheckLicensesCapacity = {
|
|
1610
|
+
__typename?: 'AdminCheckLicensesCapacity';
|
|
1611
|
+
limitExceeded: Scalars['Boolean']['output'];
|
|
1612
|
+
};
|
|
1609
1613
|
export declare type AdminCommerceEntitlementRelationship = {
|
|
1610
1614
|
__typename?: 'AdminCommerceEntitlementRelationship';
|
|
1611
1615
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -1952,6 +1956,27 @@ export declare type AdminIpAllowlistingFeature = {
|
|
|
1952
1956
|
__typename?: 'AdminIpAllowlistingFeature';
|
|
1953
1957
|
ip?: Maybe<Scalars['String']['output']>;
|
|
1954
1958
|
};
|
|
1959
|
+
export declare type AdminLicenseData = {
|
|
1960
|
+
__typename?: 'AdminLicenseData';
|
|
1961
|
+
capacity: Scalars['Int']['output'];
|
|
1962
|
+
limitExceeded: Scalars['Boolean']['output'];
|
|
1963
|
+
resourceId: Scalars['ID']['output'];
|
|
1964
|
+
usage: Scalars['Int']['output'];
|
|
1965
|
+
};
|
|
1966
|
+
export declare type AdminLicenseDataConnection = {
|
|
1967
|
+
__typename?: 'AdminLicenseDataConnection';
|
|
1968
|
+
edges?: Maybe<Array<AdminLicenseDataEdge>>;
|
|
1969
|
+
pageInfo: PageInfo;
|
|
1970
|
+
};
|
|
1971
|
+
export declare type AdminLicenseDataEdge = {
|
|
1972
|
+
__typename?: 'AdminLicenseDataEdge';
|
|
1973
|
+
cursor: Scalars['String']['output'];
|
|
1974
|
+
node: AdminLicenseData;
|
|
1975
|
+
};
|
|
1976
|
+
export declare type AdminLicenseInput = {
|
|
1977
|
+
groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1978
|
+
resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1979
|
+
};
|
|
1955
1980
|
export declare type AdminLimit = {
|
|
1956
1981
|
__typename?: 'AdminLimit';
|
|
1957
1982
|
limit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -4687,6 +4712,17 @@ export declare type AquaIssueContext = {
|
|
|
4687
4712
|
issue?: Maybe<JiraIssue>;
|
|
4688
4713
|
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
4689
4714
|
};
|
|
4715
|
+
export declare type AquaLiveChatSubscription = {
|
|
4716
|
+
__typename?: 'AquaLiveChatSubscription';
|
|
4717
|
+
updateConversation?: Maybe<AquaLiveChatSubscriptionResponse>;
|
|
4718
|
+
};
|
|
4719
|
+
export declare type AquaLiveChatSubscriptionUpdateConversationArgs = {
|
|
4720
|
+
conversationId: Scalars['ID']['input'];
|
|
4721
|
+
};
|
|
4722
|
+
export declare type AquaLiveChatSubscriptionResponse = {
|
|
4723
|
+
__typename?: 'AquaLiveChatSubscriptionResponse';
|
|
4724
|
+
result?: Maybe<Scalars['String']['output']>;
|
|
4725
|
+
};
|
|
4690
4726
|
export declare type AquaNotificationDetails = {
|
|
4691
4727
|
__typename?: 'AquaNotificationDetails';
|
|
4692
4728
|
actionTaken?: Maybe<Scalars['String']['output']>;
|
|
@@ -5573,6 +5609,22 @@ export declare type AssetsDmObjectClassMetadata = {
|
|
|
5573
5609
|
tenantId: Scalars['ID']['output'];
|
|
5574
5610
|
uniqueRecordsCount?: Maybe<Scalars['Int']['output']>;
|
|
5575
5611
|
};
|
|
5612
|
+
export declare type AssetsDmObjectDetail = {
|
|
5613
|
+
__typename?: 'AssetsDMObjectDetail';
|
|
5614
|
+
lastSnapshotDate?: Maybe<Scalars['String']['output']>;
|
|
5615
|
+
name: Scalars['String']['output'];
|
|
5616
|
+
objectDataSourceColumnNames: Array<Scalars['JSON']['output']>;
|
|
5617
|
+
objectDataSources: Array<Scalars['JSON']['output']>;
|
|
5618
|
+
pkColumnName: Scalars['String']['output'];
|
|
5619
|
+
preferredAttributes: Array<Scalars['JSON']['output']>;
|
|
5620
|
+
unverifiedAttributesCount: Scalars['Int']['output'];
|
|
5621
|
+
};
|
|
5622
|
+
export declare type AssetsDmObjectHistory = {
|
|
5623
|
+
__typename?: 'AssetsDMObjectHistory';
|
|
5624
|
+
dataSourceColumnNames: Array<Scalars['String']['output']>;
|
|
5625
|
+
pageInfo: AssetsDmPaginationInfo;
|
|
5626
|
+
snapshots: Array<Scalars['JSON']['output']>;
|
|
5627
|
+
};
|
|
5576
5628
|
export declare type AssetsDmObjectSchema = {
|
|
5577
5629
|
__typename?: 'AssetsDMObjectSchema';
|
|
5578
5630
|
id: Scalars['ID']['output'];
|
|
@@ -5680,6 +5732,13 @@ export declare type AssetsDmObjectsListDataRows = {
|
|
|
5680
5732
|
pageInfo: AssetsDmObjectsListPageInfo;
|
|
5681
5733
|
totalCount: Scalars['Int']['output'];
|
|
5682
5734
|
};
|
|
5735
|
+
export declare type AssetsDmObjectsListDownloadResponse = {
|
|
5736
|
+
__typename?: 'AssetsDMObjectsListDownloadResponse';
|
|
5737
|
+
file?: Maybe<Scalars['String']['output']>;
|
|
5738
|
+
isReady: Scalars['Boolean']['output'];
|
|
5739
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5740
|
+
message: Scalars['String']['output'];
|
|
5741
|
+
};
|
|
5683
5742
|
export declare type AssetsDmObjectsListExportRequestCreateResponse = {
|
|
5684
5743
|
__typename?: 'AssetsDMObjectsListExportRequestCreateResponse';
|
|
5685
5744
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -22097,7 +22156,9 @@ export declare type ConvoAiAsyncAgentUpdate = {
|
|
|
22097
22156
|
__typename?: 'ConvoAiAsyncAgentUpdate';
|
|
22098
22157
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22099
22158
|
agentMessageType: ConvoAiAgentMessageType;
|
|
22159
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
22100
22160
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22161
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
22101
22162
|
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
22102
22163
|
messageTemplate?: Maybe<Scalars['String']['output']>;
|
|
22103
22164
|
status: ConvoAiAgentSessionStatus;
|
|
@@ -59395,6 +59456,7 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
59395
59456
|
d0Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
59396
59457
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
59397
59458
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
59459
|
+
everActive?: Maybe<Scalars['Boolean']['output']>;
|
|
59398
59460
|
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
59399
59461
|
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
59400
59462
|
nbeRecommendation?: Maybe<GrowthUnifiedProfileProductNbe>;
|
|
@@ -68124,6 +68186,7 @@ export declare enum JiraFieldConfigOrderBy {
|
|
|
68124
68186
|
Description = "DESCRIPTION",
|
|
68125
68187
|
FieldType = "FIELD_TYPE",
|
|
68126
68188
|
Id = "ID",
|
|
68189
|
+
IsGlobal = "IS_GLOBAL",
|
|
68127
68190
|
LastUsed = "LAST_USED",
|
|
68128
68191
|
Name = "NAME",
|
|
68129
68192
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -68531,6 +68594,17 @@ export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtensio
|
|
|
68531
68594
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
68532
68595
|
};
|
|
68533
68596
|
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
68597
|
+
export declare enum JiraFilterSearchMode {
|
|
68598
|
+
Advanced = "ADVANCED",
|
|
68599
|
+
Basic = "BASIC",
|
|
68600
|
+
Jql = "JQL"
|
|
68601
|
+
}
|
|
68602
|
+
export declare type JiraFilterSearchModeMutationPayload = Payload & {
|
|
68603
|
+
__typename?: 'JiraFilterSearchModeMutationPayload';
|
|
68604
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68605
|
+
filterSearchMode?: Maybe<JiraFilterSearchMode>;
|
|
68606
|
+
success: Scalars['Boolean']['output'];
|
|
68607
|
+
};
|
|
68534
68608
|
export declare type JiraFilterShareGrantMutationErrorExtension = MutationErrorExtension & {
|
|
68535
68609
|
__typename?: 'JiraFilterShareGrantMutationErrorExtension';
|
|
68536
68610
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -71058,6 +71132,10 @@ export declare enum JiraIssueModuleType {
|
|
|
71058
71132
|
IssueModule = "ISSUE_MODULE",
|
|
71059
71133
|
WebPanel = "WEB_PANEL"
|
|
71060
71134
|
}
|
|
71135
|
+
export declare type JiraIssueMutatedStreamHubPayload = {
|
|
71136
|
+
__typename?: 'JiraIssueMutatedStreamHubPayload';
|
|
71137
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
71138
|
+
};
|
|
71061
71139
|
export declare type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
71062
71140
|
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
71063
71141
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -81558,6 +81636,7 @@ export declare type JiraSubscription = {
|
|
|
81558
81636
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
81559
81637
|
onIssueDeletedByProjectsNoEnrichment?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
81560
81638
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
81639
|
+
onIssueMutatedByIssueIdNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
81561
81640
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
81562
81641
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
81563
81642
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
@@ -81633,6 +81712,9 @@ export declare type JiraSubscriptionOnIssueDeletedByProjectsNoEnrichmentArgs = {
|
|
|
81633
81712
|
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
81634
81713
|
input: JiraIssueExportInput;
|
|
81635
81714
|
};
|
|
81715
|
+
export declare type JiraSubscriptionOnIssueMutatedByIssueIdNoEnrichmentArgs = {
|
|
81716
|
+
issueId: Scalars['ID']['input'];
|
|
81717
|
+
};
|
|
81636
81718
|
export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
|
|
81637
81719
|
cloudId: Scalars['ID']['input'];
|
|
81638
81720
|
projectId: Scalars['String']['input'];
|
|
@@ -83037,6 +83119,7 @@ export declare type JiraUserPreferences = {
|
|
|
83037
83119
|
__typename?: 'JiraUserPreferences';
|
|
83038
83120
|
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
83039
83121
|
dismissedAutomationDiscoverabilityTemplates?: Maybe<JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeConnection>;
|
|
83122
|
+
filterSearchMode?: Maybe<JiraFilterSearchMode>;
|
|
83040
83123
|
globalIssueCreateView?: Maybe<JiraGlobalIssueCreateView>;
|
|
83041
83124
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
83042
83125
|
isCustomNavBarThemeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -83059,6 +83142,7 @@ export declare type JiraUserPreferences = {
|
|
|
83059
83142
|
issueViewContextPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
83060
83143
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
83061
83144
|
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
83145
|
+
issueViewHiddenFieldsMenuState?: Maybe<Scalars['Boolean']['output']>;
|
|
83062
83146
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
83063
83147
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
83064
83148
|
issueViewShouldShowWelcomeMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -83090,6 +83174,9 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
83090
83174
|
export declare type JiraUserPreferencesIssueViewDetailsPanelFieldsOrderArgs = {
|
|
83091
83175
|
projectKey: Scalars['String']['input'];
|
|
83092
83176
|
};
|
|
83177
|
+
export declare type JiraUserPreferencesIssueViewHiddenFieldsMenuStateArgs = {
|
|
83178
|
+
projectKey: Scalars['String']['input'];
|
|
83179
|
+
};
|
|
83093
83180
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
83094
83181
|
projectKey: Scalars['String']['input'];
|
|
83095
83182
|
};
|
|
@@ -83103,6 +83190,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
83103
83190
|
__typename?: 'JiraUserPreferencesMutation';
|
|
83104
83191
|
dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
|
|
83105
83192
|
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
83193
|
+
setFilterSearchMode?: Maybe<JiraFilterSearchModeMutationPayload>;
|
|
83106
83194
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
83107
83195
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
83108
83196
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
@@ -83119,6 +83207,9 @@ export declare type JiraUserPreferencesMutationSaveRequestTypeTableViewSettingsA
|
|
|
83119
83207
|
projectKey: Scalars['String']['input'];
|
|
83120
83208
|
viewSettings: Scalars['String']['input'];
|
|
83121
83209
|
};
|
|
83210
|
+
export declare type JiraUserPreferencesMutationSetFilterSearchModeArgs = {
|
|
83211
|
+
filterSearchMode?: InputMaybe<JiraFilterSearchMode>;
|
|
83212
|
+
};
|
|
83122
83213
|
export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
|
|
83123
83214
|
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
83124
83215
|
};
|
|
@@ -90688,6 +90779,14 @@ export declare type MercuryDeleteFocusAreaWorkLinksPayload = Payload & {
|
|
|
90688
90779
|
errors?: Maybe<Array<MutationError>>;
|
|
90689
90780
|
success: Scalars['Boolean']['output'];
|
|
90690
90781
|
};
|
|
90782
|
+
export declare type MercuryDeleteInvestmentCategoryInput = {
|
|
90783
|
+
id: Scalars['ID']['input'];
|
|
90784
|
+
};
|
|
90785
|
+
export declare type MercuryDeleteInvestmentCategoryPayload = Payload & {
|
|
90786
|
+
__typename?: 'MercuryDeleteInvestmentCategoryPayload';
|
|
90787
|
+
errors?: Maybe<Array<MutationError>>;
|
|
90788
|
+
success: Scalars['Boolean']['output'];
|
|
90789
|
+
};
|
|
90691
90790
|
export declare type MercuryDeleteInvestmentCategorySetInput = {
|
|
90692
90791
|
id: Scalars['ID']['input'];
|
|
90693
90792
|
};
|
|
@@ -91179,6 +91278,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
91179
91278
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
91180
91279
|
createInvestmentCategorySet?: Maybe<MercuryCreateInvestmentCategorySetPayload>;
|
|
91181
91280
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
91281
|
+
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
91182
91282
|
deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
|
|
91183
91283
|
};
|
|
91184
91284
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
@@ -91196,6 +91296,9 @@ export declare type MercuryFundsMutationApiCreateInvestmentCategorySetArgs = {
|
|
|
91196
91296
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
91197
91297
|
input: MercuryDeleteCostSubtypeInput;
|
|
91198
91298
|
};
|
|
91299
|
+
export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
91300
|
+
input: MercuryDeleteInvestmentCategoryInput;
|
|
91301
|
+
};
|
|
91199
91302
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
|
|
91200
91303
|
input: MercuryDeleteInvestmentCategorySetInput;
|
|
91201
91304
|
};
|
|
@@ -91217,6 +91320,7 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
|
91217
91320
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91218
91321
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91219
91322
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91323
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
91220
91324
|
sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
|
|
91221
91325
|
};
|
|
91222
91326
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
@@ -98499,6 +98603,11 @@ export declare type PolarisAddReactionPayload = Payload & {
|
|
|
98499
98603
|
node: Array<PolarisReactionSummary>;
|
|
98500
98604
|
success: Scalars['Boolean']['output'];
|
|
98501
98605
|
};
|
|
98606
|
+
export declare enum PolarisColumnSize {
|
|
98607
|
+
Default = "DEFAULT",
|
|
98608
|
+
Large = "LARGE",
|
|
98609
|
+
Small = "SMALL"
|
|
98610
|
+
}
|
|
98502
98611
|
export declare type PolarisComment = {
|
|
98503
98612
|
__typename?: 'PolarisComment';
|
|
98504
98613
|
aaid: Scalars['String']['output'];
|
|
@@ -98523,6 +98632,11 @@ export declare type PolarisConnectApp = {
|
|
|
98523
98632
|
oauthClientId: Scalars['String']['output'];
|
|
98524
98633
|
play?: Maybe<PolarisPlay>;
|
|
98525
98634
|
};
|
|
98635
|
+
export declare enum PolarisConnectionsLayout {
|
|
98636
|
+
Cards = "CARDS",
|
|
98637
|
+
List = "LIST",
|
|
98638
|
+
Summary = "SUMMARY"
|
|
98639
|
+
}
|
|
98526
98640
|
export declare type PolarisDecoration = {
|
|
98527
98641
|
__typename?: 'PolarisDecoration';
|
|
98528
98642
|
id: Scalars['ID']['output'];
|
|
@@ -98923,7 +99037,7 @@ export declare type PolarisTimelineConfig = {
|
|
|
98923
99037
|
startDateField?: Maybe<PolarisIdeaField>;
|
|
98924
99038
|
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
98925
99039
|
summaryCardField?: Maybe<PolarisIdeaField>;
|
|
98926
|
-
todayMarker
|
|
99040
|
+
todayMarker: PolarisTimelineTodayMarker;
|
|
98927
99041
|
};
|
|
98928
99042
|
export declare enum PolarisTimelineMode {
|
|
98929
99043
|
Months = "MONTHS",
|
|
@@ -98955,7 +99069,9 @@ export declare type PolarisValueRule = {
|
|
|
98955
99069
|
export declare type PolarisView = {
|
|
98956
99070
|
__typename?: 'PolarisView';
|
|
98957
99071
|
comments?: Maybe<Array<PolarisComment>>;
|
|
99072
|
+
connectionsColumnSize?: Maybe<PolarisColumnSize>;
|
|
98958
99073
|
connectionsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
99074
|
+
connectionsLayoutType?: Maybe<PolarisConnectionsLayout>;
|
|
98959
99075
|
containsArchived: Scalars['Boolean']['output'];
|
|
98960
99076
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
98961
99077
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -99529,6 +99645,7 @@ export declare type Query = {
|
|
|
99529
99645
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
99530
99646
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
99531
99647
|
admin_appModules?: Maybe<Array<Maybe<AdminAppFoundryManifest>>>;
|
|
99648
|
+
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
99532
99649
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
99533
99650
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
99534
99651
|
admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
|
|
@@ -99536,6 +99653,7 @@ export declare type Query = {
|
|
|
99536
99653
|
admin_group?: Maybe<AdminGroup>;
|
|
99537
99654
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
99538
99655
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
99656
|
+
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
99539
99657
|
admin_org?: Maybe<AdminOrganization>;
|
|
99540
99658
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
99541
99659
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
@@ -99627,9 +99745,12 @@ export declare type Query = {
|
|
|
99627
99745
|
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
99628
99746
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
99629
99747
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
99748
|
+
assetsDM_objectDetail?: Maybe<AssetsDmObjectDetail>;
|
|
99749
|
+
assetsDM_objectHistory?: Maybe<AssetsDmObjectHistory>;
|
|
99630
99750
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
99631
99751
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
99632
99752
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
99753
|
+
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
99633
99754
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
99634
99755
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
99635
99756
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
@@ -100056,6 +100177,7 @@ export declare type Query = {
|
|
|
100056
100177
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
100057
100178
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
100058
100179
|
jsw?: Maybe<JswQuery>;
|
|
100180
|
+
kitsune_hello?: Maybe<Scalars['String']['output']>;
|
|
100059
100181
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
100060
100182
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
100061
100183
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
@@ -100394,6 +100516,10 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
100394
100516
|
ari: Scalars['String']['input'];
|
|
100395
100517
|
modules?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
100396
100518
|
};
|
|
100519
|
+
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
100520
|
+
input: AdminLicenseInput;
|
|
100521
|
+
orgId: Scalars['ID']['input'];
|
|
100522
|
+
};
|
|
100397
100523
|
export declare type QueryAdmin_ConnectedAppInstallationsArgs = {
|
|
100398
100524
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
100399
100525
|
appInstallationId: Scalars['ID']['input'];
|
|
@@ -100442,6 +100568,14 @@ export declare type QueryAdmin_InvitePoliciesArgs = {
|
|
|
100442
100568
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100443
100569
|
orgId: Scalars['ID']['input'];
|
|
100444
100570
|
};
|
|
100571
|
+
export declare type QueryAdmin_LicenseUsageArgs = {
|
|
100572
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100573
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
100574
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100575
|
+
input: AdminLicenseInput;
|
|
100576
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100577
|
+
orgId: Scalars['ID']['input'];
|
|
100578
|
+
};
|
|
100445
100579
|
export declare type QueryAdmin_OrgArgs = {
|
|
100446
100580
|
id: Scalars['ID']['input'];
|
|
100447
100581
|
};
|
|
@@ -100906,6 +101040,19 @@ export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
|
100906
101040
|
cloudId: Scalars['ID']['input'];
|
|
100907
101041
|
workspaceId: Scalars['ID']['input'];
|
|
100908
101042
|
};
|
|
101043
|
+
export declare type QueryAssetsDm_ObjectDetailArgs = {
|
|
101044
|
+
cloudId: Scalars['ID']['input'];
|
|
101045
|
+
objectId: Scalars['ID']['input'];
|
|
101046
|
+
objectTableId: Scalars['ID']['input'];
|
|
101047
|
+
workspaceId: Scalars['ID']['input'];
|
|
101048
|
+
};
|
|
101049
|
+
export declare type QueryAssetsDm_ObjectHistoryArgs = {
|
|
101050
|
+
cloudId: Scalars['ID']['input'];
|
|
101051
|
+
objectId: Scalars['ID']['input'];
|
|
101052
|
+
objectTableId: Scalars['ID']['input'];
|
|
101053
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
101054
|
+
workspaceId: Scalars['ID']['input'];
|
|
101055
|
+
};
|
|
100909
101056
|
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
100910
101057
|
cloudId: Scalars['ID']['input'];
|
|
100911
101058
|
objectId: Scalars['ID']['input'];
|
|
@@ -100924,6 +101071,11 @@ export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
100924
101071
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
100925
101072
|
workspaceId: Scalars['ID']['input'];
|
|
100926
101073
|
};
|
|
101074
|
+
export declare type QueryAssetsDm_ObjectsListDownloadArgs = {
|
|
101075
|
+
cloudId: Scalars['ID']['input'];
|
|
101076
|
+
name: Scalars['String']['input'];
|
|
101077
|
+
workspaceId: Scalars['ID']['input'];
|
|
101078
|
+
};
|
|
100927
101079
|
export declare type QueryAssetsDm_ObjectsReportAttributeByDsArgs = {
|
|
100928
101080
|
attributeName: Scalars['String']['input'];
|
|
100929
101081
|
cloudId: Scalars['ID']['input'];
|
|
@@ -102749,6 +102901,9 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
|
|
|
102749
102901
|
jiraProjectAri: Scalars['ID']['input'];
|
|
102750
102902
|
ticketId: Scalars['ID']['input'];
|
|
102751
102903
|
};
|
|
102904
|
+
export declare type QueryKitsune_HelloArgs = {
|
|
102905
|
+
projectAri: Scalars['ID']['input'];
|
|
102906
|
+
};
|
|
102752
102907
|
export declare type QueryKnowledgeBaseArgs = {
|
|
102753
102908
|
cloudId: Scalars['ID']['input'];
|
|
102754
102909
|
};
|
|
@@ -106565,6 +106720,7 @@ export declare type SearchJiraIssueFilter = {
|
|
|
106565
106720
|
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106566
106721
|
issueLabels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106567
106722
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106723
|
+
issueTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
106568
106724
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106569
106725
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106570
106726
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
@@ -129034,6 +129190,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
129034
129190
|
};
|
|
129035
129191
|
export declare type Subscription = {
|
|
129036
129192
|
__typename?: 'Subscription';
|
|
129193
|
+
aqua?: Maybe<AquaLiveChatSubscription>;
|
|
129037
129194
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
129038
129195
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
129039
129196
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
@@ -133002,6 +133159,7 @@ export declare type TrelloBoard = Node & TrelloBaseBoard & {
|
|
|
133002
133159
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
133003
133160
|
name: Scalars['String']['output'];
|
|
133004
133161
|
objectId: Scalars['ID']['output'];
|
|
133162
|
+
plannerEventCards?: Maybe<TrelloCardConnection>;
|
|
133005
133163
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
133006
133164
|
powerUps?: Maybe<TrelloBoardPowerUpConnection>;
|
|
133007
133165
|
powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -133033,6 +133191,10 @@ export declare type TrelloBoardMembersArgs = {
|
|
|
133033
133191
|
filter?: InputMaybe<TrelloBoardMembershipFilterInput>;
|
|
133034
133192
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133035
133193
|
};
|
|
133194
|
+
export declare type TrelloBoardPlannerEventCardsArgs = {
|
|
133195
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133196
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133197
|
+
};
|
|
133036
133198
|
export declare type TrelloBoardPowerUpDataArgs = {
|
|
133037
133199
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
133038
133200
|
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
@@ -133353,6 +133515,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
|
133353
133515
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
133354
133516
|
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
133355
133517
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
133518
|
+
plannerEventBadge?: Maybe<TrelloPlannerEventBadge>;
|
|
133356
133519
|
position?: Maybe<Scalars['Float']['output']>;
|
|
133357
133520
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
133358
133521
|
role?: Maybe<TrelloCardRole>;
|
|
@@ -133570,6 +133733,7 @@ export declare type TrelloCardCover = {
|
|
|
133570
133733
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
133571
133734
|
size?: Maybe<TrelloCardCoverSize>;
|
|
133572
133735
|
uploadedBackground?: Maybe<TrelloUploadedBackground>;
|
|
133736
|
+
yPosition?: Maybe<Scalars['Float']['output']>;
|
|
133573
133737
|
};
|
|
133574
133738
|
export declare type TrelloCardCoverPreviewsArgs = {
|
|
133575
133739
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133606,6 +133770,7 @@ export declare type TrelloCardCoverUpdated = {
|
|
|
133606
133770
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
133607
133771
|
size?: Maybe<TrelloCardCoverSize>;
|
|
133608
133772
|
uploadedBackground?: Maybe<TrelloUploadedBackground>;
|
|
133773
|
+
yPosition?: Maybe<Scalars['Float']['output']>;
|
|
133609
133774
|
};
|
|
133610
133775
|
export declare type TrelloCardCreationInfo = {
|
|
133611
133776
|
__typename?: 'TrelloCardCreationInfo';
|
|
@@ -134868,6 +135033,7 @@ export declare type TrelloMutationApi = {
|
|
|
134868
135033
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
134869
135034
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
134870
135035
|
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
135036
|
+
smartScheduleCardsWithSmartSelection?: Maybe<TrelloProposedSmartSchedule>;
|
|
134871
135037
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
134872
135038
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
134873
135039
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
@@ -134971,6 +135137,9 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
|
134971
135137
|
export declare type TrelloMutationApiSmartScheduleCardsArgs = {
|
|
134972
135138
|
input: TrelloSmartScheduleCardsInput;
|
|
134973
135139
|
};
|
|
135140
|
+
export declare type TrelloMutationApiSmartScheduleCardsWithSmartSelectionArgs = {
|
|
135141
|
+
input: TrelloSmartScheduleCardsWithSmartSelectionInput;
|
|
135142
|
+
};
|
|
134974
135143
|
export declare type TrelloMutationApiSortInboxCardsArgs = {
|
|
134975
135144
|
input: TrelloSortInboxCardsInput;
|
|
134976
135145
|
};
|
|
@@ -135397,6 +135566,10 @@ export declare type TrelloPlannerCardUpdated = {
|
|
|
135397
135566
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
135398
135567
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
135399
135568
|
};
|
|
135569
|
+
export declare type TrelloPlannerEventBadge = {
|
|
135570
|
+
__typename?: 'TrelloPlannerEventBadge';
|
|
135571
|
+
hasEvents?: Maybe<Scalars['Boolean']['output']>;
|
|
135572
|
+
};
|
|
135400
135573
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
135401
135574
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
135402
135575
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -135828,6 +136001,11 @@ export declare type TrelloSmartScheduleCardsInput = {
|
|
|
135828
136001
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
135829
136002
|
timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
|
|
135830
136003
|
};
|
|
136004
|
+
export declare type TrelloSmartScheduleCardsWithSmartSelectionInput = {
|
|
136005
|
+
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
136006
|
+
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
136007
|
+
timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
|
|
136008
|
+
};
|
|
135831
136009
|
export declare type TrelloSortInboxCardsInput = {
|
|
135832
136010
|
sortBy: TrelloListCardSortBy;
|
|
135833
136011
|
};
|
|
@@ -138431,7 +138609,9 @@ export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
|
138431
138609
|
success: Scalars['Boolean']['output'];
|
|
138432
138610
|
};
|
|
138433
138611
|
export declare type UpdatePolarisViewInput = {
|
|
138612
|
+
connectionsColumnSize?: InputMaybe<PolarisColumnSize>;
|
|
138434
138613
|
connectionsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
138614
|
+
connectionsLayoutType?: InputMaybe<PolarisConnectionsLayout>;
|
|
138435
138615
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
138436
138616
|
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
138437
138617
|
enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;
|