@forge/cli-shared 8.15.2-next.1 → 8.15.2-next.3

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.2-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - df6d793: Improve show containers data table view
8
+
9
+ ## 8.15.2-next.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 7af27e8: Updated wording for install list to match dev console
14
+
3
15
  ## 8.15.2-next.1
4
16
 
5
17
  ### Patch Changes
@@ -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"
@@ -26372,6 +26494,12 @@ export declare type ConfluenceRedactionMetadataEdge = {
26372
26494
  cursor?: Maybe<Scalars['String']['output']>;
26373
26495
  node?: Maybe<ConfluenceRedactionMetadata>;
26374
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
+ };
26375
26503
  export declare type ConfluenceRemoveTrackPayload = {
26376
26504
  __typename?: 'ConfluenceRemoveTrackPayload';
26377
26505
  errors?: Maybe<Array<ConfluenceRemoveTrackPayloadError>>;
@@ -37229,6 +37357,7 @@ export declare type DlpDetectorClassificationMappingRequestInput = {
37229
37357
  classificationAri?: InputMaybe<Scalars['String']['input']>;
37230
37358
  detectorId?: InputMaybe<Scalars['String']['input']>;
37231
37359
  orgId?: InputMaybe<Scalars['String']['input']>;
37360
+ scope?: InputMaybe<DlpScopeInput>;
37232
37361
  status?: InputMaybe<DlpMappingStatus>;
37233
37362
  };
37234
37363
  export declare type DlpDetectorClassificationMappingResponse = {
@@ -37240,12 +37369,25 @@ export declare type DlpDetectorClassificationMappingResponse = {
37240
37369
  createdOn?: Maybe<Scalars['String']['output']>;
37241
37370
  detectorId?: Maybe<Scalars['String']['output']>;
37242
37371
  orgId?: Maybe<Scalars['String']['output']>;
37372
+ scope?: Maybe<DlpScope>;
37243
37373
  status?: Maybe<DlpMappingStatus>;
37244
37374
  };
37245
37375
  export declare enum DlpMappingStatus {
37246
37376
  Draft = "DRAFT",
37247
37377
  Published = "PUBLISHED"
37248
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
+ }
37249
37391
  export declare type DocumentBody = {
37250
37392
  __typename?: 'DocumentBody';
37251
37393
  representation: DocumentRepresentation;
@@ -104837,6 +104979,10 @@ export declare type JiraIssueArchivePayload = Payload & {
104837
104979
  issueCount?: Maybe<Scalars['Int']['output']>;
104838
104980
  success: Scalars['Boolean']['output'];
104839
104981
  };
104982
+ export declare type JiraIssueArchivedStreamHubPayload = {
104983
+ __typename?: 'JiraIssueArchivedStreamHubPayload';
104984
+ resource?: Maybe<Scalars['ID']['output']>;
104985
+ };
104840
104986
  export declare type JiraIssueAttachmentFilterInput = {
104841
104987
  mimeTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
104842
104988
  };
@@ -117097,6 +117243,7 @@ export declare type JiraSubscription = {
117097
117243
  onChildIssueStatusUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
117098
117244
  onChildIssueUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
117099
117245
  onIssueArchivedByProject?: Maybe<JiraIssue>;
117246
+ onIssueArchivedByProjectsNoEnrichment?: Maybe<JiraIssueArchivedStreamHubPayload>;
117100
117247
  onIssueCreatedByProject?: Maybe<JiraIssue>;
117101
117248
  onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
117102
117249
  onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
@@ -117187,6 +117334,10 @@ export declare type JiraSubscriptionOnIssueArchivedByProjectArgs = {
117187
117334
  cloudId: Scalars['ID']['input'];
117188
117335
  projectId: Scalars['String']['input'];
117189
117336
  };
117337
+ export declare type JiraSubscriptionOnIssueArchivedByProjectsNoEnrichmentArgs = {
117338
+ cloudId: Scalars['ID']['input'];
117339
+ projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
117340
+ };
117190
117341
  export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
117191
117342
  cloudId: Scalars['ID']['input'];
117192
117343
  projectId: Scalars['String']['input'];
@@ -127636,6 +127787,7 @@ export declare type MercuryChangeProposal = Node & {
127636
127787
  __typename?: 'MercuryChangeProposal';
127637
127788
  comments?: Maybe<MercuryChangeProposalCommentConnection>;
127638
127789
  createdDate: Scalars['String']['output'];
127790
+ customFields?: Maybe<Array<MercuryCustomField>>;
127639
127791
  description?: Maybe<Scalars['String']['output']>;
127640
127792
  focusArea?: Maybe<MercuryFocusArea>;
127641
127793
  funding?: Maybe<MercuryChangeProposalFunding>;
@@ -130080,6 +130232,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
130080
130232
  providers?: Maybe<MercuryProviderConnection>;
130081
130233
  searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
130082
130234
  workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
130235
+ workTypes?: Maybe<Array<Maybe<MercuryProviderWorkType>>>;
130083
130236
  };
130084
130237
  export declare type MercuryProviderOrchestrationQueryApiConnectedProvidersArgs = {
130085
130238
  cloudId?: InputMaybe<Scalars['ID']['input']>;
@@ -130104,6 +130257,9 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArg
130104
130257
  export declare type MercuryProviderOrchestrationQueryApiWorkStatusesArgs = {
130105
130258
  cloudId: Scalars['ID']['input'];
130106
130259
  };
130260
+ export declare type MercuryProviderOrchestrationQueryApiWorkTypesArgs = {
130261
+ cloudId: Scalars['ID']['input'];
130262
+ };
130107
130263
  export declare type MercuryProviderUser = {
130108
130264
  id: Scalars['ID']['output'];
130109
130265
  name?: Maybe<Scalars['String']['output']>;
@@ -130194,6 +130350,11 @@ export declare enum MercuryProviderWorkTargetDateType {
130194
130350
  Month = "MONTH",
130195
130351
  Quarter = "QUARTER"
130196
130352
  }
130353
+ export declare type MercuryProviderWorkType = {
130354
+ __typename?: 'MercuryProviderWorkType';
130355
+ name: Scalars['String']['output'];
130356
+ providerKey: Scalars['String']['output'];
130357
+ };
130197
130358
  export declare type MercuryPublishFocusAreaInput = {
130198
130359
  cloudId?: InputMaybe<Scalars['ID']['input']>;
130199
130360
  id: Scalars['ID']['input'];
@@ -131859,10 +132020,12 @@ export declare type Mutation = {
131859
132020
  agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogType>;
131860
132021
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
131861
132022
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkill>;
132023
+ agentWorkspace_createUserSkill?: Maybe<AgentWorkspaceUserSkill>;
131862
132024
  agentWorkspace_deleteCatalog?: Maybe<Scalars['Boolean']['output']>;
131863
132025
  agentWorkspace_deleteCatalogType?: Maybe<Scalars['Boolean']['output']>;
131864
132026
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
131865
132027
  agentWorkspace_deleteSkill?: Maybe<Scalars['Boolean']['output']>;
132028
+ agentWorkspace_deleteUserSkill?: Maybe<Scalars['Boolean']['output']>;
131866
132029
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
131867
132030
  agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
131868
132031
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
@@ -131870,6 +132033,7 @@ export declare type Mutation = {
131870
132033
  agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogType>;
131871
132034
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
131872
132035
  agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkill>;
132036
+ agentWorkspace_updateUserSkill?: Maybe<AgentWorkspaceUserSkill>;
131873
132037
  appRecommendations?: Maybe<AppRecMutation>;
131874
132038
  appStorage?: Maybe<AppStorageMutation>;
131875
132039
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
@@ -132057,6 +132221,7 @@ export declare type Mutation = {
132057
132221
  confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
132058
132222
  confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
132059
132223
  confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
132224
+ confluence_removeContentApprovalReviewer?: Maybe<ConfluenceContentApprovalPayload>;
132060
132225
  confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
132061
132226
  confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
132062
132227
  confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
@@ -132498,8 +132663,8 @@ export declare type Mutation = {
132498
132663
  kitsune_createView?: Maybe<KitsuneView>;
132499
132664
  kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
132500
132665
  kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
132501
- kitsune_removeSection?: Maybe<KitsuneSection>;
132502
- kitsune_removeView?: Maybe<GenericMutationResponse>;
132666
+ kitsune_removeSection?: Maybe<Scalars['ID']['output']>;
132667
+ kitsune_removeView?: Maybe<Scalars['ID']['output']>;
132503
132668
  kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
132504
132669
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
132505
132670
  kitsune_updateSection?: Maybe<KitsuneSection>;
@@ -133092,6 +133257,9 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
133092
133257
  export declare type MutationAgentWorkspace_CreateSkillArgs = {
133093
133258
  input: AgentWorkspaceCreateSkillInput;
133094
133259
  };
133260
+ export declare type MutationAgentWorkspace_CreateUserSkillArgs = {
133261
+ input: AgentWorkspaceCreateUserSkillInput;
133262
+ };
133095
133263
  export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
133096
133264
  cloudId: Scalars['ID']['input'];
133097
133265
  id: Scalars['ID']['input'];
@@ -133107,6 +133275,10 @@ export declare type MutationAgentWorkspace_DeleteSkillArgs = {
133107
133275
  cloudId: Scalars['ID']['input'];
133108
133276
  id: Scalars['ID']['input'];
133109
133277
  };
133278
+ export declare type MutationAgentWorkspace_DeleteUserSkillArgs = {
133279
+ cloudId: Scalars['ID']['input'];
133280
+ id: Scalars['ID']['input'];
133281
+ };
133110
133282
  export declare type MutationAgentWorkspace_EndBreakArgs = {
133111
133283
  agentId: Scalars['ID']['input'];
133112
133284
  cloudId: Scalars['ID']['input'];
@@ -133130,6 +133302,9 @@ export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
133130
133302
  export declare type MutationAgentWorkspace_UpdateSkillArgs = {
133131
133303
  input: AgentWorkspaceUpdateSkillInput;
133132
133304
  };
133305
+ export declare type MutationAgentWorkspace_UpdateUserSkillArgs = {
133306
+ input: AgentWorkspaceUpdateUserSkillInput;
133307
+ };
133133
133308
  export declare type MutationAppStorage_AdminArgs = {
133134
133309
  appId: Scalars['ID']['input'];
133135
133310
  };
@@ -133834,6 +134009,10 @@ export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
133834
134009
  cloudId: Scalars['ID']['input'];
133835
134010
  input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
133836
134011
  };
134012
+ export declare type MutationConfluence_RemoveContentApprovalReviewerArgs = {
134013
+ cloudId: Scalars['ID']['input'];
134014
+ removeContentApprovalReviewerInput: ConfluenceRemoveContentApprovalReviewerInput;
134015
+ };
133837
134016
  export declare type MutationConfluence_RemoveTrackArgs = {
133838
134017
  cloudId: Scalars['ID']['input'];
133839
134018
  input: ConfluenceTrackInput;
@@ -139350,6 +139529,7 @@ export declare type Query = {
139350
139529
  admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
139351
139530
  admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
139352
139531
  admin_org?: Maybe<AdminOrganization>;
139532
+ admin_orgDetails?: Maybe<AdminOrgDetails>;
139353
139533
  admin_permissions?: Maybe<Array<AdminPermission>>;
139354
139534
  admin_tokens?: Maybe<AdminTokenConnection>;
139355
139535
  admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
@@ -139423,6 +139603,8 @@ export declare type Query = {
139423
139603
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
139424
139604
  agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
139425
139605
  agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
139606
+ agentWorkspace_userSkill?: Maybe<AgentWorkspaceUserSkill>;
139607
+ agentWorkspace_userSkills?: Maybe<AgentWorkspaceUserSkillConnection>;
139426
139608
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
139427
139609
  aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
139428
139610
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
@@ -140559,6 +140741,9 @@ export declare type QueryAdmin_LicenseUsageArgs = {
140559
140741
  export declare type QueryAdmin_OrgArgs = {
140560
140742
  id: Scalars['ID']['input'];
140561
140743
  };
140744
+ export declare type QueryAdmin_OrgDetailsArgs = {
140745
+ orgId: Scalars['ID']['input'];
140746
+ };
140562
140747
  export declare type QueryAdmin_PermissionsArgs = {
140563
140748
  principalId: Scalars['ID']['input'];
140564
140749
  resourceId: Scalars['ID']['input'];
@@ -140963,6 +141148,16 @@ export declare type QueryAgentWorkspace_SkillsArgs = {
140963
141148
  page?: InputMaybe<Scalars['Int']['input']>;
140964
141149
  pageSize?: InputMaybe<Scalars['Int']['input']>;
140965
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
+ };
140966
141161
  export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
140967
141162
  projectAri: Scalars['ID']['input'];
140968
141163
  };
@@ -173716,6 +173911,7 @@ export declare type TownsquareGoalSubGoalSuggestionsArgs = {
173716
173911
  };
173717
173912
  export declare type TownsquareGoalSubGoalsArgs = {
173718
173913
  after?: InputMaybe<Scalars['String']['input']>;
173914
+ archived?: InputMaybe<Scalars['Boolean']['input']>;
173719
173915
  first?: InputMaybe<Scalars['Int']['input']>;
173720
173916
  kind?: InputMaybe<TownsquareGoalTypeKind>;
173721
173917
  };
@@ -179013,6 +179209,7 @@ export declare type TrelloMutationApi = {
179013
179209
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
179014
179210
  movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
179015
179211
  pinCard?: Maybe<TrelloPinCardPayload>;
179212
+ proactiveSmartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
179016
179213
  proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
179017
179214
  rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
179018
179215
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;