@forge/cli-shared 8.9.1-next.1 → 8.9.1-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,20 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.9.1-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [bf0e0f6]
8
+ - @forge/manifest@11.1.0-next.2
9
+
10
+ ## 8.9.1-next.2
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [b9cefff]
15
+ - Updated dependencies [069288e]
16
+ - @forge/manifest@11.1.0-next.1
17
+
3
18
  ## 8.9.1-next.1
4
19
 
5
20
  ### Patch Changes
@@ -2995,6 +2995,34 @@ export declare type AgentStudioJiraKnowledgeFilter = {
2995
2995
  export declare type AgentStudioJiraKnowledgeFilterInput = {
2996
2996
  projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
2997
2997
  };
2998
+ export declare type AgentStudioJobExecutionHistory = {
2999
+ __typename?: 'AgentStudioJobExecutionHistory';
3000
+ edges: Array<AgentStudioJobExecutionHistoryEdge>;
3001
+ pageInfo: PageInfo;
3002
+ };
3003
+ export declare type AgentStudioJobExecutionHistoryEdge = {
3004
+ __typename?: 'AgentStudioJobExecutionHistoryEdge';
3005
+ cursor: Scalars['String']['output'];
3006
+ node: AgentStudioJobExecutionHistoryNode;
3007
+ };
3008
+ export declare type AgentStudioJobExecutionHistoryNode = {
3009
+ __typename?: 'AgentStudioJobExecutionHistoryNode';
3010
+ agentVersionId?: Maybe<Scalars['String']['output']>;
3011
+ agentVersionName?: Maybe<Scalars['String']['output']>;
3012
+ completedAt?: Maybe<Scalars['String']['output']>;
3013
+ completedItems?: Maybe<Scalars['Int']['output']>;
3014
+ datasetId?: Maybe<Scalars['ID']['output']>;
3015
+ datasetName?: Maybe<Scalars['String']['output']>;
3016
+ failureCount?: Maybe<Scalars['Int']['output']>;
3017
+ jobId: Scalars['ID']['output'];
3018
+ projectId?: Maybe<Scalars['String']['output']>;
3019
+ runId: Scalars['ID']['output'];
3020
+ runNumber?: Maybe<Scalars['Int']['output']>;
3021
+ startedAt?: Maybe<Scalars['String']['output']>;
3022
+ status?: Maybe<AgentStudioJobRunStatus>;
3023
+ successCount?: Maybe<Scalars['Int']['output']>;
3024
+ totalItems?: Maybe<Scalars['Int']['output']>;
3025
+ };
2998
3026
  export declare enum AgentStudioJobRunStatus {
2999
3027
  Cancelled = "CANCELLED",
3000
3028
  Completed = "COMPLETED",
@@ -9272,7 +9300,12 @@ export declare enum ChannelPlatformEventType {
9272
9300
  ConferenceInitiated = "CONFERENCE_INITIATED",
9273
9301
  ConferenceResponse = "CONFERENCE_RESPONSE",
9274
9302
  CustomChatClosed = "CUSTOM_CHAT_CLOSED",
9275
- Initiated = "INITIATED"
9303
+ CustomPhoneClosed = "CUSTOM_PHONE_CLOSED",
9304
+ Hold = "HOLD",
9305
+ Initiated = "INITIATED",
9306
+ Mute = "MUTE",
9307
+ Resume = "RESUME",
9308
+ Unmute = "UNMUTE"
9276
9309
  }
9277
9310
  export declare type ChannelPlatformGetChannelTokenRequest = {
9278
9311
  channelType?: InputMaybe<ChannelPlatformChannelType>;
@@ -16594,6 +16627,7 @@ export declare type ConfluenceDeleteCommentPayload = {
16594
16627
  success: Scalars['Boolean']['output'];
16595
16628
  };
16596
16629
  export declare type ConfluenceDeleteContentVersionInput = {
16630
+ contentId: Scalars['ID']['input'];
16597
16631
  versionNumber?: InputMaybe<Scalars['Int']['input']>;
16598
16632
  };
16599
16633
  export declare type ConfluenceDeleteContentVersionPayload = Payload & {
@@ -18672,6 +18706,7 @@ export declare type ConfluenceQuestionsConfiguration = {
18672
18706
  __typename?: 'ConfluenceQuestionsConfiguration';
18673
18707
  confluenceQuestionsGlobalSpaceId?: Maybe<Scalars['ID']['output']>;
18674
18708
  confluenceQuestionsGlobalSpaceKey?: Maybe<Scalars['String']['output']>;
18709
+ hasConfluenceQuestionsAccess?: Maybe<Scalars['Boolean']['output']>;
18675
18710
  isConfluenceQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
18676
18711
  isConfluenceQuestionsLicensed?: Maybe<Scalars['Boolean']['output']>;
18677
18712
  };
@@ -22499,6 +22534,7 @@ export declare type ConvoAiErrorMessage = ConvoAiAgentMessage & {
22499
22534
  };
22500
22535
  export declare type ConvoAiHomeThread = {
22501
22536
  __typename?: 'ConvoAiHomeThread';
22537
+ conversationStarters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
22502
22538
  id?: Maybe<Scalars['String']['output']>;
22503
22539
  sources?: Maybe<Array<Maybe<ConvoAiHomeThreadSource>>>;
22504
22540
  suggestedActions?: Maybe<Array<Maybe<ConvoAiHomeThreadSuggestedAction>>>;
@@ -27288,9 +27324,7 @@ export declare type DevConsoleTransactionAccountData = {
27288
27324
  };
27289
27325
  export declare type DevConsoleTransactionAccountPaymentMethod = {
27290
27326
  __typename?: 'DevConsoleTransactionAccountPaymentMethod';
27291
- currency?: Maybe<Scalars['String']['output']>;
27292
27327
  status?: Maybe<DevConsoleTransactionAccountPaymentMethodStatus>;
27293
- type?: Maybe<Scalars['String']['output']>;
27294
27328
  };
27295
27329
  export declare enum DevConsoleTransactionAccountPaymentMethodStatus {
27296
27330
  Active = "ACTIVE",
@@ -69866,6 +69900,14 @@ export declare type JiraFormulaFieldExpressionConfig = {
69866
69900
  export declare type JiraFormulaFieldExpressionConfigInput = {
69867
69901
  expression?: InputMaybe<Scalars['String']['input']>;
69868
69902
  };
69903
+ export declare type JiraFormulaFieldFunctionInfo = {
69904
+ __typename?: 'JiraFormulaFieldFunctionInfo';
69905
+ arity: Scalars['Int']['output'];
69906
+ description: Scalars['String']['output'];
69907
+ name: Scalars['String']['output'];
69908
+ returnType: JiraFormulaFieldType;
69909
+ signature: Scalars['String']['output'];
69910
+ };
69869
69911
  export declare type JiraFormulaFieldIssuePreview = {
69870
69912
  __typename?: 'JiraFormulaFieldIssuePreview';
69871
69913
  missingFields?: Maybe<Array<Scalars['String']['output']>>;
@@ -69906,6 +69948,10 @@ export declare type JiraFormulaFieldSuggestionContext = {
69906
69948
  previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
69907
69949
  projectId?: InputMaybe<Scalars['String']['input']>;
69908
69950
  };
69951
+ export declare type JiraFormulaFieldSupportedFunctions = {
69952
+ __typename?: 'JiraFormulaFieldSupportedFunctions';
69953
+ number?: Maybe<Array<JiraFormulaFieldFunctionInfo>>;
69954
+ };
69909
69955
  export declare type JiraFormulaFieldTextValue = {
69910
69956
  __typename?: 'JiraFormulaFieldTextValue';
69911
69957
  value?: Maybe<Scalars['String']['output']>;
@@ -71250,6 +71296,7 @@ export declare type JiraIssueExportInput = {
71250
71296
  modified?: InputMaybe<Scalars['Boolean']['input']>;
71251
71297
  pagerStart?: InputMaybe<Scalars['Int']['input']>;
71252
71298
  scope?: InputMaybe<JiraIssueSearchScope>;
71299
+ timelineAggregationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
71253
71300
  };
71254
71301
  export declare type JiraIssueExportTask = {
71255
71302
  __typename?: 'JiraIssueExportTask';
@@ -73472,6 +73519,9 @@ export declare type JiraJqlProjectFieldValueEdge = {
73472
73519
  cursor: Scalars['String']['output'];
73473
73520
  node?: Maybe<JiraJqlProjectFieldValue>;
73474
73521
  };
73522
+ export declare type JiraJqlProjectInput = {
73523
+ projectKey?: InputMaybe<Scalars['String']['input']>;
73524
+ };
73475
73525
  export declare type JiraJqlQueryHydratedError = {
73476
73526
  __typename?: 'JiraJqlQueryHydratedError';
73477
73527
  error?: Maybe<QueryError>;
@@ -73505,6 +73555,7 @@ export declare type JiraJqlScopeInput = {
73505
73555
  board?: InputMaybe<JiraJqlBoardInput>;
73506
73556
  list?: InputMaybe<JiraIssueSearchScope>;
73507
73557
  plan?: InputMaybe<JiraJqlPlanInput>;
73558
+ project?: InputMaybe<JiraJqlProjectInput>;
73508
73559
  };
73509
73560
  export declare type JiraJqlSearchTemplate = {
73510
73561
  __typename?: 'JiraJqlSearchTemplate';
@@ -77885,6 +77936,7 @@ export declare type JiraQuery = {
77885
77936
  formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
77886
77937
  formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
77887
77938
  formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
77939
+ formulaFieldSupportedFunctions?: Maybe<JiraFormulaFieldSupportedFunctions>;
77888
77940
  getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
77889
77941
  getArchivedIssuesFilterOptions?: Maybe<JiraArchivedIssuesFilterOptions>;
77890
77942
  getArchivedIssuesForProject?: Maybe<JiraIssueConnection>;
@@ -78307,6 +78359,10 @@ export declare type JiraQueryFormulaFieldPreviewArgs = {
78307
78359
  cloudId: Scalars['ID']['input'];
78308
78360
  expression: Scalars['String']['input'];
78309
78361
  };
78362
+ export declare type JiraQueryFormulaFieldSupportedFunctionsArgs = {
78363
+ cloudId: Scalars['ID']['input'];
78364
+ locale?: InputMaybe<Scalars['String']['input']>;
78365
+ };
78310
78366
  export declare type JiraQueryGetArchivedIssuesArgs = {
78311
78367
  after?: InputMaybe<Scalars['String']['input']>;
78312
78368
  before?: InputMaybe<Scalars['String']['input']>;
@@ -79704,6 +79760,7 @@ export declare type JiraResource = {
79704
79760
  export declare enum JiraResourceIntegration {
79705
79761
  Attachment = "ATTACHMENT",
79706
79762
  Confluence = "CONFLUENCE",
79763
+ Gdrive = "GDRIVE",
79707
79764
  Loom = "LOOM",
79708
79765
  Whiteboard = "WHITEBOARD"
79709
79766
  }
@@ -87238,6 +87295,16 @@ export declare type KnowledgeDiscoveryNaturalLanguageIntent = KnowledgeDiscovery
87238
87295
  subTypes: Array<KnowledgeDiscoveryQuerySubType>;
87239
87296
  transformedQuery: Scalars['String']['output'];
87240
87297
  };
87298
+ export declare type KnowledgeDiscoveryNavContentIntent = KnowledgeDiscoveryIntent & {
87299
+ __typename?: 'KnowledgeDiscoveryNavContentIntent';
87300
+ classification: KnowledgeDiscoveryQueryClassification;
87301
+ createdAt: Scalars['String']['output'];
87302
+ detectionType: KnowledgeDiscoveryDetectionType;
87303
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
87304
+ title: Scalars['String']['output'];
87305
+ transformedQuery: Scalars['String']['output'];
87306
+ url: Scalars['String']['output'];
87307
+ };
87241
87308
  export declare type KnowledgeDiscoveryNavigationalIntent = KnowledgeDiscoveryIntent & {
87242
87309
  __typename?: 'KnowledgeDiscoveryNavigationalIntent';
87243
87310
  classification: KnowledgeDiscoveryQueryClassification;
@@ -87421,7 +87488,9 @@ export declare enum KnowledgeDiscoveryQueryClassification {
87421
87488
  KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
87422
87489
  NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
87423
87490
  Navigational = "NAVIGATIONAL",
87491
+ NavContent = "NAV_CONTENT",
87424
87492
  None = "NONE",
87493
+ OrgChart = "ORG_CHART",
87425
87494
  Person = "PERSON",
87426
87495
  Team = "TEAM",
87427
87496
  Topic = "TOPIC"
@@ -89420,6 +89489,14 @@ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
89420
89489
  tagLine?: InputMaybe<Scalars['String']['input']>;
89421
89490
  youtubeId?: InputMaybe<Scalars['String']['input']>;
89422
89491
  };
89492
+ export declare type MarketplaceConsoleMakerContact = {
89493
+ __typename?: 'MarketplaceConsoleMakerContact';
89494
+ displayName?: Maybe<Scalars['String']['output']>;
89495
+ email?: Maybe<Scalars['String']['output']>;
89496
+ permissions?: Maybe<Array<Scalars['String']['output']>>;
89497
+ roles?: Maybe<Array<Scalars['String']['output']>>;
89498
+ userName?: Maybe<Scalars['String']['output']>;
89499
+ };
89423
89500
  export declare type MarketplaceConsoleMakerContactCreateInput = {
89424
89501
  contactPayload: MarketplaceConsoleMakerContactPayload;
89425
89502
  email: Scalars['String']['input'];
@@ -89429,6 +89506,10 @@ export declare type MarketplaceConsoleMakerContactDeleteInput = {
89429
89506
  accountId: Scalars['ID']['input'];
89430
89507
  partnerId: Scalars['ID']['input'];
89431
89508
  };
89509
+ export declare type MarketplaceConsoleMakerContactFilters = {
89510
+ role?: InputMaybe<Scalars['String']['input']>;
89511
+ search?: InputMaybe<Scalars['String']['input']>;
89512
+ };
89432
89513
  export declare type MarketplaceConsoleMakerContactPayload = {
89433
89514
  permissions: Array<Scalars['String']['input']>;
89434
89515
  roles: Array<Scalars['String']['input']>;
@@ -89439,6 +89520,12 @@ export declare type MarketplaceConsoleMakerContactUpdateInput = {
89439
89520
  contactPayload: MarketplaceConsoleMakerContactPayload;
89440
89521
  partnerId: Scalars['ID']['input'];
89441
89522
  };
89523
+ export declare type MarketplaceConsoleMakerContactsQueryResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMakerContactsResponse;
89524
+ export declare type MarketplaceConsoleMakerContactsResponse = {
89525
+ __typename?: 'MarketplaceConsoleMakerContactsResponse';
89526
+ count: Scalars['Int']['output'];
89527
+ makerContacts: Array<Maybe<MarketplaceConsoleMakerContact>>;
89528
+ };
89442
89529
  export declare type MarketplaceConsoleMutationApi = {
89443
89530
  __typename?: 'MarketplaceConsoleMutationApi';
89444
89531
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
@@ -89803,6 +89890,7 @@ export declare type MarketplaceConsoleQueryApi = {
89803
89890
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
89804
89891
  editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
89805
89892
  getBulkProductMigration?: Maybe<MarketplaceConsoleBulkProductMigrationResponse>;
89893
+ getMakerContacts?: Maybe<MarketplaceConsoleMakerContactsQueryResponse>;
89806
89894
  makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
89807
89895
  offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
89808
89896
  parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
@@ -89864,6 +89952,12 @@ export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
89864
89952
  export declare type MarketplaceConsoleQueryApiGetBulkProductMigrationArgs = {
89865
89953
  productIds: Array<Scalars['ID']['input']>;
89866
89954
  };
89955
+ export declare type MarketplaceConsoleQueryApiGetMakerContactsArgs = {
89956
+ filters?: InputMaybe<MarketplaceConsoleMakerContactFilters>;
89957
+ limit?: InputMaybe<Scalars['Int']['input']>;
89958
+ offset?: InputMaybe<Scalars['Int']['input']>;
89959
+ partnerId: Scalars['ID']['input'];
89960
+ };
89867
89961
  export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
89868
89962
  appId: Scalars['ID']['input'];
89869
89963
  buildNumber: Scalars['ID']['input'];
@@ -91881,6 +91975,13 @@ export declare type MercuryCustomFieldDefinitionEdge = {
91881
91975
  export declare type MercuryCustomFieldDefinitionScope = {
91882
91976
  entityType: Scalars['String']['output'];
91883
91977
  };
91978
+ export declare type MercuryCustomFieldDefinitionSort = {
91979
+ field: MercuryCustomFieldDefinitionSortField;
91980
+ order: SortOrder;
91981
+ };
91982
+ export declare enum MercuryCustomFieldDefinitionSortField {
91983
+ Name = "NAME"
91984
+ }
91884
91985
  export declare type MercuryCustomFieldInput = {
91885
91986
  numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
91886
91987
  singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
@@ -93543,6 +93644,8 @@ export declare type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
93543
93644
  after?: InputMaybe<Scalars['String']['input']>;
93544
93645
  cloudId?: InputMaybe<Scalars['ID']['input']>;
93545
93646
  first?: InputMaybe<Scalars['Int']['input']>;
93647
+ q?: InputMaybe<Scalars['String']['input']>;
93648
+ sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
93546
93649
  };
93547
93650
  export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
93548
93651
  cloudId: Scalars['ID']['input'];
@@ -94036,6 +94139,7 @@ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventTargetD
94036
94139
  export declare type MercuryStrategicEventsQueryApi = {
94037
94140
  __typename?: 'MercuryStrategicEventsQueryApi';
94038
94141
  changeProposal?: Maybe<MercuryChangeProposal>;
94142
+ changeProposalCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
94039
94143
  changeProposalImpactValues: Array<MercuryChangeProposalImpact>;
94040
94144
  changeProposalStatuses: Array<MercuryChangeProposalStatus>;
94041
94145
  changeProposalSummaryForStrategicEvent?: Maybe<MercuryChangeProposalSummaryForStrategicEvent>;
@@ -94064,6 +94168,13 @@ export declare type MercuryStrategicEventsQueryApi = {
94064
94168
  export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
94065
94169
  id: Scalars['ID']['input'];
94066
94170
  };
94171
+ export declare type MercuryStrategicEventsQueryApiChangeProposalCustomFieldDefinitionsSearchArgs = {
94172
+ after?: InputMaybe<Scalars['String']['input']>;
94173
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
94174
+ first?: InputMaybe<Scalars['Int']['input']>;
94175
+ q?: InputMaybe<Scalars['String']['input']>;
94176
+ sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
94177
+ };
94067
94178
  export declare type MercuryStrategicEventsQueryApiChangeProposalImpactValuesArgs = {
94068
94179
  cloudId?: InputMaybe<Scalars['ID']['input']>;
94069
94180
  };
@@ -95218,14 +95329,19 @@ export declare type Mutation = {
95218
95329
  goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
95219
95330
  goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
95220
95331
  goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
95332
+ goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
95221
95333
  goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
95334
+ goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
95335
+ goals_editLearning?: Maybe<TownsquareGoalsEditLearningPayload>;
95222
95336
  goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
95223
95337
  goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
95338
+ goals_editRisk?: Maybe<TownsquareGoalsEditRiskPayload>;
95224
95339
  goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
95225
95340
  goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
95226
95341
  goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
95227
95342
  goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
95228
95343
  goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
95344
+ goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
95229
95345
  goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
95230
95346
  goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
95231
95347
  grantContentAccess?: Maybe<GrantContentAccessPayload>;
@@ -96189,8 +96305,8 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
96189
96305
  input: ConfluenceDeleteCalendarCustomEventTypeInput;
96190
96306
  };
96191
96307
  export declare type MutationConfluence_DeleteContentVersionArgs = {
96192
- input?: InputMaybe<ConfluenceDeleteContentVersionInput>;
96193
- pageAri: Scalars['ID']['input'];
96308
+ cloudId: Scalars['ID']['input'];
96309
+ input: ConfluenceDeleteContentVersionInput;
96194
96310
  };
96195
96311
  export declare type MutationConfluence_DeleteCustomRoleArgs = {
96196
96312
  cloudId: Scalars['ID']['input'];
@@ -97028,15 +97144,27 @@ export declare type MutationGoals_CreateUpdateArgs = {
97028
97144
  export declare type MutationGoals_DeleteLatestUpdateArgs = {
97029
97145
  input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
97030
97146
  };
97147
+ export declare type MutationGoals_DeleteProjectLinkArgs = {
97148
+ input: TownsquareGoalsDeleteProjectLinkInput;
97149
+ };
97031
97150
  export declare type MutationGoals_EditCommentArgs = {
97032
97151
  input: TownsquareGoalsEditCommentInput;
97033
97152
  };
97153
+ export declare type MutationGoals_EditDecisionArgs = {
97154
+ input: TownsquareGoalsEditDecisionInput;
97155
+ };
97156
+ export declare type MutationGoals_EditLearningArgs = {
97157
+ input: TownsquareGoalsEditLearningInput;
97158
+ };
97034
97159
  export declare type MutationGoals_EditMetricArgs = {
97035
97160
  input: TownsquareGoalsEditMetricInput;
97036
97161
  };
97037
97162
  export declare type MutationGoals_EditMetricTargetArgs = {
97038
97163
  input: TownsquareGoalsEditMetricTargetInput;
97039
97164
  };
97165
+ export declare type MutationGoals_EditRiskArgs = {
97166
+ input: TownsquareGoalsEditRiskInput;
97167
+ };
97040
97168
  export declare type MutationGoals_EditUpdateArgs = {
97041
97169
  input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
97042
97170
  };
@@ -97052,6 +97180,9 @@ export declare type MutationGoals_RemoveMetricTargetArgs = {
97052
97180
  export declare type MutationGoals_SetWatchingGoalArgs = {
97053
97181
  input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
97054
97182
  };
97183
+ export declare type MutationGoals_SetWatchingTeamArgs = {
97184
+ input: TownsquareGoalsSetWatchingTeamInput;
97185
+ };
97055
97186
  export declare type MutationGoals_ShareGoalArgs = {
97056
97187
  input: TownsquareGoalsShareGoalInput;
97057
97188
  };
@@ -101249,6 +101380,7 @@ export declare type Query = {
101249
101380
  agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
101250
101381
  agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
101251
101382
  agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
101383
+ agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
101252
101384
  agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
101253
101385
  agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
101254
101386
  agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
@@ -102363,6 +102495,13 @@ export declare type QueryAgentStudio_InsightsConfigurationArgs = {
102363
102495
  cloudId: Scalars['String']['input'];
102364
102496
  id: Scalars['ID']['input'];
102365
102497
  };
102498
+ export declare type QueryAgentStudio_JobExecutionHistoryArgs = {
102499
+ after?: InputMaybe<Scalars['String']['input']>;
102500
+ cloudId: Scalars['String']['input'];
102501
+ first?: InputMaybe<Scalars['Int']['input']>;
102502
+ productType: AgentStudioProductType;
102503
+ projectContainerAri: Scalars['ID']['input'];
102504
+ };
102366
102505
  export declare type QueryAgentStudio_ScenarioByIdArgs = {
102367
102506
  containerId: Scalars['ID']['input'];
102368
102507
  id: Scalars['ID']['input'];
@@ -131687,6 +131826,20 @@ export declare type TeamChildrenEdge = {
131687
131826
  cursor: Scalars['String']['output'];
131688
131827
  node?: Maybe<TeamV2>;
131689
131828
  };
131829
+ export declare type TeamCreateTeamInput = {
131830
+ description: Scalars['String']['input'];
131831
+ directoryId: Scalars['ID']['input'];
131832
+ displayName: Scalars['String']['input'];
131833
+ members?: InputMaybe<Array<Scalars['ID']['input']>>;
131834
+ membershipSettings: TeamMembershipSettings;
131835
+ typeId?: InputMaybe<Scalars['ID']['input']>;
131836
+ };
131837
+ export declare type TeamCreateTeamPayload = Payload & {
131838
+ __typename?: 'TeamCreateTeamPayload';
131839
+ errors?: Maybe<Array<MutationError>>;
131840
+ success: Scalars['Boolean']['output'];
131841
+ team?: Maybe<TeamV2>;
131842
+ };
131690
131843
  export declare type TeamHierarchy = {
131691
131844
  __typename?: 'TeamHierarchy';
131692
131845
  ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
@@ -131765,6 +131918,7 @@ export declare type TeamMutation = {
131765
131918
  addChild?: Maybe<TeamV2>;
131766
131919
  addParent?: Maybe<TeamV2>;
131767
131920
  assignTeamToType?: Maybe<TeamV2>;
131921
+ createTeam?: Maybe<TeamCreateTeamPayload>;
131768
131922
  createTeamType?: Maybe<TeamType>;
131769
131923
  removeChild?: Maybe<TeamV2>;
131770
131924
  removeParent?: Maybe<TeamV2>;
@@ -131785,6 +131939,9 @@ export declare type TeamMutationAssignTeamToTypeArgs = {
131785
131939
  teamId: Scalars['ID']['input'];
131786
131940
  typeId: Scalars['ID']['input'];
131787
131941
  };
131942
+ export declare type TeamMutationCreateTeamArgs = {
131943
+ input: TeamCreateTeamInput;
131944
+ };
131788
131945
  export declare type TeamMutationCreateTeamTypeArgs = {
131789
131946
  scopeId: Scalars['ID']['input'];
131790
131947
  typeData: TeamTypeCreationPayload;
@@ -132604,6 +132761,7 @@ export declare type TownsquareAddProjectLinkPayload = {
132604
132761
  __typename?: 'TownsquareAddProjectLinkPayload';
132605
132762
  errors?: Maybe<Array<MutationError>>;
132606
132763
  goal?: Maybe<TownsquareGoal>;
132764
+ project?: Maybe<TownsquareProject>;
132607
132765
  success: Scalars['Boolean']['output'];
132608
132766
  };
132609
132767
  export declare type TownsquareAddTagToEntityByIdInput = {
@@ -133051,6 +133209,7 @@ export declare type TownsquareGoalType = Node & {
133051
133209
  id: Scalars['ID']['output'];
133052
133210
  kind?: Maybe<TownsquareGoalTypeKind>;
133053
133211
  name?: Maybe<TownsquareGoalTypeName>;
133212
+ namePlural?: Maybe<TownsquareGoalTypeNamePlural>;
133054
133213
  requiresParentGoal?: Maybe<Scalars['Boolean']['output']>;
133055
133214
  state?: Maybe<TownsquareGoalTypeState>;
133056
133215
  };
@@ -133077,6 +133236,10 @@ export declare type TownsquareGoalTypeCustomName = {
133077
133236
  __typename?: 'TownsquareGoalTypeCustomName';
133078
133237
  value?: Maybe<Scalars['String']['output']>;
133079
133238
  };
133239
+ export declare type TownsquareGoalTypeCustomNamePlural = {
133240
+ __typename?: 'TownsquareGoalTypeCustomNamePlural';
133241
+ value?: Maybe<Scalars['String']['output']>;
133242
+ };
133080
133243
  export declare type TownsquareGoalTypeDescription = TownsquareGoalTypeCustomDescription | TownsquareLocalizationField;
133081
133244
  export declare type TownsquareGoalTypeEdge = {
133082
133245
  __typename?: 'TownsquareGoalTypeEdge';
@@ -133092,6 +133255,7 @@ export declare enum TownsquareGoalTypeKind {
133092
133255
  SuccessMeasure = "SUCCESS_MEASURE"
133093
133256
  }
133094
133257
  export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
133258
+ export declare type TownsquareGoalTypeNamePlural = TownsquareGoalTypeCustomNamePlural | TownsquareLocalizationField;
133095
133259
  export declare enum TownsquareGoalTypeState {
133096
133260
  Disabled = "DISABLED",
133097
133261
  Enabled = "ENABLED"
@@ -133254,6 +133418,16 @@ export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
133254
133418
  success: Scalars['Boolean']['output'];
133255
133419
  updateId?: Maybe<Scalars['ID']['output']>;
133256
133420
  };
133421
+ export declare type TownsquareGoalsDeleteProjectLinkInput = {
133422
+ goalId: Scalars['ID']['input'];
133423
+ projectId: Scalars['ID']['input'];
133424
+ };
133425
+ export declare type TownsquareGoalsDeleteProjectLinkPayload = {
133426
+ __typename?: 'TownsquareGoalsDeleteProjectLinkPayload';
133427
+ errors?: Maybe<Array<MutationError>>;
133428
+ projectId?: Maybe<Scalars['ID']['output']>;
133429
+ success: Scalars['Boolean']['output'];
133430
+ };
133257
133431
  export declare type TownsquareGoalsEditCommentInput = {
133258
133432
  commentId: Scalars['ID']['input'];
133259
133433
  commentText: Scalars['String']['input'];
@@ -133264,6 +133438,28 @@ export declare type TownsquareGoalsEditCommentPayload = {
133264
133438
  errors?: Maybe<Array<MutationError>>;
133265
133439
  success: Scalars['Boolean']['output'];
133266
133440
  };
133441
+ export declare type TownsquareGoalsEditDecisionInput = {
133442
+ decisionId: Scalars['ID']['input'];
133443
+ description?: InputMaybe<Scalars['String']['input']>;
133444
+ summary?: InputMaybe<Scalars['String']['input']>;
133445
+ };
133446
+ export declare type TownsquareGoalsEditDecisionPayload = {
133447
+ __typename?: 'TownsquareGoalsEditDecisionPayload';
133448
+ decision?: Maybe<TownsquareDecision>;
133449
+ errors?: Maybe<Array<MutationError>>;
133450
+ success: Scalars['Boolean']['output'];
133451
+ };
133452
+ export declare type TownsquareGoalsEditLearningInput = {
133453
+ description?: InputMaybe<Scalars['String']['input']>;
133454
+ learningId: Scalars['ID']['input'];
133455
+ summary?: InputMaybe<Scalars['String']['input']>;
133456
+ };
133457
+ export declare type TownsquareGoalsEditLearningPayload = {
133458
+ __typename?: 'TownsquareGoalsEditLearningPayload';
133459
+ errors?: Maybe<Array<MutationError>>;
133460
+ learning?: Maybe<TownsquareLearning>;
133461
+ success: Scalars['Boolean']['output'];
133462
+ };
133267
133463
  export declare type TownsquareGoalsEditMetricInput = {
133268
133464
  externalEntityId?: InputMaybe<Scalars['String']['input']>;
133269
133465
  metricId: Scalars['ID']['input'];
@@ -133290,6 +133486,17 @@ export declare type TownsquareGoalsEditMetricTargetPayload = {
133290
133486
  goal?: Maybe<TownsquareGoal>;
133291
133487
  success: Scalars['Boolean']['output'];
133292
133488
  };
133489
+ export declare type TownsquareGoalsEditRiskInput = {
133490
+ description?: InputMaybe<Scalars['String']['input']>;
133491
+ riskId: Scalars['ID']['input'];
133492
+ summary?: InputMaybe<Scalars['String']['input']>;
133493
+ };
133494
+ export declare type TownsquareGoalsEditRiskPayload = {
133495
+ __typename?: 'TownsquareGoalsEditRiskPayload';
133496
+ errors?: Maybe<Array<MutationError>>;
133497
+ risk?: Maybe<TownsquareRisk>;
133498
+ success: Scalars['Boolean']['output'];
133499
+ };
133293
133500
  export declare type TownsquareGoalsEditUpdateInput = {
133294
133501
  goalUpdateId: Scalars['ID']['input'];
133295
133502
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateEditInput>>>;
@@ -133349,6 +133556,18 @@ export declare type TownsquareGoalsSetWatchingGoalPayload = {
133349
133556
  success: Scalars['Boolean']['output'];
133350
133557
  user?: Maybe<User>;
133351
133558
  };
133559
+ export declare type TownsquareGoalsSetWatchingTeamInput = {
133560
+ goalId: Scalars['ID']['input'];
133561
+ isWatching: Scalars['Boolean']['input'];
133562
+ teamId: Scalars['ID']['input'];
133563
+ };
133564
+ export declare type TownsquareGoalsSetWatchingTeamPayload = {
133565
+ __typename?: 'TownsquareGoalsSetWatchingTeamPayload';
133566
+ errors?: Maybe<Array<MutationError>>;
133567
+ goal?: Maybe<TownsquareGoal>;
133568
+ success: Scalars['Boolean']['output'];
133569
+ team?: Maybe<TeamV2>;
133570
+ };
133352
133571
  export declare type TownsquareGoalsShareGoalInput = {
133353
133572
  goalId: Scalars['ID']['input'];
133354
133573
  users: Array<InputMaybe<TownsquareShareGoalUserInput>>;
@@ -133488,6 +133707,7 @@ export declare type TownsquareMetric = Node & {
133488
133707
  archived?: Maybe<Scalars['Boolean']['output']>;
133489
133708
  externalEntityId?: Maybe<Scalars['String']['output']>;
133490
133709
  id: Scalars['ID']['output'];
133710
+ latestValue?: Maybe<TownsquareMetricValue>;
133491
133711
  name?: Maybe<Scalars['String']['output']>;
133492
133712
  source?: Maybe<Scalars['String']['output']>;
133493
133713
  subType?: Maybe<Scalars['String']['output']>;
@@ -133551,6 +133771,7 @@ export declare type TownsquareMetricUpdateInput = {
133551
133771
  export declare type TownsquareMetricValue = Node & {
133552
133772
  __typename?: 'TownsquareMetricValue';
133553
133773
  id: Scalars['ID']['output'];
133774
+ time?: Maybe<Scalars['DateTime']['output']>;
133554
133775
  value?: Maybe<Scalars['Float']['output']>;
133555
133776
  };
133556
133777
  export declare type TownsquareMetricValueConnection = {
@@ -134414,12 +134635,22 @@ export declare type TownsquareTag = Node & {
134414
134635
  __typename?: 'TownsquareTag';
134415
134636
  creationDate?: Maybe<Scalars['DateTime']['output']>;
134416
134637
  description?: Maybe<Scalars['String']['output']>;
134638
+ goals?: Maybe<TownsquareGoalConnection>;
134417
134639
  iconData?: Maybe<Scalars['String']['output']>;
134418
134640
  id: Scalars['ID']['output'];
134419
134641
  name?: Maybe<Scalars['String']['output']>;
134642
+ projects?: Maybe<TownsquareProjectConnection>;
134420
134643
  url?: Maybe<Scalars['String']['output']>;
134421
134644
  usageCount?: Maybe<Scalars['Int']['output']>;
134422
134645
  };
134646
+ export declare type TownsquareTagGoalsArgs = {
134647
+ after?: InputMaybe<Scalars['String']['input']>;
134648
+ first?: InputMaybe<Scalars['Int']['input']>;
134649
+ };
134650
+ export declare type TownsquareTagProjectsArgs = {
134651
+ after?: InputMaybe<Scalars['String']['input']>;
134652
+ first?: InputMaybe<Scalars['Int']['input']>;
134653
+ };
134423
134654
  export declare type TownsquareTagConnection = {
134424
134655
  __typename?: 'TownsquareTagConnection';
134425
134656
  count: Scalars['Int']['output'];
@@ -137437,6 +137668,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
137437
137668
  description?: Maybe<Scalars['String']['output']>;
137438
137669
  endAt?: Maybe<Scalars['DateTime']['output']>;
137439
137670
  eventType?: Maybe<TrelloPlannerCalendarEventType>;
137671
+ eventViewType?: Maybe<TrelloPlannerCalendarEventViewType>;
137440
137672
  id: Scalars['ID']['output'];
137441
137673
  link?: Maybe<Scalars['String']['output']>;
137442
137674
  parentEventId?: Maybe<Scalars['ID']['output']>;
@@ -137546,6 +137778,7 @@ export declare type TrelloPlannerCalendarEventUpdated = {
137546
137778
  description?: Maybe<Scalars['String']['output']>;
137547
137779
  endAt?: Maybe<Scalars['DateTime']['output']>;
137548
137780
  eventType?: Maybe<TrelloPlannerCalendarEventType>;
137781
+ eventViewType?: Maybe<TrelloPlannerCalendarEventViewType>;
137549
137782
  id: Scalars['ID']['output'];
137550
137783
  link?: Maybe<Scalars['String']['output']>;
137551
137784
  onPlannerCalendarEventCardDeleted?: Maybe<Array<TrelloPlannerCalendarEventCardDeleted>>;
@@ -137557,6 +137790,10 @@ export declare type TrelloPlannerCalendarEventUpdated = {
137557
137790
  title?: Maybe<Scalars['String']['output']>;
137558
137791
  visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
137559
137792
  };
137793
+ export declare enum TrelloPlannerCalendarEventViewType {
137794
+ Default = "DEFAULT",
137795
+ SingleScheduledTask = "SINGLE_SCHEDULED_TASK"
137796
+ }
137560
137797
  export declare enum TrelloPlannerCalendarEventVisibility {
137561
137798
  Default = "DEFAULT",
137562
137799
  Private = "PRIVATE",
@@ -138049,7 +138286,7 @@ export declare type TrelloResetCardCoverInput = {
138049
138286
  };
138050
138287
  export declare type TrelloResetCardCoverPayload = Payload & {
138051
138288
  __typename?: 'TrelloResetCardCoverPayload';
138052
- cardId: Scalars['ID']['output'];
138289
+ card?: Maybe<TrelloCard>;
138053
138290
  errors?: Maybe<Array<MutationError>>;
138054
138291
  success: Scalars['Boolean']['output'];
138055
138292
  };
@@ -138378,7 +138615,7 @@ export declare type TrelloUpdateCardCoverInput = {
138378
138615
  };
138379
138616
  export declare type TrelloUpdateCardCoverPayload = Payload & {
138380
138617
  __typename?: 'TrelloUpdateCardCoverPayload';
138381
- cardId?: Maybe<Scalars['ID']['output']>;
138618
+ card?: Maybe<TrelloCard>;
138382
138619
  errors?: Maybe<Array<MutationError>>;
138383
138620
  success: Scalars['Boolean']['output'];
138384
138621
  };