@forge/cli-shared 3.1.1-next.0 → 3.1.1-next.2

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.1.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0871a3b]
8
+ - @forge/manifest@4.3.0-next.2
9
+
10
+ ## 3.1.1-next.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [f8d567a3]
15
+ - @forge/manifest@4.2.1-next.1
16
+
3
17
  ## 3.1.1-next.0
4
18
 
5
19
  ### Patch Changes
@@ -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>;
@@ -6148,12 +6183,26 @@ export declare type DevOpsTool = Node & {
6148
6183
  integration?: Maybe<DevOpsToolIntegration>;
6149
6184
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
6150
6185
  auth?: Maybe<DevOpsToolAuth>;
6186
+ jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
6151
6187
  };
6152
6188
  export declare type DevOpsToolNamespacesArgs = {
6153
6189
  query?: Maybe<Scalars['String']>;
6154
6190
  first?: Maybe<Scalars['Int']>;
6155
6191
  after?: Maybe<Scalars['String']>;
6156
6192
  };
6193
+ export declare type DevOpsToolJiraProjectRelationshipsArgs = {
6194
+ jiraProjectId?: Maybe<Scalars['ID']>;
6195
+ first?: Maybe<Scalars['Int']>;
6196
+ after?: Maybe<Scalars['String']>;
6197
+ filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
6198
+ };
6199
+ export declare type DevOpsToolAppLinks = {
6200
+ __typename?: 'DevOpsToolAppLinks';
6201
+ self?: Maybe<Scalars['String']>;
6202
+ manage?: Maybe<Scalars['String']>;
6203
+ configure?: Maybe<Scalars['String']>;
6204
+ getStarted?: Maybe<Scalars['String']>;
6205
+ };
6157
6206
  export declare type DevOpsToolAuth = DevOpsToolDefaultAuth | DevOpsToolOAuth;
6158
6207
  export declare type DevOpsToolAvatar = {
6159
6208
  __typename?: 'DevOpsToolAvatar';
@@ -6292,6 +6341,7 @@ export declare type DevOpsToolIntegrationApp = {
6292
6341
  marketplaceType: Scalars['String'];
6293
6342
  installed: Scalars['Boolean'];
6294
6343
  iconUrl?: Maybe<Scalars['String']>;
6344
+ links?: Maybe<DevOpsToolAppLinks>;
6295
6345
  };
6296
6346
  export declare type DevOpsToolIntegrationProduct = {
6297
6347
  __typename?: 'DevOpsToolIntegrationProduct';
@@ -13332,6 +13382,7 @@ export declare type MarketplaceApp = {
13332
13382
  programs?: Maybe<MarketplaceAppPrograms>;
13333
13383
  marketingLabels: Array<Scalars['String']>;
13334
13384
  googleAnalyticsId?: Maybe<Scalars['String']>;
13385
+ googleAnalytics4Id?: Maybe<Scalars['String']>;
13335
13386
  segmentWriteKey?: Maybe<Scalars['String']>;
13336
13387
  categories: Array<MarketplaceAppCategory>;
13337
13388
  jsdWidgetKey?: Maybe<Scalars['String']>;
@@ -14735,6 +14786,7 @@ export declare enum PolarisFieldType {
14735
14786
  PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
14736
14787
  PolarisIdeaNumberField = "PolarisIdeaNumberField",
14737
14788
  PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
14789
+ PolarisIdeaIntervalField = "PolarisIdeaIntervalField",
14738
14790
  PolarisIdeaPlayField = "PolarisIdeaPlayField"
14739
14791
  }
14740
14792
  export declare type PolarisFilterInput = {
@@ -14914,6 +14966,25 @@ export declare type PolarisIdeaFieldOption = {
14914
14966
  label: Scalars['String'];
14915
14967
  weight: Scalars['Int'];
14916
14968
  };
14969
+ export declare type PolarisIdeaIntervalField = PolarisIdeaField & {
14970
+ __typename?: 'PolarisIdeaIntervalField';
14971
+ id: Scalars['ID'];
14972
+ fieldId?: Maybe<Scalars['Int']>;
14973
+ fieldName?: Maybe<Scalars['String']>;
14974
+ label: Scalars['String'];
14975
+ editable: Scalars['Boolean'];
14976
+ sortable: Scalars['Boolean'];
14977
+ groupable: Scalars['Boolean'];
14978
+ linearizable: Scalars['Boolean'];
14979
+ defaultSortOrder?: Maybe<PolarisSortOrder>;
14980
+ jiraFieldKey?: Maybe<Scalars['String']>;
14981
+ decorations?: Maybe<Array<PolarisDecoration>>;
14982
+ formula?: Maybe<Scalars['JSON']>;
14983
+ presentation?: Maybe<PolarisPresentation>;
14984
+ description?: Maybe<Scalars['String']>;
14985
+ emoji?: Maybe<Scalars['String']>;
14986
+ builtin?: Maybe<BuiltinPolarisIdeaField>;
14987
+ };
14917
14988
  export declare type PolarisIdeaIssueCommentsField = PolarisIdeaField & {
14918
14989
  __typename?: 'PolarisIdeaIssueCommentsField';
14919
14990
  id: Scalars['ID'];
@@ -15812,6 +15883,8 @@ export declare type QueryReleaseNotesArgs = {
15812
15883
  after?: Maybe<Scalars['String']>;
15813
15884
  first?: Maybe<Scalars['Int']>;
15814
15885
  filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
15886
+ filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
15887
+ productFeatureFlags?: Maybe<Scalars['JSON']>;
15815
15888
  publishedOnly?: Maybe<Scalars['Boolean']>;
15816
15889
  orderBy?: Maybe<Scalars['String']>;
15817
15890
  };
@@ -17441,8 +17514,13 @@ export declare enum ShepherdAlertTemplateType {
17441
17514
  DeletedAuthPolicy = "DELETED_AUTH_POLICY",
17442
17515
  EnableScimSync = "ENABLE_SCIM_SYNC",
17443
17516
  InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
17517
+ IpAllowlistPolicyCreated = "IP_ALLOWLIST_POLICY_CREATED",
17518
+ IpAllowlistPolicyDeleted = "IP_ALLOWLIST_POLICY_DELETED",
17519
+ IpAllowlistPolicyDisabled = "IP_ALLOWLIST_POLICY_DISABLED",
17520
+ IpAllowlistPolicyUpdated = "IP_ALLOWLIST_POLICY_UPDATED",
17444
17521
  TokenCreated = "TOKEN_CREATED",
17445
17522
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
17523
+ UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
17446
17524
  UserGrantedRole = "USER_GRANTED_ROLE",
17447
17525
  UserRevokedRole = "USER_REVOKED_ROLE"
17448
17526
  }
@@ -18584,6 +18662,8 @@ export declare type TownsquareGoal = Node & {
18584
18662
  uuid: Scalars['String'];
18585
18663
  owner?: Maybe<User>;
18586
18664
  url?: Maybe<Scalars['String']>;
18665
+ dueDate?: Maybe<TownsquareTargetDate>;
18666
+ state?: Maybe<TownsquareGoalState>;
18587
18667
  };
18588
18668
  export declare type TownsquareGoalConnection = {
18589
18669
  __typename?: 'TownsquareGoalConnection';
@@ -18619,6 +18699,21 @@ export declare enum TownsquareGoalSortEnum {
18619
18699
  WatchingAsc = "WATCHING_ASC",
18620
18700
  WatchingDesc = "WATCHING_DESC"
18621
18701
  }
18702
+ export declare type TownsquareGoalState = {
18703
+ __typename?: 'TownsquareGoalState';
18704
+ label?: Maybe<Scalars['String']>;
18705
+ score?: Maybe<Scalars['Float']>;
18706
+ value?: Maybe<TownsquareGoalStateValue>;
18707
+ };
18708
+ export declare enum TownsquareGoalStateValue {
18709
+ Archived = "archived",
18710
+ AtRisk = "at_risk",
18711
+ Done = "done",
18712
+ OffTrack = "off_track",
18713
+ OnTrack = "on_track",
18714
+ Paused = "paused",
18715
+ Pending = "pending"
18716
+ }
18622
18717
  export declare type TownsquareHelpPointer = Node & {
18623
18718
  __typename?: 'TownsquareHelpPointer';
18624
18719
  cloudId?: Maybe<Scalars['String']>;
@@ -18676,6 +18771,7 @@ export declare type TownsquareProject = Node & {
18676
18771
  uuid: Scalars['String'];
18677
18772
  owner?: Maybe<User>;
18678
18773
  url?: Maybe<Scalars['String']>;
18774
+ dueDate?: Maybe<TownsquareTargetDate>;
18679
18775
  state?: Maybe<TownsquareProjectState>;
18680
18776
  };
18681
18777
  export declare type TownsquareProjectConnection = {
@@ -18723,7 +18819,9 @@ export declare enum TownsquareProjectStateValue {
18723
18819
  export declare type TownsquareQueryApi = {
18724
18820
  __typename?: 'TownsquareQueryApi';
18725
18821
  projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
18822
+ projectByKey?: Maybe<TownsquareProject>;
18726
18823
  goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
18824
+ goalByKey?: Maybe<TownsquareGoal>;
18727
18825
  commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
18728
18826
  projectSearch?: Maybe<TownsquareProjectConnection>;
18729
18827
  goalSearch?: Maybe<TownsquareGoalConnection>;
@@ -18734,9 +18832,15 @@ export declare type TownsquareQueryApi = {
18734
18832
  export declare type TownsquareQueryApiProjectsByAriArgs = {
18735
18833
  aris?: Maybe<Array<Maybe<Scalars['String']>>>;
18736
18834
  };
18835
+ export declare type TownsquareQueryApiProjectByKeyArgs = {
18836
+ key: Scalars['String'];
18837
+ };
18737
18838
  export declare type TownsquareQueryApiGoalsByAriArgs = {
18738
18839
  aris?: Maybe<Array<Maybe<Scalars['String']>>>;
18739
18840
  };
18841
+ export declare type TownsquareQueryApiGoalByKeyArgs = {
18842
+ key: Scalars['String'];
18843
+ };
18740
18844
  export declare type TownsquareQueryApiCommentsByAriArgs = {
18741
18845
  aris?: Maybe<Array<Maybe<Scalars['String']>>>;
18742
18846
  };
@@ -18788,6 +18892,22 @@ export declare type TownsquareTagEdge = {
18788
18892
  cursor: Scalars['String'];
18789
18893
  node?: Maybe<TownsquareTag>;
18790
18894
  };
18895
+ export declare type TownsquareTargetDate = {
18896
+ __typename?: 'TownsquareTargetDate';
18897
+ confidence?: Maybe<TownsquareTargetDateType>;
18898
+ dateRange?: Maybe<TownsquareTargetDateRange>;
18899
+ label?: Maybe<Scalars['String']>;
18900
+ };
18901
+ export declare type TownsquareTargetDateRange = {
18902
+ __typename?: 'TownsquareTargetDateRange';
18903
+ end?: Maybe<Scalars['DateTime']>;
18904
+ start?: Maybe<Scalars['DateTime']>;
18905
+ };
18906
+ export declare enum TownsquareTargetDateType {
18907
+ Day = "DAY",
18908
+ Month = "MONTH",
18909
+ Quarter = "QUARTER"
18910
+ }
18791
18911
  export declare type TownsquareTeam = Node & {
18792
18912
  __typename?: 'TownsquareTeam';
18793
18913
  avatarUrl?: Maybe<Scalars['String']>;