@forge/cli-shared 6.1.0-next.7 → 6.1.0-next.8
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 +11 -0
- package/out/graphql/graphql-types.d.ts +87 -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,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.1.0-next.8
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 134e5c7: Migrating forge-cli-enable-atlas-product-support from LD to Statsig
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [7ba2a03]
|
|
12
|
+
- @forge/manifest@7.10.0-next.7
|
|
13
|
+
|
|
3
14
|
## 6.1.0-next.7
|
|
4
15
|
|
|
5
16
|
### 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>>>;
|
|
@@ -46852,6 +46876,7 @@ export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload
|
|
|
46852
46876
|
};
|
|
46853
46877
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
46854
46878
|
naturalLanguageInput: Scalars['String']['input'];
|
|
46879
|
+
searchContext?: InputMaybe<JiraSearchContextInput>;
|
|
46855
46880
|
};
|
|
46856
46881
|
export declare type JiraNavigationItem = {
|
|
46857
46882
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -50292,6 +50317,9 @@ export declare type JiraScreenTabLayoutItemEdge = {
|
|
|
50292
50317
|
cursor: Scalars['String']['output'];
|
|
50293
50318
|
node?: Maybe<JiraScreenTabLayoutItem>;
|
|
50294
50319
|
};
|
|
50320
|
+
export declare type JiraSearchContextInput = {
|
|
50321
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
50322
|
+
};
|
|
50295
50323
|
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraIssue | JiraPlan | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
|
|
50296
50324
|
export declare type JiraSearchableEntityConnection = {
|
|
50297
50325
|
__typename?: 'JiraSearchableEntityConnection';
|
|
@@ -51102,6 +51130,7 @@ export declare type JiraServiceManagementRequestTypeCategoryConnection = {
|
|
|
51102
51130
|
export declare type JiraServiceManagementRequestTypeCategoryDefaultPayload = Payload & {
|
|
51103
51131
|
__typename?: 'JiraServiceManagementRequestTypeCategoryDefaultPayload';
|
|
51104
51132
|
errors?: Maybe<Array<MutationError>>;
|
|
51133
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
51105
51134
|
success: Scalars['Boolean']['output'];
|
|
51106
51135
|
};
|
|
51107
51136
|
export declare type JiraServiceManagementRequestTypeCategoryEdge = {
|
|
@@ -51179,6 +51208,7 @@ export declare type JiraServiceManagementRequestTypePractice = {
|
|
|
51179
51208
|
export declare type JiraServiceManagementRequestTypePreviewField = JiraServiceManagementAttachmentPreviewField | JiraServiceManagementDatePreviewField | JiraServiceManagementDateTimePreviewField | JiraServiceManagementDueDatePreviewField | JiraServiceManagementMultiCheckboxesPreviewField | JiraServiceManagementMultiSelectPreviewField | JiraServiceManagementMultiServicePickerPreviewField | JiraServiceManagementMultiUserPickerPreviewField | JiraServiceManagementPeoplePreviewField | JiraServiceManagementSelectPreviewField | JiraServiceManagementTextAreaPreviewField | JiraServiceManagementTextPreviewField | JiraServiceManagementUnknownPreviewField;
|
|
51180
51209
|
export declare type JiraServiceManagementRequestTypeTemplate = {
|
|
51181
51210
|
__typename?: 'JiraServiceManagementRequestTypeTemplate';
|
|
51211
|
+
category?: Maybe<JiraServiceManagementRequestTypeTemplateOotbCategory>;
|
|
51182
51212
|
description?: Maybe<Scalars['String']['output']>;
|
|
51183
51213
|
formTemplateInternalId: Scalars['String']['output'];
|
|
51184
51214
|
groups?: Maybe<Array<JiraServiceManagementRequestTypeTemplateGroup>>;
|
|
@@ -51200,6 +51230,11 @@ export declare type JiraServiceManagementRequestTypeTemplateGroup = {
|
|
|
51200
51230
|
groupKey: Scalars['String']['output'];
|
|
51201
51231
|
name?: Maybe<Scalars['String']['output']>;
|
|
51202
51232
|
};
|
|
51233
|
+
export declare type JiraServiceManagementRequestTypeTemplateOotbCategory = {
|
|
51234
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplateOOTBCategory';
|
|
51235
|
+
categoryKey: Scalars['String']['output'];
|
|
51236
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
51237
|
+
};
|
|
51203
51238
|
export declare type JiraServiceManagementRequestTypeTemplateRequestTypeGroup = {
|
|
51204
51239
|
__typename?: 'JiraServiceManagementRequestTypeTemplateRequestTypeGroup';
|
|
51205
51240
|
requestTypeGroupInternalId: Scalars['String']['output'];
|
|
@@ -56280,6 +56315,7 @@ export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse =
|
|
|
56280
56315
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
56281
56316
|
success: Scalars['Boolean']['output'];
|
|
56282
56317
|
};
|
|
56318
|
+
export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
56283
56319
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
56284
56320
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
56285
56321
|
body: Scalars['String']['output'];
|
|
@@ -56608,7 +56644,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
56608
56644
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
56609
56645
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationResponse>;
|
|
56610
56646
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56611
|
-
deleteAppVersion?: Maybe<
|
|
56647
|
+
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
56612
56648
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
56613
56649
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56614
56650
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -56915,6 +56951,7 @@ export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
|
56915
56951
|
};
|
|
56916
56952
|
export declare type MarketplaceConsoleServerVersionPublicChecks = {
|
|
56917
56953
|
__typename?: 'MarketplaceConsoleServerVersionPublicChecks';
|
|
56954
|
+
isCompatibleWithFeCruOnly: Scalars['Boolean']['output'];
|
|
56918
56955
|
publicServerVersionExists: Scalars['Boolean']['output'];
|
|
56919
56956
|
serverVersionHasDCCounterpart: Scalars['Boolean']['output'];
|
|
56920
56957
|
shouldStopNewPublicServerVersions: Scalars['Boolean']['output'];
|
|
@@ -62319,7 +62356,7 @@ export declare type Query = {
|
|
|
62319
62356
|
pricings: ContentPlatformPricingSearchConnection;
|
|
62320
62357
|
productListing?: Maybe<ProductListingResult>;
|
|
62321
62358
|
productListings: Array<ProductListingResult>;
|
|
62322
|
-
radar_fieldValues:
|
|
62359
|
+
radar_fieldValues: RadarFieldValueConnectionResult;
|
|
62323
62360
|
radar_positions: RadarPositionConnectionResult;
|
|
62324
62361
|
radar_workspace: RadarWorkspace;
|
|
62325
62362
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
@@ -63925,6 +63962,7 @@ export declare enum RadarFieldType {
|
|
|
63925
63962
|
Url = "URL"
|
|
63926
63963
|
}
|
|
63927
63964
|
export declare type RadarFieldValue = RadarBooleanFieldValue | RadarDateFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
63965
|
+
export declare type RadarFieldValueConnectionResult = RadarError | RadarFieldValuesConnection;
|
|
63928
63966
|
export declare type RadarFieldValueIdPair = {
|
|
63929
63967
|
__typename?: 'RadarFieldValueIdPair';
|
|
63930
63968
|
fieldId: Scalars['ID']['output'];
|
|
@@ -66338,6 +66376,12 @@ export declare type ShepherdAlertEdge = {
|
|
|
66338
66376
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
66339
66377
|
node?: Maybe<ShepherdAlert>;
|
|
66340
66378
|
};
|
|
66379
|
+
export declare type ShepherdAlertExports = {
|
|
66380
|
+
__typename?: 'ShepherdAlertExports';
|
|
66381
|
+
data?: Maybe<Array<Maybe<Array<Scalars['String']['output']>>>>;
|
|
66382
|
+
success: Scalars['Boolean']['output'];
|
|
66383
|
+
};
|
|
66384
|
+
export declare type ShepherdAlertExportsResult = QueryError | ShepherdAlertExports;
|
|
66341
66385
|
export declare type ShepherdAlertMetaData = {
|
|
66342
66386
|
__typename?: 'ShepherdAlertMetaData';
|
|
66343
66387
|
dspList?: Maybe<ShepherdDspListMetadata>;
|
|
@@ -66345,11 +66389,15 @@ export declare type ShepherdAlertMetaData = {
|
|
|
66345
66389
|
};
|
|
66346
66390
|
export declare type ShepherdAlertQueries = {
|
|
66347
66391
|
__typename?: 'ShepherdAlertQueries';
|
|
66392
|
+
alertExports?: Maybe<ShepherdAlertExportsResult>;
|
|
66348
66393
|
alertSnippets?: Maybe<ShepherdAlertSnippetResult>;
|
|
66349
66394
|
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
66350
66395
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
66351
66396
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
66352
66397
|
};
|
|
66398
|
+
export declare type ShepherdAlertQueriesAlertExportsArgs = {
|
|
66399
|
+
id: Scalars['ID']['input'];
|
|
66400
|
+
};
|
|
66353
66401
|
export declare type ShepherdAlertQueriesAlertSnippetsArgs = {
|
|
66354
66402
|
id: Scalars['ID']['input'];
|
|
66355
66403
|
};
|
|
@@ -66449,6 +66497,38 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
66449
66497
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
66450
66498
|
CreatedTunnel = "CREATED_TUNNEL",
|
|
66451
66499
|
CreatedUserProvisioning = "CREATED_USER_PROVISIONING",
|
|
66500
|
+
DataCenterAdminGroupDeleted = "DATA_CENTER_ADMIN_GROUP_DELETED",
|
|
66501
|
+
DataCenterAdminGroupPermissionAdded = "DATA_CENTER_ADMIN_GROUP_PERMISSION_ADDED",
|
|
66502
|
+
DataCenterAdminGroupPermissionDeleted = "DATA_CENTER_ADMIN_GROUP_PERMISSION_DELETED",
|
|
66503
|
+
DataCenterAdminUsernameChanged = "DATA_CENTER_ADMIN_USERNAME_CHANGED",
|
|
66504
|
+
DataCenterAdminUserAddedToGroup = "DATA_CENTER_ADMIN_USER_ADDED_TO_GROUP",
|
|
66505
|
+
DataCenterAdminUserAnonymized = "DATA_CENTER_ADMIN_USER_ANONYMIZED",
|
|
66506
|
+
DataCenterAdminUserDeletedFromGroup = "DATA_CENTER_ADMIN_USER_DELETED_FROM_GROUP",
|
|
66507
|
+
DataCenterAdminUserDetailsChanged = "DATA_CENTER_ADMIN_USER_DETAILS_CHANGED",
|
|
66508
|
+
DataCenterAdminUserLoggedInWithout_2Sv = "DATA_CENTER_ADMIN_USER_LOGGED_IN_WITHOUT_2SV",
|
|
66509
|
+
DataCenterAdminUserPasswordChanged = "DATA_CENTER_ADMIN_USER_PASSWORD_CHANGED",
|
|
66510
|
+
DataCenterAllowlistDisabled = "DATA_CENTER_ALLOWLIST_DISABLED",
|
|
66511
|
+
DataCenterAllowlistEnabled = "DATA_CENTER_ALLOWLIST_ENABLED",
|
|
66512
|
+
DataCenterAllowlistEntryAdded = "DATA_CENTER_ALLOWLIST_ENTRY_ADDED",
|
|
66513
|
+
DataCenterAllowlistEntryDeleted = "DATA_CENTER_ALLOWLIST_ENTRY_DELETED",
|
|
66514
|
+
DataCenterAllowlistEntryModified = "DATA_CENTER_ALLOWLIST_ENTRY_MODIFIED",
|
|
66515
|
+
DataCenterAnnouncementBannerAdded = "DATA_CENTER_ANNOUNCEMENT_BANNER_ADDED",
|
|
66516
|
+
DataCenterAnnouncementBannerDeleted = "DATA_CENTER_ANNOUNCEMENT_BANNER_DELETED",
|
|
66517
|
+
DataCenterAnnouncementBannerUpdated = "DATA_CENTER_ANNOUNCEMENT_BANNER_UPDATED",
|
|
66518
|
+
DataCenterAppInstalled = "DATA_CENTER_APP_INSTALLED",
|
|
66519
|
+
DataCenterAuditingConfigModified = "DATA_CENTER_AUDITING_CONFIG_MODIFIED",
|
|
66520
|
+
DataCenterAuthenticationMethodAdded = "DATA_CENTER_AUTHENTICATION_METHOD_ADDED",
|
|
66521
|
+
DataCenterAuthenticationMethodDeleted = "DATA_CENTER_AUTHENTICATION_METHOD_DELETED",
|
|
66522
|
+
DataCenterAuthenticationMethodModified = "DATA_CENTER_AUTHENTICATION_METHOD_MODIFIED",
|
|
66523
|
+
DataCenterBasicAuthenticationConfigurationDisabled = "DATA_CENTER_BASIC_AUTHENTICATION_CONFIGURATION_DISABLED",
|
|
66524
|
+
DataCenterBasicAuthenticationConfigurationEnabled = "DATA_CENTER_BASIC_AUTHENTICATION_CONFIGURATION_ENABLED",
|
|
66525
|
+
DataCenterConfigurationChanged = "DATA_CENTER_CONFIGURATION_CHANGED",
|
|
66526
|
+
DataCenterExportStarted = "DATA_CENTER_EXPORT_STARTED",
|
|
66527
|
+
DataCenterImportCompleted = "DATA_CENTER_IMPORT_COMPLETED",
|
|
66528
|
+
DataCenterUserAddedToSecurityGroup = "DATA_CENTER_USER_ADDED_TO_SECURITY_GROUP",
|
|
66529
|
+
DataCenterUserDeletedFromSecurityGroup = "DATA_CENTER_USER_DELETED_FROM_SECURITY_GROUP",
|
|
66530
|
+
DataCenterUserDirectoryAdded = "DATA_CENTER_USER_DIRECTORY_ADDED",
|
|
66531
|
+
DataCenterUserDirectoryDeleted = "DATA_CENTER_USER_DIRECTORY_DELETED",
|
|
66452
66532
|
DataSecurityPolicyActivated = "DATA_SECURITY_POLICY_ACTIVATED",
|
|
66453
66533
|
DataSecurityPolicyDeactivated = "DATA_SECURITY_POLICY_DEACTIVATED",
|
|
66454
66534
|
DataSecurityPolicyDeleted = "DATA_SECURITY_POLICY_DELETED",
|
|
@@ -67150,6 +67230,7 @@ export declare type ShepherdRelatedAlertType = {
|
|
|
67150
67230
|
product?: Maybe<ShepherdAtlassianProduct>;
|
|
67151
67231
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
67152
67232
|
title?: Maybe<ShepherdAlertTitle>;
|
|
67233
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
67153
67234
|
};
|
|
67154
67235
|
export declare type ShepherdRemediationAction = {
|
|
67155
67236
|
__typename?: 'ShepherdRemediationAction';
|
|
@@ -70348,6 +70429,7 @@ export declare type TrelloMember = Node & {
|
|
|
70348
70429
|
id: Scalars['ID']['output'];
|
|
70349
70430
|
inbox?: Maybe<TrelloInbox>;
|
|
70350
70431
|
initials?: Maybe<Scalars['String']['output']>;
|
|
70432
|
+
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
70351
70433
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
70352
70434
|
objectId: Scalars['ID']['output'];
|
|
70353
70435
|
planner?: Maybe<TrelloPlanner>;
|
|
@@ -71692,6 +71774,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
71692
71774
|
id: Scalars['ID']['input'];
|
|
71693
71775
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
71694
71776
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
71777
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
71695
71778
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
71696
71779
|
};
|
|
71697
71780
|
export declare type UpdateCompassComponentLinkInput = {
|