@forge/cli-shared 2.3.1-next.1 → 2.3.1-next.4
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,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.1-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [64dd525]
|
|
8
|
+
- Updated dependencies [10f147f]
|
|
9
|
+
- @forge/manifest@3.4.0-next.4
|
|
10
|
+
|
|
11
|
+
## 2.3.1-next.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [1a8a4bb]
|
|
16
|
+
- @forge/manifest@3.3.1-next.3
|
|
17
|
+
|
|
18
|
+
## 2.3.1-next.2
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [8b4fede]
|
|
23
|
+
- @forge/manifest@3.3.1-next.2
|
|
24
|
+
|
|
3
25
|
## 2.3.1-next.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -544,6 +544,7 @@ export declare type AppInstallationInput = {
|
|
|
544
544
|
environmentKey: Scalars['String'];
|
|
545
545
|
async?: Maybe<Scalars['Boolean']>;
|
|
546
546
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
547
|
+
provisionRequestId?: Maybe<Scalars['ID']>;
|
|
547
548
|
};
|
|
548
549
|
export declare type AppInstallationLicense = {
|
|
549
550
|
__typename?: 'AppInstallationLicense';
|
|
@@ -1003,6 +1004,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1003
1004
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1004
1005
|
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1005
1006
|
imageUri?: Maybe<Scalars['String']>;
|
|
1007
|
+
dependents?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1006
1008
|
};
|
|
1007
1009
|
export declare enum BitbucketPermission {
|
|
1008
1010
|
Admin = "ADMIN"
|
|
@@ -3193,7 +3195,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
3193
3195
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
3194
3196
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3195
3197
|
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3196
|
-
confluenceUserProperties
|
|
3198
|
+
confluenceUserProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
3197
3199
|
};
|
|
3198
3200
|
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3199
3201
|
id: Scalars['ID'];
|
|
@@ -5182,6 +5184,7 @@ export declare type DevOpsToolNamespaceContainersArgs = {
|
|
|
5182
5184
|
query?: Maybe<Scalars['String']>;
|
|
5183
5185
|
first?: Maybe<Scalars['Int']>;
|
|
5184
5186
|
after?: Maybe<Scalars['String']>;
|
|
5187
|
+
projectAri?: Maybe<Scalars['String']>;
|
|
5185
5188
|
};
|
|
5186
5189
|
export declare type DevOpsToolNamespaceConnection = {
|
|
5187
5190
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -5409,6 +5412,7 @@ export declare type Extension = {
|
|
|
5409
5412
|
appOwner?: Maybe<User>;
|
|
5410
5413
|
appVersion?: Maybe<Scalars['String']>;
|
|
5411
5414
|
properties: Scalars['JSON'];
|
|
5415
|
+
migrationKey?: Maybe<Scalars['String']>;
|
|
5412
5416
|
license?: Maybe<AppInstallationLicense>;
|
|
5413
5417
|
egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
|
|
5414
5418
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
@@ -5634,6 +5638,134 @@ export declare enum GrantCheckProduct {
|
|
|
5634
5638
|
Compass = "COMPASS",
|
|
5635
5639
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5636
5640
|
}
|
|
5641
|
+
export declare type HelpCenter = {
|
|
5642
|
+
__typename?: 'HelpCenter';
|
|
5643
|
+
helpCenterId: Scalars['ID'];
|
|
5644
|
+
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5645
|
+
};
|
|
5646
|
+
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
5647
|
+
helpCenterCreateCollectionInputItem: Array<HelpCenterCreateCollectionInput>;
|
|
5648
|
+
};
|
|
5649
|
+
export declare type HelpCenterBulkDeleteCollectionInput = {
|
|
5650
|
+
helpCenterCollectionDeleteInput: Array<HelpCenterCollectionDeleteInput>;
|
|
5651
|
+
};
|
|
5652
|
+
export declare type HelpCenterBulkUpdateCollectionInput = {
|
|
5653
|
+
helpCenterUpdateCollectionInputItem: Array<HelpCenterUpdateCollectionInput>;
|
|
5654
|
+
};
|
|
5655
|
+
export declare type HelpCenterCollection = {
|
|
5656
|
+
__typename?: 'HelpCenterCollection';
|
|
5657
|
+
collectionId: Scalars['ID'];
|
|
5658
|
+
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5659
|
+
name: Scalars['String'];
|
|
5660
|
+
description?: Maybe<Scalars['String']>;
|
|
5661
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5662
|
+
};
|
|
5663
|
+
export declare type HelpCenterCollectionItemsArgs = {
|
|
5664
|
+
first?: Maybe<Scalars['Int']>;
|
|
5665
|
+
after?: Maybe<Scalars['String']>;
|
|
5666
|
+
last?: Maybe<Scalars['Int']>;
|
|
5667
|
+
before?: Maybe<Scalars['String']>;
|
|
5668
|
+
};
|
|
5669
|
+
export declare type HelpCenterCollectionDeleteInput = {
|
|
5670
|
+
helpCenterId: Scalars['ID'];
|
|
5671
|
+
collectionId: Scalars['ID'];
|
|
5672
|
+
};
|
|
5673
|
+
export declare type HelpCenterCollectionItem = {
|
|
5674
|
+
__typename?: 'HelpCenterCollectionItem';
|
|
5675
|
+
ari: Scalars['ID'];
|
|
5676
|
+
};
|
|
5677
|
+
export declare type HelpCenterCollectionItemConnection = {
|
|
5678
|
+
__typename?: 'HelpCenterCollectionItemConnection';
|
|
5679
|
+
edges?: Maybe<Array<Maybe<HelpCenterCollectionItemEdge>>>;
|
|
5680
|
+
nodes?: Maybe<Array<Maybe<HelpCenterCollectionItem>>>;
|
|
5681
|
+
pageInfo: PageInfo;
|
|
5682
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5683
|
+
};
|
|
5684
|
+
export declare type HelpCenterCollectionItemEdge = {
|
|
5685
|
+
__typename?: 'HelpCenterCollectionItemEdge';
|
|
5686
|
+
cursor: Scalars['String'];
|
|
5687
|
+
node?: Maybe<HelpCenterCollectionItem>;
|
|
5688
|
+
};
|
|
5689
|
+
export declare type HelpCenterCollectionItemInput = {
|
|
5690
|
+
ari: Scalars['ID'];
|
|
5691
|
+
};
|
|
5692
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | HelpCenterQueryErrors;
|
|
5693
|
+
export declare type HelpCenterCreateCollectionInput = {
|
|
5694
|
+
helpCenterId: Scalars['ID'];
|
|
5695
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5696
|
+
name: Scalars['String'];
|
|
5697
|
+
description?: Maybe<Scalars['String']>;
|
|
5698
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5699
|
+
};
|
|
5700
|
+
export declare type HelpCenterCreateCollectionPayload = Payload & {
|
|
5701
|
+
__typename?: 'HelpCenterCreateCollectionPayload';
|
|
5702
|
+
success: Scalars['Boolean'];
|
|
5703
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5704
|
+
successfullyCreatedCollectionIds: Array<Maybe<HelpCenterSuccessfullyCreatedCollectionIds>>;
|
|
5705
|
+
};
|
|
5706
|
+
export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
5707
|
+
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
5708
|
+
success: Scalars['Boolean'];
|
|
5709
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5710
|
+
};
|
|
5711
|
+
export declare type HelpCenterMutationApi = {
|
|
5712
|
+
__typename?: 'HelpCenterMutationApi';
|
|
5713
|
+
createCollection: HelpCenterCreateCollectionPayload;
|
|
5714
|
+
updateCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5715
|
+
updateCollectionsOrder: HelpCenterUpdateCollectionsOrderPayload;
|
|
5716
|
+
deleteCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5717
|
+
};
|
|
5718
|
+
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
5719
|
+
input: HelpCenterBulkCreateCollectionsInput;
|
|
5720
|
+
};
|
|
5721
|
+
export declare type HelpCenterMutationApiUpdateCollectionArgs = {
|
|
5722
|
+
input: HelpCenterBulkUpdateCollectionInput;
|
|
5723
|
+
};
|
|
5724
|
+
export declare type HelpCenterMutationApiUpdateCollectionsOrderArgs = {
|
|
5725
|
+
input: HelpCenterUpdateCollectionsOrderInput;
|
|
5726
|
+
};
|
|
5727
|
+
export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
5728
|
+
input: HelpCenterBulkDeleteCollectionInput;
|
|
5729
|
+
};
|
|
5730
|
+
export declare type HelpCenterQueryApi = {
|
|
5731
|
+
__typename?: 'HelpCenterQueryApi';
|
|
5732
|
+
helpCenter: HelpCenterQueryResult;
|
|
5733
|
+
helpCenterCollection: HelpCenterCollectionResult;
|
|
5734
|
+
};
|
|
5735
|
+
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
5736
|
+
helpCenterId: Scalars['ID'];
|
|
5737
|
+
};
|
|
5738
|
+
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
5739
|
+
helpCenterId: Scalars['ID'];
|
|
5740
|
+
collectionId: Scalars['ID'];
|
|
5741
|
+
};
|
|
5742
|
+
export declare type HelpCenterQueryErrors = {
|
|
5743
|
+
__typename?: 'HelpCenterQueryErrors';
|
|
5744
|
+
errors?: Maybe<Array<QueryError>>;
|
|
5745
|
+
};
|
|
5746
|
+
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
5747
|
+
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
5748
|
+
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
5749
|
+
helpCenterId: Scalars['ID'];
|
|
5750
|
+
collectionIds: Scalars['ID'];
|
|
5751
|
+
};
|
|
5752
|
+
export declare type HelpCenterUpdateCollectionInput = {
|
|
5753
|
+
helpCenterId: Scalars['ID'];
|
|
5754
|
+
collectionId: Scalars['ID'];
|
|
5755
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5756
|
+
name: Scalars['String'];
|
|
5757
|
+
description?: Maybe<Scalars['String']>;
|
|
5758
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5759
|
+
};
|
|
5760
|
+
export declare type HelpCenterUpdateCollectionsOrderInput = {
|
|
5761
|
+
helpCenterId: Scalars['ID'];
|
|
5762
|
+
collectionIds: Array<Scalars['ID']>;
|
|
5763
|
+
};
|
|
5764
|
+
export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
5765
|
+
__typename?: 'HelpCenterUpdateCollectionsOrderPayload';
|
|
5766
|
+
success: Scalars['Boolean'];
|
|
5767
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5768
|
+
};
|
|
5637
5769
|
export declare type HostedResourcePreSignedUrl = {
|
|
5638
5770
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5639
5771
|
uploadUrl: Scalars['String'];
|
|
@@ -6038,6 +6170,15 @@ export declare type JiraAdf = {
|
|
|
6038
6170
|
__typename?: 'JiraADF';
|
|
6039
6171
|
json?: Maybe<Scalars['JSON']>;
|
|
6040
6172
|
};
|
|
6173
|
+
export declare type JiraAddIssuesToFixVersionInput = {
|
|
6174
|
+
issueIds: Array<Scalars['ID']>;
|
|
6175
|
+
versionId: Scalars['ID'];
|
|
6176
|
+
};
|
|
6177
|
+
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6178
|
+
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6179
|
+
success: Scalars['Boolean'];
|
|
6180
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6181
|
+
};
|
|
6041
6182
|
export declare type JiraAffectedService = {
|
|
6042
6183
|
__typename?: 'JiraAffectedService';
|
|
6043
6184
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -6761,7 +6902,7 @@ export declare type JiraDevOpsBranchDetails = {
|
|
|
6761
6902
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
6762
6903
|
entityUrl?: Maybe<Scalars['URL']>;
|
|
6763
6904
|
name?: Maybe<Scalars['String']>;
|
|
6764
|
-
|
|
6905
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6765
6906
|
};
|
|
6766
6907
|
export declare type JiraDevOpsCommitDetails = {
|
|
6767
6908
|
__typename?: 'JiraDevOpsCommitDetails';
|
|
@@ -8463,6 +8604,7 @@ export declare type JiraMutation = {
|
|
|
8463
8604
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8464
8605
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8465
8606
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8607
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8466
8608
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8467
8609
|
};
|
|
8468
8610
|
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
@@ -8483,6 +8625,9 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8483
8625
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8484
8626
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8485
8627
|
};
|
|
8628
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8629
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
8630
|
+
};
|
|
8486
8631
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8487
8632
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8488
8633
|
};
|
|
@@ -11263,6 +11408,7 @@ export declare type Mutation = {
|
|
|
11263
11408
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11264
11409
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11265
11410
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11411
|
+
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11266
11412
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11267
11413
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11268
11414
|
};
|
|
@@ -13008,6 +13154,7 @@ export declare type Query = {
|
|
|
13008
13154
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13009
13155
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13010
13156
|
appDeployment?: Maybe<AppDeployment>;
|
|
13157
|
+
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13011
13158
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13012
13159
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
13013
13160
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
@@ -13336,7 +13483,11 @@ export declare type RankingDiffPayload = {
|
|
|
13336
13483
|
};
|
|
13337
13484
|
export declare enum RateLimitingCurrency {
|
|
13338
13485
|
TestingService = "TESTING_SERVICE",
|
|
13486
|
+
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
13487
|
+
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
13339
13488
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
13489
|
+
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
13490
|
+
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
13340
13491
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
13341
13492
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
13342
13493
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
@@ -13484,6 +13635,11 @@ export declare type RoadmapConfiguration = {
|
|
|
13484
13635
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13485
13636
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
13486
13637
|
};
|
|
13638
|
+
export declare type RoadmapContent = {
|
|
13639
|
+
__typename?: 'RoadmapContent';
|
|
13640
|
+
configuration: RoadmapConfiguration;
|
|
13641
|
+
items: RoadmapItemConnection;
|
|
13642
|
+
};
|
|
13487
13643
|
export declare type RoadmapCreationPreferences = {
|
|
13488
13644
|
__typename?: 'RoadmapCreationPreferences';
|
|
13489
13645
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13500,6 +13656,9 @@ export declare type RoadmapDetails = {
|
|
|
13500
13656
|
roadmapConfiguration?: Maybe<RoadmapConfiguration>;
|
|
13501
13657
|
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
13502
13658
|
metadata?: Maybe<RoadmapMetadata>;
|
|
13659
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13660
|
+
healthcheck?: Maybe<RoadmapHealthCheck>;
|
|
13661
|
+
content?: Maybe<RoadmapContent>;
|
|
13503
13662
|
};
|
|
13504
13663
|
export declare enum RoadmapEpicView {
|
|
13505
13664
|
All = "ALL",
|
|
@@ -13536,6 +13695,24 @@ export declare type RoadmapFilterConfiguration = {
|
|
|
13536
13695
|
__typename?: 'RoadmapFilterConfiguration';
|
|
13537
13696
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13538
13697
|
};
|
|
13698
|
+
export declare type RoadmapHealthCheck = {
|
|
13699
|
+
__typename?: 'RoadmapHealthCheck';
|
|
13700
|
+
title: Scalars['String'];
|
|
13701
|
+
explanation: Scalars['String'];
|
|
13702
|
+
learnMore: RoadmapHealthCheckLink;
|
|
13703
|
+
resolution?: Maybe<RoadmapHealthCheckResolution>;
|
|
13704
|
+
};
|
|
13705
|
+
export declare type RoadmapHealthCheckLink = {
|
|
13706
|
+
__typename?: 'RoadmapHealthCheckLink';
|
|
13707
|
+
text: Scalars['String'];
|
|
13708
|
+
url: Scalars['String'];
|
|
13709
|
+
};
|
|
13710
|
+
export declare type RoadmapHealthCheckResolution = {
|
|
13711
|
+
__typename?: 'RoadmapHealthCheckResolution';
|
|
13712
|
+
label: Scalars['String'];
|
|
13713
|
+
actionId: Scalars['ID'];
|
|
13714
|
+
fallbackMessage: Scalars['String'];
|
|
13715
|
+
};
|
|
13539
13716
|
export declare type RoadmapItem = {
|
|
13540
13717
|
__typename?: 'RoadmapItem';
|
|
13541
13718
|
id: Scalars['ID'];
|
|
@@ -13888,6 +14065,8 @@ export declare enum Scope {
|
|
|
13888
14065
|
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13889
14066
|
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13890
14067
|
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
14068
|
+
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
14069
|
+
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
13891
14070
|
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13892
14071
|
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
13893
14072
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
@@ -14131,7 +14310,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
14131
14310
|
};
|
|
14132
14311
|
export declare type ShepherdAlert = {
|
|
14133
14312
|
__typename?: 'ShepherdAlert';
|
|
14134
|
-
|
|
14313
|
+
assignee?: Maybe<ShepherdUser>;
|
|
14135
14314
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14136
14315
|
createdOn: Scalars['DateTime'];
|
|
14137
14316
|
id: Scalars['ID'];
|
|
@@ -14168,6 +14347,7 @@ export declare type ShepherdAppInfo = {
|
|
|
14168
14347
|
loginUrl: Scalars['String'];
|
|
14169
14348
|
};
|
|
14170
14349
|
export declare type ShepherdCreateAlertInput = {
|
|
14350
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14171
14351
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14172
14352
|
orgId: Scalars['ID'];
|
|
14173
14353
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -14179,6 +14359,10 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
14179
14359
|
node?: Maybe<ShepherdAlert>;
|
|
14180
14360
|
success: Scalars['Boolean'];
|
|
14181
14361
|
};
|
|
14362
|
+
export declare type ShepherdCreateEmailInput = {
|
|
14363
|
+
email?: Maybe<Scalars['String']>;
|
|
14364
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14365
|
+
};
|
|
14182
14366
|
export declare type ShepherdCreateOrganizationInput = {
|
|
14183
14367
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14184
14368
|
id: Scalars['ID'];
|
|
@@ -14189,6 +14373,40 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
14189
14373
|
node?: Maybe<ShepherdOrganization>;
|
|
14190
14374
|
success: Scalars['Boolean'];
|
|
14191
14375
|
};
|
|
14376
|
+
export declare type ShepherdCreateSubscriptionInput = {
|
|
14377
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14378
|
+
orgId: Scalars['ID'];
|
|
14379
|
+
webhook?: Maybe<ShepherdCreateWebhookInput>;
|
|
14380
|
+
};
|
|
14381
|
+
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14382
|
+
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14383
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14384
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14385
|
+
success: Scalars['Boolean'];
|
|
14386
|
+
};
|
|
14387
|
+
export declare type ShepherdCreateWebhookInput = {
|
|
14388
|
+
authToken?: Maybe<Scalars['String']>;
|
|
14389
|
+
callbackURL: Scalars['URL'];
|
|
14390
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14391
|
+
};
|
|
14392
|
+
export declare type ShepherdEmailConnection = {
|
|
14393
|
+
__typename?: 'ShepherdEmailConnection';
|
|
14394
|
+
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
14395
|
+
};
|
|
14396
|
+
export declare type ShepherdEmailEdge = {
|
|
14397
|
+
__typename?: 'ShepherdEmailEdge';
|
|
14398
|
+
node?: Maybe<ShepherdEmailSubscription>;
|
|
14399
|
+
};
|
|
14400
|
+
export declare type ShepherdEmailSubscription = ShepherdSubscription & {
|
|
14401
|
+
__typename?: 'ShepherdEmailSubscription';
|
|
14402
|
+
createdBy: Scalars['String'];
|
|
14403
|
+
createdOn: Scalars['DateTime'];
|
|
14404
|
+
email: Scalars['String'];
|
|
14405
|
+
id: Scalars['ID'];
|
|
14406
|
+
status: ShepherdSubscriptionStatus;
|
|
14407
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14408
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14409
|
+
};
|
|
14192
14410
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
14193
14411
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
14194
14412
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -14199,8 +14417,10 @@ export declare type ShepherdMutation = {
|
|
|
14199
14417
|
__typename?: 'ShepherdMutation';
|
|
14200
14418
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
14201
14419
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
14420
|
+
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
14202
14421
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
14203
14422
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
14423
|
+
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
14204
14424
|
};
|
|
14205
14425
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
14206
14426
|
input: ShepherdCreateAlertInput;
|
|
@@ -14208,6 +14428,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
14208
14428
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
14209
14429
|
input: ShepherdCreateOrganizationInput;
|
|
14210
14430
|
};
|
|
14431
|
+
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
14432
|
+
input: ShepherdCreateSubscriptionInput;
|
|
14433
|
+
};
|
|
14211
14434
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
14212
14435
|
id: Scalars['ID'];
|
|
14213
14436
|
input: ShepherdUpdateAlertInput;
|
|
@@ -14216,19 +14439,25 @@ export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
|
14216
14439
|
id: Scalars['ID'];
|
|
14217
14440
|
input: ShepherdUpdateOrganizationInput;
|
|
14218
14441
|
};
|
|
14442
|
+
export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
14443
|
+
id: Scalars['ID'];
|
|
14444
|
+
input: ShepherdUpdateSubscriptionInput;
|
|
14445
|
+
};
|
|
14219
14446
|
export declare type ShepherdOrganization = {
|
|
14220
14447
|
__typename?: 'ShepherdOrganization';
|
|
14221
14448
|
createdOn: Scalars['DateTime'];
|
|
14222
14449
|
enabled: Scalars['Boolean'];
|
|
14223
14450
|
id: Scalars['ID'];
|
|
14451
|
+
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
14224
14452
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14225
14453
|
};
|
|
14454
|
+
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
14226
14455
|
export declare type ShepherdQuery = {
|
|
14227
14456
|
__typename?: 'ShepherdQuery';
|
|
14228
14457
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
14229
14458
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
14230
14459
|
shepherdAppInfo: ShepherdAppInfo;
|
|
14231
|
-
shepherdOrganization?: Maybe<
|
|
14460
|
+
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
14232
14461
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
14233
14462
|
};
|
|
14234
14463
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -14244,7 +14473,21 @@ export declare enum ShepherdQueryErrorType {
|
|
|
14244
14473
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
14245
14474
|
Unauthorized = "UNAUTHORIZED"
|
|
14246
14475
|
}
|
|
14476
|
+
export declare type ShepherdSubscription = {
|
|
14477
|
+
createdBy: Scalars['String'];
|
|
14478
|
+
createdOn: Scalars['DateTime'];
|
|
14479
|
+
id: Scalars['ID'];
|
|
14480
|
+
status: ShepherdSubscriptionStatus;
|
|
14481
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14482
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14483
|
+
};
|
|
14484
|
+
export declare enum ShepherdSubscriptionStatus {
|
|
14485
|
+
Active = "ACTIVE",
|
|
14486
|
+
Inactive = "INACTIVE"
|
|
14487
|
+
}
|
|
14488
|
+
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
14247
14489
|
export declare type ShepherdUpdateAlertInput = {
|
|
14490
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14248
14491
|
status?: Maybe<ShepherdAlertStatus>;
|
|
14249
14492
|
};
|
|
14250
14493
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
@@ -14253,6 +14496,10 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
14253
14496
|
node?: Maybe<ShepherdAlert>;
|
|
14254
14497
|
success: Scalars['Boolean'];
|
|
14255
14498
|
};
|
|
14499
|
+
export declare type ShepherdUpdateEmailInput = {
|
|
14500
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14501
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14502
|
+
};
|
|
14256
14503
|
export declare type ShepherdUpdateOrganizationInput = {
|
|
14257
14504
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14258
14505
|
};
|
|
@@ -14262,10 +14509,44 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
|
14262
14509
|
node?: Maybe<ShepherdOrganization>;
|
|
14263
14510
|
success: Scalars['Boolean'];
|
|
14264
14511
|
};
|
|
14512
|
+
export declare type ShepherdUpdateSubscriptionInput = {
|
|
14513
|
+
email?: Maybe<ShepherdUpdateEmailInput>;
|
|
14514
|
+
orgId: Scalars['ID'];
|
|
14515
|
+
webhook?: Maybe<ShepherdUpdateWebhookInput>;
|
|
14516
|
+
};
|
|
14517
|
+
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14518
|
+
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14519
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14520
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14521
|
+
success: Scalars['Boolean'];
|
|
14522
|
+
};
|
|
14523
|
+
export declare type ShepherdUpdateWebhookInput = {
|
|
14524
|
+
callbackURL?: Maybe<Scalars['URL']>;
|
|
14525
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14526
|
+
};
|
|
14265
14527
|
export declare type ShepherdUser = {
|
|
14266
14528
|
__typename?: 'ShepherdUser';
|
|
14267
14529
|
user?: Maybe<User>;
|
|
14268
14530
|
};
|
|
14531
|
+
export declare type ShepherdWebhookConnection = {
|
|
14532
|
+
__typename?: 'ShepherdWebhookConnection';
|
|
14533
|
+
edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
|
|
14534
|
+
};
|
|
14535
|
+
export declare type ShepherdWebhookEdge = {
|
|
14536
|
+
__typename?: 'ShepherdWebhookEdge';
|
|
14537
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14538
|
+
};
|
|
14539
|
+
export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
14540
|
+
__typename?: 'ShepherdWebhookSubscription';
|
|
14541
|
+
authToken: Scalars['String'];
|
|
14542
|
+
callbackURL: Scalars['String'];
|
|
14543
|
+
createdBy: Scalars['String'];
|
|
14544
|
+
createdOn: Scalars['DateTime'];
|
|
14545
|
+
id: Scalars['ID'];
|
|
14546
|
+
status: ShepherdSubscriptionStatus;
|
|
14547
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14548
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14549
|
+
};
|
|
14269
14550
|
export declare type SoftwareBoard = {
|
|
14270
14551
|
__typename?: 'SoftwareBoard';
|
|
14271
14552
|
id?: Maybe<Scalars['ID']>;
|