@forge/cli-shared 8.15.0-next.3-experimental-3c69930 → 8.15.0-next.4
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 +3 -12
- package/out/graphql/graphql-types.d.ts +178 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +51 -19
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.15.0-next.
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- e8cce7f: add transformErrorMessage for preserving error attributes
|
|
3
|
+
## 8.15.0-next.4
|
|
8
4
|
|
|
9
5
|
### Patch Changes
|
|
10
6
|
|
|
11
|
-
- Updated dependencies [
|
|
12
|
-
-
|
|
13
|
-
- Updated dependencies [e21f32f]
|
|
14
|
-
- Updated dependencies [545ecc1]
|
|
15
|
-
- Updated dependencies [eadb4a6]
|
|
16
|
-
- Updated dependencies [8db2311]
|
|
17
|
-
- @forge/manifest@12.0.0-next.3-experimental-3c69930
|
|
7
|
+
- Updated dependencies [9418d29]
|
|
8
|
+
- @forge/manifest@12.0.0-next.4
|
|
18
9
|
|
|
19
10
|
## 8.15.0-next.3
|
|
20
11
|
|
|
@@ -3168,6 +3168,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
3168
3168
|
isDefault: Scalars['Boolean']['output'];
|
|
3169
3169
|
isValid: AgentStudioScenarioValidation;
|
|
3170
3170
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3171
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
3171
3172
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3172
3173
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3173
3174
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
@@ -3677,6 +3678,7 @@ export declare type AgentStudioScenario = {
|
|
|
3677
3678
|
isDefault: Scalars['Boolean']['output'];
|
|
3678
3679
|
isValid: AgentStudioScenarioValidation;
|
|
3679
3680
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3681
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
3680
3682
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3681
3683
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3682
3684
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
@@ -8520,6 +8522,7 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
8520
8522
|
};
|
|
8521
8523
|
export declare type BlockServiceBatchRetrieveBlocksInput = {
|
|
8522
8524
|
blockAris: Array<Scalars['String']['input']>;
|
|
8525
|
+
blockIdentifiers?: InputMaybe<Array<BlockServiceBlockIdentifierInput>>;
|
|
8523
8526
|
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
8524
8527
|
};
|
|
8525
8528
|
export declare type BlockServiceBatchRetrieveBlocksPayload = {
|
|
@@ -8533,6 +8536,10 @@ export declare type BlockServiceBlockErrorPayload = {
|
|
|
8533
8536
|
code: Scalars['String']['output'];
|
|
8534
8537
|
reason: Scalars['String']['output'];
|
|
8535
8538
|
};
|
|
8539
|
+
export declare type BlockServiceBlockIdentifierInput = {
|
|
8540
|
+
blockAri: Scalars['String']['input'];
|
|
8541
|
+
blockInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
8542
|
+
};
|
|
8536
8543
|
export declare type BlockServiceBlockPayload = {
|
|
8537
8544
|
__typename?: 'BlockServiceBlockPayload';
|
|
8538
8545
|
blockAri: Scalars['String']['output'];
|
|
@@ -25348,7 +25355,7 @@ export declare type ConvoAiAgentSession = ConvoAiAgentSessionNode & {
|
|
|
25348
25355
|
};
|
|
25349
25356
|
export declare type ConvoAiAgentSessionCreate = {
|
|
25350
25357
|
__typename?: 'ConvoAiAgentSessionCreate';
|
|
25351
|
-
agent?: Maybe<
|
|
25358
|
+
agent?: Maybe<ConvoAiUser>;
|
|
25352
25359
|
agentIdentityAccountId?: Maybe<Scalars['String']['output']>;
|
|
25353
25360
|
conversationId: Scalars['String']['output'];
|
|
25354
25361
|
};
|
|
@@ -25547,6 +25554,12 @@ export declare type ConvoAiUpdateConversationStatePayload = Payload & {
|
|
|
25547
25554
|
errors?: Maybe<Array<MutationError>>;
|
|
25548
25555
|
success: Scalars['Boolean']['output'];
|
|
25549
25556
|
};
|
|
25557
|
+
export declare type ConvoAiUser = {
|
|
25558
|
+
__typename?: 'ConvoAiUser';
|
|
25559
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
25560
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
25561
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
25562
|
+
};
|
|
25550
25563
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
25551
25564
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
25552
25565
|
project: Scalars['ID']['input'];
|
|
@@ -28084,6 +28097,7 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
28084
28097
|
};
|
|
28085
28098
|
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
28086
28099
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28100
|
+
filter?: InputMaybe<CustomerServiceRequestFilterInput>;
|
|
28087
28101
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28088
28102
|
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
28089
28103
|
};
|
|
@@ -28583,6 +28597,10 @@ export declare type CustomerServiceRequestEdge = {
|
|
|
28583
28597
|
cursor: Scalars['String']['output'];
|
|
28584
28598
|
node?: Maybe<CustomerServiceRequest>;
|
|
28585
28599
|
};
|
|
28600
|
+
export declare type CustomerServiceRequestFilterInput = {
|
|
28601
|
+
status?: InputMaybe<CustomerServiceStatusKey>;
|
|
28602
|
+
summaryContains?: InputMaybe<Scalars['String']['input']>;
|
|
28603
|
+
};
|
|
28586
28604
|
export declare type CustomerServiceRequestFormDataConnection = {
|
|
28587
28605
|
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
28588
28606
|
edges: Array<CustomerServiceRequestFormDataEdge>;
|
|
@@ -84937,6 +84955,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
84937
84955
|
statusNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
84938
84956
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
84939
84957
|
template?: Maybe<Scalars['String']['output']>;
|
|
84958
|
+
thirdPartyTools?: Maybe<Array<Maybe<GrowthUnifiedProfileThirdPartyTools>>>;
|
|
84940
84959
|
};
|
|
84941
84960
|
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
84942
84961
|
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84949,6 +84968,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
84949
84968
|
statusNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84950
84969
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
84951
84970
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
84971
|
+
thirdPartyTools?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileThirdPartyTools>>>;
|
|
84952
84972
|
};
|
|
84953
84973
|
export declare type GrowthUnifiedProfileLinkEngagement = {
|
|
84954
84974
|
__typename?: 'GrowthUnifiedProfileLinkEngagement';
|
|
@@ -85239,6 +85259,22 @@ export declare enum GrowthUnifiedProfileTenantType {
|
|
|
85239
85259
|
CloudId = "CLOUD_ID",
|
|
85240
85260
|
OrgId = "ORG_ID"
|
|
85241
85261
|
}
|
|
85262
|
+
export declare enum GrowthUnifiedProfileThirdPartyTools {
|
|
85263
|
+
Asana = "ASANA",
|
|
85264
|
+
Bitbucket = "BITBUCKET",
|
|
85265
|
+
Canva = "CANVA",
|
|
85266
|
+
Confluence = "CONFLUENCE",
|
|
85267
|
+
Dropbox = "DROPBOX",
|
|
85268
|
+
Figma = "FIGMA",
|
|
85269
|
+
Github = "GITHUB",
|
|
85270
|
+
Gitlab = "GITLAB",
|
|
85271
|
+
Google = "GOOGLE",
|
|
85272
|
+
Microsoft = "MICROSOFT",
|
|
85273
|
+
Monday = "MONDAY",
|
|
85274
|
+
Notion = "NOTION",
|
|
85275
|
+
Slack = "SLACK",
|
|
85276
|
+
Trello = "TRELLO"
|
|
85277
|
+
}
|
|
85242
85278
|
export declare type GrowthUnifiedProfileTrialContext = {
|
|
85243
85279
|
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
85244
85280
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -90466,7 +90502,8 @@ export declare enum JiraBoardSwimlaneStrategy {
|
|
|
90466
90502
|
None = "NONE",
|
|
90467
90503
|
ParentChild = "PARENT_CHILD",
|
|
90468
90504
|
Project = "PROJECT",
|
|
90469
|
-
RequestType = "REQUEST_TYPE"
|
|
90505
|
+
RequestType = "REQUEST_TYPE",
|
|
90506
|
+
TownsquareProject = "TOWNSQUARE_PROJECT"
|
|
90470
90507
|
}
|
|
90471
90508
|
export declare enum JiraBoardType {
|
|
90472
90509
|
Kanban = "KANBAN",
|
|
@@ -113711,6 +113748,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
113711
113748
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
113712
113749
|
dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
|
|
113713
113750
|
markZeroQueryInteracted?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
113751
|
+
markZeroQueryInteractedV1?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
113714
113752
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
113715
113753
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
113716
113754
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
@@ -113736,6 +113774,9 @@ export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs =
|
|
|
113736
113774
|
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedArgs = {
|
|
113737
113775
|
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
113738
113776
|
};
|
|
113777
|
+
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedV1Args = {
|
|
113778
|
+
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
113779
|
+
};
|
|
113739
113780
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
113740
113781
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
113741
113782
|
};
|
|
@@ -113845,6 +113886,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
113845
113886
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
113846
113887
|
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
113847
113888
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
113889
|
+
zeroQueriesV1?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
113848
113890
|
};
|
|
113849
113891
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
113850
113892
|
cloudId: Scalars['ID']['input'];
|
|
@@ -113963,6 +114005,10 @@ export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
|
113963
114005
|
cloudId: Scalars['String']['input'];
|
|
113964
114006
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
113965
114007
|
};
|
|
114008
|
+
export declare type KnowledgeDiscoveryQueryApiZeroQueriesV1Args = {
|
|
114009
|
+
cloudId: Scalars['String']['input'];
|
|
114010
|
+
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
114011
|
+
};
|
|
113966
114012
|
export declare enum KnowledgeDiscoveryQueryClassification {
|
|
113967
114013
|
Bookmark = "BOOKMARK",
|
|
113968
114014
|
JiraNaturalLanguageQuery = "JIRA_NATURAL_LANGUAGE_QUERY",
|
|
@@ -116312,6 +116358,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
116312
116358
|
updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
116313
116359
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
116314
116360
|
updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
|
|
116361
|
+
updateProductListingReleaseStatus: MarketplaceConsoleUpdateProductListingReleaseStatusResponse;
|
|
116315
116362
|
updateVersionListingApprovalStatus: MarketplaceConsoleUpdateVersionListingApprovalStatusResponse;
|
|
116316
116363
|
upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
116317
116364
|
upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
@@ -116390,6 +116437,9 @@ export declare type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
|
|
|
116390
116437
|
export declare type MarketplaceConsoleMutationApiUpdateProductListingApprovalStatusArgs = {
|
|
116391
116438
|
input: MarketplaceConsoleUpdateProductListingApprovalStatusInput;
|
|
116392
116439
|
};
|
|
116440
|
+
export declare type MarketplaceConsoleMutationApiUpdateProductListingReleaseStatusArgs = {
|
|
116441
|
+
productId: Scalars['ID']['input'];
|
|
116442
|
+
};
|
|
116393
116443
|
export declare type MarketplaceConsoleMutationApiUpdateVersionListingApprovalStatusArgs = {
|
|
116394
116444
|
input: MarketplaceConsoleUpdateVersionListingApprovalStatusInput;
|
|
116395
116445
|
};
|
|
@@ -116698,6 +116748,33 @@ export declare enum MarketplaceConsoleProductListingCurrentTaskStatus {
|
|
|
116698
116748
|
Processing = "PROCESSING",
|
|
116699
116749
|
Success = "SUCCESS"
|
|
116700
116750
|
}
|
|
116751
|
+
export declare enum MarketplaceConsoleProductListingReleaseAppListingStatus {
|
|
116752
|
+
Private = "PRIVATE",
|
|
116753
|
+
Public = "PUBLIC",
|
|
116754
|
+
Rejected = "REJECTED",
|
|
116755
|
+
Submitted = "SUBMITTED"
|
|
116756
|
+
}
|
|
116757
|
+
export declare enum MarketplaceConsoleProductListingReleaseCurrentStatus {
|
|
116758
|
+
Approved = "APPROVED",
|
|
116759
|
+
Failed = "FAILED",
|
|
116760
|
+
Pending = "PENDING",
|
|
116761
|
+
Processing = "PROCESSING",
|
|
116762
|
+
Rejected = "REJECTED"
|
|
116763
|
+
}
|
|
116764
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusError = MarketplaceConsoleError & {
|
|
116765
|
+
__typename?: 'MarketplaceConsoleProductListingReleaseStatusError';
|
|
116766
|
+
code: Scalars['String']['output'];
|
|
116767
|
+
message: Scalars['String']['output'];
|
|
116768
|
+
statusCode: Scalars['Int']['output'];
|
|
116769
|
+
};
|
|
116770
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusResponse = MarketplaceConsoleProductListingReleaseStatusError | MarketplaceConsoleProductListingReleaseStatusSuccess;
|
|
116771
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusSuccess = {
|
|
116772
|
+
__typename?: 'MarketplaceConsoleProductListingReleaseStatusSuccess';
|
|
116773
|
+
appListingStatusInProcess?: Maybe<MarketplaceConsoleProductListingReleaseAppListingStatus>;
|
|
116774
|
+
currentAppListingStatus: MarketplaceConsoleProductListingReleaseAppListingStatus;
|
|
116775
|
+
currentStatus: MarketplaceConsoleProductListingReleaseCurrentStatus;
|
|
116776
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
116777
|
+
};
|
|
116701
116778
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
116702
116779
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
116703
116780
|
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
@@ -116785,6 +116862,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
116785
116862
|
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
116786
116863
|
productListingApprovalStatus: MarketplaceConsoleProductListingApprovalStatusResponse;
|
|
116787
116864
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
116865
|
+
productListingReleaseStatus: MarketplaceConsoleProductListingReleaseStatusResponse;
|
|
116788
116866
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
116789
116867
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
116790
116868
|
validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
|
|
@@ -116875,6 +116953,9 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
116875
116953
|
appId: Scalars['ID']['input'];
|
|
116876
116954
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
116877
116955
|
};
|
|
116956
|
+
export declare type MarketplaceConsoleQueryApiProductListingReleaseStatusArgs = {
|
|
116957
|
+
productId: Scalars['ID']['input'];
|
|
116958
|
+
};
|
|
116878
116959
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
116879
116960
|
appId: Scalars['ID']['input'];
|
|
116880
116961
|
};
|
|
@@ -117004,6 +117085,11 @@ export declare type MarketplaceConsoleUpdateProductListingApprovalStatusSuccess
|
|
|
117004
117085
|
__typename?: 'MarketplaceConsoleUpdateProductListingApprovalStatusSuccess';
|
|
117005
117086
|
success: Scalars['Boolean']['output'];
|
|
117006
117087
|
};
|
|
117088
|
+
export declare type MarketplaceConsoleUpdateProductListingReleaseStatusResponse = MarketplaceConsoleProductListingReleaseStatusError | MarketplaceConsoleUpdateProductListingReleaseStatusSuccess;
|
|
117089
|
+
export declare type MarketplaceConsoleUpdateProductListingReleaseStatusSuccess = {
|
|
117090
|
+
__typename?: 'MarketplaceConsoleUpdateProductListingReleaseStatusSuccess';
|
|
117091
|
+
success: Scalars['Boolean']['output'];
|
|
117092
|
+
};
|
|
117007
117093
|
export declare type MarketplaceConsoleUpdateVersionListingApprovalStatusInput = {
|
|
117008
117094
|
appSoftwareId: Scalars['ID']['input'];
|
|
117009
117095
|
buildNumber: Scalars['String']['input'];
|
|
@@ -123339,6 +123425,7 @@ export declare type Mutation = {
|
|
|
123339
123425
|
signInvocationTokenForUI?: Maybe<SignInvocationTokenForUiResponse>;
|
|
123340
123426
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
123341
123427
|
spf_acceptProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
123428
|
+
spf_addPlanApprover?: Maybe<SpfUpsertPlanApproverPayload>;
|
|
123342
123429
|
spf_addPlanOwner?: Maybe<SpfUpsertPlanOwnerPayload>;
|
|
123343
123430
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
123344
123431
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -123355,6 +123442,7 @@ export declare type Mutation = {
|
|
|
123355
123442
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
123356
123443
|
spf_deletePlanScenarioInvestment?: Maybe<SpfDeletePlanScenarioInvestmentPayload>;
|
|
123357
123444
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
123445
|
+
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
123358
123446
|
spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
|
|
123359
123447
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
123360
123448
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -126384,6 +126472,9 @@ export declare type MutationSoftDeleteSpaceArgs = {
|
|
|
126384
126472
|
export declare type MutationSpf_AcceptProposedDateArgs = {
|
|
126385
126473
|
input: SpfResolveProposedDateInput;
|
|
126386
126474
|
};
|
|
126475
|
+
export declare type MutationSpf_AddPlanApproverArgs = {
|
|
126476
|
+
input: SpfAddPlanApproverInput;
|
|
126477
|
+
};
|
|
126387
126478
|
export declare type MutationSpf_AddPlanOwnerArgs = {
|
|
126388
126479
|
input: SpfAddPlanOwnerInput;
|
|
126389
126480
|
};
|
|
@@ -126432,6 +126523,9 @@ export declare type MutationSpf_DeletePlanScenarioInvestmentArgs = {
|
|
|
126432
126523
|
export declare type MutationSpf_RejectProposedDateArgs = {
|
|
126433
126524
|
input: SpfResolveProposedDateInput;
|
|
126434
126525
|
};
|
|
126526
|
+
export declare type MutationSpf_RemovePlanApproverArgs = {
|
|
126527
|
+
input: SpfRemovePlanApproverInput;
|
|
126528
|
+
};
|
|
126435
126529
|
export declare type MutationSpf_RemovePlanOwnerArgs = {
|
|
126436
126530
|
input: SpfRemovePlanOwnerInput;
|
|
126437
126531
|
};
|
|
@@ -131766,6 +131860,7 @@ export declare type QueryBlockService_BatchRetrieveBlocksArgs = {
|
|
|
131766
131860
|
};
|
|
131767
131861
|
export declare type QueryBlockService_GetBlockArgs = {
|
|
131768
131862
|
blockAri: Scalars['String']['input'];
|
|
131863
|
+
blockInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
131769
131864
|
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
131770
131865
|
};
|
|
131771
131866
|
export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
|
|
@@ -135856,8 +135951,7 @@ export declare type RadarViewEdge = RadarEdge & {
|
|
|
135856
135951
|
node: RadarView;
|
|
135857
135952
|
};
|
|
135858
135953
|
export declare enum RadarViewPageName {
|
|
135859
|
-
TalentPositionsPage = "TALENT_POSITIONS_PAGE"
|
|
135860
|
-
TalentSubPositionsPage = "TALENT_SUB_POSITIONS_PAGE"
|
|
135954
|
+
TalentPositionsPage = "TALENT_POSITIONS_PAGE"
|
|
135861
135955
|
}
|
|
135862
135956
|
export declare type RadarViewPermissions = {
|
|
135863
135957
|
__typename?: 'RadarViewPermissions';
|
|
@@ -158908,6 +159002,10 @@ export declare type SpaceWithExemption = {
|
|
|
158908
159002
|
status?: Maybe<Scalars['String']['output']>;
|
|
158909
159003
|
type?: Maybe<Scalars['String']['output']>;
|
|
158910
159004
|
};
|
|
159005
|
+
export declare type SpfAddPlanApproverInput = {
|
|
159006
|
+
approverId: Scalars['String']['input'];
|
|
159007
|
+
planId: Scalars['ID']['input'];
|
|
159008
|
+
};
|
|
158911
159009
|
export declare type SpfAddPlanOwnerInput = {
|
|
158912
159010
|
ownerId: Scalars['String']['input'];
|
|
158913
159011
|
planId: Scalars['ID']['input'];
|
|
@@ -159362,6 +159460,7 @@ export declare enum SpfMediaTokenUsageType {
|
|
|
159362
159460
|
}
|
|
159363
159461
|
export declare type SpfPlan = Node & {
|
|
159364
159462
|
__typename?: 'SpfPlan';
|
|
159463
|
+
approvers?: Maybe<SpfPlanApproverConnection>;
|
|
159365
159464
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159366
159465
|
createdBy?: Maybe<User>;
|
|
159367
159466
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -159376,6 +159475,11 @@ export declare type SpfPlan = Node & {
|
|
|
159376
159475
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159377
159476
|
updatedBy?: Maybe<User>;
|
|
159378
159477
|
};
|
|
159478
|
+
export declare type SpfPlanApproversArgs = {
|
|
159479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159480
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159481
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
159482
|
+
};
|
|
159379
159483
|
export declare type SpfPlanOwnersArgs = {
|
|
159380
159484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159381
159485
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -159386,6 +159490,17 @@ export declare type SpfPlanScenariosArgs = {
|
|
|
159386
159490
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159387
159491
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
159388
159492
|
};
|
|
159493
|
+
export declare type SpfPlanApproverConnection = {
|
|
159494
|
+
__typename?: 'SpfPlanApproverConnection';
|
|
159495
|
+
edges?: Maybe<Array<Maybe<SpfPlanApproverEdge>>>;
|
|
159496
|
+
pageInfo: PageInfo;
|
|
159497
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159498
|
+
};
|
|
159499
|
+
export declare type SpfPlanApproverEdge = {
|
|
159500
|
+
__typename?: 'SpfPlanApproverEdge';
|
|
159501
|
+
cursor: Scalars['String']['output'];
|
|
159502
|
+
node?: Maybe<User>;
|
|
159503
|
+
};
|
|
159389
159504
|
export declare type SpfPlanConnection = {
|
|
159390
159505
|
__typename?: 'SpfPlanConnection';
|
|
159391
159506
|
edges?: Maybe<Array<Maybe<SpfPlanEdge>>>;
|
|
@@ -159492,6 +159607,17 @@ export declare type SpfPlanTransition = {
|
|
|
159492
159607
|
status?: Maybe<SpfPlanStatus>;
|
|
159493
159608
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159494
159609
|
};
|
|
159610
|
+
export declare type SpfRemovePlanApproverInput = {
|
|
159611
|
+
approverId: Scalars['String']['input'];
|
|
159612
|
+
planId: Scalars['ID']['input'];
|
|
159613
|
+
};
|
|
159614
|
+
export declare type SpfRemovePlanApproverPayload = Payload & {
|
|
159615
|
+
__typename?: 'SpfRemovePlanApproverPayload';
|
|
159616
|
+
approverId: Scalars['String']['output'];
|
|
159617
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159618
|
+
planId: Scalars['ID']['output'];
|
|
159619
|
+
success: Scalars['Boolean']['output'];
|
|
159620
|
+
};
|
|
159495
159621
|
export declare type SpfRemovePlanOwnerInput = {
|
|
159496
159622
|
ownerId: Scalars['String']['input'];
|
|
159497
159623
|
planId: Scalars['ID']['input'];
|
|
@@ -159609,6 +159735,14 @@ export declare type SpfUpsertAskUpdatePayload = Payload & {
|
|
|
159609
159735
|
errors?: Maybe<Array<MutationError>>;
|
|
159610
159736
|
success: Scalars['Boolean']['output'];
|
|
159611
159737
|
};
|
|
159738
|
+
export declare type SpfUpsertPlanApproverPayload = Payload & {
|
|
159739
|
+
__typename?: 'SpfUpsertPlanApproverPayload';
|
|
159740
|
+
approverId: Scalars['String']['output'];
|
|
159741
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159742
|
+
planApprover?: Maybe<User>;
|
|
159743
|
+
planId: Scalars['ID']['output'];
|
|
159744
|
+
success: Scalars['Boolean']['output'];
|
|
159745
|
+
};
|
|
159612
159746
|
export declare type SpfUpsertPlanOwnerPayload = Payload & {
|
|
159613
159747
|
__typename?: 'SpfUpsertPlanOwnerPayload';
|
|
159614
159748
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -162975,6 +163109,24 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
162975
163109
|
Create = "CREATE"
|
|
162976
163110
|
}
|
|
162977
163111
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
163112
|
+
export declare type TownsquareActivityChange = TownsquareGoalCreatedChange;
|
|
163113
|
+
export declare type TownsquareActivityItem = {
|
|
163114
|
+
__typename?: 'TownsquareActivityItem';
|
|
163115
|
+
actor?: Maybe<User>;
|
|
163116
|
+
change?: Maybe<TownsquareActivityChange>;
|
|
163117
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
163118
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
163119
|
+
};
|
|
163120
|
+
export declare type TownsquareActivityItemConnection = {
|
|
163121
|
+
__typename?: 'TownsquareActivityItemConnection';
|
|
163122
|
+
edges?: Maybe<Array<Maybe<TownsquareActivityItemEdge>>>;
|
|
163123
|
+
pageInfo: PageInfo;
|
|
163124
|
+
};
|
|
163125
|
+
export declare type TownsquareActivityItemEdge = {
|
|
163126
|
+
__typename?: 'TownsquareActivityItemEdge';
|
|
163127
|
+
cursor: Scalars['String']['output'];
|
|
163128
|
+
node?: Maybe<TownsquareActivityItem>;
|
|
163129
|
+
};
|
|
162978
163130
|
export declare type TownsquareAddProjectLinkInput = {
|
|
162979
163131
|
goalId: Scalars['ID']['input'];
|
|
162980
163132
|
projectId: Scalars['ID']['input'];
|
|
@@ -163352,6 +163504,7 @@ export declare type TownsquareFusionDetails = {
|
|
|
163352
163504
|
export declare type TownsquareGoal = Node & {
|
|
163353
163505
|
__typename?: 'TownsquareGoal';
|
|
163354
163506
|
access?: Maybe<TownsquareGoalAccessConnection>;
|
|
163507
|
+
activityItems?: Maybe<TownsquareActivityItemConnection>;
|
|
163355
163508
|
archived: Scalars['Boolean']['output'];
|
|
163356
163509
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
163357
163510
|
canEditUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -163403,6 +163556,10 @@ export declare type TownsquareGoalAccessArgs = {
|
|
|
163403
163556
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163404
163557
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163405
163558
|
};
|
|
163559
|
+
export declare type TownsquareGoalActivityItemsArgs = {
|
|
163560
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163561
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163562
|
+
};
|
|
163406
163563
|
export declare type TownsquareGoalCommentsArgs = {
|
|
163407
163564
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163408
163565
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -163568,6 +163725,10 @@ export declare type TownsquareGoalCreateMetricInput = {
|
|
|
163568
163725
|
type: TownsquareMetricType;
|
|
163569
163726
|
value: Scalars['Float']['input'];
|
|
163570
163727
|
};
|
|
163728
|
+
export declare type TownsquareGoalCreatedChange = {
|
|
163729
|
+
__typename?: 'TownsquareGoalCreatedChange';
|
|
163730
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
163731
|
+
};
|
|
163571
163732
|
export declare type TownsquareGoalEdge = {
|
|
163572
163733
|
__typename?: 'TownsquareGoalEdge';
|
|
163573
163734
|
cursor: Scalars['String']['output'];
|
|
@@ -169218,6 +169379,11 @@ export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount
|
|
|
169218
169379
|
export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
|
|
169219
169380
|
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
169220
169381
|
};
|
|
169382
|
+
export declare type TrelloPlannerCalendarStatus = {
|
|
169383
|
+
__typename?: 'TrelloPlannerCalendarStatus';
|
|
169384
|
+
failed: Array<Scalars['ID']['output']>;
|
|
169385
|
+
succeeded: Array<Scalars['ID']['output']>;
|
|
169386
|
+
};
|
|
169221
169387
|
export declare type TrelloPlannerCalendarUpdated = {
|
|
169222
169388
|
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
169223
169389
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -169256,6 +169422,7 @@ export declare type TrelloPlannerCardUpdated = {
|
|
|
169256
169422
|
};
|
|
169257
169423
|
export declare type TrelloPlannerEventCardConnection = {
|
|
169258
169424
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
169425
|
+
calendarStatus: TrelloPlannerCalendarStatus;
|
|
169259
169426
|
edges: Array<TrelloPlannerEventCardEdge>;
|
|
169260
169427
|
pageInfo: PageInfo;
|
|
169261
169428
|
};
|
|
@@ -169271,6 +169438,7 @@ export declare type TrelloPlannerEventCardEdge = {
|
|
|
169271
169438
|
};
|
|
169272
169439
|
export declare type TrelloPlannerEventConnection = {
|
|
169273
169440
|
__typename?: 'TrelloPlannerEventConnection';
|
|
169441
|
+
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
169274
169442
|
edges: Array<TrelloPlannerEventEdge>;
|
|
169275
169443
|
pageInfo: PageInfo;
|
|
169276
169444
|
};
|
|
@@ -170421,6 +170589,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
170421
170589
|
name?: Maybe<Scalars['String']['output']>;
|
|
170422
170590
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
170423
170591
|
offering?: Maybe<Scalars['String']['output']>;
|
|
170592
|
+
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
170424
170593
|
prefs?: Maybe<TrelloWorkspacePrefs>;
|
|
170425
170594
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
170426
170595
|
products?: Maybe<Array<Scalars['Float']['output']>>;
|
|
@@ -170432,6 +170601,11 @@ export declare type TrelloWorkspaceMembersArgs = {
|
|
|
170432
170601
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170433
170602
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170434
170603
|
};
|
|
170604
|
+
export declare type TrelloWorkspacePowerUpDataArgs = {
|
|
170605
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170606
|
+
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
170607
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170608
|
+
};
|
|
170435
170609
|
export declare type TrelloWorkspaceTagsArgs = {
|
|
170436
170610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170437
170611
|
first?: InputMaybe<Scalars['Int']['input']>;
|