@forge/cli-shared 3.1.1-next.0 → 3.1.1-next.1
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
|
@@ -2288,6 +2288,15 @@ export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
|
2288
2288
|
errors?: Maybe<Array<MutationError>>;
|
|
2289
2289
|
createdMetricSource?: Maybe<CompassMetricSource>;
|
|
2290
2290
|
};
|
|
2291
|
+
export declare type CompassCreatePushEventInput = {
|
|
2292
|
+
displayName: Scalars['String'];
|
|
2293
|
+
lastUpdated: Scalars['DateTime'];
|
|
2294
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2295
|
+
description: Scalars['String'];
|
|
2296
|
+
url: Scalars['URL'];
|
|
2297
|
+
externalEventSourceId: Scalars['ID'];
|
|
2298
|
+
pushEventProperties: CompassPushEventInputProperties;
|
|
2299
|
+
};
|
|
2291
2300
|
export declare type CompassCreateTeamCheckinActionInput = {
|
|
2292
2301
|
actionText: Scalars['String'];
|
|
2293
2302
|
completed?: Maybe<Scalars['Boolean']>;
|
|
@@ -2592,6 +2601,7 @@ export declare type CompassEventInput = {
|
|
|
2592
2601
|
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
2593
2602
|
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2594
2603
|
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2604
|
+
push?: Maybe<CompassCreatePushEventInput>;
|
|
2595
2605
|
};
|
|
2596
2606
|
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
2597
2607
|
export declare type CompassEventTimeParameters = {
|
|
@@ -2605,7 +2615,8 @@ export declare enum CompassEventType {
|
|
|
2605
2615
|
Flag = "FLAG",
|
|
2606
2616
|
Alert = "ALERT",
|
|
2607
2617
|
Lifecycle = "LIFECYCLE",
|
|
2608
|
-
Custom = "CUSTOM"
|
|
2618
|
+
Custom = "CUSTOM",
|
|
2619
|
+
Push = "PUSH"
|
|
2609
2620
|
}
|
|
2610
2621
|
export declare type CompassEventsInEventSourceQuery = {
|
|
2611
2622
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -2961,6 +2972,30 @@ export declare type CompassMetricValuesTimeseries = {
|
|
|
2961
2972
|
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
2962
2973
|
};
|
|
2963
2974
|
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
2975
|
+
export declare type CompassPushEvent = CompassEvent & {
|
|
2976
|
+
__typename?: 'CompassPushEvent';
|
|
2977
|
+
eventType: CompassEventType;
|
|
2978
|
+
displayName: Scalars['String'];
|
|
2979
|
+
lastUpdated: Scalars['DateTime'];
|
|
2980
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2981
|
+
description?: Maybe<Scalars['String']>;
|
|
2982
|
+
url?: Maybe<Scalars['URL']>;
|
|
2983
|
+
pushEventProperties: CompassPushEventProperties;
|
|
2984
|
+
};
|
|
2985
|
+
export declare type CompassPushEventAuthorInput = {
|
|
2986
|
+
name?: Maybe<Scalars['String']>;
|
|
2987
|
+
email?: Maybe<Scalars['String']>;
|
|
2988
|
+
};
|
|
2989
|
+
export declare type CompassPushEventInputProperties = {
|
|
2990
|
+
id: Scalars['ID'];
|
|
2991
|
+
branchName: Scalars['String'];
|
|
2992
|
+
author?: Maybe<CompassPushEventAuthorInput>;
|
|
2993
|
+
};
|
|
2994
|
+
export declare type CompassPushEventProperties = {
|
|
2995
|
+
__typename?: 'CompassPushEventProperties';
|
|
2996
|
+
id: Scalars['ID'];
|
|
2997
|
+
branchName?: Maybe<Scalars['String']>;
|
|
2998
|
+
};
|
|
2964
2999
|
export declare type CompassQueryFieldFilter = {
|
|
2965
3000
|
name: Scalars['String'];
|
|
2966
3001
|
filter?: Maybe<CompassQueryFilter>;
|
|
@@ -14735,6 +14770,7 @@ export declare enum PolarisFieldType {
|
|
|
14735
14770
|
PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
|
|
14736
14771
|
PolarisIdeaNumberField = "PolarisIdeaNumberField",
|
|
14737
14772
|
PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
|
|
14773
|
+
PolarisIdeaIntervalField = "PolarisIdeaIntervalField",
|
|
14738
14774
|
PolarisIdeaPlayField = "PolarisIdeaPlayField"
|
|
14739
14775
|
}
|
|
14740
14776
|
export declare type PolarisFilterInput = {
|
|
@@ -14914,6 +14950,25 @@ export declare type PolarisIdeaFieldOption = {
|
|
|
14914
14950
|
label: Scalars['String'];
|
|
14915
14951
|
weight: Scalars['Int'];
|
|
14916
14952
|
};
|
|
14953
|
+
export declare type PolarisIdeaIntervalField = PolarisIdeaField & {
|
|
14954
|
+
__typename?: 'PolarisIdeaIntervalField';
|
|
14955
|
+
id: Scalars['ID'];
|
|
14956
|
+
fieldId?: Maybe<Scalars['Int']>;
|
|
14957
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
14958
|
+
label: Scalars['String'];
|
|
14959
|
+
editable: Scalars['Boolean'];
|
|
14960
|
+
sortable: Scalars['Boolean'];
|
|
14961
|
+
groupable: Scalars['Boolean'];
|
|
14962
|
+
linearizable: Scalars['Boolean'];
|
|
14963
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
14964
|
+
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
14965
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
14966
|
+
formula?: Maybe<Scalars['JSON']>;
|
|
14967
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
14968
|
+
description?: Maybe<Scalars['String']>;
|
|
14969
|
+
emoji?: Maybe<Scalars['String']>;
|
|
14970
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
14971
|
+
};
|
|
14917
14972
|
export declare type PolarisIdeaIssueCommentsField = PolarisIdeaField & {
|
|
14918
14973
|
__typename?: 'PolarisIdeaIssueCommentsField';
|
|
14919
14974
|
id: Scalars['ID'];
|
|
@@ -15812,6 +15867,7 @@ export declare type QueryReleaseNotesArgs = {
|
|
|
15812
15867
|
after?: Maybe<Scalars['String']>;
|
|
15813
15868
|
first?: Maybe<Scalars['Int']>;
|
|
15814
15869
|
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
15870
|
+
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
15815
15871
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
15816
15872
|
orderBy?: Maybe<Scalars['String']>;
|
|
15817
15873
|
};
|
|
@@ -17441,8 +17497,13 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
17441
17497
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
17442
17498
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
17443
17499
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
17500
|
+
IpAllowlistPolicyCreated = "IP_ALLOWLIST_POLICY_CREATED",
|
|
17501
|
+
IpAllowlistPolicyDeleted = "IP_ALLOWLIST_POLICY_DELETED",
|
|
17502
|
+
IpAllowlistPolicyDisabled = "IP_ALLOWLIST_POLICY_DISABLED",
|
|
17503
|
+
IpAllowlistPolicyUpdated = "IP_ALLOWLIST_POLICY_UPDATED",
|
|
17444
17504
|
TokenCreated = "TOKEN_CREATED",
|
|
17445
17505
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
17506
|
+
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
17446
17507
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
17447
17508
|
UserRevokedRole = "USER_REVOKED_ROLE"
|
|
17448
17509
|
}
|