@forge/cli-shared 8.9.0-next.13-experimental-003d118 → 8.9.0-next.15

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,27 +1,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 8.9.0-next.13-experimental-003d118
3
+ ## 8.9.0-next.15
4
4
 
5
- ### Minor Changes
5
+ ### Patch Changes
6
6
 
7
- - 5efbe5a: Added new watch flag to show services command
7
+ - Updated dependencies [24bd686]
8
+ - Updated dependencies [2011ffe]
9
+ - @forge/manifest@11.0.0-next.8
10
+
11
+ ## 8.9.0-next.14
8
12
 
9
13
  ### Patch Changes
10
14
 
11
- - 49bbec0: Display local port by default when tunneling
12
- - 6ab8f99: Re-order dependency between sidecar container and app container so the sidecar is ready for app container bootstrap code
13
- - ef033a5: support container identity when tunneling
14
- - 118f8af: switch `contexts` to `compatibility` for Forge create operation
15
- - aaf8a03: forge tunnel with containers: delete auto generated docker compose files upon failing to startup
16
- - Updated dependencies [0a3f5d5]
17
- - Updated dependencies [9a6d346]
18
- - Updated dependencies [260eb24]
19
- - Updated dependencies [3228cf0]
20
- - Updated dependencies [8962080]
21
- - Updated dependencies [f0a5a03]
22
- - Updated dependencies [d00ef59]
23
- - Updated dependencies [78efec7]
24
- - @forge/manifest@11.0.0-next.7-experimental-003d118
15
+ - 16bf52e:
25
16
 
26
17
  ## 8.9.0-next.13
27
18
 
@@ -727,6 +727,42 @@ export declare type AvpMoveDashboardRowPayload = Payload & {
727
727
  errors?: Maybe<Array<MutationError>>;
728
728
  success: Scalars['Boolean']['output'];
729
729
  };
730
+ export declare type AvpPermissionsDashboardUserAccess = {
731
+ accessLevel: AvpPermissionsDashboardUserAccessLevel;
732
+ accountId: Scalars['String']['input'];
733
+ };
734
+ export declare enum AvpPermissionsDashboardUserAccessLevel {
735
+ Manage = "MANAGE",
736
+ Read = "READ"
737
+ }
738
+ export declare type AvpPermissionsDashboardUserAccessResult = {
739
+ __typename?: 'AVPPermissionsDashboardUserAccessResult';
740
+ accessLevel: AvpPermissionsDashboardUserAccessLevel;
741
+ accountId: Scalars['String']['output'];
742
+ };
743
+ export declare type AvpPermissionsFailedDashboardUserAccess = {
744
+ __typename?: 'AVPPermissionsFailedDashboardUserAccess';
745
+ errorMessage: Scalars['String']['output'];
746
+ user: AvpPermissionsDashboardUserAccessResult;
747
+ };
748
+ export declare type AvpPermissionsHelloResponse = {
749
+ __typename?: 'AVPPermissionsHelloResponse';
750
+ hello?: Maybe<Scalars['String']['output']>;
751
+ };
752
+ export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
753
+ cloudId: Scalars['ID']['input'];
754
+ containerId?: InputMaybe<Scalars['ID']['input']>;
755
+ dashboardId: Scalars['ID']['input'];
756
+ users: Array<AvpPermissionsDashboardUserAccess>;
757
+ workspaceId: Scalars['ID']['input'];
758
+ };
759
+ export declare type AvpPermissionsUpdateDashboardUserAccessPayload = {
760
+ __typename?: 'AVPPermissionsUpdateDashboardUserAccessPayload';
761
+ errors?: Maybe<Array<MutationError>>;
762
+ failedUsers?: Maybe<Array<AvpPermissionsFailedDashboardUserAccess>>;
763
+ success: Scalars['Boolean']['output'];
764
+ updatedUsers?: Maybe<Array<AvpPermissionsDashboardUserAccessResult>>;
765
+ };
730
766
  export declare type AvpProductWorkspaceMapEntry = {
731
767
  product: Scalars['String']['input'];
732
768
  workspaceId: Scalars['ID']['input'];
@@ -1835,6 +1871,11 @@ export declare type AdminIcon = {
1835
1871
  name: Scalars['String']['output'];
1836
1872
  value: Scalars['String']['output'];
1837
1873
  };
1874
+ export declare enum AdminIdentityProviderPublicCertificateExpiryStatus {
1875
+ Expired = "EXPIRED",
1876
+ ExpiringSoon = "EXPIRING_SOON",
1877
+ Valid = "VALID"
1878
+ }
1838
1879
  export declare type AdminImpersonateUserInput = {
1839
1880
  accountId: Scalars['String']['input'];
1840
1881
  directoryId: Scalars['String']['input'];
@@ -2119,6 +2160,23 @@ export declare type AdminRoleIdCounts = {
2119
2160
  count: Scalars['Int']['output'];
2120
2161
  roleId: Scalars['String']['output'];
2121
2162
  };
2163
+ export declare type AdminSamlConfiguration = {
2164
+ __typename?: 'AdminSamlConfiguration';
2165
+ identityProviderDirectoryId: Scalars['ID']['output'];
2166
+ samlConfiguration: AdminSamlConfigurationDetails;
2167
+ samlConfigurationId: Scalars['ID']['output'];
2168
+ };
2169
+ export declare type AdminSamlConfigurationDetails = {
2170
+ __typename?: 'AdminSamlConfigurationDetails';
2171
+ assertionConsumerServiceUrl?: Maybe<Scalars['String']['output']>;
2172
+ entityId?: Maybe<Scalars['String']['output']>;
2173
+ identityProviderPublicCertificate: Scalars['String']['output'];
2174
+ identityProviderPublicCertificateExpirationTimestamp?: Maybe<Scalars['String']['output']>;
2175
+ identityProviderPublicCertificateExpiryStatus?: Maybe<AdminIdentityProviderPublicCertificateExpiryStatus>;
2176
+ issuer: Scalars['String']['output'];
2177
+ serviceProviderSingleLogoutConfiguration?: Maybe<AdminServiceProviderSingleLogoutConfiguration>;
2178
+ singleSignOnUrl: Scalars['String']['output'];
2179
+ };
2122
2180
  export declare type AdminSandbox = {
2123
2181
  __typename?: 'AdminSandbox';
2124
2182
  parentId?: Maybe<Scalars['ID']['output']>;
@@ -2166,6 +2224,15 @@ export declare type AdminSeats = {
2166
2224
  __typename?: 'AdminSeats';
2167
2225
  usageInfo?: Maybe<AdminUsageInfo>;
2168
2226
  };
2227
+ export declare type AdminServiceProviderSingleLogoutConfiguration = {
2228
+ __typename?: 'AdminServiceProviderSingleLogoutConfiguration';
2229
+ identityProviderUrl: Scalars['String']['output'];
2230
+ serviceProviderPublicCertificate?: Maybe<Scalars['String']['output']>;
2231
+ serviceProviderPublicCertificateExpiry?: Maybe<Scalars['String']['output']>;
2232
+ serviceProviderPublicCertificateId?: Maybe<Scalars['String']['output']>;
2233
+ serviceProviderUrl: Scalars['String']['output'];
2234
+ singleLogoutEnabled: Scalars['Boolean']['output'];
2235
+ };
2169
2236
  export declare type AdminSingle = {
2170
2237
  primitive?: InputMaybe<AdminPrimitive>;
2171
2238
  };
@@ -4112,7 +4179,7 @@ export declare type AppInstallationsFilter = {
4112
4179
  appId: Scalars['ID']['input'];
4113
4180
  environmentType?: InputMaybe<AppEnvironmentType>;
4114
4181
  };
4115
- export declare type AppLog = FunctionInvocationMetadata & Node & {
4182
+ export declare type AppLog = FunctionInvocationMetadata & {
4116
4183
  __typename?: 'AppLog';
4117
4184
  appLogLines?: Maybe<AppLogLineConnection>;
4118
4185
  appVersion: Scalars['String']['output'];
@@ -5418,6 +5485,10 @@ export declare type AssetsDmDataSourceMergeGetByObjectIdResponse = {
5418
5485
  step: Scalars['Int']['output'];
5419
5486
  tenantId: Scalars['String']['output'];
5420
5487
  };
5488
+ export declare type AssetsDmDataSourceMergeIsImportProgressingResponse = {
5489
+ __typename?: 'AssetsDMDataSourceMergeIsImportProgressingResponse';
5490
+ inProgress: Scalars['Boolean']['output'];
5491
+ };
5421
5492
  export declare type AssetsDmDataSourceMergeObjectAttribute = {
5422
5493
  __typename?: 'AssetsDMDataSourceMergeObjectAttribute';
5423
5494
  dataType: Scalars['Int']['output'];
@@ -15103,6 +15174,7 @@ export declare type ConfluenceAddTrackPayload = {
15103
15174
  __typename?: 'ConfluenceAddTrackPayload';
15104
15175
  errors?: Maybe<Array<ConfluenceAddTrackPayloadError>>;
15105
15176
  success: Scalars['Boolean']['output'];
15177
+ track?: Maybe<ConfluenceTrack>;
15106
15178
  };
15107
15179
  export declare type ConfluenceAddTrackPayloadError = {
15108
15180
  __typename?: 'ConfluenceAddTrackPayloadError';
@@ -22457,6 +22529,8 @@ export declare type ConvoAiJira3pRelatedLinksResult = {
22457
22529
  __typename?: 'ConvoAiJira3pRelatedLinksResult';
22458
22530
  edges?: Maybe<Array<ConvoAiJira3pRelatedLinksEdge>>;
22459
22531
  errors?: Maybe<Array<QueryError>>;
22532
+ no3pConnectorEnabled?: Maybe<Scalars['Boolean']['output']>;
22533
+ no3pConnectorOauthEnabled?: Maybe<Scalars['Boolean']['output']>;
22460
22534
  };
22461
22535
  export declare type ConvoAiJiraConfluenceBlogSuggestion = {
22462
22536
  __typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
@@ -22528,6 +22602,7 @@ export declare type ConvoAiThirdPartyRelatedLink = {
22528
22602
  id: Scalars['String']['output'];
22529
22603
  name: Scalars['String']['output'];
22530
22604
  productSource?: Maybe<Scalars['String']['output']>;
22605
+ thirdPartySourceProduct?: Maybe<Scalars['String']['output']>;
22531
22606
  url: Scalars['String']['output'];
22532
22607
  };
22533
22608
  export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
@@ -68645,6 +68720,7 @@ export declare type JiraFieldAssociationWithIssueTypesConnection = {
68645
68720
  __typename?: 'JiraFieldAssociationWithIssueTypesConnection';
68646
68721
  edges?: Maybe<Array<Maybe<JiraFieldAssociationWithIssueTypesEdge>>>;
68647
68722
  pageInfo: PageInfo;
68723
+ totalCount?: Maybe<Scalars['Int']['output']>;
68648
68724
  };
68649
68725
  export declare type JiraFieldAssociationWithIssueTypesEdge = {
68650
68726
  __typename?: 'JiraFieldAssociationWithIssueTypesEdge';
@@ -70240,6 +70316,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
70240
70316
  contentPanels?: Maybe<JiraIssueContentPanelConnection>;
70241
70317
  coverMedia?: Maybe<JiraWorkManagementBackground>;
70242
70318
  createdField?: Maybe<JiraDateTimePickerField>;
70319
+ deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
70243
70320
  deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
70244
70321
  descriptionField?: Maybe<JiraRichTextField>;
70245
70322
  designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
@@ -71945,6 +72022,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
71945
72022
  };
71946
72023
  export declare type JiraIssueSearchCustomInput = {
71947
72024
  jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
72025
+ jiraTimelineInput?: InputMaybe<JiraTimelineIssueSearchCustomInput>;
71948
72026
  };
71949
72027
  export declare type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
71950
72028
  export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
@@ -82799,6 +82877,12 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
82799
82877
  outwardItem?: Maybe<JiraIssue>;
82800
82878
  success: Scalars['Boolean']['output'];
82801
82879
  };
82880
+ export declare type JiraTimelineIssueSearchCustomInput = {
82881
+ additionalJql?: InputMaybe<Scalars['String']['input']>;
82882
+ boardId: Scalars['ID']['input'];
82883
+ customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
82884
+ quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
82885
+ };
82802
82886
  export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
82803
82887
  __typename?: 'JiraTimelineView';
82804
82888
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
@@ -88367,6 +88451,18 @@ export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
88367
88451
  Private = "PRIVATE",
88368
88452
  Public = "PUBLIC"
88369
88453
  }
88454
+ export declare type MarketplaceConsoleAppInput = {
88455
+ appKey: Scalars['ID']['input'];
88456
+ appName: Scalars['String']['input'];
88457
+ cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
88458
+ developerId?: InputMaybe<Scalars['ID']['input']>;
88459
+ onDemandPaymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
88460
+ parentProductKey?: InputMaybe<Scalars['ID']['input']>;
88461
+ summary?: InputMaybe<Scalars['String']['input']>;
88462
+ vendorId: Scalars['Int']['input'];
88463
+ vendorLinks?: InputMaybe<MarketplaceConsoleAppVendorLinksInput>;
88464
+ version: MarketplaceConsoleAppSoftwareVersionInput;
88465
+ };
88370
88466
  export declare type MarketplaceConsoleAppSoftwareShort = {
88371
88467
  __typename?: 'MarketplaceConsoleAppSoftwareShort';
88372
88468
  appKey: Scalars['ID']['output'];
@@ -88536,6 +88632,13 @@ export declare type MarketplaceConsoleAppSoftwares = {
88536
88632
  __typename?: 'MarketplaceConsoleAppSoftwares';
88537
88633
  appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
88538
88634
  };
88635
+ export declare type MarketplaceConsoleAppVendorLinksInput = {
88636
+ appStatusPage?: InputMaybe<Scalars['String']['input']>;
88637
+ forums?: InputMaybe<Scalars['String']['input']>;
88638
+ issueTracker?: InputMaybe<Scalars['String']['input']>;
88639
+ privacy?: InputMaybe<Scalars['String']['input']>;
88640
+ supportTicketSystem?: InputMaybe<Scalars['String']['input']>;
88641
+ };
88539
88642
  export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
88540
88643
  assets?: InputMaybe<MarketplaceConsoleCreateVersionAssetsInput>;
88541
88644
  buildNumber?: InputMaybe<Scalars['String']['input']>;
@@ -88613,6 +88716,11 @@ export declare type MarketplaceConsoleCreateAppSoftwareVersionMutationResponse =
88613
88716
  success: Scalars['Boolean']['output'];
88614
88717
  versionType: MarketplaceConsoleVersionType;
88615
88718
  };
88719
+ export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = MarketplaceConsoleCreatePrivateAppMutationResponse | MarketplaceConsoleDomainErrorResponse;
88720
+ export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
88721
+ __typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
88722
+ success: Scalars['Boolean']['output'];
88723
+ };
88616
88724
  export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
88617
88725
  __typename?: 'MarketplaceConsoleCreatePrivateAppVersionError';
88618
88726
  id: Scalars['ID']['output'];
@@ -88724,6 +88832,18 @@ export declare enum MarketplaceConsoleDevSpaceTier {
88724
88832
  Platinum = "PLATINUM",
88725
88833
  Silver = "SILVER"
88726
88834
  }
88835
+ export declare type MarketplaceConsoleDomainError = {
88836
+ __typename?: 'MarketplaceConsoleDomainError';
88837
+ code: Scalars['String']['output'];
88838
+ detail: Scalars['String']['output'];
88839
+ id?: Maybe<Scalars['String']['output']>;
88840
+ status: Scalars['String']['output'];
88841
+ title: Scalars['String']['output'];
88842
+ };
88843
+ export declare type MarketplaceConsoleDomainErrorResponse = {
88844
+ __typename?: 'MarketplaceConsoleDomainErrorResponse';
88845
+ errors?: Maybe<Array<Maybe<MarketplaceConsoleDomainError>>>;
88846
+ };
88727
88847
  export declare type MarketplaceConsoleEditAppVersionRequest = {
88728
88848
  appKey: Scalars['ID']['input'];
88729
88849
  bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
@@ -89126,6 +89246,7 @@ export declare type MarketplaceConsoleMutationApi = {
89126
89246
  createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
89127
89247
  createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
89128
89248
  createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
89249
+ createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
89129
89250
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
89130
89251
  deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
89131
89252
  deleteMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
@@ -89160,6 +89281,9 @@ export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersion
89160
89281
  cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
89161
89282
  version: MarketplaceConsoleAppVersionCreateRequestInput;
89162
89283
  };
89284
+ export declare type MarketplaceConsoleMutationApiCreatePrivateAppWithVersionArgs = {
89285
+ app: MarketplaceConsoleAppInput;
89286
+ };
89163
89287
  export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
89164
89288
  appSoftwareId: Scalars['String']['input'];
89165
89289
  token: Scalars['String']['input'];
@@ -94527,6 +94651,7 @@ export declare type Mutation = {
94527
94651
  assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
94528
94652
  assignIssueParent?: Maybe<AssignIssueParentOutput>;
94529
94653
  attachDanglingComment?: Maybe<Comment>;
94654
+ avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
94530
94655
  avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
94531
94656
  avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
94532
94657
  avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
@@ -95565,6 +95690,9 @@ export declare type MutationAssignIssueParentArgs = {
95565
95690
  export declare type MutationAttachDanglingCommentArgs = {
95566
95691
  input: ReattachInlineCommentInput;
95567
95692
  };
95693
+ export declare type MutationAvpPermissions_UpdateDashboardUserAccessArgs = {
95694
+ input: AvpPermissionsUpdateDashboardUserAccessInput;
95695
+ };
95568
95696
  export declare type MutationAvp_AddDashboardElementArgs = {
95569
95697
  input: AvpAddDashboardElementInput;
95570
95698
  };
@@ -100811,6 +100939,7 @@ export declare type Query = {
100811
100939
  admin_eventLocations?: Maybe<AdminEventLocationConnection>;
100812
100940
  admin_group?: Maybe<AdminGroup>;
100813
100941
  admin_groups?: Maybe<AdminGroupConnection>;
100942
+ admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
100814
100943
  admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
100815
100944
  admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
100816
100945
  admin_org?: Maybe<AdminOrganization>;
@@ -100899,6 +101028,7 @@ export declare type Query = {
100899
101028
  assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
100900
101029
  assetsDM_dataSourceMergeGetByObjectId?: Maybe<AssetsDmDataSourceMergeGetByObjectIdResponse>;
100901
101030
  assetsDM_dataSourceMergeGetObjectsForImport?: Maybe<Array<AssetsDmDataSourceMergeObjectForImportInfo>>;
101031
+ assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
100902
101032
  assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
100903
101033
  assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
100904
101034
  assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
@@ -100924,6 +101054,7 @@ export declare type Query = {
100924
101054
  atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
100925
101055
  atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
100926
101056
  availableContentStates?: Maybe<AvailableContentStates>;
101057
+ avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
100927
101058
  avp_getChart?: Maybe<AvpChart>;
100928
101059
  avp_getDashboard?: Maybe<AvpDashboard>;
100929
101060
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
@@ -101746,6 +101877,10 @@ export declare type QueryAdmin_GroupsArgs = {
101746
101877
  input?: InputMaybe<AdminSearchGroupInput>;
101747
101878
  last?: InputMaybe<Scalars['Int']['input']>;
101748
101879
  };
101880
+ export declare type QueryAdmin_IdentityProviderDirectorySamlConfigurationArgs = {
101881
+ identityProviderDirectoryId: Scalars['ID']['input'];
101882
+ orgId: Scalars['ID']['input'];
101883
+ };
101749
101884
  export declare type QueryAdmin_InvitePoliciesArgs = {
101750
101885
  after?: InputMaybe<Scalars['String']['input']>;
101751
101886
  before?: InputMaybe<Scalars['String']['input']>;
@@ -101939,6 +102074,7 @@ export declare type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
101939
102074
  };
101940
102075
  export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
101941
102076
  cloudId: Scalars['String']['input'];
102077
+ scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
101942
102078
  toolsToFetch: Array<AgentStudioToolIdAndSource>;
101943
102079
  };
101944
102080
  export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
@@ -102199,6 +102335,10 @@ export declare type QueryAssetsDm_DataSourceMergeGetObjectsForImportArgs = {
102199
102335
  dataSourceId: Scalars['ID']['input'];
102200
102336
  workspaceId: Scalars['ID']['input'];
102201
102337
  };
102338
+ export declare type QueryAssetsDm_DataSourceMergeIsImportProgressingArgs = {
102339
+ cloudId: Scalars['ID']['input'];
102340
+ workspaceId: Scalars['ID']['input'];
102341
+ };
102202
102342
  export declare type QueryAssetsDm_DataSourceTransformArgs = {
102203
102343
  cloudID: Scalars['ID']['input'];
102204
102344
  dataSourceId?: InputMaybe<Scalars['ID']['input']>;
@@ -102325,6 +102465,10 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
102325
102465
  export declare type QueryAvailableContentStatesArgs = {
102326
102466
  contentId: Scalars['ID']['input'];
102327
102467
  };
102468
+ export declare type QueryAvpPermissions_HelloArgs = {
102469
+ cloudId: Scalars['ID']['input'];
102470
+ integrationId: Scalars['String']['input'];
102471
+ };
102328
102472
  export declare type QueryAvp_GetChartArgs = {
102329
102473
  chartAri: Scalars['ID']['input'];
102330
102474
  };
@@ -103529,6 +103673,7 @@ export declare type QueryDevai_RovodevIssueViewQueryArgs = {
103529
103673
  after?: InputMaybe<Scalars['String']['input']>;
103530
103674
  cloudId?: InputMaybe<Scalars['ID']['input']>;
103531
103675
  first?: InputMaybe<Scalars['Int']['input']>;
103676
+ includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
103532
103677
  issueKey?: InputMaybe<Scalars['String']['input']>;
103533
103678
  };
103534
103679
  export declare type QueryDevai_RovodevSessionByIdArgs = {
@@ -129708,6 +129853,7 @@ export declare type StakeholderCommsIncidentCreateRequest = {
129708
129853
  message?: InputMaybe<Scalars['String']['input']>;
129709
129854
  name: Scalars['String']['input'];
129710
129855
  pageId: Scalars['String']['input'];
129856
+ shouldSendNotifications?: InputMaybe<Scalars['Boolean']['input']>;
129711
129857
  status?: InputMaybe<StakeholderCommsIncidentStatus>;
129712
129858
  };
129713
129859
  export declare enum StakeholderCommsIncidentImpact {
@@ -129756,6 +129902,7 @@ export declare type StakeholderCommsIncidentUpdate = {
129756
129902
  incidentId?: Maybe<Scalars['String']['output']>;
129757
129903
  oldStatus?: Maybe<StakeholderCommsIncidentStatus>;
129758
129904
  scheduledAt?: Maybe<Scalars['String']['output']>;
129905
+ shouldSendNotifications?: Maybe<Scalars['Boolean']['output']>;
129759
129906
  status?: Maybe<StakeholderCommsIncidentStatus>;
129760
129907
  updatedAt?: Maybe<Scalars['String']['output']>;
129761
129908
  };
@@ -129766,6 +129913,7 @@ export declare type StakeholderCommsIncidentUpdateRequest = {
129766
129913
  message?: InputMaybe<Scalars['String']['input']>;
129767
129914
  name?: InputMaybe<Scalars['String']['input']>;
129768
129915
  pageId: Scalars['String']['input'];
129916
+ shouldSendNotifications?: InputMaybe<Scalars['Boolean']['input']>;
129769
129917
  status?: InputMaybe<StakeholderCommsIncidentStatus>;
129770
129918
  };
129771
129919
  export declare type StakeholderCommsIncidentWithUpdates = {
@@ -129876,6 +130024,7 @@ export declare type StakeholderCommsNestedComponentEdge = {
129876
130024
  };
129877
130025
  export declare type StakeholderCommsNestedComponentWithUptime = {
129878
130026
  __typename?: 'StakeholderCommsNestedComponentWithUptime';
130027
+ componentUptimePercentage?: Maybe<Scalars['Float']['output']>;
129879
130028
  components?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
129880
130029
  dailyUptimes?: Maybe<Array<Maybe<StakeholderCommsDailyComponentUptime>>>;
129881
130030
  description?: Maybe<Scalars['String']['output']>;
@@ -133508,6 +133657,7 @@ export declare type TownsquareProjectsAddJiraWorkItemLinkPayload = {
133508
133657
  errors?: Maybe<Array<MutationError>>;
133509
133658
  success: Scalars['Boolean']['output'];
133510
133659
  successMessage?: Maybe<TownsquareProjectsAddJiraWorkItemLinkSuccessMessage>;
133660
+ unlinkedWorkItems?: Maybe<Array<Maybe<JiraIssue>>>;
133511
133661
  workItem?: Maybe<JiraIssue>;
133512
133662
  };
133513
133663
  export declare type TownsquareProjectsAddJiraWorkItemLinkSuccessMessage = {
@@ -135298,10 +135448,22 @@ export declare enum TrelloCardCoverColor {
135298
135448
  Sky = "SKY",
135299
135449
  Yellow = "YELLOW"
135300
135450
  }
135451
+ export declare type TrelloCardCoverInput = {
135452
+ brightness?: InputMaybe<Scalars['String']['input']>;
135453
+ size?: InputMaybe<Scalars['String']['input']>;
135454
+ type: TrelloCardCoverTypeInput;
135455
+ yPosition?: InputMaybe<Scalars['Float']['input']>;
135456
+ };
135301
135457
  export declare enum TrelloCardCoverSize {
135302
135458
  Full = "FULL",
135303
135459
  Normal = "NORMAL"
135304
135460
  }
135461
+ export declare type TrelloCardCoverTypeInput = {
135462
+ attachmentId?: InputMaybe<Scalars['String']['input']>;
135463
+ color?: InputMaybe<Scalars['String']['input']>;
135464
+ uploadedBackgroundId?: InputMaybe<Scalars['String']['input']>;
135465
+ url?: InputMaybe<Scalars['String']['input']>;
135466
+ };
135305
135467
  export declare type TrelloCardCoverUpdated = {
135306
135468
  __typename?: 'TrelloCardCoverUpdated';
135307
135469
  attachment?: Maybe<TrelloAttachmentUpdated>;
@@ -136298,6 +136460,15 @@ export declare type TrelloListViewer = {
136298
136460
  __typename?: 'TrelloListViewer';
136299
136461
  subscribed?: Maybe<Scalars['Boolean']['output']>;
136300
136462
  };
136463
+ export declare type TrelloMarkCardCompleteInput = {
136464
+ cardId: Scalars['ID']['input'];
136465
+ };
136466
+ export declare type TrelloMarkCardCompletePayload = Payload & {
136467
+ __typename?: 'TrelloMarkCardCompletePayload';
136468
+ card?: Maybe<TrelloCard>;
136469
+ errors?: Maybe<Array<MutationError>>;
136470
+ success: Scalars['Boolean']['output'];
136471
+ };
136301
136472
  export declare type TrelloMarkInboxNotificationsReadInput = {
136302
136473
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
136303
136474
  read?: InputMaybe<Scalars['Boolean']['input']>;
@@ -136567,6 +136738,7 @@ export declare type TrelloMutationApi = {
136567
136738
  deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
136568
136739
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
136569
136740
  generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
136741
+ markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
136570
136742
  markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
136571
136743
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
136572
136744
  movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
@@ -136596,6 +136768,7 @@ export declare type TrelloMutationApi = {
136596
136768
  updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
136597
136769
  updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
136598
136770
  updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
136771
+ updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
136599
136772
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
136600
136773
  updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
136601
136774
  updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
@@ -136656,6 +136829,9 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
136656
136829
  export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
136657
136830
  input: TrelloGenerateChecklistsForCardInput;
136658
136831
  };
136832
+ export declare type TrelloMutationApiMarkCardCompleteArgs = {
136833
+ input: TrelloMarkCardCompleteInput;
136834
+ };
136659
136835
  export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
136660
136836
  input?: InputMaybe<TrelloMarkInboxNotificationsReadInput>;
136661
136837
  };
@@ -136743,6 +136919,9 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
136743
136919
  export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
136744
136920
  input: TrelloUpdateBoardVisibilityInput;
136745
136921
  };
136922
+ export declare type TrelloMutationApiUpdateCardCoverArgs = {
136923
+ input: TrelloUpdateCardCoverInput;
136924
+ };
136746
136925
  export declare type TrelloMutationApiUpdateCardNameArgs = {
136747
136926
  input: TrelloUpdateCardNameInput;
136748
136927
  };
@@ -137893,6 +138072,16 @@ export declare type TrelloUpdateCardCompleteActionDisplayEntities = {
137893
138072
  card?: Maybe<TrelloActionCardEntity>;
137894
138073
  memberCreator?: Maybe<TrelloActionMemberEntity>;
137895
138074
  };
138075
+ export declare type TrelloUpdateCardCoverInput = {
138076
+ cardId: Scalars['ID']['input'];
138077
+ cover: TrelloCardCoverInput;
138078
+ };
138079
+ export declare type TrelloUpdateCardCoverPayload = Payload & {
138080
+ __typename?: 'TrelloUpdateCardCoverPayload';
138081
+ cardId?: Maybe<Scalars['ID']['output']>;
138082
+ errors?: Maybe<Array<MutationError>>;
138083
+ success: Scalars['Boolean']['output'];
138084
+ };
137896
138085
  export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
137897
138086
  __typename?: 'TrelloUpdateCardDueAction';
137898
138087
  appCreator?: Maybe<TrelloAppCreator>;