@forge/cli-shared 8.15.1-next.4 → 8.15.1-next.4-experimental-e5e0b64

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
+ ## 8.15.1-next.4-experimental-e5e0b64
4
+
5
+ ### Patch Changes
6
+
7
+ - c1526eb: Improve warning message for failing to read feature flags change visibility to require verbose to reduce confusion
8
+ - 19807bf: Changed schema for container resources
9
+ - 2719ab7: Add image tag filtering for container repository listing
10
+ - Updated dependencies [e4c143c]
11
+ - Updated dependencies [19807bf]
12
+ - Updated dependencies [fa9b5aa]
13
+ - @forge/manifest@12.1.0-next.2-experimental-e5e0b64
14
+
3
15
  ## 8.15.1-next.4
4
16
 
5
17
  ### Patch Changes
@@ -552,10 +552,11 @@ export declare type AvpCreateStandaloneChartInput = {
552
552
  cloudId: Scalars['ID']['input'];
553
553
  containerAri?: InputMaybe<Scalars['ID']['input']>;
554
554
  integrationId?: InputMaybe<AvpIntegrationId>;
555
- workspaceId: Scalars['ID']['input'];
555
+ workspaceId?: InputMaybe<Scalars['ID']['input']>;
556
556
  };
557
557
  export declare type AvpCreateStandaloneChartPayload = Payload & {
558
558
  __typename?: 'AVPCreateStandaloneChartPayload';
559
+ avpVizUrl?: Maybe<Scalars['String']['output']>;
559
560
  chart?: Maybe<AvpChart>;
560
561
  dashboard?: Maybe<AvpDashboard>;
561
562
  errors?: Maybe<Array<MutationError>>;
@@ -583,6 +584,7 @@ export declare type AvpDashboard = Node & {
583
584
  fromTemplate?: Maybe<Scalars['String']['output']>;
584
585
  id: Scalars['ID']['output'];
585
586
  isReadOnly?: Maybe<Scalars['Boolean']['output']>;
587
+ isWrapper?: Maybe<Scalars['Boolean']['output']>;
586
588
  settings?: Maybe<AvpDashboardSettings>;
587
589
  status?: Maybe<AvpDashboardStatus>;
588
590
  templateVersion?: Maybe<Scalars['Int']['output']>;
@@ -1911,6 +1913,14 @@ export declare type AdminAssignRoleResponsePayload = Payload & {
1911
1913
  errors?: Maybe<Array<MutationError>>;
1912
1914
  success: Scalars['Boolean']['output'];
1913
1915
  };
1916
+ export declare type AdminAuditLogContainer = {
1917
+ id: Scalars['ID']['input'];
1918
+ type: AdminAuditLogContainerType;
1919
+ };
1920
+ export declare enum AdminAuditLogContainerType {
1921
+ Org = "ORG",
1922
+ Site = "SITE"
1923
+ }
1914
1924
  export declare type AdminAuditLogDetailedEventLocation = {
1915
1925
  __typename?: 'AdminAuditLogDetailedEventLocation';
1916
1926
  cityName?: Maybe<Scalars['String']['output']>;
@@ -4206,6 +4216,15 @@ export declare type AgentWorkspaceAgent = {
4206
4216
  id: Scalars['ID']['output'];
4207
4217
  teamNames: Array<Scalars['String']['output']>;
4208
4218
  };
4219
+ export declare type AgentWorkspaceAgentAvailability = {
4220
+ __typename?: 'AgentWorkspaceAgentAvailability';
4221
+ agentId: Scalars['ID']['output'];
4222
+ agentName: Scalars['String']['output'];
4223
+ status: AgentWorkspaceAvailabilityStatus;
4224
+ teamIds: Array<Scalars['ID']['output']>;
4225
+ teamNames: Array<Scalars['String']['output']>;
4226
+ updatedAt: Scalars['DateTime']['output'];
4227
+ };
4209
4228
  export declare type AgentWorkspaceAgentShifts = {
4210
4229
  __typename?: 'AgentWorkspaceAgentShifts';
4211
4230
  agent: AgentWorkspaceAgent;
@@ -4218,6 +4237,39 @@ export declare type AgentWorkspaceAgentShiftsEdge = {
4218
4237
  cursor: Scalars['String']['output'];
4219
4238
  node: AgentWorkspaceAgentShifts;
4220
4239
  };
4240
+ export declare type AgentWorkspaceAvailabilityConnection = {
4241
+ __typename?: 'AgentWorkspaceAvailabilityConnection';
4242
+ nodes: Array<AgentWorkspaceAgentAvailability>;
4243
+ pageInfo: AgentWorkspaceAvailabilityPageInfo;
4244
+ summary: AgentWorkspaceAvailabilitySummary;
4245
+ };
4246
+ export declare type AgentWorkspaceAvailabilityInput = {
4247
+ agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4248
+ page?: InputMaybe<Scalars['Int']['input']>;
4249
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
4250
+ projectId: Scalars['ID']['input'];
4251
+ statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
4252
+ teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4253
+ };
4254
+ export declare type AgentWorkspaceAvailabilityPageInfo = {
4255
+ __typename?: 'AgentWorkspaceAvailabilityPageInfo';
4256
+ currentPage: Scalars['Int']['output'];
4257
+ hasNextPage: Scalars['Boolean']['output'];
4258
+ hasPreviousPage: Scalars['Boolean']['output'];
4259
+ pageSize: Scalars['Int']['output'];
4260
+ totalCount: Scalars['Int']['output'];
4261
+ totalPages: Scalars['Int']['output'];
4262
+ };
4263
+ export declare enum AgentWorkspaceAvailabilityStatus {
4264
+ Available = "AVAILABLE",
4265
+ OnBreak = "ON_BREAK"
4266
+ }
4267
+ export declare type AgentWorkspaceAvailabilitySummary = {
4268
+ __typename?: 'AgentWorkspaceAvailabilitySummary';
4269
+ activeAgents: Scalars['Int']['output'];
4270
+ onBreak: Scalars['Int']['output'];
4271
+ onDuty: Scalars['Int']['output'];
4272
+ };
4221
4273
  export declare type AgentWorkspaceCreateScheduleInput = {
4222
4274
  agentIds: Array<Scalars['ID']['input']>;
4223
4275
  description?: InputMaybe<Scalars['String']['input']>;
@@ -21457,7 +21509,7 @@ export declare type ConfluencePrincipal = {
21457
21509
  __typename?: 'ConfluencePrincipal';
21458
21510
  avatar?: Maybe<Scalars['String']['output']>;
21459
21511
  displayName: Scalars['String']['output'];
21460
- effectivePermission: ConfluencePermission;
21512
+ effectivePermission?: Maybe<ConfluencePermission>;
21461
21513
  explicitPermission: ConfluencePermission;
21462
21514
  hasSpaceEditPermission?: Maybe<Scalars['Boolean']['output']>;
21463
21515
  hasSpaceViewPermission?: Maybe<Scalars['Boolean']['output']>;
@@ -40896,6 +40948,7 @@ export declare type GraphStore = {
40896
40948
  focusAreaHasStatusUpdateBatch?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateConnection>;
40897
40949
  focusAreaHasStatusUpdateInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseConnection>;
40898
40950
  focusAreaHasStatusUpdateInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateConnection>;
40951
+ focusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseConnection>;
40899
40952
  focusAreaHasWatcher?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherConnection>;
40900
40953
  focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
40901
40954
  focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
@@ -43357,6 +43410,14 @@ export declare type GraphStoreFocusAreaHasStatusUpdateInverseBatchArgs = {
43357
43410
  queryContext?: InputMaybe<Scalars['String']['input']>;
43358
43411
  sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
43359
43412
  };
43413
+ export declare type GraphStoreFocusAreaHasThirdPartyDocumentInverseArgs = {
43414
+ after?: InputMaybe<Scalars['String']['input']>;
43415
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
43416
+ first?: InputMaybe<Scalars['Int']['input']>;
43417
+ id: Scalars['ID']['input'];
43418
+ queryContext?: InputMaybe<Scalars['String']['input']>;
43419
+ sort?: InputMaybe<GraphStoreFocusAreaHasThirdPartyDocumentSortInput>;
43420
+ };
43360
43421
  export declare type GraphStoreFocusAreaHasWatcherArgs = {
43361
43422
  after?: InputMaybe<Scalars['String']['input']>;
43362
43423
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -51844,6 +51905,9 @@ export declare type GraphStoreFocusAreaHasProjectSortInput = {
51844
51905
  export declare type GraphStoreFocusAreaHasStatusUpdateSortInput = {
51845
51906
  lastModified?: InputMaybe<GraphStoreSortInput>;
51846
51907
  };
51908
+ export declare type GraphStoreFocusAreaHasThirdPartyDocumentSortInput = {
51909
+ lastModified?: InputMaybe<GraphStoreSortInput>;
51910
+ };
51847
51911
  export declare type GraphStoreFocusAreaHasWatcherSortInput = {
51848
51912
  lastModified?: InputMaybe<GraphStoreSortInput>;
51849
51913
  };
@@ -59207,6 +59271,20 @@ export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseEdge = {
59207
59271
  };
59208
59272
  export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseUnion = MercuryFocusArea;
59209
59273
  export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateUnion = MercuryFocusAreaStatusUpdate;
59274
+ export declare type GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseConnection = HasPageInfo & {
59275
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseConnection';
59276
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseEdge>>>;
59277
+ pageInfo: PageInfo;
59278
+ };
59279
+ export declare type GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseEdge = {
59280
+ __typename?: 'GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseEdge';
59281
+ createdAt: Scalars['DateTime']['output'];
59282
+ cursor?: Maybe<Scalars['String']['output']>;
59283
+ id: Scalars['ID']['output'];
59284
+ lastUpdated: Scalars['DateTime']['output'];
59285
+ node?: Maybe<GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseUnion>;
59286
+ };
59287
+ export declare type GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseUnion = MercuryFocusArea;
59210
59288
  export declare type GraphStoreSimplifiedFocusAreaHasWatcherConnection = HasPageInfo & {
59211
59289
  __typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherConnection';
59212
59290
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasWatcherEdge>>>;
@@ -68089,6 +68167,7 @@ export declare type GraphStoreV2 = {
68089
68167
  focusFocusAreaHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasExternalPositionInverseConnection>;
68090
68168
  focusFocusAreaHasFocusFocusAreaStatusUpdate?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusUpdateConnection>;
68091
68169
  focusFocusAreaHasFocusFocusAreaStatusUpdateInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusUpdateInverseConnection>;
68170
+ focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
68092
68171
  focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
68093
68172
  focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
68094
68173
  jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
@@ -71496,6 +71575,13 @@ export declare type GraphStoreV2FocusFocusAreaHasFocusFocusAreaStatusUpdateInver
71496
71575
  id: Scalars['ID']['input'];
71497
71576
  sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasFocusFocusAreaStatusUpdateSortInput>;
71498
71577
  };
71578
+ export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentInverseArgs = {
71579
+ after?: InputMaybe<Scalars['String']['input']>;
71580
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
71581
+ first?: InputMaybe<Scalars['Int']['input']>;
71582
+ id: Scalars['ID']['input'];
71583
+ sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput>;
71584
+ };
71499
71585
  export declare type GraphStoreV2FocusFocusAreaHasWorkEntityArgs = {
71500
71586
  after?: InputMaybe<Scalars['String']['input']>;
71501
71587
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -74537,6 +74623,9 @@ export declare type GraphStoreV2FocusFocusAreaHasExternalPositionSortInput = {
74537
74623
  export declare type GraphStoreV2FocusFocusAreaHasFocusFocusAreaStatusUpdateSortInput = {
74538
74624
  lastModified?: InputMaybe<GraphStoreSortInput>;
74539
74625
  };
74626
+ export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
74627
+ lastModified?: InputMaybe<GraphStoreSortInput>;
74628
+ };
74540
74629
  export declare type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
74541
74630
  lastModified?: InputMaybe<GraphStoreSortInput>;
74542
74631
  };
@@ -82529,6 +82618,20 @@ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusU
82529
82618
  };
82530
82619
  export declare type GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusUpdateInverseUnion = MercuryFocusArea;
82531
82620
  export declare type GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusUpdateUnion = MercuryFocusAreaStatusUpdate;
82621
+ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection = HasPageInfo & {
82622
+ __typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection';
82623
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseEdge>>>;
82624
+ pageInfo: PageInfo;
82625
+ };
82626
+ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseEdge = {
82627
+ __typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseEdge';
82628
+ createdAt: Scalars['DateTime']['output'];
82629
+ cursor?: Maybe<Scalars['String']['output']>;
82630
+ id: Scalars['ID']['output'];
82631
+ lastUpdated: Scalars['DateTime']['output'];
82632
+ node?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseUnion>;
82633
+ };
82634
+ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseUnion = MercuryFocusArea;
82532
82635
  export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection = HasPageInfo & {
82533
82636
  __typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection';
82534
82637
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityEdge>>>;
@@ -85566,6 +85669,7 @@ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
85566
85669
  r28PageDwells?: Maybe<Scalars['Int']['output']>;
85567
85670
  };
85568
85671
  export declare type GrowthUnifiedProfileCreateEntitlementProfileInput = {
85672
+ autoProvisioningEditionParityDialogDismissed?: InputMaybe<Scalars['Boolean']['input']>;
85569
85673
  entitlementId: Scalars['ID']['input'];
85570
85674
  firstProductOnSite?: InputMaybe<Scalars['Boolean']['input']>;
85571
85675
  trial?: InputMaybe<GrowthUnifiedProfileEntitlementContextTrialInput>;
@@ -85627,6 +85731,7 @@ export declare type GrowthUnifiedProfileEntitlementContextTrialResult = {
85627
85731
  };
85628
85732
  export declare type GrowthUnifiedProfileEntitlementProfileResult = {
85629
85733
  __typename?: 'GrowthUnifiedProfileEntitlementProfileResult';
85734
+ autoProvisioningEditionParityDialogDismissed?: Maybe<Scalars['Boolean']['output']>;
85630
85735
  entitlementId: Scalars['ID']['output'];
85631
85736
  firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
85632
85737
  lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
@@ -91367,6 +91472,9 @@ export declare type JiraBoardViewFilterConfigArgs = {
91367
91472
  export declare type JiraBoardViewGroupByConfigArgs = {
91368
91473
  settings?: InputMaybe<JiraBoardViewSettings>;
91369
91474
  };
91475
+ export declare type JiraBoardViewGroupByOptionsArgs = {
91476
+ settings?: InputMaybe<JiraBoardViewSettings>;
91477
+ };
91370
91478
  export declare type JiraBoardViewIsEmptyArgs = {
91371
91479
  settings?: InputMaybe<JiraBoardViewSettings>;
91372
91480
  };
@@ -91534,6 +91642,7 @@ export declare type JiraBoardViewQueryInput = {
91534
91642
  export declare type JiraBoardViewSettings = {
91535
91643
  filterJql?: InputMaybe<Scalars['String']['input']>;
91536
91644
  groupBy?: InputMaybe<Scalars['String']['input']>;
91645
+ swimlanesSupported?: InputMaybe<Scalars['Boolean']['input']>;
91537
91646
  textSearch?: InputMaybe<Scalars['String']['input']>;
91538
91647
  };
91539
91648
  export declare type JiraBoardViewStatus = {
@@ -95396,6 +95505,7 @@ export declare type JiraFieldSchemeAssociatedFieldsEdge = {
95396
95505
  node?: Maybe<JiraFieldSchemeAssociatedField>;
95397
95506
  };
95398
95507
  export declare type JiraFieldSchemeAssociatedFieldsInput = {
95508
+ fieldTypeGroupsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
95399
95509
  nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
95400
95510
  schemeId: Scalars['ID']['input'];
95401
95511
  };
@@ -123678,6 +123788,8 @@ export declare type Mutation = {
123678
123788
  agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
123679
123789
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
123680
123790
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
123791
+ agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
123792
+ agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
123681
123793
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
123682
123794
  appRecommendations?: Maybe<AppRecMutation>;
123683
123795
  appStorage?: Maybe<AppStorageMutation>;
@@ -124284,6 +124396,7 @@ export declare type Mutation = {
124284
124396
  kitsune_createSpace?: Maybe<KitsuneSpace>;
124285
124397
  kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
124286
124398
  kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
124399
+ kitsune_removeSection?: Maybe<KitsuneSection>;
124287
124400
  kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
124288
124401
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
124289
124402
  kitsune_updateSection?: Maybe<KitsuneSection>;
@@ -124862,6 +124975,12 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
124862
124975
  export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
124863
124976
  input: AgentWorkspaceDeleteScheduleInput;
124864
124977
  };
124978
+ export declare type MutationAgentWorkspace_EndBreakArgs = {
124979
+ agentId: Scalars['ID']['input'];
124980
+ };
124981
+ export declare type MutationAgentWorkspace_StartBreakArgs = {
124982
+ agentId: Scalars['ID']['input'];
124983
+ };
124865
124984
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
124866
124985
  input: AgentWorkspaceUpdateScheduleInput;
124867
124986
  };
@@ -126993,6 +127112,9 @@ export declare type MutationKitsune_GenerateFeedbackSummaryArgs = {
126993
127112
  export declare type MutationKitsune_RemoveFeedbackArgs = {
126994
127113
  feedbackAri: Scalars['ID']['input'];
126995
127114
  };
127115
+ export declare type MutationKitsune_RemoveSectionArgs = {
127116
+ sectionAri: Scalars['ID']['input'];
127117
+ };
126996
127118
  export declare type MutationKitsune_SuggestSnippetsArgs = {
126997
127119
  title: Scalars['String']['input'];
126998
127120
  workspaceAri: Scalars['ID']['input'];
@@ -131029,6 +131151,7 @@ export declare type Query = {
131029
131151
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
131030
131152
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
131031
131153
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
131154
+ agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
131032
131155
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
131033
131156
  agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
131034
131157
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
@@ -132059,10 +132182,10 @@ export declare type QueryAdmin_AuditLogEventLocationsArgs = {
132059
132182
  export declare type QueryAdmin_AuditLogEventsArgs = {
132060
132183
  after?: InputMaybe<Scalars['String']['input']>;
132061
132184
  before?: InputMaybe<Scalars['String']['input']>;
132185
+ container: AdminAuditLogContainer;
132062
132186
  first?: InputMaybe<Scalars['Int']['input']>;
132063
132187
  input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
132064
132188
  last?: InputMaybe<Scalars['Int']['input']>;
132065
- orgId: Scalars['ID']['input'];
132066
132189
  };
132067
132190
  export declare type QueryAdmin_CheckLicensesCapacityArgs = {
132068
132191
  input: AdminLicenseInput;
@@ -132452,6 +132575,9 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
132452
132575
  cloudId: Scalars['String']['input'];
132453
132576
  containerAri: Scalars['ID']['input'];
132454
132577
  };
132578
+ export declare type QueryAgentWorkspace_AvailabilityArgs = {
132579
+ input: AgentWorkspaceAvailabilityInput;
132580
+ };
132455
132581
  export declare type QueryAgentWorkspace_ScheduleArgs = {
132456
132582
  projectId: Scalars['ID']['input'];
132457
132583
  scheduleId: Scalars['ID']['input'];
@@ -157825,6 +157951,7 @@ export declare enum ShepherdAlertSnippetRedactionFailureReason {
157825
157951
  InvalidPointer = "INVALID_POINTER",
157826
157952
  MaxFieldLength = "MAX_FIELD_LENGTH",
157827
157953
  OverlappingRequestsForContentItem = "OVERLAPPING_REQUESTS_FOR_CONTENT_ITEM",
157954
+ RedactionIdAlreadyExists = "REDACTION_ID_ALREADY_EXISTS",
157828
157955
  TooManyRequestsPerContentItem = "TOO_MANY_REQUESTS_PER_CONTENT_ITEM",
157829
157956
  Unknown = "UNKNOWN"
157830
157957
  }
@@ -160597,6 +160724,7 @@ export declare type SpfCreatePlanScenarioInput = {
160597
160724
  export declare type SpfCreatePlanScenarioInvestmentInput = {
160598
160725
  committedEffort?: InputMaybe<Scalars['Int']['input']>;
160599
160726
  committedOwnerId?: InputMaybe<Scalars['String']['input']>;
160727
+ groupType?: InputMaybe<SpfPlanScenarioInvestmentGroupType>;
160600
160728
  investmentId: Scalars['String']['input'];
160601
160729
  planScenarioId: Scalars['ID']['input'];
160602
160730
  };
@@ -160783,6 +160911,7 @@ export declare type SpfPlanScenarioInvestment = Node & {
160783
160911
  committedOwner?: Maybe<User>;
160784
160912
  createdAt?: Maybe<Scalars['DateTime']['output']>;
160785
160913
  createdBy?: Maybe<User>;
160914
+ groupType?: Maybe<SpfPlanScenarioInvestmentGroupType>;
160786
160915
  id: Scalars['ID']['output'];
160787
160916
  investment?: Maybe<SpfInvestment>;
160788
160917
  planScenarioId: Scalars['String']['output'];
@@ -160800,6 +160929,10 @@ export declare type SpfPlanScenarioInvestmentEdge = {
160800
160929
  cursor: Scalars['String']['output'];
160801
160930
  node?: Maybe<SpfPlanScenarioInvestmentResult>;
160802
160931
  };
160932
+ export declare enum SpfPlanScenarioInvestmentGroupType {
160933
+ Prioritized = "PRIORITIZED",
160934
+ Unprioritized = "UNPRIORITIZED"
160935
+ }
160803
160936
  export declare type SpfPlanScenarioInvestmentResult = QueryError | SpfPlanScenarioInvestment;
160804
160937
  export declare type SpfPlanScenarioResult = QueryError | SpfPlanScenario;
160805
160938
  export declare enum SpfPlanScenarioStatus {
@@ -167733,6 +167866,7 @@ export declare type TrelloAddLabelsToCardPayload = Payload & {
167733
167866
  card?: Maybe<TrelloCard>;
167734
167867
  errors?: Maybe<Array<MutationError>>;
167735
167868
  success: Scalars['Boolean']['output'];
167869
+ updatedCard?: Maybe<TrelloBaseCard>;
167736
167870
  };
167737
167871
  export declare type TrelloAddMemberInput = {
167738
167872
  cardId: Scalars['ID']['input'];
@@ -169440,6 +169574,16 @@ export declare type TrelloEnterprisePrefs = {
169440
169574
  __typename?: 'TrelloEnterprisePrefs';
169441
169575
  atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
169442
169576
  };
169577
+ export declare type TrelloGenerateBoardBackgroundWithAiInput = {
169578
+ boardId: Scalars['ID']['input'];
169579
+ userInput: Scalars['String']['input'];
169580
+ };
169581
+ export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
169582
+ __typename?: 'TrelloGenerateBoardBackgroundWithAiPayload';
169583
+ board?: Maybe<TrelloBoard>;
169584
+ errors?: Maybe<Array<MutationError>>;
169585
+ success: Scalars['Boolean']['output'];
169586
+ };
169443
169587
  export declare type TrelloGenerateCheckItemsForCardInput = {
169444
169588
  cardId: Scalars['ID']['input'];
169445
169589
  checklistTarget: TrelloChecklistTarget;
@@ -170117,6 +170261,7 @@ export declare type TrelloMutationApi = {
170117
170261
  deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
170118
170262
  deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
170119
170263
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
170264
+ generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
170120
170265
  generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
170121
170266
  generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
170122
170267
  markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
@@ -170228,6 +170373,9 @@ export declare type TrelloMutationApiDeleteWorkspaceTagArgs = {
170228
170373
  export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
170229
170374
  input: TrelloEditPlannerCalendarEventInput;
170230
170375
  };
170376
+ export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
170377
+ input: TrelloGenerateBoardBackgroundWithAiInput;
170378
+ };
170231
170379
  export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
170232
170380
  input: TrelloGenerateCheckItemsForCardInput;
170233
170381
  };
@@ -171284,6 +171432,7 @@ export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
171284
171432
  card?: Maybe<TrelloCard>;
171285
171433
  errors?: Maybe<Array<MutationError>>;
171286
171434
  success: Scalars['Boolean']['output'];
171435
+ updatedCard?: Maybe<TrelloBaseCard>;
171287
171436
  };
171288
171437
  export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
171289
171438
  __typename?: 'TrelloRemoveMemberFromCardAction';
@@ -171465,6 +171614,9 @@ export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
171465
171614
  export declare type TrelloSubscriptionApiOnInboxUpdatedArgs = {
171466
171615
  memberId: Scalars['ID']['input'];
171467
171616
  };
171617
+ export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs = {
171618
+ memberId?: InputMaybe<Scalars['ID']['input']>;
171619
+ };
171468
171620
  export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
171469
171621
  id: Scalars['ID']['input'];
171470
171622
  };