@forge/cli-shared 8.7.2-next.0 → 8.7.2-next.1-experimental-2578ec1

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.7.2-next.1-experimental-2578ec1
4
+
5
+ ### Patch Changes
6
+
7
+ - 90ee56f: Remove forge-cli-enable-atlas-product-support FF from type
8
+ - Updated dependencies [f5d3945]
9
+ - @forge/manifest@10.7.0-next.0-experimental-2578ec1
10
+
11
+ ## 8.7.2-next.1
12
+
13
+ ### Patch Changes
14
+
15
+ - 90ee56f: Remove forge-cli-enable-atlas-product-support FF from type
16
+
3
17
  ## 8.7.2-next.0
4
18
 
5
19
  ### Patch Changes
@@ -526,6 +526,14 @@ export declare enum AvpDashboardStatusAction {
526
526
  Restore = "RESTORE",
527
527
  Trash = "TRASH"
528
528
  }
529
+ export declare type AvpDashboardTemplate = {
530
+ __typename?: 'AVPDashboardTemplate';
531
+ description?: Maybe<Scalars['String']['output']>;
532
+ id: Scalars['String']['output'];
533
+ products: Array<Scalars['String']['output']>;
534
+ thumbnailUrl?: Maybe<Scalars['String']['output']>;
535
+ title: Scalars['String']['output'];
536
+ };
529
537
  export declare type AvpDashboardTemplateInput = {
530
538
  containerAri?: InputMaybe<Scalars['ID']['input']>;
531
539
  fromTemplate: Scalars['String']['input'];
@@ -610,6 +618,11 @@ export declare type AvpFilterResponse = {
610
618
  chart?: Maybe<AvpChart>;
611
619
  envVar?: Maybe<AvpEnvVarWithChart>;
612
620
  };
621
+ export declare type AvpGetDashboardTemplatesInput = {
622
+ cloudId: Scalars['ID']['input'];
623
+ productKey?: InputMaybe<Scalars['String']['input']>;
624
+ workspaceId: Scalars['ID']['input'];
625
+ };
613
626
  export declare type AvpHotTierFilterConfig = {
614
627
  __typename?: 'AVPHotTierFilterConfig';
615
628
  datasourceLocator?: Maybe<AvpDatasourceLocator>;
@@ -2616,6 +2629,11 @@ export declare type AgentStudioDeleteDatasetItemPayload = Payload & {
2616
2629
  errors?: Maybe<Array<MutationError>>;
2617
2630
  success: Scalars['Boolean']['output'];
2618
2631
  };
2632
+ export declare type AgentStudioDeleteDatasetPayload = Payload & {
2633
+ __typename?: 'AgentStudioDeleteDatasetPayload';
2634
+ errors?: Maybe<Array<MutationError>>;
2635
+ success: Scalars['Boolean']['output'];
2636
+ };
2619
2637
  export declare type AgentStudioDeleteScenarioPayload = Payload & {
2620
2638
  __typename?: 'AgentStudioDeleteScenarioPayload';
2621
2639
  errors?: Maybe<Array<MutationError>>;
@@ -2902,6 +2920,7 @@ export declare type AgentStudioTool = {
2902
2920
  iconUrl?: Maybe<Scalars['String']['output']>;
2903
2921
  id: Scalars['ID']['output'];
2904
2922
  integrationKey?: Maybe<Scalars['String']['output']>;
2923
+ tags?: Maybe<Array<Scalars['String']['output']>>;
2905
2924
  };
2906
2925
  export declare enum AgentStudioToolDefinitionSource {
2907
2926
  ConvoAi = "CONVO_AI",
@@ -9035,6 +9054,24 @@ export declare type CloudAppScope = {
9035
9054
  id: Scalars['ID']['output'];
9036
9055
  name: Scalars['String']['output'];
9037
9056
  };
9057
+ export declare enum CloudIdProduct {
9058
+ Avp = "AVP",
9059
+ Beacon = "BEACON",
9060
+ Compass = "COMPASS",
9061
+ Confluence = "CONFLUENCE",
9062
+ Devai = "DEVAI",
9063
+ Goal = "GOAL",
9064
+ JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
9065
+ JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
9066
+ JiraServiceDesk = "JIRA_SERVICE_DESK",
9067
+ JiraSoftware = "JIRA_SOFTWARE",
9068
+ Loom = "LOOM",
9069
+ Mercury = "MERCURY",
9070
+ Opsgenie = "OPSGENIE",
9071
+ Project = "PROJECT",
9072
+ Radar = "RADAR",
9073
+ Statuspage = "STATUSPAGE"
9074
+ }
9038
9075
  export declare type CodeInJira = {
9039
9076
  __typename?: 'CodeInJira';
9040
9077
  siteConfiguration?: Maybe<CodeInJiraSiteConfiguration>;
@@ -15251,6 +15288,7 @@ export declare type ConfluenceComment = {
15251
15288
  commentId?: Maybe<Scalars['ID']['output']>;
15252
15289
  container?: Maybe<ConfluenceCommentContainer>;
15253
15290
  id: Scalars['ID']['output'];
15291
+ latestVersion?: Maybe<ConfluenceContentVersion>;
15254
15292
  links?: Maybe<ConfluenceCommentLinks>;
15255
15293
  name?: Maybe<Scalars['String']['output']>;
15256
15294
  status?: Maybe<ConfluenceCommentStatus>;
@@ -16359,6 +16397,7 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
16359
16397
  commentId?: Maybe<Scalars['ID']['output']>;
16360
16398
  container?: Maybe<ConfluenceCommentContainer>;
16361
16399
  id: Scalars['ID']['output'];
16400
+ latestVersion?: Maybe<ConfluenceContentVersion>;
16362
16401
  links?: Maybe<ConfluenceCommentLinks>;
16363
16402
  name?: Maybe<Scalars['String']['output']>;
16364
16403
  status?: Maybe<ConfluenceCommentStatus>;
@@ -16571,6 +16610,7 @@ export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
16571
16610
  commentId?: Maybe<Scalars['ID']['output']>;
16572
16611
  container?: Maybe<ConfluenceCommentContainer>;
16573
16612
  id: Scalars['ID']['output'];
16613
+ latestVersion?: Maybe<ConfluenceContentVersion>;
16574
16614
  links?: Maybe<ConfluenceCommentLinks>;
16575
16615
  name?: Maybe<Scalars['String']['output']>;
16576
16616
  resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
@@ -17729,6 +17769,9 @@ export declare type ConfluenceQueryApiSearchLabelsArgs = {
17729
17769
  limit?: InputMaybe<Scalars['Int']['input']>;
17730
17770
  searchText: Scalars['String']['input'];
17731
17771
  };
17772
+ export declare type ConfluenceQueryApiSiteConfigurationArgs = {
17773
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
17774
+ };
17732
17775
  export declare type ConfluenceQueryApiSpaceArgs = {
17733
17776
  id: Scalars['ID']['input'];
17734
17777
  };
@@ -17758,6 +17801,7 @@ export declare type ConfluenceQuestion = {
17758
17801
  id: Scalars['ID']['output'];
17759
17802
  labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
17760
17803
  latestVersion?: Maybe<ConfluenceContentVersion>;
17804
+ operations?: Maybe<Array<Maybe<ConfluenceQuestionsOperationCheck>>>;
17761
17805
  title?: Maybe<Scalars['String']['output']>;
17762
17806
  voteProperties: ConfluenceVotePropertyValue;
17763
17807
  };
@@ -17785,6 +17829,23 @@ export declare type ConfluenceQuestionsConfiguration = {
17785
17829
  isConfluenceQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
17786
17830
  isConfluenceQuestionsLicensed?: Maybe<Scalars['Boolean']['output']>;
17787
17831
  };
17832
+ export declare type ConfluenceQuestionsOperationCheck = {
17833
+ __typename?: 'ConfluenceQuestionsOperationCheck';
17834
+ operation?: Maybe<ConfluenceQuestionsOperationName>;
17835
+ target?: Maybe<ConfluenceQuestionsOperationTarget>;
17836
+ };
17837
+ export declare enum ConfluenceQuestionsOperationName {
17838
+ Create = "CREATE",
17839
+ Delete = "DELETE",
17840
+ Read = "READ",
17841
+ Update = "UPDATE"
17842
+ }
17843
+ export declare enum ConfluenceQuestionsOperationTarget {
17844
+ Answer = "ANSWER",
17845
+ Attachment = "ATTACHMENT",
17846
+ Comment = "COMMENT",
17847
+ Question = "QUESTION"
17848
+ }
17788
17849
  export declare type ConfluenceReIndexLongTask = {
17789
17850
  __typename?: 'ConfluenceReIndexLongTask';
17790
17851
  completePercentage?: Maybe<Scalars['Int']['output']>;
@@ -25973,6 +26034,7 @@ export declare enum DevConsoleDeveloperSpaceType {
25973
26034
  }
25974
26035
  export declare type DevConsoleMutation = {
25975
26036
  __typename?: 'DevConsoleMutation';
26037
+ acceptAppBillingConsent: DevConsoleResponsePayload;
25976
26038
  addDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
25977
26039
  archiveDeveloperSpace: DevConsoleResponsePayload;
25978
26040
  assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
@@ -25981,6 +26043,10 @@ export declare type DevConsoleMutation = {
25981
26043
  updateDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
25982
26044
  updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
25983
26045
  };
26046
+ export declare type DevConsoleMutationAcceptAppBillingConsentArgs = {
26047
+ appIds: Array<Scalars['String']['input']>;
26048
+ developerSpaceId: Scalars['String']['input'];
26049
+ };
25984
26050
  export declare type DevConsoleMutationAddDeveloperSpaceMemberArgs = {
25985
26051
  input: DevConsoleDeveloperSpaceMemberInput;
25986
26052
  };
@@ -28208,13 +28274,8 @@ export declare type ErsLifecycleMutation = {
28208
28274
  };
28209
28275
  export declare type ErsLifecycleQuery = {
28210
28276
  __typename?: 'ErsLifecycleQuery';
28211
- customEntityDefinitions?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
28212
28277
  doneEntitiesFromERS?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
28213
28278
  };
28214
- export declare type ErsLifecycleQueryCustomEntityDefinitionsArgs = {
28215
- entities: Array<Scalars['String']['input']>;
28216
- oauthClientId: Scalars['String']['input'];
28217
- };
28218
28279
  export declare type ErsLifecycleQueryDoneEntitiesFromErsArgs = {
28219
28280
  oauthClientId: Scalars['String']['input'];
28220
28281
  };
@@ -32061,7 +32122,7 @@ export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload &
32061
32122
  };
32062
32123
  export declare type GraphIntegrationConsentInput = {
32063
32124
  agreement: Scalars['String']['input'];
32064
- formUrlReferer: Scalars['String']['input'];
32125
+ formUrlReferer: Scalars['URL']['input'];
32065
32126
  source: Scalars['String']['input'];
32066
32127
  };
32067
32128
  export declare type GraphIntegrationCreateConnectionPayload = Payload & {
@@ -68254,6 +68315,11 @@ export declare type JiraInvalidSyntaxError = {
68254
68315
  line?: Maybe<Scalars['Int']['output']>;
68255
68316
  message?: Maybe<Scalars['String']['output']>;
68256
68317
  };
68318
+ export declare type JiraInviterActivityRecommendation = JiraProjectRecommendationDetails & {
68319
+ __typename?: 'JiraInviterActivityRecommendation';
68320
+ inviter?: Maybe<User>;
68321
+ recommendationType?: Maybe<JiraProjectRecommendationType>;
68322
+ };
68257
68323
  export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
68258
68324
  __typename?: 'JiraIssue';
68259
68325
  aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
@@ -68606,6 +68672,10 @@ export declare type JiraIssueWorklogsArgs = {
68606
68672
  sortBy?: InputMaybe<JiraWorklogSortInput>;
68607
68673
  targetId?: InputMaybe<Scalars['String']['input']>;
68608
68674
  };
68675
+ export declare enum JiraIssueActivityType {
68676
+ Created = "CREATED",
68677
+ Updated = "UPDATED"
68678
+ }
68609
68679
  export declare type JiraIssueAndProject = {
68610
68680
  __typename?: 'JiraIssueAndProject';
68611
68681
  issueId: Scalars['ID']['output'];
@@ -70673,7 +70743,7 @@ export declare type JiraJqlAtlasProjectFieldValue = JiraJqlFieldValue & {
70673
70743
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
70674
70744
  isSelected?: Maybe<Scalars['Boolean']['output']>;
70675
70745
  jqlTerm: Scalars['String']['output'];
70676
- project: JiraAtlasProject;
70746
+ project?: Maybe<JiraAtlasProject>;
70677
70747
  };
70678
70748
  export declare enum JiraJqlAutocompleteType {
70679
70749
  Basic = "BASIC",
@@ -75033,6 +75103,28 @@ export declare enum JiraProjectPermissionType {
75033
75103
  ViewVotersAndWatchers = "VIEW_VOTERS_AND_WATCHERS",
75034
75104
  WorkOnIssues = "WORK_ON_ISSUES"
75035
75105
  }
75106
+ export declare type JiraProjectRecommendation = {
75107
+ __typename?: 'JiraProjectRecommendation';
75108
+ details?: Maybe<JiraProjectRecommendationDetails>;
75109
+ project?: Maybe<JiraProject>;
75110
+ };
75111
+ export declare type JiraProjectRecommendationConnection = {
75112
+ __typename?: 'JiraProjectRecommendationConnection';
75113
+ edges?: Maybe<Array<Maybe<JiraProjectRecommendationEdge>>>;
75114
+ nodes?: Maybe<Array<Maybe<JiraProjectRecommendation>>>;
75115
+ pageInfo: PageInfo;
75116
+ };
75117
+ export declare type JiraProjectRecommendationDetails = {
75118
+ recommendationType?: Maybe<JiraProjectRecommendationType>;
75119
+ };
75120
+ export declare type JiraProjectRecommendationEdge = {
75121
+ __typename?: 'JiraProjectRecommendationEdge';
75122
+ node?: Maybe<JiraProjectRecommendation>;
75123
+ };
75124
+ export declare enum JiraProjectRecommendationType {
75125
+ InviterActivity = "INVITER_ACTIVITY",
75126
+ TenantActivity = "TENANT_ACTIVITY"
75127
+ }
75036
75128
  export declare type JiraProjectRoleActorLogTableEntry = {
75037
75129
  __typename?: 'JiraProjectRoleActorLogTableEntry';
75038
75130
  executedBy?: Maybe<User>;
@@ -75467,6 +75559,7 @@ export declare type JiraQuery = {
75467
75559
  recentPlans?: Maybe<JiraSearchableEntityConnection>;
75468
75560
  recentProjects?: Maybe<JiraProjectConnection>;
75469
75561
  recentQueues?: Maybe<JiraSearchableEntityConnection>;
75562
+ recommendProjects?: Maybe<JiraProjectRecommendationConnection>;
75470
75563
  remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
75471
75564
  reportsPage?: Maybe<JiraReportsPage>;
75472
75565
  requestTypeField?: Maybe<JiraJqlField>;
@@ -76364,6 +76457,12 @@ export declare type JiraQueryRecentQueuesArgs = {
76364
76457
  currentURL?: InputMaybe<Scalars['URL']['input']>;
76365
76458
  first?: InputMaybe<Scalars['Int']['input']>;
76366
76459
  };
76460
+ export declare type JiraQueryRecommendProjectsArgs = {
76461
+ activityField: JiraIssueActivityType;
76462
+ cloudId: Scalars['ID']['input'];
76463
+ days: Scalars['Int']['input'];
76464
+ limit: Scalars['Int']['input'];
76465
+ };
76367
76466
  export declare type JiraQueryRemoteIssueLinksByIdArgs = {
76368
76467
  ids: Array<Scalars['ID']['input']>;
76369
76468
  };
@@ -80082,8 +80181,10 @@ export declare type JiraSuggestionActionInputSchema = {
80082
80181
  required?: Maybe<Array<Scalars['String']['output']>>;
80083
80182
  };
80084
80183
  export declare enum JiraSuggestionActionType {
80184
+ ArchiveWorkItem = "ARCHIVE_WORK_ITEM",
80085
80185
  ChangeDuplicateWorkItemStatus = "CHANGE_DUPLICATE_WORK_ITEM_STATUS",
80086
80186
  ChangeStaleWorkItemStatus = "CHANGE_STALE_WORK_ITEM_STATUS",
80187
+ ChangeWorkItemStatus = "CHANGE_WORK_ITEM_STATUS",
80087
80188
  LinkDuplicateWorkItems = "LINK_DUPLICATE_WORK_ITEMS"
80088
80189
  }
80089
80190
  export declare type JiraSuggestionEdge = {
@@ -80272,6 +80373,10 @@ export declare type JiraTemporaryAttachmentEdge = {
80272
80373
  cursor: Scalars['String']['output'];
80273
80374
  node?: Maybe<JiraTemporaryAttachment>;
80274
80375
  };
80376
+ export declare type JiraTenantActivityRecommendation = JiraProjectRecommendationDetails & {
80377
+ __typename?: 'JiraTenantActivityRecommendation';
80378
+ recommendationType?: Maybe<JiraProjectRecommendationType>;
80379
+ };
80275
80380
  export declare enum JiraTimeFormat {
80276
80381
  Days = "DAYS",
80277
80382
  Hours = "HOURS",
@@ -89011,6 +89116,7 @@ export declare type MercuryFocusAreaStatusUpdate = {
89011
89116
  summary?: Maybe<Scalars['String']['output']>;
89012
89117
  updatedBy?: Maybe<User>;
89013
89118
  updatedDate: Scalars['String']['output'];
89119
+ uuid: Scalars['ID']['output'];
89014
89120
  };
89015
89121
  export declare type MercuryFocusAreaStatusUpdateCommentsArgs = {
89016
89122
  after?: InputMaybe<Scalars['String']['input']>;
@@ -90951,10 +91057,12 @@ export declare type Mutation = {
90951
91057
  admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
90952
91058
  admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
90953
91059
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
91060
+ agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
90954
91061
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
90955
91062
  agentStudio_createBatchEvaluationJob: AgentStudioCreateBatchEvaluationJobPayload;
90956
91063
  agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
90957
91064
  agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
91065
+ agentStudio_deleteDataset: AgentStudioDeleteDatasetPayload;
90958
91066
  agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
90959
91067
  agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
90960
91068
  agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
@@ -91756,6 +91864,12 @@ export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
91756
91864
  cloudId: Scalars['ID']['input'];
91757
91865
  groupARIs: Array<Scalars['ID']['input']>;
91758
91866
  };
91867
+ export declare type MutationAgentStudio_CancelBatchEvaluationJobRunArgs = {
91868
+ cloudId: Scalars['String']['input'];
91869
+ jobRunId: Scalars['ID']['input'];
91870
+ productType: AgentStudioProductType;
91871
+ projectContainerAri: Scalars['ID']['input'];
91872
+ };
91759
91873
  export declare type MutationAgentStudio_CreateAgentArgs = {
91760
91874
  cloudId: Scalars['String']['input'];
91761
91875
  input: AgentStudioCreateAgentInput;
@@ -91773,6 +91887,12 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
91773
91887
  export declare type MutationAgentStudio_DeleteAgentArgs = {
91774
91888
  id: Scalars['ID']['input'];
91775
91889
  };
91890
+ export declare type MutationAgentStudio_DeleteDatasetArgs = {
91891
+ cloudId: Scalars['String']['input'];
91892
+ id: Scalars['ID']['input'];
91893
+ productType: AgentStudioProductType;
91894
+ projectContainerAri: Scalars['ID']['input'];
91895
+ };
91776
91896
  export declare type MutationAgentStudio_DeleteDatasetItemArgs = {
91777
91897
  cloudId: Scalars['String']['input'];
91778
91898
  id: Scalars['ID']['input'];
@@ -92224,8 +92344,8 @@ export declare type MutationConfluence_GenerateForgeContextTokenArgs = {
92224
92344
  export declare type MutationConfluence_GenerateSpacePermissionAuditReportArgs = {
92225
92345
  cloudId: Scalars['ID']['input'];
92226
92346
  reportType: ConfluenceSpacePermissionAuditReportType;
92227
- spaceId?: InputMaybe<Scalars['Long']['input']>;
92228
- spaceType: ConfluenceSpacePermissionAuditReportSpaceType;
92347
+ spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
92348
+ spaceType?: InputMaybe<ConfluenceSpacePermissionAuditReportSpaceType>;
92229
92349
  };
92230
92350
  export declare type MutationConfluence_InsertOfflineVersionArgs = {
92231
92351
  cloudId: Scalars['ID']['input'];
@@ -97142,6 +97262,7 @@ export declare type Query = {
97142
97262
  availableContentStates?: Maybe<AvailableContentStates>;
97143
97263
  avp_getChart?: Maybe<AvpChart>;
97144
97264
  avp_getDashboard?: Maybe<AvpDashboard>;
97265
+ avp_getDashboardTemplates: Array<AvpDashboardTemplate>;
97145
97266
  bitbucket?: Maybe<BitbucketQuery>;
97146
97267
  bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
97147
97268
  blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
@@ -98417,6 +98538,9 @@ export declare type QueryAvp_GetChartArgs = {
98417
98538
  export declare type QueryAvp_GetDashboardArgs = {
98418
98539
  dashboardAri: Scalars['ID']['input'];
98419
98540
  };
98541
+ export declare type QueryAvp_GetDashboardTemplatesArgs = {
98542
+ input?: InputMaybe<AvpGetDashboardTemplatesInput>;
98543
+ };
98420
98544
  export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
98421
98545
  after?: InputMaybe<Scalars['String']['input']>;
98422
98546
  cloudId: Scalars['ID']['input'];
@@ -103420,6 +103544,8 @@ export declare enum Scope {
103420
103544
  ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
103421
103545
  ReadTeam = "READ_TEAM",
103422
103546
  ReadTeamMembers = "READ_TEAM_MEMBERS",
103547
+ ReadTeamMembersTemp = "READ_TEAM_MEMBERS_TEMP",
103548
+ ReadTeamTemp = "READ_TEAM_TEMP",
103423
103549
  ReadTownsquareComment = "READ_TOWNSQUARE_COMMENT",
103424
103550
  ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
103425
103551
  ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
@@ -103523,6 +103649,8 @@ export declare enum Scope {
103523
103649
  WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
103524
103650
  WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
103525
103651
  WriteTeam = "WRITE_TEAM",
103652
+ WriteTeamMembersTemp = "WRITE_TEAM_MEMBERS_TEMP",
103653
+ WriteTeamTemp = "WRITE_TEAM_TEMP",
103526
103654
  WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
103527
103655
  WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
103528
103656
  WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP"
@@ -126149,6 +126277,7 @@ export declare type SupportRequest = {
126149
126277
  requestTypeName: Scalars['String']['output'];
126150
126278
  sourceId?: Maybe<Scalars['String']['output']>;
126151
126279
  sourceLicense?: Maybe<Scalars['String']['output']>;
126280
+ sourceSystemLink?: Maybe<Scalars['String']['output']>;
126152
126281
  status: SupportRequestStatus;
126153
126282
  statuses: SupportRequestStatuses;
126154
126283
  summary?: Maybe<Scalars['String']['output']>;
@@ -126728,9 +126857,11 @@ export declare type TeamMutation = {
126728
126857
  __typename?: 'TeamMutation';
126729
126858
  addChild?: Maybe<TeamV2>;
126730
126859
  addParent?: Maybe<TeamV2>;
126860
+ createTeamType?: Maybe<TeamType>;
126731
126861
  removeChild?: Maybe<TeamV2>;
126732
126862
  removeParent?: Maybe<TeamV2>;
126733
126863
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
126864
+ updateType?: Maybe<TeamType>;
126734
126865
  };
126735
126866
  export declare type TeamMutationAddChildArgs = {
126736
126867
  childId: Scalars['ID']['input'];
@@ -126742,6 +126873,10 @@ export declare type TeamMutationAddParentArgs = {
126742
126873
  siteId: Scalars['ID']['input'];
126743
126874
  teamId: Scalars['ID']['input'];
126744
126875
  };
126876
+ export declare type TeamMutationCreateTeamTypeArgs = {
126877
+ scopeId: Scalars['ID']['input'];
126878
+ typeData: TeamTypeCreationPayload;
126879
+ };
126745
126880
  export declare type TeamMutationRemoveChildArgs = {
126746
126881
  childId: Scalars['ID']['input'];
126747
126882
  siteId: Scalars['ID']['input'];
@@ -126757,6 +126892,10 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
126757
126892
  principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
126758
126893
  role: TeamRole;
126759
126894
  };
126895
+ export declare type TeamMutationUpdateTypeArgs = {
126896
+ id: Scalars['ID']['input'];
126897
+ typeData: TeamTypeUpdatePayload;
126898
+ };
126760
126899
  export declare enum TeamPermission {
126761
126900
  FullRead = "FULL_READ",
126762
126901
  FullWrite = "FULL_WRITE",
@@ -126778,6 +126917,8 @@ export declare type TeamQuery = {
126778
126917
  teamSearch?: Maybe<TeamSearchResultConnection>;
126779
126918
  teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
126780
126919
  teamV2?: Maybe<TeamV2>;
126920
+ typeInformation?: Maybe<TeamType>;
126921
+ typesWithinScope?: Maybe<TeamTypeConnection>;
126781
126922
  };
126782
126923
  export declare type TeamQueryRoleAssignmentsArgs = {
126783
126924
  after?: InputMaybe<Scalars['String']['input']>;
@@ -126809,6 +126950,15 @@ export declare type TeamQueryTeamV2Args = {
126809
126950
  id: Scalars['ID']['input'];
126810
126951
  siteId: Scalars['String']['input'];
126811
126952
  };
126953
+ export declare type TeamQueryTypeInformationArgs = {
126954
+ id: Scalars['ID']['input'];
126955
+ scopeId: Scalars['ID']['input'];
126956
+ };
126957
+ export declare type TeamQueryTypesWithinScopeArgs = {
126958
+ after?: InputMaybe<Scalars['String']['input']>;
126959
+ first?: Scalars['Int']['input'];
126960
+ scopeId: Scalars['ID']['input'];
126961
+ };
126812
126962
  export declare enum TeamRole {
126813
126963
  TeamsAdmin = "TEAMS_ADMIN",
126814
126964
  TeamsObserver = "TEAMS_OBSERVER",
@@ -126885,6 +127035,39 @@ export declare enum TeamStateV2 {
126885
127035
  Active = "ACTIVE",
126886
127036
  Purged = "PURGED"
126887
127037
  }
127038
+ export declare type TeamType = {
127039
+ __typename?: 'TeamType';
127040
+ default?: Maybe<TeamTypeDefaultFor>;
127041
+ description?: Maybe<Scalars['String']['output']>;
127042
+ id: Scalars['ID']['output'];
127043
+ name: Scalars['String']['output'];
127044
+ teamScope: Scalars['ID']['output'];
127045
+ verified?: Maybe<Scalars['Boolean']['output']>;
127046
+ };
127047
+ export declare type TeamTypeConnection = {
127048
+ __typename?: 'TeamTypeConnection';
127049
+ edges?: Maybe<Array<TeamTypeEdge>>;
127050
+ nodes?: Maybe<Array<TeamType>>;
127051
+ pageInfo: PageInfo;
127052
+ };
127053
+ export declare type TeamTypeCreationPayload = {
127054
+ description?: InputMaybe<Scalars['String']['input']>;
127055
+ name: Scalars['String']['input'];
127056
+ };
127057
+ export declare enum TeamTypeDefaultFor {
127058
+ Admin = "ADMIN",
127059
+ UserManaged = "USER_MANAGED",
127060
+ Verified = "VERIFIED"
127061
+ }
127062
+ export declare type TeamTypeEdge = {
127063
+ __typename?: 'TeamTypeEdge';
127064
+ cursor: Scalars['String']['output'];
127065
+ node?: Maybe<TeamType>;
127066
+ };
127067
+ export declare type TeamTypeUpdatePayload = {
127068
+ description?: InputMaybe<Scalars['String']['input']>;
127069
+ name?: InputMaybe<Scalars['String']['input']>;
127070
+ };
126888
127071
  export declare type TeamUpdateRoleAssignmentsResponse = {
126889
127072
  __typename?: 'TeamUpdateRoleAssignmentsResponse';
126890
127073
  successfullyAddedPrincipals?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;