@forge/cli-shared 3.2.0 → 3.2.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
@@ -1,5 +1,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 567bf35: Fix displaying site prompt for install --upgrade
8
+
9
+ ## 3.2.1-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - 567bf35: Fix displaying site prompt for install --upgrade
14
+
3
15
  ## 3.2.0
4
16
 
5
17
  ### Minor Changes
@@ -1812,7 +1812,6 @@ export declare type CompassCatalogMutationApi = {
1812
1812
  acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
1813
1813
  createEventSource?: Maybe<CreateEventSourcePayload>;
1814
1814
  deleteEventSource?: Maybe<DeleteEventSourcePayload>;
1815
- createDeploymentEvent?: Maybe<CreateDeploymentEventsPayload>;
1816
1815
  createCompassEvent?: Maybe<CompassCreateEventsPayload>;
1817
1816
  attachEventSource?: Maybe<AttachEventSourcePayload>;
1818
1817
  detachEventSource?: Maybe<DetachEventSourcePayload>;
@@ -1942,9 +1941,6 @@ export declare type CompassCatalogMutationApiCreateEventSourceArgs = {
1942
1941
  export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
1943
1942
  input: DeleteEventSourceInput;
1944
1943
  };
1945
- export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
1946
- input: CreateDeploymentEventInput;
1947
- };
1948
1944
  export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
1949
1945
  input: CompassCreateEventInput;
1950
1946
  };
@@ -4939,26 +4935,6 @@ export declare type CreateCustomFilterInput = {
4939
4935
  jql: Scalars['String'];
4940
4936
  description?: Maybe<Scalars['String']>;
4941
4937
  };
4942
- export declare type CreateDeploymentEventInput = {
4943
- cloudId: Scalars['ID'];
4944
- deploymentSequenceNumber: Scalars['Long'];
4945
- updateSequenceNumber: Scalars['Long'];
4946
- displayName: Scalars['String'];
4947
- url: Scalars['URL'];
4948
- description: Scalars['String'];
4949
- state: CompassDeploymentEventState;
4950
- lastUpdated: Scalars['DateTime'];
4951
- pipeline: CompassDeploymentEventPipelineInput;
4952
- environment: CompassDeploymentEventEnvironmentInput;
4953
- externalEventSourceId: Scalars['ID'];
4954
- startedAt?: Maybe<Scalars['DateTime']>;
4955
- completedAt?: Maybe<Scalars['DateTime']>;
4956
- };
4957
- export declare type CreateDeploymentEventsPayload = Payload & {
4958
- __typename?: 'CreateDeploymentEventsPayload';
4959
- success: Scalars['Boolean'];
4960
- errors?: Maybe<Array<MutationError>>;
4961
- };
4962
4938
  export declare type CreateDevOpsServiceAndJiraProjectRelationshipInput = {
4963
4939
  cloudId: Scalars['ID'];
4964
4940
  jiraProjectId: Scalars['ID'];
@@ -5753,6 +5729,9 @@ export declare type DevOpsFeatureFlagProvider = {
5753
5729
  __typename?: 'DevOpsFeatureFlagProvider';
5754
5730
  id: Scalars['ID'];
5755
5731
  name?: Maybe<Scalars['String']>;
5732
+ homeUrl?: Maybe<Scalars['URL']>;
5733
+ logoUrl?: Maybe<Scalars['URL']>;
5734
+ documentationUrl?: Maybe<Scalars['URL']>;
5756
5735
  createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
5757
5736
  connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
5758
5737
  };
@@ -8674,7 +8653,7 @@ export declare type JiraCreateReleaseNoteConfluencePageInput = {
8674
8653
  versionId: Scalars['ID'];
8675
8654
  appLinkId?: Maybe<Scalars['ID']>;
8676
8655
  spaceId: Scalars['ID'];
8677
- parentPageId: Scalars['ID'];
8656
+ parentPageId?: Maybe<Scalars['ID']>;
8678
8657
  issueFieldIds: Array<Scalars['ID']>;
8679
8658
  issueTypeIds: Array<Scalars['ID']>;
8680
8659
  };
@@ -8686,6 +8665,7 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
8686
8665
  releaseNotePageEditUrl?: Maybe<Scalars['URL']>;
8687
8666
  addToRelatedWorkSuccess?: Maybe<Scalars['Boolean']>;
8688
8667
  version?: Maybe<JiraVersion>;
8668
+ relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
8689
8669
  };
8690
8670
  export declare type JiraCustomFilter = JiraFilter & Node & {
8691
8671
  __typename?: 'JiraCustomFilter';
@@ -10686,6 +10666,8 @@ export declare type JiraMutation = {
10686
10666
  updateDateField?: Maybe<JiraDateFieldPayload>;
10687
10667
  updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
10688
10668
  updateNumberField?: Maybe<JiraNumberFieldPayload>;
10669
+ updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
10670
+ updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
10689
10671
  addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
10690
10672
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
10691
10673
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
@@ -10728,6 +10710,12 @@ export declare type JiraMutationUpdateDateTimeFieldArgs = {
10728
10710
  export declare type JiraMutationUpdateNumberFieldArgs = {
10729
10711
  input?: Maybe<JiraUpdateNumberFieldInput>;
10730
10712
  };
10713
+ export declare type JiraMutationUpdateStoryPointEstimateFieldArgs = {
10714
+ input?: Maybe<JiraUpdateStoryPointEstimateFieldInput>;
10715
+ };
10716
+ export declare type JiraMutationUpdateSingleSelectFieldArgs = {
10717
+ input: JiraUpdateSingleSelectFieldInput;
10718
+ };
10731
10719
  export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
10732
10720
  input: JiraPermissionSchemeAddGrantInput;
10733
10721
  };
@@ -12859,6 +12847,16 @@ export declare type JiraSingleSelectFieldFieldOptionsArgs = {
12859
12847
  last?: Maybe<Scalars['Int']>;
12860
12848
  before?: Maybe<Scalars['String']>;
12861
12849
  };
12850
+ export declare type JiraSingleSelectFieldPayload = Payload & {
12851
+ __typename?: 'JiraSingleSelectFieldPayload';
12852
+ success: Scalars['Boolean'];
12853
+ errors?: Maybe<Array<MutationError>>;
12854
+ field?: Maybe<JiraSingleSelectField>;
12855
+ };
12856
+ export declare type JiraSingleSelectOperationInput = {
12857
+ operation: JiraSingleValueFieldOperations;
12858
+ fieldOption?: Maybe<Scalars['ID']>;
12859
+ };
12862
12860
  export declare type JiraSingleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
12863
12861
  __typename?: 'JiraSingleSelectUserPickerField';
12864
12862
  id: Scalars['ID'];
@@ -13018,6 +13016,16 @@ export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConf
13018
13016
  fieldConfig?: Maybe<JiraFieldConfig>;
13019
13017
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
13020
13018
  };
13019
+ export declare type JiraStoryPointEstimateFieldOperationInput = {
13020
+ operation: JiraSingleValueFieldOperations;
13021
+ storyPoint?: Maybe<Scalars['Float']>;
13022
+ };
13023
+ export declare type JiraStoryPointEstimateFieldPayload = Payload & {
13024
+ __typename?: 'JiraStoryPointEstimateFieldPayload';
13025
+ success: Scalars['Boolean'];
13026
+ errors?: Maybe<Array<MutationError>>;
13027
+ field?: Maybe<JiraNumberField>;
13028
+ };
13021
13029
  export declare type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
13022
13030
  __typename?: 'JiraSubtasksField';
13023
13031
  id: Scalars['ID'];
@@ -13203,6 +13211,14 @@ export declare type JiraUpdateReleaseNotesConfigurationPayload = Payload & {
13203
13211
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
13204
13212
  version?: Maybe<JiraVersion>;
13205
13213
  };
13214
+ export declare type JiraUpdateSingleSelectFieldInput = {
13215
+ id: Scalars['ID'];
13216
+ operation: JiraSingleSelectOperationInput;
13217
+ };
13218
+ export declare type JiraUpdateStoryPointEstimateFieldInput = {
13219
+ id: Scalars['ID'];
13220
+ operation: JiraStoryPointEstimateFieldOperationInput;
13221
+ };
13206
13222
  export declare type JiraUpdateVersionDescriptionInput = {
13207
13223
  id: Scalars['ID'];
13208
13224
  description?: Maybe<Scalars['String']>;
@@ -14022,6 +14038,17 @@ export declare type MercuryAtlasGoal = Node & {
14022
14038
  __typename?: 'MercuryAtlasGoal';
14023
14039
  id: Scalars['ID'];
14024
14040
  };
14041
+ export declare type MercuryCreateJobFunctionInput = {
14042
+ name: Scalars['String'];
14043
+ };
14044
+ export declare type MercuryCreateJobFunctionPayload = Payload & {
14045
+ __typename?: 'MercuryCreateJobFunctionPayload';
14046
+ jobFunction: MercuryJobFunction;
14047
+ success: Scalars['Boolean'];
14048
+ errors?: Maybe<Array<MutationError>>;
14049
+ statusCode: Scalars['Int'];
14050
+ message: Scalars['String'];
14051
+ };
14025
14052
  export declare type MercuryCreateStrategyInput = {
14026
14053
  name: Scalars['String'];
14027
14054
  description?: Maybe<Scalars['String']>;
@@ -14030,9 +14057,44 @@ export declare type MercuryCreateStrategyInput = {
14030
14057
  contentId?: Maybe<Scalars['String']>;
14031
14058
  spaceKey?: Maybe<Scalars['String']>;
14032
14059
  };
14060
+ export declare type MercuryCreateTeamInput = {
14061
+ name: Scalars['String'];
14062
+ active?: Maybe<Scalars['Boolean']>;
14063
+ };
14064
+ export declare type MercuryDeleteJobFunctionInput = {
14065
+ id: Scalars['ID'];
14066
+ };
14033
14067
  export declare type MercuryDeleteStrategyInput = {
14034
14068
  strategyId: Scalars['ID'];
14035
14069
  };
14070
+ export declare type MercuryDeleteTeamInput = {
14071
+ teamId: Scalars['ID'];
14072
+ };
14073
+ export declare type MercuryJobFunction = Node & {
14074
+ __typename?: 'MercuryJobFunction';
14075
+ id: Scalars['ID'];
14076
+ name: Scalars['String'];
14077
+ siteId: Scalars['String'];
14078
+ };
14079
+ export declare type MercuryJobFunctionConnection = {
14080
+ __typename?: 'MercuryJobFunctionConnection';
14081
+ edges?: Maybe<Array<Maybe<MercuryJobFunctionEdge>>>;
14082
+ nodes?: Maybe<Array<Maybe<MercuryJobFunction>>>;
14083
+ pageInfo: PageInfo;
14084
+ };
14085
+ export declare type MercuryJobFunctionDeletePayload = Payload & {
14086
+ __typename?: 'MercuryJobFunctionDeletePayload';
14087
+ deletedJobFunctionId?: Maybe<Scalars['ID']>;
14088
+ success: Scalars['Boolean'];
14089
+ errors?: Maybe<Array<MutationError>>;
14090
+ statusCode: Scalars['Int'];
14091
+ message: Scalars['String'];
14092
+ };
14093
+ export declare type MercuryJobFunctionEdge = {
14094
+ __typename?: 'MercuryJobFunctionEdge';
14095
+ cursor: Scalars['String'];
14096
+ node?: Maybe<MercuryJobFunction>;
14097
+ };
14036
14098
  export declare type MercuryLinkGoalInput = {
14037
14099
  goalId: Scalars['ID'];
14038
14100
  };
@@ -14043,6 +14105,12 @@ export declare type MercuryMutationApi = {
14043
14105
  deleteStrategy?: Maybe<MercuryStrategyDeletePayload>;
14044
14106
  addGoalsToStrategy?: Maybe<MercuryStrategyMutationPayload>;
14045
14107
  removeGoalsFromStrategy?: Maybe<MercuryStrategyMutationPayload>;
14108
+ createJobFunction?: Maybe<MercuryCreateJobFunctionPayload>;
14109
+ updateJobFunction?: Maybe<MercuryUpdateJobFunctionPayload>;
14110
+ deleteJobFunction?: Maybe<MercuryJobFunctionDeletePayload>;
14111
+ createTeam?: Maybe<MercuryTeamMutationPayload>;
14112
+ updateTeam?: Maybe<MercuryTeamMutationPayload>;
14113
+ deleteTeam?: Maybe<MercuryTeamDeletePayload>;
14046
14114
  };
14047
14115
  export declare type MercuryMutationApiCreateStrategyArgs = {
14048
14116
  input: MercuryCreateStrategyInput;
@@ -14059,10 +14127,33 @@ export declare type MercuryMutationApiAddGoalsToStrategyArgs = {
14059
14127
  export declare type MercuryMutationApiRemoveGoalsFromStrategyArgs = {
14060
14128
  input?: Maybe<MercuryRemoveGoalsFromStrategyInput>;
14061
14129
  };
14130
+ export declare type MercuryMutationApiCreateJobFunctionArgs = {
14131
+ input: MercuryCreateJobFunctionInput;
14132
+ };
14133
+ export declare type MercuryMutationApiUpdateJobFunctionArgs = {
14134
+ input: MercuryUpdateJobFunctionInput;
14135
+ };
14136
+ export declare type MercuryMutationApiDeleteJobFunctionArgs = {
14137
+ input: MercuryDeleteJobFunctionInput;
14138
+ };
14139
+ export declare type MercuryMutationApiCreateTeamArgs = {
14140
+ input: MercuryCreateTeamInput;
14141
+ };
14142
+ export declare type MercuryMutationApiUpdateTeamArgs = {
14143
+ input: MercuryUpdateTeamInput;
14144
+ };
14145
+ export declare type MercuryMutationApiDeleteTeamArgs = {
14146
+ input: MercuryDeleteTeamInput;
14147
+ };
14062
14148
  export declare type MercuryQueryApi = {
14063
14149
  __typename?: 'MercuryQueryApi';
14064
14150
  strategies?: Maybe<MercuryStrategyConnection>;
14065
14151
  strategy?: Maybe<MercuryStrategy>;
14152
+ isAdmin?: Maybe<Scalars['Boolean']>;
14153
+ jobFunction?: Maybe<MercuryJobFunction>;
14154
+ jobFunctions?: Maybe<MercuryJobFunctionConnection>;
14155
+ teams?: Maybe<MercuryTeamConnection>;
14156
+ team?: Maybe<MercuryTeam>;
14066
14157
  };
14067
14158
  export declare type MercuryQueryApiStrategiesArgs = {
14068
14159
  first?: Maybe<Scalars['Int']>;
@@ -14071,6 +14162,20 @@ export declare type MercuryQueryApiStrategiesArgs = {
14071
14162
  export declare type MercuryQueryApiStrategyArgs = {
14072
14163
  id: Scalars['ID'];
14073
14164
  };
14165
+ export declare type MercuryQueryApiJobFunctionArgs = {
14166
+ id: Scalars['ID'];
14167
+ };
14168
+ export declare type MercuryQueryApiJobFunctionsArgs = {
14169
+ first?: Maybe<Scalars['Int']>;
14170
+ after?: Maybe<Scalars['String']>;
14171
+ };
14172
+ export declare type MercuryQueryApiTeamsArgs = {
14173
+ first?: Maybe<Scalars['Int']>;
14174
+ after?: Maybe<Scalars['String']>;
14175
+ };
14176
+ export declare type MercuryQueryApiTeamArgs = {
14177
+ id: Scalars['ID'];
14178
+ };
14074
14179
  export declare type MercuryRemoveGoalsFromStrategyInput = {
14075
14180
  strategyId: Scalars['ID'];
14076
14181
  goals?: Maybe<Array<MercuryLinkGoalInput>>;
@@ -14111,6 +14216,51 @@ export declare type MercuryStrategyMutationPayload = Payload & {
14111
14216
  statusCode: Scalars['Int'];
14112
14217
  message: Scalars['String'];
14113
14218
  };
14219
+ export declare type MercuryTeam = Node & {
14220
+ __typename?: 'MercuryTeam';
14221
+ id: Scalars['ID'];
14222
+ name: Scalars['String'];
14223
+ active?: Maybe<Scalars['Boolean']>;
14224
+ };
14225
+ export declare type MercuryTeamConnection = {
14226
+ __typename?: 'MercuryTeamConnection';
14227
+ edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
14228
+ nodes?: Maybe<Array<Maybe<MercuryTeam>>>;
14229
+ pageInfo: PageInfo;
14230
+ };
14231
+ export declare type MercuryTeamDeletePayload = Payload & {
14232
+ __typename?: 'MercuryTeamDeletePayload';
14233
+ deletedTeamId?: Maybe<Scalars['ID']>;
14234
+ success: Scalars['Boolean'];
14235
+ errors?: Maybe<Array<MutationError>>;
14236
+ statusCode: Scalars['Int'];
14237
+ message: Scalars['String'];
14238
+ };
14239
+ export declare type MercuryTeamEdge = {
14240
+ __typename?: 'MercuryTeamEdge';
14241
+ cursor: Scalars['String'];
14242
+ node?: Maybe<MercuryTeam>;
14243
+ };
14244
+ export declare type MercuryTeamMutationPayload = Payload & {
14245
+ __typename?: 'MercuryTeamMutationPayload';
14246
+ team: MercuryTeam;
14247
+ success: Scalars['Boolean'];
14248
+ errors?: Maybe<Array<MutationError>>;
14249
+ statusCode: Scalars['Int'];
14250
+ message: Scalars['String'];
14251
+ };
14252
+ export declare type MercuryUpdateJobFunctionInput = {
14253
+ id: Scalars['ID'];
14254
+ name: Scalars['String'];
14255
+ };
14256
+ export declare type MercuryUpdateJobFunctionPayload = Payload & {
14257
+ __typename?: 'MercuryUpdateJobFunctionPayload';
14258
+ jobFunction: MercuryJobFunction;
14259
+ success: Scalars['Boolean'];
14260
+ errors?: Maybe<Array<MutationError>>;
14261
+ statusCode: Scalars['Int'];
14262
+ message: Scalars['String'];
14263
+ };
14114
14264
  export declare type MercuryUpdateStrategyInput = {
14115
14265
  strategyId: Scalars['ID'];
14116
14266
  name?: Maybe<Scalars['String']>;
@@ -14119,6 +14269,11 @@ export declare type MercuryUpdateStrategyInput = {
14119
14269
  contentId?: Maybe<Scalars['String']>;
14120
14270
  spaceKey?: Maybe<Scalars['String']>;
14121
14271
  };
14272
+ export declare type MercuryUpdateTeamInput = {
14273
+ teamId: Scalars['ID'];
14274
+ name?: Maybe<Scalars['String']>;
14275
+ active?: Maybe<Scalars['Boolean']>;
14276
+ };
14122
14277
  export declare type MigrationKeys = {
14123
14278
  __typename?: 'MigrationKeys';
14124
14279
  jira: Scalars['String'];
@@ -16690,6 +16845,11 @@ export declare type RoadmapCreationPreferences = {
16690
16845
  projectId?: Maybe<Scalars['Long']>;
16691
16846
  itemTypes: Scalars['JSON'];
16692
16847
  };
16848
+ export declare type RoadmapCustomFilter = {
16849
+ __typename?: 'RoadmapCustomFilter';
16850
+ id: Scalars['ID'];
16851
+ name: Scalars['String'];
16852
+ };
16693
16853
  export declare type RoadmapDependencyConfiguration = {
16694
16854
  __typename?: 'RoadmapDependencyConfiguration';
16695
16855
  isDependenciesEnabled: Scalars['Boolean'];
@@ -16738,6 +16898,7 @@ export declare type RoadmapFeatureTogglePayload = Payload & {
16738
16898
  };
16739
16899
  export declare type RoadmapFilterConfiguration = {
16740
16900
  __typename?: 'RoadmapFilterConfiguration';
16901
+ customFilters?: Maybe<Array<RoadmapCustomFilter>>;
16741
16902
  quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
16742
16903
  };
16743
16904
  export declare type RoadmapHealthCheck = {
@@ -17109,7 +17270,8 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
17109
17270
  };
17110
17271
  export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
17111
17272
  sourceARI: Scalars['ID'];
17112
- quickFilterIds: Array<Scalars['ID']>;
17273
+ quickFilterIds?: Maybe<Array<Scalars['ID']>>;
17274
+ customFilterIds?: Maybe<Array<Scalars['ID']>>;
17113
17275
  };
17114
17276
  export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
17115
17277
  sourceARI: Scalars['ID'];
@@ -17972,6 +18134,7 @@ export declare type ShepherdMutation = {
17972
18134
  createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
17973
18135
  createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
17974
18136
  createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
18137
+ deleteSubscription?: Maybe<ShepherdSubscriptionMutationPayload>;
17975
18138
  testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
17976
18139
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
17977
18140
  updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
@@ -17989,6 +18152,11 @@ export declare type ShepherdMutationCreateOrganizationArgs = {
17989
18152
  export declare type ShepherdMutationCreateSubscriptionArgs = {
17990
18153
  input: ShepherdCreateSubscriptionInput;
17991
18154
  };
18155
+ export declare type ShepherdMutationDeleteSubscriptionArgs = {
18156
+ hardDelete?: Maybe<Scalars['Boolean']>;
18157
+ orgId: Scalars['ID'];
18158
+ subscriptionId: Scalars['ID'];
18159
+ };
17992
18160
  export declare type ShepherdMutationTestSubscriptionArgs = {
17993
18161
  orgId: Scalars['ID'];
17994
18162
  subscriptionId: Scalars['ID'];
@@ -18085,6 +18253,12 @@ export declare type ShepherdSubscriptionEdge = {
18085
18253
  cursor?: Maybe<Scalars['String']>;
18086
18254
  node?: Maybe<ShepherdSubscription>;
18087
18255
  };
18256
+ export declare type ShepherdSubscriptionMutationPayload = Payload & {
18257
+ __typename?: 'ShepherdSubscriptionMutationPayload';
18258
+ errors?: Maybe<Array<MutationError>>;
18259
+ node?: Maybe<ShepherdSubscription>;
18260
+ success: Scalars['Boolean'];
18261
+ };
18088
18262
  export declare enum ShepherdSubscriptionStatus {
18089
18263
  Active = "ACTIVE",
18090
18264
  Inactive = "INACTIVE"