@forge/cli-shared 8.15.2-next.0-experimental-1dcd593 → 8.15.2-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,18 +1,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 8.15.2-next.0-experimental-1dcd593
3
+ ## 8.15.2-next.2
4
4
 
5
- ### Minor Changes
5
+ ### Patch Changes
6
+
7
+ - 7af27e8: Updated wording for install list to match dev console
6
8
 
7
- - b59aee1: Support hot reloading for forge containers tunneling
9
+ ## 8.15.2-next.1
8
10
 
9
11
  ### Patch Changes
10
12
 
11
- - Updated dependencies [b59aee1]
12
13
  - Updated dependencies [beddb18]
13
- - Updated dependencies [561036a]
14
- - Updated dependencies [b248c8f]
15
- - @forge/manifest@12.1.1-next.0-experimental-1dcd593
14
+ - @forge/manifest@12.1.1-next.1
16
15
 
17
16
  ## 8.15.2-next.0
18
17
 
@@ -131,6 +131,7 @@ export declare type Scalars = {
131
131
  };
132
132
  export declare type AiConfigResponse = {
133
133
  __typename?: 'AIConfigResponse';
134
+ isAIEarlyAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
134
135
  isEnabled: Scalars['Boolean']['output'];
135
136
  isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
136
137
  isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -2188,6 +2189,10 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
2188
2189
  ScheduledStartDate = "SCHEDULED_START_DATE",
2189
2190
  Visibility = "VISIBILITY"
2190
2191
  }
2192
+ export declare type AdminApiTokenConfig = {
2193
+ __typename?: 'AdminApiTokenConfig';
2194
+ isApiTokenAllowed?: Maybe<Scalars['Boolean']['output']>;
2195
+ };
2191
2196
  export declare type AdminAppFilter = {
2192
2197
  parentId?: InputMaybe<Scalars['String']['input']>;
2193
2198
  parentType?: InputMaybe<AdminAppParentType>;
@@ -2373,6 +2378,14 @@ export declare type AdminAuditLogGroupEventActionEdge = {
2373
2378
  cursor: Scalars['String']['output'];
2374
2379
  node: AdminAuditLogGroupEventAction;
2375
2380
  };
2381
+ export declare type AdminAuthPolicyConfig = {
2382
+ __typename?: 'AdminAuthPolicyConfig';
2383
+ apiToken?: Maybe<AdminApiTokenConfig>;
2384
+ classic?: Maybe<AdminClassicConfig>;
2385
+ mfa?: Maybe<AdminMfaConfig>;
2386
+ session?: Maybe<AdminSessionPolicyConfig>;
2387
+ sso?: Maybe<AdminSsoConfig>;
2388
+ };
2376
2389
  export declare type AdminAuthenticationPolicyDetails = {
2377
2390
  __typename?: 'AdminAuthenticationPolicyDetails';
2378
2391
  authenticationPolicyId: Scalars['ID']['output'];
@@ -2408,6 +2421,10 @@ export declare type AdminCheckLicensesCapacity = {
2408
2421
  __typename?: 'AdminCheckLicensesCapacity';
2409
2422
  limitExceeded: Scalars['Boolean']['output'];
2410
2423
  };
2424
+ export declare type AdminClassicConfig = {
2425
+ __typename?: 'AdminClassicConfig';
2426
+ isPasswordAllowed?: Maybe<Scalars['Boolean']['output']>;
2427
+ };
2411
2428
  export declare type AdminCommerceEntitlementRelationship = {
2412
2429
  __typename?: 'AdminCommerceEntitlementRelationship';
2413
2430
  entitlementId?: Maybe<Scalars['ID']['output']>;
@@ -2503,6 +2520,28 @@ export declare type AdminDirectory = {
2503
2520
  id: Scalars['ID']['output'];
2504
2521
  owner: Scalars['String']['output'];
2505
2522
  };
2523
+ export declare type AdminDomainClaim = {
2524
+ __typename?: 'AdminDomainClaim';
2525
+ domain: Scalars['String']['output'];
2526
+ isVerified: Scalars['Boolean']['output'];
2527
+ status: AdminDomainClaimStatus;
2528
+ timestamp: Scalars['String']['output'];
2529
+ verificationType?: Maybe<AdminDomainVerificationType>;
2530
+ };
2531
+ export declare enum AdminDomainClaimStatus {
2532
+ Deleted = "DELETED",
2533
+ MissingToken = "MISSING_TOKEN",
2534
+ Superseded = "SUPERSEDED",
2535
+ Unverified = "UNVERIFIED",
2536
+ Verified = "VERIFIED",
2537
+ VerifiedUnclaimed = "VERIFIED_UNCLAIMED"
2538
+ }
2539
+ export declare enum AdminDomainVerificationType {
2540
+ Azure = "AZURE",
2541
+ Dns = "DNS",
2542
+ Google = "GOOGLE",
2543
+ Http = "HTTP"
2544
+ }
2506
2545
  export declare type AdminEntitlement = {
2507
2546
  __typename?: 'AdminEntitlement';
2508
2547
  bundleName?: Maybe<Scalars['String']['output']>;
@@ -2819,10 +2858,41 @@ export declare type AdminLimit = {
2819
2858
  __typename?: 'AdminLimit';
2820
2859
  limit?: Maybe<Scalars['Int']['output']>;
2821
2860
  };
2861
+ export declare type AdminMfaConfig = {
2862
+ __typename?: 'AdminMfaConfig';
2863
+ isEnforced?: Maybe<Scalars['Boolean']['output']>;
2864
+ };
2822
2865
  export declare enum AdminOperation {
2823
2866
  And = "AND",
2824
2867
  Nor = "NOR"
2825
2868
  }
2869
+ export declare type AdminOrgDetails = {
2870
+ __typename?: 'AdminOrgDetails';
2871
+ authPolicies: Array<AdminOrgPolicyDetail>;
2872
+ directories: Array<AdminOrgDirectoryDetail>;
2873
+ domainClaims?: Maybe<Array<AdminDomainClaim>>;
2874
+ orgId: Scalars['ID']['output'];
2875
+ };
2876
+ export declare type AdminOrgDirectoryDetail = {
2877
+ __typename?: 'AdminOrgDirectoryDetail';
2878
+ identityProviderDirectoryId: Scalars['ID']['output'];
2879
+ identityProviderType?: Maybe<AdminIdentityProviderType>;
2880
+ isActive: Scalars['Boolean']['output'];
2881
+ isDefault: Scalars['Boolean']['output'];
2882
+ linkedDomains: Array<Scalars['String']['output']>;
2883
+ samlConfigurationId?: Maybe<Scalars['ID']['output']>;
2884
+ scimDirectoryId?: Maybe<Scalars['ID']['output']>;
2885
+ };
2886
+ export declare type AdminOrgPolicyDetail = {
2887
+ __typename?: 'AdminOrgPolicyDetail';
2888
+ authPolicy: AdminAuthPolicyConfig;
2889
+ authenticationPolicyId: Scalars['ID']['output'];
2890
+ identityProviderDirectoryId: Scalars['ID']['output'];
2891
+ isActive: Scalars['Boolean']['output'];
2892
+ isDefault: Scalars['Boolean']['output'];
2893
+ numberOfUsers?: Maybe<Scalars['Int']['output']>;
2894
+ policyType: AdminAuthenticationPolicyType;
2895
+ };
2826
2896
  export declare type AdminOrganization = {
2827
2897
  __typename?: 'AdminOrganization';
2828
2898
  id: Scalars['ID']['output'];
@@ -3021,6 +3091,11 @@ export declare type AdminServiceProviderSingleLogoutConfiguration = {
3021
3091
  serviceProviderUrl: Scalars['String']['output'];
3022
3092
  singleLogoutEnabled: Scalars['Boolean']['output'];
3023
3093
  };
3094
+ export declare type AdminSessionPolicyConfig = {
3095
+ __typename?: 'AdminSessionPolicyConfig';
3096
+ idleSessionTimeoutSeconds?: Maybe<Scalars['Int']['output']>;
3097
+ sessionDurationSeconds?: Maybe<Scalars['Int']['output']>;
3098
+ };
3024
3099
  export declare type AdminSingle = {
3025
3100
  primitive?: InputMaybe<AdminPrimitive>;
3026
3101
  };
@@ -3064,6 +3139,11 @@ export declare type AdminSortBy = {
3064
3139
  direction: SortDirection;
3065
3140
  fieldName: Scalars['String']['input'];
3066
3141
  };
3142
+ export declare type AdminSsoConfig = {
3143
+ __typename?: 'AdminSsoConfig';
3144
+ samlConfigurationId?: Maybe<Scalars['ID']['output']>;
3145
+ type: AdminSsoType;
3146
+ };
3067
3147
  export declare enum AdminSsoType {
3068
3148
  Google = "GOOGLE",
3069
3149
  None = "NONE",
@@ -4859,6 +4939,13 @@ export declare type AgentWorkspaceCreateSkillInput = {
4859
4939
  parentCatalogIds: Array<Scalars['ID']['input']>;
4860
4940
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
4861
4941
  };
4942
+ export declare type AgentWorkspaceCreateUserSkillInput = {
4943
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
4944
+ cloudId: Scalars['ID']['input'];
4945
+ proficiency?: InputMaybe<Scalars['Int']['input']>;
4946
+ skillId: Scalars['ID']['input'];
4947
+ userId: Scalars['ID']['input'];
4948
+ };
4862
4949
  export declare enum AgentWorkspaceDayOfWeek {
4863
4950
  Friday = "FRIDAY",
4864
4951
  Monday = "MONDAY",
@@ -5096,6 +5183,41 @@ export declare type AgentWorkspaceUpdateSkillInput = {
5096
5183
  parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5097
5184
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5098
5185
  };
5186
+ export declare type AgentWorkspaceUpdateUserSkillInput = {
5187
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
5188
+ cloudId: Scalars['ID']['input'];
5189
+ id: Scalars['ID']['input'];
5190
+ proficiency?: InputMaybe<Scalars['Int']['input']>;
5191
+ };
5192
+ export declare type AgentWorkspaceUserSkill = {
5193
+ __typename?: 'AgentWorkspaceUserSkill';
5194
+ attributes?: Maybe<Scalars['JSON']['output']>;
5195
+ id: Scalars['ID']['output'];
5196
+ proficiency?: Maybe<Scalars['Int']['output']>;
5197
+ skillId: Scalars['ID']['output'];
5198
+ userId: Scalars['ID']['output'];
5199
+ };
5200
+ export declare type AgentWorkspaceUserSkillConnection = {
5201
+ __typename?: 'AgentWorkspaceUserSkillConnection';
5202
+ nodes: Array<AgentWorkspaceUserSkill>;
5203
+ pageInfo: AgentWorkspaceUserSkillPageInfo;
5204
+ };
5205
+ export declare type AgentWorkspaceUserSkillFilter = {
5206
+ attributes?: InputMaybe<Scalars['JSON']['input']>;
5207
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5208
+ proficiencyGreaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
5209
+ skillId?: InputMaybe<Scalars['ID']['input']>;
5210
+ userId?: InputMaybe<Scalars['ID']['input']>;
5211
+ };
5212
+ export declare type AgentWorkspaceUserSkillPageInfo = {
5213
+ __typename?: 'AgentWorkspaceUserSkillPageInfo';
5214
+ currentPage: Scalars['Int']['output'];
5215
+ hasNextPage: Scalars['Boolean']['output'];
5216
+ hasPreviousPage: Scalars['Boolean']['output'];
5217
+ pageSize: Scalars['Int']['output'];
5218
+ totalCount: Scalars['Int']['output'];
5219
+ totalPages: Scalars['Int']['output'];
5220
+ };
5099
5221
  export declare enum AiCoreApiQuestionType {
5100
5222
  DraftDocument = "DRAFT_DOCUMENT",
5101
5223
  KnowledgeBase = "KNOWLEDGE_BASE"
@@ -5764,6 +5886,7 @@ export declare type AppInstallation = {
5764
5886
  app?: Maybe<App>;
5765
5887
  appEnvironment?: Maybe<AppEnvironment>;
5766
5888
  appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
5889
+ appLicense?: Maybe<AppInstallationAppLicense>;
5767
5890
  computeVersion?: Maybe<AppEnvironmentVersion>;
5768
5891
  config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
5769
5892
  createdAt: Scalars['DateTime']['output'];
@@ -5779,6 +5902,19 @@ export declare type AppInstallation = {
5779
5902
  secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
5780
5903
  version?: Maybe<AppVersion>;
5781
5904
  };
5905
+ export declare type AppInstallationAppLicense = {
5906
+ __typename?: 'AppInstallationAppLicense';
5907
+ active: Scalars['Boolean']['output'];
5908
+ billingPeriod?: Maybe<Scalars['String']['output']>;
5909
+ capabilitySet?: Maybe<AppLicenseCapabilitySet>;
5910
+ ccpEntitlementId?: Maybe<Scalars['String']['output']>;
5911
+ ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
5912
+ isEvaluation?: Maybe<Scalars['Boolean']['output']>;
5913
+ subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
5914
+ supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
5915
+ trialEndDate?: Maybe<Scalars['DateTime']['output']>;
5916
+ type?: Maybe<Scalars['String']['output']>;
5917
+ };
5782
5918
  export declare type AppInstallationByIndexConnection = {
5783
5919
  __typename?: 'AppInstallationByIndexConnection';
5784
5920
  edges?: Maybe<Array<Maybe<AppInstallationByIndexEdge>>>;
@@ -5946,6 +6082,10 @@ export declare type AppInstallationsFilter = {
5946
6082
  appId: Scalars['ID']['input'];
5947
6083
  environmentType?: InputMaybe<AppEnvironmentType>;
5948
6084
  };
6085
+ export declare enum AppLicenseCapabilitySet {
6086
+ CapabilityAdvanced = "capabilityAdvanced",
6087
+ CapabilityStandard = "capabilityStandard"
6088
+ }
5949
6089
  export declare type AppLog = FunctionInvocationMetadata & {
5950
6090
  __typename?: 'AppLog';
5951
6091
  appLogLines?: Maybe<AppLogLineConnection>;
@@ -26354,6 +26494,12 @@ export declare type ConfluenceRedactionMetadataEdge = {
26354
26494
  cursor?: Maybe<Scalars['String']['output']>;
26355
26495
  node?: Maybe<ConfluenceRedactionMetadata>;
26356
26496
  };
26497
+ export declare type ConfluenceRemoveContentApprovalReviewerInput = {
26498
+ contentApprovalReviewId: Scalars['ID']['input'];
26499
+ principalId: Scalars['ID']['input'];
26500
+ principalType: ConfluencePrincipalType;
26501
+ workflowApplicationId: Scalars['ID']['input'];
26502
+ };
26357
26503
  export declare type ConfluenceRemoveTrackPayload = {
26358
26504
  __typename?: 'ConfluenceRemoveTrackPayload';
26359
26505
  errors?: Maybe<Array<ConfluenceRemoveTrackPayloadError>>;
@@ -37211,6 +37357,7 @@ export declare type DlpDetectorClassificationMappingRequestInput = {
37211
37357
  classificationAri?: InputMaybe<Scalars['String']['input']>;
37212
37358
  detectorId?: InputMaybe<Scalars['String']['input']>;
37213
37359
  orgId?: InputMaybe<Scalars['String']['input']>;
37360
+ scope?: InputMaybe<DlpScopeInput>;
37214
37361
  status?: InputMaybe<DlpMappingStatus>;
37215
37362
  };
37216
37363
  export declare type DlpDetectorClassificationMappingResponse = {
@@ -37222,12 +37369,25 @@ export declare type DlpDetectorClassificationMappingResponse = {
37222
37369
  createdOn?: Maybe<Scalars['String']['output']>;
37223
37370
  detectorId?: Maybe<Scalars['String']['output']>;
37224
37371
  orgId?: Maybe<Scalars['String']['output']>;
37372
+ scope?: Maybe<DlpScope>;
37225
37373
  status?: Maybe<DlpMappingStatus>;
37226
37374
  };
37227
37375
  export declare enum DlpMappingStatus {
37228
37376
  Draft = "DRAFT",
37229
37377
  Published = "PUBLISHED"
37230
37378
  }
37379
+ export declare type DlpScope = {
37380
+ __typename?: 'DlpScope';
37381
+ scopeType?: Maybe<DlpScopeType>;
37382
+ values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
37383
+ };
37384
+ export declare type DlpScopeInput = {
37385
+ scopeType?: InputMaybe<DlpScopeType>;
37386
+ values?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
37387
+ };
37388
+ export declare enum DlpScopeType {
37389
+ Workspace = "WORKSPACE"
37390
+ }
37231
37391
  export declare type DocumentBody = {
37232
37392
  __typename?: 'DocumentBody';
37233
37393
  representation: DocumentRepresentation;
@@ -103960,6 +104120,7 @@ export declare type JiraGradientBackground = JiraBackground & {
103960
104120
  };
103961
104121
  export declare type JiraGrantTypeKey = {
103962
104122
  __typename?: 'JiraGrantTypeKey';
104123
+ grantsPerPermissionLimit?: Maybe<Scalars['Int']['output']>;
103963
104124
  key: JiraGrantTypeKeyEnum;
103964
104125
  name: Scalars['String']['output'];
103965
104126
  };
@@ -104818,6 +104979,10 @@ export declare type JiraIssueArchivePayload = Payload & {
104818
104979
  issueCount?: Maybe<Scalars['Int']['output']>;
104819
104980
  success: Scalars['Boolean']['output'];
104820
104981
  };
104982
+ export declare type JiraIssueArchivedStreamHubPayload = {
104983
+ __typename?: 'JiraIssueArchivedStreamHubPayload';
104984
+ resource?: Maybe<Scalars['ID']['output']>;
104985
+ };
104821
104986
  export declare type JiraIssueAttachmentFilterInput = {
104822
104987
  mimeTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
104823
104988
  };
@@ -110502,6 +110667,7 @@ export declare type JiraPermissionGrants = {
110502
110667
  __typename?: 'JiraPermissionGrants';
110503
110668
  grantType: JiraGrantTypeKey;
110504
110669
  grantValues?: Maybe<Array<JiraPermissionGrantValue>>;
110670
+ grantsPerPermissionLimit?: Maybe<Scalars['Int']['output']>;
110505
110671
  totalCount?: Maybe<Scalars['Int']['output']>;
110506
110672
  };
110507
110673
  export declare type JiraPermissionLevel = {
@@ -116002,6 +116168,10 @@ export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
116002
116168
  errors?: Maybe<Array<MutationError>>;
116003
116169
  success: Scalars['Boolean']['output'];
116004
116170
  };
116171
+ export declare type JiraSetCalendarViewFilterInput = {
116172
+ jql: Scalars['String']['input'];
116173
+ viewId: Scalars['ID']['input'];
116174
+ };
116005
116175
  export declare type JiraSetCapacityMostRecentSubRouteInput = {
116006
116176
  cloudId: Scalars['ID']['input'];
116007
116177
  scopeId: Scalars['ID']['input'];
@@ -117073,6 +117243,7 @@ export declare type JiraSubscription = {
117073
117243
  onChildIssueStatusUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
117074
117244
  onChildIssueUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
117075
117245
  onIssueArchivedByProject?: Maybe<JiraIssue>;
117246
+ onIssueArchivedByProjectsNoEnrichment?: Maybe<JiraIssueArchivedStreamHubPayload>;
117076
117247
  onIssueCreatedByProject?: Maybe<JiraIssue>;
117077
117248
  onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
117078
117249
  onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
@@ -117163,6 +117334,10 @@ export declare type JiraSubscriptionOnIssueArchivedByProjectArgs = {
117163
117334
  cloudId: Scalars['ID']['input'];
117164
117335
  projectId: Scalars['String']['input'];
117165
117336
  };
117337
+ export declare type JiraSubscriptionOnIssueArchivedByProjectsNoEnrichmentArgs = {
117338
+ cloudId: Scalars['ID']['input'];
117339
+ projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
117340
+ };
117166
117341
  export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
117167
117342
  cloudId: Scalars['ID']['input'];
117168
117343
  projectId: Scalars['String']['input'];
@@ -127612,6 +127787,7 @@ export declare type MercuryChangeProposal = Node & {
127612
127787
  __typename?: 'MercuryChangeProposal';
127613
127788
  comments?: Maybe<MercuryChangeProposalCommentConnection>;
127614
127789
  createdDate: Scalars['String']['output'];
127790
+ customFields?: Maybe<Array<MercuryCustomField>>;
127615
127791
  description?: Maybe<Scalars['String']['output']>;
127616
127792
  focusArea?: Maybe<MercuryFocusArea>;
127617
127793
  funding?: Maybe<MercuryChangeProposalFunding>;
@@ -130056,6 +130232,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
130056
130232
  providers?: Maybe<MercuryProviderConnection>;
130057
130233
  searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
130058
130234
  workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
130235
+ workTypes?: Maybe<Array<Maybe<MercuryProviderWorkType>>>;
130059
130236
  };
130060
130237
  export declare type MercuryProviderOrchestrationQueryApiConnectedProvidersArgs = {
130061
130238
  cloudId?: InputMaybe<Scalars['ID']['input']>;
@@ -130080,6 +130257,9 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArg
130080
130257
  export declare type MercuryProviderOrchestrationQueryApiWorkStatusesArgs = {
130081
130258
  cloudId: Scalars['ID']['input'];
130082
130259
  };
130260
+ export declare type MercuryProviderOrchestrationQueryApiWorkTypesArgs = {
130261
+ cloudId: Scalars['ID']['input'];
130262
+ };
130083
130263
  export declare type MercuryProviderUser = {
130084
130264
  id: Scalars['ID']['output'];
130085
130265
  name?: Maybe<Scalars['String']['output']>;
@@ -130170,6 +130350,11 @@ export declare enum MercuryProviderWorkTargetDateType {
130170
130350
  Month = "MONTH",
130171
130351
  Quarter = "QUARTER"
130172
130352
  }
130353
+ export declare type MercuryProviderWorkType = {
130354
+ __typename?: 'MercuryProviderWorkType';
130355
+ name: Scalars['String']['output'];
130356
+ providerKey: Scalars['String']['output'];
130357
+ };
130173
130358
  export declare type MercuryPublishFocusAreaInput = {
130174
130359
  cloudId?: InputMaybe<Scalars['ID']['input']>;
130175
130360
  id: Scalars['ID']['input'];
@@ -131835,10 +132020,12 @@ export declare type Mutation = {
131835
132020
  agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogType>;
131836
132021
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
131837
132022
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkill>;
132023
+ agentWorkspace_createUserSkill?: Maybe<AgentWorkspaceUserSkill>;
131838
132024
  agentWorkspace_deleteCatalog?: Maybe<Scalars['Boolean']['output']>;
131839
132025
  agentWorkspace_deleteCatalogType?: Maybe<Scalars['Boolean']['output']>;
131840
132026
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
131841
132027
  agentWorkspace_deleteSkill?: Maybe<Scalars['Boolean']['output']>;
132028
+ agentWorkspace_deleteUserSkill?: Maybe<Scalars['Boolean']['output']>;
131842
132029
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
131843
132030
  agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
131844
132031
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
@@ -131846,6 +132033,7 @@ export declare type Mutation = {
131846
132033
  agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogType>;
131847
132034
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
131848
132035
  agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkill>;
132036
+ agentWorkspace_updateUserSkill?: Maybe<AgentWorkspaceUserSkill>;
131849
132037
  appRecommendations?: Maybe<AppRecMutation>;
131850
132038
  appStorage?: Maybe<AppStorageMutation>;
131851
132039
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
@@ -132033,6 +132221,7 @@ export declare type Mutation = {
132033
132221
  confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
132034
132222
  confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
132035
132223
  confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
132224
+ confluence_removeContentApprovalReviewer?: Maybe<ConfluenceContentApprovalPayload>;
132036
132225
  confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
132037
132226
  confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
132038
132227
  confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
@@ -132415,6 +132604,7 @@ export declare type Mutation = {
132415
132604
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
132416
132605
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
132417
132606
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
132607
+ jira_setCalendarViewFilter?: Maybe<JiraUpdateCalendarViewConfigPayload>;
132418
132608
  jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
132419
132609
  jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
132420
132610
  jira_setFavicon?: Maybe<JiraSetFaviconPayload>;
@@ -132473,8 +132663,8 @@ export declare type Mutation = {
132473
132663
  kitsune_createView?: Maybe<KitsuneView>;
132474
132664
  kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
132475
132665
  kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
132476
- kitsune_removeSection?: Maybe<KitsuneSection>;
132477
- kitsune_removeView?: Maybe<GenericMutationResponse>;
132666
+ kitsune_removeSection?: Maybe<Scalars['ID']['output']>;
132667
+ kitsune_removeView?: Maybe<Scalars['ID']['output']>;
132478
132668
  kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
132479
132669
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
132480
132670
  kitsune_updateSection?: Maybe<KitsuneSection>;
@@ -133067,6 +133257,9 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
133067
133257
  export declare type MutationAgentWorkspace_CreateSkillArgs = {
133068
133258
  input: AgentWorkspaceCreateSkillInput;
133069
133259
  };
133260
+ export declare type MutationAgentWorkspace_CreateUserSkillArgs = {
133261
+ input: AgentWorkspaceCreateUserSkillInput;
133262
+ };
133070
133263
  export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
133071
133264
  cloudId: Scalars['ID']['input'];
133072
133265
  id: Scalars['ID']['input'];
@@ -133082,6 +133275,10 @@ export declare type MutationAgentWorkspace_DeleteSkillArgs = {
133082
133275
  cloudId: Scalars['ID']['input'];
133083
133276
  id: Scalars['ID']['input'];
133084
133277
  };
133278
+ export declare type MutationAgentWorkspace_DeleteUserSkillArgs = {
133279
+ cloudId: Scalars['ID']['input'];
133280
+ id: Scalars['ID']['input'];
133281
+ };
133085
133282
  export declare type MutationAgentWorkspace_EndBreakArgs = {
133086
133283
  agentId: Scalars['ID']['input'];
133087
133284
  cloudId: Scalars['ID']['input'];
@@ -133105,6 +133302,9 @@ export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
133105
133302
  export declare type MutationAgentWorkspace_UpdateSkillArgs = {
133106
133303
  input: AgentWorkspaceUpdateSkillInput;
133107
133304
  };
133305
+ export declare type MutationAgentWorkspace_UpdateUserSkillArgs = {
133306
+ input: AgentWorkspaceUpdateUserSkillInput;
133307
+ };
133108
133308
  export declare type MutationAppStorage_AdminArgs = {
133109
133309
  appId: Scalars['ID']['input'];
133110
133310
  };
@@ -133809,6 +134009,10 @@ export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
133809
134009
  cloudId: Scalars['ID']['input'];
133810
134010
  input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
133811
134011
  };
134012
+ export declare type MutationConfluence_RemoveContentApprovalReviewerArgs = {
134013
+ cloudId: Scalars['ID']['input'];
134014
+ removeContentApprovalReviewerInput: ConfluenceRemoveContentApprovalReviewerInput;
134015
+ };
133812
134016
  export declare type MutationConfluence_RemoveTrackArgs = {
133813
134017
  cloudId: Scalars['ID']['input'];
133814
134018
  input: ConfluenceTrackInput;
@@ -135094,6 +135298,9 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
135094
135298
  export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
135095
135299
  input: JiraSetBoardViewWorkflowSelectedInput;
135096
135300
  };
135301
+ export declare type MutationJira_SetCalendarViewFilterArgs = {
135302
+ input: JiraSetCalendarViewFilterInput;
135303
+ };
135097
135304
  export declare type MutationJira_SetCapacityMostRecentSubRouteArgs = {
135098
135305
  input: JiraSetCapacityMostRecentSubRouteInput;
135099
135306
  };
@@ -139322,6 +139529,7 @@ export declare type Query = {
139322
139529
  admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
139323
139530
  admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
139324
139531
  admin_org?: Maybe<AdminOrganization>;
139532
+ admin_orgDetails?: Maybe<AdminOrgDetails>;
139325
139533
  admin_permissions?: Maybe<Array<AdminPermission>>;
139326
139534
  admin_tokens?: Maybe<AdminTokenConnection>;
139327
139535
  admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
@@ -139395,6 +139603,8 @@ export declare type Query = {
139395
139603
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
139396
139604
  agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
139397
139605
  agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
139606
+ agentWorkspace_userSkill?: Maybe<AgentWorkspaceUserSkill>;
139607
+ agentWorkspace_userSkills?: Maybe<AgentWorkspaceUserSkillConnection>;
139398
139608
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
139399
139609
  aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
139400
139610
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
@@ -139990,6 +140200,7 @@ export declare type Query = {
139990
140200
  jira_fieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
139991
140201
  jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
139992
140202
  jira_isAgentAssignable?: Maybe<Scalars['Boolean']['output']>;
140203
+ jira_isBetaAiFeaturesEnabled?: Maybe<Scalars['Boolean']['output']>;
139993
140204
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
139994
140205
  jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
139995
140206
  jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
@@ -140530,6 +140741,9 @@ export declare type QueryAdmin_LicenseUsageArgs = {
140530
140741
  export declare type QueryAdmin_OrgArgs = {
140531
140742
  id: Scalars['ID']['input'];
140532
140743
  };
140744
+ export declare type QueryAdmin_OrgDetailsArgs = {
140745
+ orgId: Scalars['ID']['input'];
140746
+ };
140533
140747
  export declare type QueryAdmin_PermissionsArgs = {
140534
140748
  principalId: Scalars['ID']['input'];
140535
140749
  resourceId: Scalars['ID']['input'];
@@ -140934,6 +141148,16 @@ export declare type QueryAgentWorkspace_SkillsArgs = {
140934
141148
  page?: InputMaybe<Scalars['Int']['input']>;
140935
141149
  pageSize?: InputMaybe<Scalars['Int']['input']>;
140936
141150
  };
141151
+ export declare type QueryAgentWorkspace_UserSkillArgs = {
141152
+ cloudId: Scalars['ID']['input'];
141153
+ id: Scalars['ID']['input'];
141154
+ };
141155
+ export declare type QueryAgentWorkspace_UserSkillsArgs = {
141156
+ cloudId: Scalars['ID']['input'];
141157
+ filter?: InputMaybe<AgentWorkspaceUserSkillFilter>;
141158
+ page?: InputMaybe<Scalars['Int']['input']>;
141159
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
141160
+ };
140937
141161
  export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
140938
141162
  projectAri: Scalars['ID']['input'];
140939
141163
  };
@@ -143558,6 +143782,9 @@ export declare type QueryJira_IsAgentAssignableArgs = {
143558
143782
  agentInput: JiraAgentAssignableInput;
143559
143783
  cloudId: Scalars['ID']['input'];
143560
143784
  };
143785
+ export declare type QueryJira_IsBetaAiFeaturesEnabledArgs = {
143786
+ cloudId: Scalars['ID']['input'];
143787
+ };
143561
143788
  export declare type QueryJira_IsRovoLlmEnabledArgs = {
143562
143789
  cloudId: Scalars['ID']['input'];
143563
143790
  };
@@ -172153,6 +172380,7 @@ export declare type TeamMutation = {
172153
172380
  setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
172154
172381
  setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
172155
172382
  unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
172383
+ updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
172156
172384
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
172157
172385
  updateTeam?: Maybe<TeamUpdatePayload>;
172158
172386
  updateType?: Maybe<TeamType>;
@@ -172230,6 +172458,10 @@ export declare type TeamMutationUnlinkCustomFieldFromOptionArgs = {
172230
172458
  customFieldValueId: Scalars['ID']['input'];
172231
172459
  teamId: Scalars['ID']['input'];
172232
172460
  };
172461
+ export declare type TeamMutationUpdateCustomFieldArgs = {
172462
+ customFieldData: TeamUpdateCustomFieldPayload;
172463
+ id: Scalars['ID']['input'];
172464
+ };
172233
172465
  export declare type TeamMutationUpdateRoleAssignmentsArgs = {
172234
172466
  organizationId: Scalars['ID']['input'];
172235
172467
  principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
@@ -172494,6 +172726,10 @@ export declare type TeamTypeUpdatePayload = {
172494
172726
  description?: InputMaybe<Scalars['String']['input']>;
172495
172727
  name?: InputMaybe<Scalars['String']['input']>;
172496
172728
  };
172729
+ export declare type TeamUpdateCustomFieldPayload = {
172730
+ description?: InputMaybe<Scalars['String']['input']>;
172731
+ name?: InputMaybe<Scalars['String']['input']>;
172732
+ };
172497
172733
  export declare type TeamUpdatePayload = Payload & {
172498
172734
  __typename?: 'TeamUpdatePayload';
172499
172735
  errors?: Maybe<Array<MutationError>>;
@@ -173577,6 +173813,7 @@ export declare type TownsquareGoal = Node & {
173577
173813
  latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
173578
173814
  latestUserUpdate?: Maybe<TownsquareGoalUpdate>;
173579
173815
  metricTargets?: Maybe<TownsquareMetricTargetConnection>;
173816
+ msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
173580
173817
  name: Scalars['String']['output'];
173581
173818
  owner?: Maybe<User>;
173582
173819
  parentGoal?: Maybe<TownsquareGoal>;
@@ -173640,6 +173877,10 @@ export declare type TownsquareGoalMetricTargetsArgs = {
173640
173877
  after?: InputMaybe<Scalars['String']['input']>;
173641
173878
  first?: InputMaybe<Scalars['Int']['input']>;
173642
173879
  };
173880
+ export declare type TownsquareGoalMsteamsChannelsArgs = {
173881
+ after?: InputMaybe<Scalars['String']['input']>;
173882
+ first?: InputMaybe<Scalars['Int']['input']>;
173883
+ };
173643
173884
  export declare type TownsquareGoalParentGoalSuggestionsArgs = {
173644
173885
  after?: InputMaybe<Scalars['String']['input']>;
173645
173886
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -174756,6 +174997,44 @@ export declare enum TownsquareMetricValueSortEnum {
174756
174997
  TimeAsc = "TIME_ASC",
174757
174998
  TimeDesc = "TIME_DESC"
174758
174999
  }
175000
+ export declare type TownsquareMsteamsConnectedChannelChannelInfo = {
175001
+ __typename?: 'TownsquareMsteamsConnectedChannelChannelInfo';
175002
+ channelId?: Maybe<Scalars['String']['output']>;
175003
+ displayName?: Maybe<Scalars['String']['output']>;
175004
+ isPrivate?: Maybe<Scalars['Boolean']['output']>;
175005
+ membershipType?: Maybe<Scalars['String']['output']>;
175006
+ };
175007
+ export declare type TownsquareMsteamsConnectedChannelConnection = {
175008
+ __typename?: 'TownsquareMsteamsConnectedChannelConnection';
175009
+ edges?: Maybe<Array<Maybe<TownsquareMsteamsConnectedChannelEdge>>>;
175010
+ pageInfo: PageInfo;
175011
+ };
175012
+ export declare type TownsquareMsteamsConnectedChannelEdge = {
175013
+ __typename?: 'TownsquareMsteamsConnectedChannelEdge';
175014
+ cursor: Scalars['String']['output'];
175015
+ node?: Maybe<TownsquareMsteamsConnectedChannelInfo>;
175016
+ };
175017
+ export declare type TownsquareMsteamsConnectedChannelInfo = {
175018
+ __typename?: 'TownsquareMsteamsConnectedChannelInfo';
175019
+ channel?: Maybe<TownsquareMsteamsConnectedChannelChannelInfo>;
175020
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
175021
+ subscriber?: Maybe<User>;
175022
+ team?: Maybe<TownsquareMsteamsConnectedChannelTeamInfo>;
175023
+ tenant?: Maybe<TownsquareMsteamsConnectedChannelTenantInfo>;
175024
+ };
175025
+ export declare type TownsquareMsteamsConnectedChannelTeamInfo = {
175026
+ __typename?: 'TownsquareMsteamsConnectedChannelTeamInfo';
175027
+ displayName?: Maybe<Scalars['String']['output']>;
175028
+ internalId?: Maybe<Scalars['String']['output']>;
175029
+ isPrivate?: Maybe<Scalars['Boolean']['output']>;
175030
+ visibility?: Maybe<Scalars['String']['output']>;
175031
+ };
175032
+ export declare type TownsquareMsteamsConnectedChannelTenantInfo = {
175033
+ __typename?: 'TownsquareMsteamsConnectedChannelTenantInfo';
175034
+ displayName?: Maybe<Scalars['String']['output']>;
175035
+ isUserLoggedIn?: Maybe<Scalars['Boolean']['output']>;
175036
+ microsoftTenantId?: Maybe<Scalars['String']['output']>;
175037
+ };
174759
175038
  export declare type TownsquareMutationApi = {
174760
175039
  __typename?: 'TownsquareMutationApi';
174761
175040
  archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
@@ -174873,6 +175152,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
174873
175152
  mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
174874
175153
  mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
174875
175154
  mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
175155
+ msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
174876
175156
  name: Scalars['String']['output'];
174877
175157
  owner?: Maybe<User>;
174878
175158
  risks?: Maybe<TownsquareRiskConnection>;
@@ -174949,6 +175229,10 @@ export declare type TownsquareProjectMembersArgs = {
174949
175229
  after?: InputMaybe<Scalars['String']['input']>;
174950
175230
  first?: InputMaybe<Scalars['Int']['input']>;
174951
175231
  };
175232
+ export declare type TownsquareProjectMsteamsChannelsArgs = {
175233
+ after?: InputMaybe<Scalars['String']['input']>;
175234
+ first?: InputMaybe<Scalars['Int']['input']>;
175235
+ };
174952
175236
  export declare type TownsquareProjectRisksArgs = {
174953
175237
  after?: InputMaybe<Scalars['String']['input']>;
174954
175238
  createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
@@ -178924,6 +179208,7 @@ export declare type TrelloMutationApi = {
178924
179208
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
178925
179209
  movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
178926
179210
  pinCard?: Maybe<TrelloPinCardPayload>;
179211
+ proactiveSmartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
178927
179212
  proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
178928
179213
  rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
178929
179214
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;