@forge/cli-shared 6.1.0-next.7 → 6.1.0
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 +33 -0
- package/out/graphql/graphql-types.d.ts +100 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +49 -13
- 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 +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 134e5c7: Migrating forge-cli-enable-atlas-product-support from LD to Statsig
|
|
8
|
+
- 08ce743: Migrating is-logs-v2-api-enabled flag from LD to Statsig
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [84b20e6]
|
|
13
|
+
- Updated dependencies [51dc2a8]
|
|
14
|
+
- Updated dependencies [81831c1]
|
|
15
|
+
- Updated dependencies [577777c]
|
|
16
|
+
- Updated dependencies [6b70be1]
|
|
17
|
+
- Updated dependencies [fea8467]
|
|
18
|
+
- Updated dependencies [6e01e13]
|
|
19
|
+
- Updated dependencies [7ba2a03]
|
|
20
|
+
- Updated dependencies [cdbb366]
|
|
21
|
+
- Updated dependencies [0962638]
|
|
22
|
+
- Updated dependencies [512d5ec]
|
|
23
|
+
- @forge/manifest@7.10.0
|
|
24
|
+
|
|
25
|
+
## 6.1.0-next.8
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- 134e5c7: Migrating forge-cli-enable-atlas-product-support from LD to Statsig
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [7ba2a03]
|
|
34
|
+
- @forge/manifest@7.10.0-next.7
|
|
35
|
+
|
|
3
36
|
## 6.1.0-next.7
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
|
@@ -936,6 +936,7 @@ export declare type AppInstallationInput = {
|
|
|
936
936
|
environmentKey: Scalars['String']['input'];
|
|
937
937
|
installationContext: Scalars['ID']['input'];
|
|
938
938
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
939
|
+
overrides?: InputMaybe<EcosystemAppInstallationOverridesInput>;
|
|
939
940
|
provisionRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
940
941
|
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
941
942
|
};
|
|
@@ -7294,6 +7295,11 @@ export declare type ConfluenceLabel = {
|
|
|
7294
7295
|
label?: Maybe<Scalars['String']['output']>;
|
|
7295
7296
|
prefix?: Maybe<Scalars['String']['output']>;
|
|
7296
7297
|
};
|
|
7298
|
+
export declare type ConfluenceLabelSearchResults = {
|
|
7299
|
+
__typename?: 'ConfluenceLabelSearchResults';
|
|
7300
|
+
otherLabels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
7301
|
+
suggestedLabels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
7302
|
+
};
|
|
7297
7303
|
export declare type ConfluenceLegacyAiConfigResponse = {
|
|
7298
7304
|
__typename?: 'ConfluenceLegacyAIConfigResponse';
|
|
7299
7305
|
isEnabled: Scalars['Boolean']['output'];
|
|
@@ -13231,6 +13237,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
13231
13237
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
13232
13238
|
page?: Maybe<ConfluencePage>;
|
|
13233
13239
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
13240
|
+
searchLabels?: Maybe<ConfluenceLabelSearchResults>;
|
|
13234
13241
|
space?: Maybe<ConfluenceSpace>;
|
|
13235
13242
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
13236
13243
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
@@ -13285,6 +13292,11 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
13285
13292
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
13286
13293
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
13287
13294
|
};
|
|
13295
|
+
export declare type ConfluenceQueryApiSearchLabelsArgs = {
|
|
13296
|
+
cloudId: Scalars['ID']['input'];
|
|
13297
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
13298
|
+
searchText: Scalars['String']['input'];
|
|
13299
|
+
};
|
|
13288
13300
|
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
13289
13301
|
id: Scalars['ID']['input'];
|
|
13290
13302
|
};
|
|
@@ -15600,6 +15612,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
15600
15612
|
links?: InputMaybe<Array<CreateCompassLinkInput>>;
|
|
15601
15613
|
name: Scalars['String']['input'];
|
|
15602
15614
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
15615
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
15603
15616
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
15604
15617
|
type?: InputMaybe<CompassComponentType>;
|
|
15605
15618
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -19275,6 +19288,10 @@ export declare type EarliestViewViewedForUser = {
|
|
|
19275
19288
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
19276
19289
|
};
|
|
19277
19290
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
19291
|
+
export declare type EcosystemAppInstallationOverridesInput = {
|
|
19292
|
+
licensingMode?: InputMaybe<EcosystemLicensingMode>;
|
|
19293
|
+
usersWithAccess?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19294
|
+
};
|
|
19278
19295
|
export declare type EcosystemAppNetworkEgressPermission = {
|
|
19279
19296
|
__typename?: 'EcosystemAppNetworkEgressPermission';
|
|
19280
19297
|
addresses: Array<Scalars['String']['output']>;
|
|
@@ -19389,6 +19406,9 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
19389
19406
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
19390
19407
|
id: Scalars['ID']['output'];
|
|
19391
19408
|
};
|
|
19409
|
+
export declare enum EcosystemLicensingMode {
|
|
19410
|
+
UserAccess = "USER_ACCESS"
|
|
19411
|
+
}
|
|
19392
19412
|
export declare type EcosystemMutation = {
|
|
19393
19413
|
__typename?: 'EcosystemMutation';
|
|
19394
19414
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
@@ -36749,7 +36769,7 @@ export declare type GrowthUnifiedProfileSiteDetails = {
|
|
|
36749
36769
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
36750
36770
|
hasAdminAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
36751
36771
|
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProductDetails>>>;
|
|
36752
|
-
siteCreatedAt?: Maybe<Scalars['
|
|
36772
|
+
siteCreatedAt?: Maybe<Scalars['String']['output']>;
|
|
36753
36773
|
url?: Maybe<Scalars['String']['output']>;
|
|
36754
36774
|
};
|
|
36755
36775
|
export declare enum GrowthUnifiedProfileTeamType {
|
|
@@ -37192,7 +37212,7 @@ export declare type HelpCenterNameInput = {
|
|
|
37192
37212
|
export declare type HelpCenterPermissionSettings = {
|
|
37193
37213
|
__typename?: 'HelpCenterPermissionSettings';
|
|
37194
37214
|
accessControlType: HelpCenterAccessControlType;
|
|
37195
|
-
allowedAccessGroups?: Maybe<Array<
|
|
37215
|
+
allowedAccessGroups?: Maybe<Array<Scalars['String']['output']>>;
|
|
37196
37216
|
};
|
|
37197
37217
|
export declare type HelpCenterPermissionSettingsInput = {
|
|
37198
37218
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -40049,6 +40069,7 @@ export declare type JiraAutodevJob = {
|
|
|
40049
40069
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
40050
40070
|
id: Scalars['ID']['output'];
|
|
40051
40071
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
40072
|
+
jobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
40052
40073
|
logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
40053
40074
|
logs?: Maybe<DevAiAutodevLogConnection>;
|
|
40054
40075
|
phase?: Maybe<JiraAutodevPhase>;
|
|
@@ -40060,6 +40081,9 @@ export declare type JiraAutodevJob = {
|
|
|
40060
40081
|
status?: Maybe<JiraAutodevStatus>;
|
|
40061
40082
|
statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
|
|
40062
40083
|
};
|
|
40084
|
+
export declare type JiraAutodevJobJobLogsArgs = {
|
|
40085
|
+
cloudId: Scalars['ID']['input'];
|
|
40086
|
+
};
|
|
40063
40087
|
export declare type JiraAutodevJobConnection = {
|
|
40064
40088
|
__typename?: 'JiraAutodevJobConnection';
|
|
40065
40089
|
edges?: Maybe<Array<Maybe<JiraAutodevJobEdge>>>;
|
|
@@ -46196,6 +46220,7 @@ export declare type JiraMutation = {
|
|
|
46196
46220
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
46197
46221
|
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
46198
46222
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
46223
|
+
saveBusinessBoardSettings?: Maybe<JiraWorkManagementBoardSettingsPayload>;
|
|
46199
46224
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
46200
46225
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
46201
46226
|
scheduleBulkExecuteProjectCleanupRecommendations?: Maybe<JiraBulkCleanupProjectsPayload>;
|
|
@@ -46537,6 +46562,9 @@ export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
46537
46562
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
46538
46563
|
id: Scalars['ID']['input'];
|
|
46539
46564
|
};
|
|
46565
|
+
export declare type JiraMutationSaveBusinessBoardSettingsArgs = {
|
|
46566
|
+
input: JiraWorkManagementBoardSettingsInput;
|
|
46567
|
+
};
|
|
46540
46568
|
export declare type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
46541
46569
|
input: JiraVersionDetailsCollapsedUisInput;
|
|
46542
46570
|
};
|
|
@@ -46852,6 +46880,7 @@ export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload
|
|
|
46852
46880
|
};
|
|
46853
46881
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
46854
46882
|
naturalLanguageInput: Scalars['String']['input'];
|
|
46883
|
+
searchContext?: InputMaybe<JiraSearchContextInput>;
|
|
46855
46884
|
};
|
|
46856
46885
|
export declare type JiraNavigationItem = {
|
|
46857
46886
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -50292,6 +50321,9 @@ export declare type JiraScreenTabLayoutItemEdge = {
|
|
|
50292
50321
|
cursor: Scalars['String']['output'];
|
|
50293
50322
|
node?: Maybe<JiraScreenTabLayoutItem>;
|
|
50294
50323
|
};
|
|
50324
|
+
export declare type JiraSearchContextInput = {
|
|
50325
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
50326
|
+
};
|
|
50295
50327
|
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraIssue | JiraPlan | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
|
|
50296
50328
|
export declare type JiraSearchableEntityConnection = {
|
|
50297
50329
|
__typename?: 'JiraSearchableEntityConnection';
|
|
@@ -51102,6 +51134,7 @@ export declare type JiraServiceManagementRequestTypeCategoryConnection = {
|
|
|
51102
51134
|
export declare type JiraServiceManagementRequestTypeCategoryDefaultPayload = Payload & {
|
|
51103
51135
|
__typename?: 'JiraServiceManagementRequestTypeCategoryDefaultPayload';
|
|
51104
51136
|
errors?: Maybe<Array<MutationError>>;
|
|
51137
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
51105
51138
|
success: Scalars['Boolean']['output'];
|
|
51106
51139
|
};
|
|
51107
51140
|
export declare type JiraServiceManagementRequestTypeCategoryEdge = {
|
|
@@ -51179,6 +51212,7 @@ export declare type JiraServiceManagementRequestTypePractice = {
|
|
|
51179
51212
|
export declare type JiraServiceManagementRequestTypePreviewField = JiraServiceManagementAttachmentPreviewField | JiraServiceManagementDatePreviewField | JiraServiceManagementDateTimePreviewField | JiraServiceManagementDueDatePreviewField | JiraServiceManagementMultiCheckboxesPreviewField | JiraServiceManagementMultiSelectPreviewField | JiraServiceManagementMultiServicePickerPreviewField | JiraServiceManagementMultiUserPickerPreviewField | JiraServiceManagementPeoplePreviewField | JiraServiceManagementSelectPreviewField | JiraServiceManagementTextAreaPreviewField | JiraServiceManagementTextPreviewField | JiraServiceManagementUnknownPreviewField;
|
|
51180
51213
|
export declare type JiraServiceManagementRequestTypeTemplate = {
|
|
51181
51214
|
__typename?: 'JiraServiceManagementRequestTypeTemplate';
|
|
51215
|
+
category?: Maybe<JiraServiceManagementRequestTypeTemplateOotbCategory>;
|
|
51182
51216
|
description?: Maybe<Scalars['String']['output']>;
|
|
51183
51217
|
formTemplateInternalId: Scalars['String']['output'];
|
|
51184
51218
|
groups?: Maybe<Array<JiraServiceManagementRequestTypeTemplateGroup>>;
|
|
@@ -51200,6 +51234,11 @@ export declare type JiraServiceManagementRequestTypeTemplateGroup = {
|
|
|
51200
51234
|
groupKey: Scalars['String']['output'];
|
|
51201
51235
|
name?: Maybe<Scalars['String']['output']>;
|
|
51202
51236
|
};
|
|
51237
|
+
export declare type JiraServiceManagementRequestTypeTemplateOotbCategory = {
|
|
51238
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplateOOTBCategory';
|
|
51239
|
+
categoryKey: Scalars['String']['output'];
|
|
51240
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
51241
|
+
};
|
|
51203
51242
|
export declare type JiraServiceManagementRequestTypeTemplateRequestTypeGroup = {
|
|
51204
51243
|
__typename?: 'JiraServiceManagementRequestTypeTemplateRequestTypeGroup';
|
|
51205
51244
|
requestTypeGroupInternalId: Scalars['String']['output'];
|
|
@@ -53880,6 +53919,15 @@ export declare type JiraWorkManagementBackgroundUploadToken = {
|
|
|
53880
53919
|
tokenDurationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
53881
53920
|
};
|
|
53882
53921
|
export declare type JiraWorkManagementBackgroundUploadTokenResult = JiraWorkManagementBackgroundUploadToken | QueryError;
|
|
53922
|
+
export declare type JiraWorkManagementBoardSettingsInput = {
|
|
53923
|
+
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
53924
|
+
projectId: Scalars['ID']['input'];
|
|
53925
|
+
};
|
|
53926
|
+
export declare type JiraWorkManagementBoardSettingsPayload = Payload & {
|
|
53927
|
+
__typename?: 'JiraWorkManagementBoardSettingsPayload';
|
|
53928
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53929
|
+
success: Scalars['Boolean']['output'];
|
|
53930
|
+
};
|
|
53883
53931
|
export declare type JiraWorkManagementChildSummary = {
|
|
53884
53932
|
__typename?: 'JiraWorkManagementChildSummary';
|
|
53885
53933
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -56280,6 +56328,7 @@ export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse =
|
|
|
56280
56328
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
56281
56329
|
success: Scalars['Boolean']['output'];
|
|
56282
56330
|
};
|
|
56331
|
+
export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
56283
56332
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
56284
56333
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
56285
56334
|
body: Scalars['String']['output'];
|
|
@@ -56608,7 +56657,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
56608
56657
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
56609
56658
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationResponse>;
|
|
56610
56659
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56611
|
-
deleteAppVersion?: Maybe<
|
|
56660
|
+
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
56612
56661
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
56613
56662
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56614
56663
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -56915,6 +56964,7 @@ export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
|
56915
56964
|
};
|
|
56916
56965
|
export declare type MarketplaceConsoleServerVersionPublicChecks = {
|
|
56917
56966
|
__typename?: 'MarketplaceConsoleServerVersionPublicChecks';
|
|
56967
|
+
isCompatibleWithFeCruOnly: Scalars['Boolean']['output'];
|
|
56918
56968
|
publicServerVersionExists: Scalars['Boolean']['output'];
|
|
56919
56969
|
serverVersionHasDCCounterpart: Scalars['Boolean']['output'];
|
|
56920
56970
|
shouldStopNewPublicServerVersions: Scalars['Boolean']['output'];
|
|
@@ -62319,7 +62369,7 @@ export declare type Query = {
|
|
|
62319
62369
|
pricings: ContentPlatformPricingSearchConnection;
|
|
62320
62370
|
productListing?: Maybe<ProductListingResult>;
|
|
62321
62371
|
productListings: Array<ProductListingResult>;
|
|
62322
|
-
radar_fieldValues:
|
|
62372
|
+
radar_fieldValues: RadarFieldValueConnectionResult;
|
|
62323
62373
|
radar_positions: RadarPositionConnectionResult;
|
|
62324
62374
|
radar_workspace: RadarWorkspace;
|
|
62325
62375
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
@@ -63925,6 +63975,7 @@ export declare enum RadarFieldType {
|
|
|
63925
63975
|
Url = "URL"
|
|
63926
63976
|
}
|
|
63927
63977
|
export declare type RadarFieldValue = RadarBooleanFieldValue | RadarDateFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
63978
|
+
export declare type RadarFieldValueConnectionResult = RadarError | RadarFieldValuesConnection;
|
|
63928
63979
|
export declare type RadarFieldValueIdPair = {
|
|
63929
63980
|
__typename?: 'RadarFieldValueIdPair';
|
|
63930
63981
|
fieldId: Scalars['ID']['output'];
|
|
@@ -66338,6 +66389,12 @@ export declare type ShepherdAlertEdge = {
|
|
|
66338
66389
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
66339
66390
|
node?: Maybe<ShepherdAlert>;
|
|
66340
66391
|
};
|
|
66392
|
+
export declare type ShepherdAlertExports = {
|
|
66393
|
+
__typename?: 'ShepherdAlertExports';
|
|
66394
|
+
data?: Maybe<Array<Maybe<Array<Scalars['String']['output']>>>>;
|
|
66395
|
+
success: Scalars['Boolean']['output'];
|
|
66396
|
+
};
|
|
66397
|
+
export declare type ShepherdAlertExportsResult = QueryError | ShepherdAlertExports;
|
|
66341
66398
|
export declare type ShepherdAlertMetaData = {
|
|
66342
66399
|
__typename?: 'ShepherdAlertMetaData';
|
|
66343
66400
|
dspList?: Maybe<ShepherdDspListMetadata>;
|
|
@@ -66345,11 +66402,15 @@ export declare type ShepherdAlertMetaData = {
|
|
|
66345
66402
|
};
|
|
66346
66403
|
export declare type ShepherdAlertQueries = {
|
|
66347
66404
|
__typename?: 'ShepherdAlertQueries';
|
|
66405
|
+
alertExports?: Maybe<ShepherdAlertExportsResult>;
|
|
66348
66406
|
alertSnippets?: Maybe<ShepherdAlertSnippetResult>;
|
|
66349
66407
|
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
66350
66408
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
66351
66409
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
66352
66410
|
};
|
|
66411
|
+
export declare type ShepherdAlertQueriesAlertExportsArgs = {
|
|
66412
|
+
id: Scalars['ID']['input'];
|
|
66413
|
+
};
|
|
66353
66414
|
export declare type ShepherdAlertQueriesAlertSnippetsArgs = {
|
|
66354
66415
|
id: Scalars['ID']['input'];
|
|
66355
66416
|
};
|
|
@@ -66449,6 +66510,38 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
66449
66510
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
66450
66511
|
CreatedTunnel = "CREATED_TUNNEL",
|
|
66451
66512
|
CreatedUserProvisioning = "CREATED_USER_PROVISIONING",
|
|
66513
|
+
DataCenterAdminGroupDeleted = "DATA_CENTER_ADMIN_GROUP_DELETED",
|
|
66514
|
+
DataCenterAdminGroupPermissionAdded = "DATA_CENTER_ADMIN_GROUP_PERMISSION_ADDED",
|
|
66515
|
+
DataCenterAdminGroupPermissionDeleted = "DATA_CENTER_ADMIN_GROUP_PERMISSION_DELETED",
|
|
66516
|
+
DataCenterAdminUsernameChanged = "DATA_CENTER_ADMIN_USERNAME_CHANGED",
|
|
66517
|
+
DataCenterAdminUserAddedToGroup = "DATA_CENTER_ADMIN_USER_ADDED_TO_GROUP",
|
|
66518
|
+
DataCenterAdminUserAnonymized = "DATA_CENTER_ADMIN_USER_ANONYMIZED",
|
|
66519
|
+
DataCenterAdminUserDeletedFromGroup = "DATA_CENTER_ADMIN_USER_DELETED_FROM_GROUP",
|
|
66520
|
+
DataCenterAdminUserDetailsChanged = "DATA_CENTER_ADMIN_USER_DETAILS_CHANGED",
|
|
66521
|
+
DataCenterAdminUserLoggedInWithout_2Sv = "DATA_CENTER_ADMIN_USER_LOGGED_IN_WITHOUT_2SV",
|
|
66522
|
+
DataCenterAdminUserPasswordChanged = "DATA_CENTER_ADMIN_USER_PASSWORD_CHANGED",
|
|
66523
|
+
DataCenterAllowlistDisabled = "DATA_CENTER_ALLOWLIST_DISABLED",
|
|
66524
|
+
DataCenterAllowlistEnabled = "DATA_CENTER_ALLOWLIST_ENABLED",
|
|
66525
|
+
DataCenterAllowlistEntryAdded = "DATA_CENTER_ALLOWLIST_ENTRY_ADDED",
|
|
66526
|
+
DataCenterAllowlistEntryDeleted = "DATA_CENTER_ALLOWLIST_ENTRY_DELETED",
|
|
66527
|
+
DataCenterAllowlistEntryModified = "DATA_CENTER_ALLOWLIST_ENTRY_MODIFIED",
|
|
66528
|
+
DataCenterAnnouncementBannerAdded = "DATA_CENTER_ANNOUNCEMENT_BANNER_ADDED",
|
|
66529
|
+
DataCenterAnnouncementBannerDeleted = "DATA_CENTER_ANNOUNCEMENT_BANNER_DELETED",
|
|
66530
|
+
DataCenterAnnouncementBannerUpdated = "DATA_CENTER_ANNOUNCEMENT_BANNER_UPDATED",
|
|
66531
|
+
DataCenterAppInstalled = "DATA_CENTER_APP_INSTALLED",
|
|
66532
|
+
DataCenterAuditingConfigModified = "DATA_CENTER_AUDITING_CONFIG_MODIFIED",
|
|
66533
|
+
DataCenterAuthenticationMethodAdded = "DATA_CENTER_AUTHENTICATION_METHOD_ADDED",
|
|
66534
|
+
DataCenterAuthenticationMethodDeleted = "DATA_CENTER_AUTHENTICATION_METHOD_DELETED",
|
|
66535
|
+
DataCenterAuthenticationMethodModified = "DATA_CENTER_AUTHENTICATION_METHOD_MODIFIED",
|
|
66536
|
+
DataCenterBasicAuthenticationConfigurationDisabled = "DATA_CENTER_BASIC_AUTHENTICATION_CONFIGURATION_DISABLED",
|
|
66537
|
+
DataCenterBasicAuthenticationConfigurationEnabled = "DATA_CENTER_BASIC_AUTHENTICATION_CONFIGURATION_ENABLED",
|
|
66538
|
+
DataCenterConfigurationChanged = "DATA_CENTER_CONFIGURATION_CHANGED",
|
|
66539
|
+
DataCenterExportStarted = "DATA_CENTER_EXPORT_STARTED",
|
|
66540
|
+
DataCenterImportCompleted = "DATA_CENTER_IMPORT_COMPLETED",
|
|
66541
|
+
DataCenterUserAddedToSecurityGroup = "DATA_CENTER_USER_ADDED_TO_SECURITY_GROUP",
|
|
66542
|
+
DataCenterUserDeletedFromSecurityGroup = "DATA_CENTER_USER_DELETED_FROM_SECURITY_GROUP",
|
|
66543
|
+
DataCenterUserDirectoryAdded = "DATA_CENTER_USER_DIRECTORY_ADDED",
|
|
66544
|
+
DataCenterUserDirectoryDeleted = "DATA_CENTER_USER_DIRECTORY_DELETED",
|
|
66452
66545
|
DataSecurityPolicyActivated = "DATA_SECURITY_POLICY_ACTIVATED",
|
|
66453
66546
|
DataSecurityPolicyDeactivated = "DATA_SECURITY_POLICY_DEACTIVATED",
|
|
66454
66547
|
DataSecurityPolicyDeleted = "DATA_SECURITY_POLICY_DELETED",
|
|
@@ -67150,6 +67243,7 @@ export declare type ShepherdRelatedAlertType = {
|
|
|
67150
67243
|
product?: Maybe<ShepherdAtlassianProduct>;
|
|
67151
67244
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
67152
67245
|
title?: Maybe<ShepherdAlertTitle>;
|
|
67246
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
67153
67247
|
};
|
|
67154
67248
|
export declare type ShepherdRemediationAction = {
|
|
67155
67249
|
__typename?: 'ShepherdRemediationAction';
|
|
@@ -70348,6 +70442,7 @@ export declare type TrelloMember = Node & {
|
|
|
70348
70442
|
id: Scalars['ID']['output'];
|
|
70349
70443
|
inbox?: Maybe<TrelloInbox>;
|
|
70350
70444
|
initials?: Maybe<Scalars['String']['output']>;
|
|
70445
|
+
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
70351
70446
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
70352
70447
|
objectId: Scalars['ID']['output'];
|
|
70353
70448
|
planner?: Maybe<TrelloPlanner>;
|
|
@@ -71692,6 +71787,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
71692
71787
|
id: Scalars['ID']['input'];
|
|
71693
71788
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
71694
71789
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
71790
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
71695
71791
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
71696
71792
|
};
|
|
71697
71793
|
export declare type UpdateCompassComponentLinkInput = {
|