@forge/cli-shared 6.7.0-next.9 → 6.7.0-next.9-experimental-472292d
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 +22 -0
- package/out/graphql/graphql-types.d.ts +129 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +16 -11
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +5 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.7.0-next.9-experimental-472292d
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9471e5d: Package Node runtime in a central location and remove 'bundled'
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 70cd30c: Updated RoA web trigger module warning to be more generic
|
|
12
|
+
- dbc077f: Added config file utility method to only read appId and refactored commands to perform validation after command configuration
|
|
13
|
+
- 272d770: Remove LaunchDarkly integration completely
|
|
14
|
+
- 78a006f: Fixed handling of product and site params without any value
|
|
15
|
+
- 30f197e: Refactoring to enable alternate bundler support
|
|
16
|
+
- Updated dependencies [2712852]
|
|
17
|
+
- Updated dependencies [009ab70]
|
|
18
|
+
- Updated dependencies [4c15b3a]
|
|
19
|
+
- Updated dependencies [359756b]
|
|
20
|
+
- Updated dependencies [34db0f6]
|
|
21
|
+
- Updated dependencies [01ca857]
|
|
22
|
+
- Updated dependencies [70badb7]
|
|
23
|
+
- @forge/manifest@8.8.0-next.4-experimental-472292d
|
|
24
|
+
|
|
3
25
|
## 6.7.0-next.9
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
|
@@ -3308,6 +3308,7 @@ export declare type CatchupVersionDiffMetadataResponse = {
|
|
|
3308
3308
|
__typename?: 'CatchupVersionDiffMetadataResponse';
|
|
3309
3309
|
collaborators?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
3310
3310
|
isDiffEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
3311
|
+
users?: Maybe<Array<Maybe<Person>>>;
|
|
3311
3312
|
};
|
|
3312
3313
|
export declare type CcpAccountDetails = CommerceAccountDetails & {
|
|
3313
3314
|
__typename?: 'CcpAccountDetails';
|
|
@@ -23662,6 +23663,10 @@ export declare type EcosystemMarketplaceAppVersion = {
|
|
|
23662
23663
|
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23663
23664
|
version: Scalars['String']['output'];
|
|
23664
23665
|
};
|
|
23666
|
+
export declare type EcosystemMarketplaceAppVersionFilter = {
|
|
23667
|
+
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
23668
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
23669
|
+
};
|
|
23665
23670
|
export declare type EcosystemMarketplaceCloudAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23666
23671
|
__typename?: 'EcosystemMarketplaceCloudAppDeployment';
|
|
23667
23672
|
cloudAppEnvironmentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -23693,6 +23698,10 @@ export declare type EcosystemMarketplaceData = {
|
|
|
23693
23698
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23694
23699
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23695
23700
|
};
|
|
23701
|
+
export declare type EcosystemMarketplaceDataVersionsArgs = {
|
|
23702
|
+
filter?: InputMaybe<EcosystemMarketplaceAppVersionFilter>;
|
|
23703
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
23704
|
+
};
|
|
23696
23705
|
export declare type EcosystemMarketplaceExternalFrameworkAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23697
23706
|
__typename?: 'EcosystemMarketplaceExternalFrameworkAppDeployment';
|
|
23698
23707
|
frameworkId: Scalars['String']['output'];
|
|
@@ -25275,6 +25284,7 @@ export declare type FeedEventEditLive = FeedEvent & {
|
|
|
25275
25284
|
datetime: Scalars['String']['output'];
|
|
25276
25285
|
groupSize: Scalars['Int']['output'];
|
|
25277
25286
|
type: FeedEventType;
|
|
25287
|
+
user?: Maybe<Person>;
|
|
25278
25288
|
version: Scalars['Int']['output'];
|
|
25279
25289
|
};
|
|
25280
25290
|
export declare type FeedEventPublishLive = FeedEvent & {
|
|
@@ -25283,6 +25293,7 @@ export declare type FeedEventPublishLive = FeedEvent & {
|
|
|
25283
25293
|
datetime: Scalars['String']['output'];
|
|
25284
25294
|
groupSize: Scalars['Int']['output'];
|
|
25285
25295
|
type: FeedEventType;
|
|
25296
|
+
user?: Maybe<Person>;
|
|
25286
25297
|
version: Scalars['Int']['output'];
|
|
25287
25298
|
};
|
|
25288
25299
|
export declare enum FeedEventType {
|
|
@@ -25365,6 +25376,7 @@ export declare type FooterComment = CommentLocation & {
|
|
|
25365
25376
|
};
|
|
25366
25377
|
export declare type ForYouFeedItem = {
|
|
25367
25378
|
__typename?: 'ForYouFeedItem';
|
|
25379
|
+
content?: Maybe<Content>;
|
|
25368
25380
|
id: Scalars['String']['output'];
|
|
25369
25381
|
mostRelevantUpdate?: Maybe<Scalars['Int']['output']>;
|
|
25370
25382
|
recentActionsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -54662,6 +54674,10 @@ export declare type JiraConfluenceRemoteIssueLinkEdge = {
|
|
|
54662
54674
|
cursor: Scalars['String']['output'];
|
|
54663
54675
|
node?: Maybe<JiraConfluenceRemoteIssueLink>;
|
|
54664
54676
|
};
|
|
54677
|
+
export declare type JiraConfluenceRemoteIssueLinkInput = {
|
|
54678
|
+
href?: InputMaybe<Scalars['String']['input']>;
|
|
54679
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
54680
|
+
};
|
|
54665
54681
|
export declare type JiraConfluenceRemoteIssueLinksField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
54666
54682
|
__typename?: 'JiraConfluenceRemoteIssueLinksField';
|
|
54667
54683
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -54680,6 +54696,10 @@ export declare type JiraConfluenceRemoteIssueLinksFieldConfluenceRemoteIssueLink
|
|
|
54680
54696
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54681
54697
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54682
54698
|
};
|
|
54699
|
+
export declare type JiraConfluenceRemoteIssueLinksFieldOperationInput = {
|
|
54700
|
+
links: Array<JiraConfluenceRemoteIssueLinkInput>;
|
|
54701
|
+
operation: JiraMultiValueFieldOperations;
|
|
54702
|
+
};
|
|
54683
54703
|
export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
54684
54704
|
__typename?: 'JiraConnectDateTimeField';
|
|
54685
54705
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -54940,6 +54960,7 @@ export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
|
54940
54960
|
};
|
|
54941
54961
|
export declare type JiraCreateCustomBackgroundInput = {
|
|
54942
54962
|
altText: Scalars['String']['input'];
|
|
54963
|
+
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
54943
54964
|
entityId: Scalars['ID']['input'];
|
|
54944
54965
|
mediaApiFileId: Scalars['String']['input'];
|
|
54945
54966
|
};
|
|
@@ -55090,6 +55111,8 @@ export declare type JiraCustomBackground = {
|
|
|
55090
55111
|
__typename?: 'JiraCustomBackground';
|
|
55091
55112
|
activeCount?: Maybe<Scalars['Long']['output']>;
|
|
55092
55113
|
altText?: Maybe<Scalars['String']['output']>;
|
|
55114
|
+
brightness?: Maybe<JiraCustomBackgroundBrightness>;
|
|
55115
|
+
dominantColor?: Maybe<Scalars['String']['output']>;
|
|
55093
55116
|
id?: Maybe<Scalars['ID']['output']>;
|
|
55094
55117
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
55095
55118
|
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -55099,6 +55122,10 @@ export declare type JiraCustomBackground = {
|
|
|
55099
55122
|
export declare type JiraCustomBackgroundMediaReadTokenArgs = {
|
|
55100
55123
|
durationInSeconds: Scalars['Int']['input'];
|
|
55101
55124
|
};
|
|
55125
|
+
export declare enum JiraCustomBackgroundBrightness {
|
|
55126
|
+
Dark = "DARK",
|
|
55127
|
+
Light = "LIGHT"
|
|
55128
|
+
}
|
|
55102
55129
|
export declare type JiraCustomBackgroundConnection = {
|
|
55103
55130
|
__typename?: 'JiraCustomBackgroundConnection';
|
|
55104
55131
|
edges?: Maybe<Array<Maybe<JiraCustomBackgroundEdge>>>;
|
|
@@ -55117,6 +55144,26 @@ export declare type JiraCustomFieldOptionInput = {
|
|
|
55117
55144
|
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
55118
55145
|
value: Scalars['String']['input'];
|
|
55119
55146
|
};
|
|
55147
|
+
export declare type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
55148
|
+
__typename?: 'JiraCustomFieldUsageMetric';
|
|
55149
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
55150
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
55151
|
+
globalScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
55152
|
+
id: Scalars['ID']['output'];
|
|
55153
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
55154
|
+
projectScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
55155
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
55156
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
55157
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
55158
|
+
};
|
|
55159
|
+
export declare type JiraCustomFieldUsageMetricValuesArgs = {
|
|
55160
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55161
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
55162
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55163
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
55164
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
55165
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
55166
|
+
};
|
|
55120
55167
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
55121
55168
|
__typename?: 'JiraCustomFilter';
|
|
55122
55169
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -55459,7 +55506,7 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
55459
55506
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
55460
55507
|
NotAvailable = "NOT_AVAILABLE"
|
|
55461
55508
|
}
|
|
55462
|
-
export declare type JiraDetailedView = JiraIssueSearchViewMetadata &
|
|
55509
|
+
export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView & Node & {
|
|
55463
55510
|
__typename?: 'JiraDetailedView';
|
|
55464
55511
|
error?: Maybe<QueryError>;
|
|
55465
55512
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -56814,6 +56861,24 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
56814
56861
|
name: Scalars['String']['output'];
|
|
56815
56862
|
type: Scalars['String']['output'];
|
|
56816
56863
|
};
|
|
56864
|
+
export declare type JiraGenericResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
56865
|
+
__typename?: 'JiraGenericResourceUsageMetric';
|
|
56866
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
56867
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
56868
|
+
id: Scalars['ID']['output'];
|
|
56869
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
56870
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
56871
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
56872
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
56873
|
+
};
|
|
56874
|
+
export declare type JiraGenericResourceUsageMetricValuesArgs = {
|
|
56875
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56876
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
56877
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56878
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
56879
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56880
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
56881
|
+
};
|
|
56817
56882
|
export declare enum JiraGlobalIssueCreateView {
|
|
56818
56883
|
FullModal = "FULL_MODAL",
|
|
56819
56884
|
MiniModal = "MINI_MODAL"
|
|
@@ -56980,7 +57045,7 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
56980
57045
|
export declare type JiraGroupInput = {
|
|
56981
57046
|
groupName: Scalars['ID']['input'];
|
|
56982
57047
|
};
|
|
56983
|
-
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata &
|
|
57048
|
+
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
56984
57049
|
__typename?: 'JiraGroupedListView';
|
|
56985
57050
|
error?: Maybe<QueryError>;
|
|
56986
57051
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -58502,10 +58567,6 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
58502
58567
|
view?: Maybe<JiraIssueSearchView>;
|
|
58503
58568
|
};
|
|
58504
58569
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
58505
|
-
export declare type JiraIssueSearchViewType = {
|
|
58506
|
-
error?: Maybe<QueryError>;
|
|
58507
|
-
id: Scalars['ID']['output'];
|
|
58508
|
-
};
|
|
58509
58570
|
export declare type JiraIssueTransitionComment = {
|
|
58510
58571
|
__typename?: 'JiraIssueTransitionComment';
|
|
58511
58572
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -59592,7 +59653,7 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
59592
59653
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
59593
59654
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
59594
59655
|
};
|
|
59595
|
-
export declare type JiraListView = JiraIssueSearchViewMetadata &
|
|
59656
|
+
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
59596
59657
|
__typename?: 'JiraListView';
|
|
59597
59658
|
error?: Maybe<QueryError>;
|
|
59598
59659
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -60115,6 +60176,7 @@ export declare type JiraMutation = {
|
|
|
60115
60176
|
updateCmdbField?: Maybe<JiraCmdbFieldPayload>;
|
|
60116
60177
|
updateColorField?: Maybe<JiraColorFieldPayload>;
|
|
60117
60178
|
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
60179
|
+
updateConfluenceRemoteIssueLinksField?: Maybe<JiraUpdateConfluenceRemoteIssueLinksFieldPayload>;
|
|
60118
60180
|
updateCustomBackground?: Maybe<JiraUpdateCustomBackgroundPayload>;
|
|
60119
60181
|
updateDataClassificationField?: Maybe<JiraDataClassificationFieldPayload>;
|
|
60120
60182
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
@@ -60587,6 +60649,9 @@ export declare type JiraMutationUpdateColorFieldArgs = {
|
|
|
60587
60649
|
export declare type JiraMutationUpdateComponentsFieldArgs = {
|
|
60588
60650
|
input: JiraUpdateComponentsFieldInput;
|
|
60589
60651
|
};
|
|
60652
|
+
export declare type JiraMutationUpdateConfluenceRemoteIssueLinksFieldArgs = {
|
|
60653
|
+
input: JiraUpdateConfluenceRemoteIssueLinksFieldInput;
|
|
60654
|
+
};
|
|
60590
60655
|
export declare type JiraMutationUpdateCustomBackgroundArgs = {
|
|
60591
60656
|
input: JiraUpdateCustomBackgroundInput;
|
|
60592
60657
|
};
|
|
@@ -62950,6 +63015,7 @@ export declare type JiraQuery = {
|
|
|
62950
63015
|
resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
|
|
62951
63016
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
62952
63017
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
63018
|
+
resourceUsageMetricV2?: Maybe<JiraResourceUsageMetricV2>;
|
|
62953
63019
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
62954
63020
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
62955
63021
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -63769,6 +63835,10 @@ export declare type JiraQueryResourceUsageMetricArgs = {
|
|
|
63769
63835
|
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
63770
63836
|
id: Scalars['ID']['input'];
|
|
63771
63837
|
};
|
|
63838
|
+
export declare type JiraQueryResourceUsageMetricV2Args = {
|
|
63839
|
+
cloudId: Scalars['ID']['input'];
|
|
63840
|
+
metricKey: Scalars['String']['input'];
|
|
63841
|
+
};
|
|
63772
63842
|
export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
63773
63843
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63774
63844
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64470,6 +64540,23 @@ export declare type JiraResourceUsageMetricEdge = {
|
|
|
64470
64540
|
cursor: Scalars['String']['output'];
|
|
64471
64541
|
node?: Maybe<JiraResourceUsageMetric>;
|
|
64472
64542
|
};
|
|
64543
|
+
export declare type JiraResourceUsageMetricV2 = {
|
|
64544
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
64545
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
64546
|
+
id: Scalars['ID']['output'];
|
|
64547
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
64548
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
64549
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
64550
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
64551
|
+
};
|
|
64552
|
+
export declare type JiraResourceUsageMetricV2ValuesArgs = {
|
|
64553
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64554
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
64555
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64556
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
64557
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64558
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
64559
|
+
};
|
|
64473
64560
|
export declare type JiraResourceUsageMetricValue = {
|
|
64474
64561
|
__typename?: 'JiraResourceUsageMetricValue';
|
|
64475
64562
|
date?: Maybe<Scalars['Date']['output']>;
|
|
@@ -67314,6 +67401,7 @@ export declare type JiraUpdateAttachmentFieldInput = {
|
|
|
67314
67401
|
export declare type JiraUpdateBackgroundInput = {
|
|
67315
67402
|
backgroundType: JiraBackgroundType;
|
|
67316
67403
|
backgroundValue: Scalars['String']['input'];
|
|
67404
|
+
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
67317
67405
|
entityId: Scalars['ID']['input'];
|
|
67318
67406
|
};
|
|
67319
67407
|
export declare type JiraUpdateCascadingSelectFieldInput = {
|
|
@@ -67336,6 +67424,16 @@ export declare type JiraUpdateComponentsFieldInput = {
|
|
|
67336
67424
|
id: Scalars['ID']['input'];
|
|
67337
67425
|
operations: Array<JiraComponentFieldOperationInput>;
|
|
67338
67426
|
};
|
|
67427
|
+
export declare type JiraUpdateConfluenceRemoteIssueLinksFieldInput = {
|
|
67428
|
+
id: Scalars['ID']['input'];
|
|
67429
|
+
operations: Array<JiraConfluenceRemoteIssueLinksFieldOperationInput>;
|
|
67430
|
+
};
|
|
67431
|
+
export declare type JiraUpdateConfluenceRemoteIssueLinksFieldPayload = Payload & {
|
|
67432
|
+
__typename?: 'JiraUpdateConfluenceRemoteIssueLinksFieldPayload';
|
|
67433
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67434
|
+
field?: Maybe<JiraConfluenceRemoteIssueLinksField>;
|
|
67435
|
+
success: Scalars['Boolean']['output'];
|
|
67436
|
+
};
|
|
67339
67437
|
export declare type JiraUpdateCustomBackgroundInput = {
|
|
67340
67438
|
altText: Scalars['String']['input'];
|
|
67341
67439
|
cloudId: Scalars['ID']['input'];
|
|
@@ -70984,6 +71082,11 @@ export declare type LoomToken = {
|
|
|
70984
71082
|
__typename?: 'LoomToken';
|
|
70985
71083
|
token: Scalars['String']['output'];
|
|
70986
71084
|
};
|
|
71085
|
+
export declare type LoomUserPrimaryAuthType = {
|
|
71086
|
+
__typename?: 'LoomUserPrimaryAuthType';
|
|
71087
|
+
authType: Scalars['String']['output'];
|
|
71088
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
71089
|
+
};
|
|
70987
71090
|
export declare enum LoomUserStatus {
|
|
70988
71091
|
Linked = "LINKED",
|
|
70989
71092
|
LinkedEnterprise = "LINKED_ENTERPRISE",
|
|
@@ -73708,6 +73811,7 @@ export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
|
73708
73811
|
fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
|
|
73709
73812
|
fieldsChanged?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
73710
73813
|
focusAreaId?: Maybe<Scalars['String']['output']>;
|
|
73814
|
+
focusAreaName?: Maybe<Scalars['String']['output']>;
|
|
73711
73815
|
id: Scalars['ID']['output'];
|
|
73712
73816
|
user?: Maybe<User>;
|
|
73713
73817
|
};
|
|
@@ -80446,6 +80550,7 @@ export declare type Query = {
|
|
|
80446
80550
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
80447
80551
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
80448
80552
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
80553
|
+
loom_primaryAuthTypeForEmail?: Maybe<LoomUserPrimaryAuthType>;
|
|
80449
80554
|
loom_settings?: Maybe<LoomSettings>;
|
|
80450
80555
|
loom_space?: Maybe<LoomSpace>;
|
|
80451
80556
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -82630,6 +82735,9 @@ export declare type QueryLoom_MeetingRecurrencesArgs = {
|
|
|
82630
82735
|
export declare type QueryLoom_MeetingsArgs = {
|
|
82631
82736
|
ids: Array<Scalars['ID']['input']>;
|
|
82632
82737
|
};
|
|
82738
|
+
export declare type QueryLoom_PrimaryAuthTypeForEmailArgs = {
|
|
82739
|
+
email: Scalars['String']['input'];
|
|
82740
|
+
};
|
|
82633
82741
|
export declare type QueryLoom_SettingsArgs = {
|
|
82634
82742
|
siteId: Scalars['ID']['input'];
|
|
82635
82743
|
};
|
|
@@ -91909,6 +92017,7 @@ export declare type TrelloCard = Node & {
|
|
|
91909
92017
|
list?: Maybe<TrelloList>;
|
|
91910
92018
|
location?: Maybe<TrelloCardLocation>;
|
|
91911
92019
|
members?: Maybe<TrelloMemberConnection>;
|
|
92020
|
+
mirrorSource?: Maybe<TrelloCard>;
|
|
91912
92021
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
91913
92022
|
mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
|
|
91914
92023
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -92135,6 +92244,7 @@ export declare type TrelloCardUpdated = {
|
|
|
92135
92244
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92136
92245
|
location?: Maybe<TrelloCardLocation>;
|
|
92137
92246
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
92247
|
+
mirrorSource?: Maybe<TrelloCard>;
|
|
92138
92248
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
92139
92249
|
mirrorSourceObjectId?: Maybe<Scalars['ID']['output']>;
|
|
92140
92250
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -92360,6 +92470,7 @@ export declare type TrelloCustomFieldItemValueInfo = {
|
|
|
92360
92470
|
date?: Maybe<Scalars['String']['output']>;
|
|
92361
92471
|
id?: Maybe<Scalars['ID']['output']>;
|
|
92362
92472
|
number?: Maybe<Scalars['Float']['output']>;
|
|
92473
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
92363
92474
|
text?: Maybe<Scalars['String']['output']>;
|
|
92364
92475
|
};
|
|
92365
92476
|
export declare type TrelloCustomFieldOption = {
|
|
@@ -93021,6 +93132,10 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
93021
93132
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93022
93133
|
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
93023
93134
|
};
|
|
93135
|
+
export declare type TrelloPlannerCalendarEventsUpdatedFilter = {
|
|
93136
|
+
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93137
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93138
|
+
};
|
|
93024
93139
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
93025
93140
|
export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
|
|
93026
93141
|
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -93030,6 +93145,9 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
93030
93145
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
93031
93146
|
id: Scalars['ID']['output'];
|
|
93032
93147
|
};
|
|
93148
|
+
export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
|
|
93149
|
+
filter: TrelloPlannerCalendarEventsUpdatedFilter;
|
|
93150
|
+
};
|
|
93033
93151
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
93034
93152
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
93035
93153
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -93754,8 +93872,12 @@ export declare type UnifiedCachingQueryGetCachedDataArgs = {
|
|
|
93754
93872
|
};
|
|
93755
93873
|
export declare type UnifiedCommunityMutation = {
|
|
93756
93874
|
__typename?: 'UnifiedCommunityMutation';
|
|
93875
|
+
deleteCommunityData?: Maybe<UnifiedCommunityPayload>;
|
|
93757
93876
|
initializeCommunity?: Maybe<UnifiedCommunityPayload>;
|
|
93758
93877
|
};
|
|
93878
|
+
export declare type UnifiedCommunityMutationDeleteCommunityDataArgs = {
|
|
93879
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
93880
|
+
};
|
|
93759
93881
|
export declare type UnifiedCommunityMutationInitializeCommunityArgs = {
|
|
93760
93882
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
93761
93883
|
emailId?: InputMaybe<Scalars['String']['input']>;
|