@forge/cli-shared 9.3.0-next.12 → 9.3.0-next.13
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
|
@@ -8208,6 +8208,7 @@ export type AgentWorkspaceCreateScheduleInput = {
|
|
|
8208
8208
|
cloudId: Scalars['ID']['input'];
|
|
8209
8209
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
8210
8210
|
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8211
|
+
endAfterOccurrences?: InputMaybe<Scalars['Int']['input']>;
|
|
8211
8212
|
endTime: Scalars['DateTime']['input'];
|
|
8212
8213
|
name: Scalars['String']['input'];
|
|
8213
8214
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8685,8 +8686,10 @@ export type AgentWorkspaceSchedule = {
|
|
|
8685
8686
|
description?: Maybe<Scalars['String']['output']>;
|
|
8686
8687
|
effectiveUntil?: Maybe<Scalars['DateTime']['output']>;
|
|
8687
8688
|
enabled: Scalars['Boolean']['output'];
|
|
8689
|
+
endAfterOccurrences?: Maybe<Scalars['Int']['output']>;
|
|
8688
8690
|
endTime: Scalars['DateTime']['output'];
|
|
8689
8691
|
id: Scalars['ID']['output'];
|
|
8692
|
+
minimumEndAfterOccurrencesForUpdate?: Maybe<Scalars['Int']['output']>;
|
|
8690
8693
|
name: Scalars['String']['output'];
|
|
8691
8694
|
projectId?: Maybe<Scalars['ID']['output']>;
|
|
8692
8695
|
projectKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -9480,6 +9483,7 @@ export type AgentWorkspaceUpdateScheduleInput = {
|
|
|
9480
9483
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
9481
9484
|
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
9482
9485
|
enabled: Scalars['Boolean']['input'];
|
|
9486
|
+
endAfterOccurrences?: InputMaybe<Scalars['Int']['input']>;
|
|
9483
9487
|
endTime: Scalars['DateTime']['input'];
|
|
9484
9488
|
name: Scalars['String']['input'];
|
|
9485
9489
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -52878,11 +52882,13 @@ export type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
52878
52882
|
};
|
|
52879
52883
|
export type GetAllPlanOwnersFilterInput = {
|
|
52880
52884
|
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
52885
|
+
jiraProjectKey?: InputMaybe<Scalars['String']['input']>;
|
|
52881
52886
|
};
|
|
52882
52887
|
export type GetAllPlansFilterInput = {
|
|
52883
52888
|
access?: InputMaybe<PlanAccessFilter>;
|
|
52884
52889
|
excludeOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
52885
52890
|
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
52891
|
+
jiraProjectKey?: InputMaybe<Scalars['String']['input']>;
|
|
52886
52892
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
52887
52893
|
ownerIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
52888
52894
|
planName?: InputMaybe<Scalars['String']['input']>;
|