@forge/cli-shared 8.9.0-next.14 → 8.9.0-next.15
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
|
@@ -727,6 +727,42 @@ export declare type AvpMoveDashboardRowPayload = Payload & {
|
|
|
727
727
|
errors?: Maybe<Array<MutationError>>;
|
|
728
728
|
success: Scalars['Boolean']['output'];
|
|
729
729
|
};
|
|
730
|
+
export declare type AvpPermissionsDashboardUserAccess = {
|
|
731
|
+
accessLevel: AvpPermissionsDashboardUserAccessLevel;
|
|
732
|
+
accountId: Scalars['String']['input'];
|
|
733
|
+
};
|
|
734
|
+
export declare enum AvpPermissionsDashboardUserAccessLevel {
|
|
735
|
+
Manage = "MANAGE",
|
|
736
|
+
Read = "READ"
|
|
737
|
+
}
|
|
738
|
+
export declare type AvpPermissionsDashboardUserAccessResult = {
|
|
739
|
+
__typename?: 'AVPPermissionsDashboardUserAccessResult';
|
|
740
|
+
accessLevel: AvpPermissionsDashboardUserAccessLevel;
|
|
741
|
+
accountId: Scalars['String']['output'];
|
|
742
|
+
};
|
|
743
|
+
export declare type AvpPermissionsFailedDashboardUserAccess = {
|
|
744
|
+
__typename?: 'AVPPermissionsFailedDashboardUserAccess';
|
|
745
|
+
errorMessage: Scalars['String']['output'];
|
|
746
|
+
user: AvpPermissionsDashboardUserAccessResult;
|
|
747
|
+
};
|
|
748
|
+
export declare type AvpPermissionsHelloResponse = {
|
|
749
|
+
__typename?: 'AVPPermissionsHelloResponse';
|
|
750
|
+
hello?: Maybe<Scalars['String']['output']>;
|
|
751
|
+
};
|
|
752
|
+
export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
|
|
753
|
+
cloudId: Scalars['ID']['input'];
|
|
754
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
755
|
+
dashboardId: Scalars['ID']['input'];
|
|
756
|
+
users: Array<AvpPermissionsDashboardUserAccess>;
|
|
757
|
+
workspaceId: Scalars['ID']['input'];
|
|
758
|
+
};
|
|
759
|
+
export declare type AvpPermissionsUpdateDashboardUserAccessPayload = {
|
|
760
|
+
__typename?: 'AVPPermissionsUpdateDashboardUserAccessPayload';
|
|
761
|
+
errors?: Maybe<Array<MutationError>>;
|
|
762
|
+
failedUsers?: Maybe<Array<AvpPermissionsFailedDashboardUserAccess>>;
|
|
763
|
+
success: Scalars['Boolean']['output'];
|
|
764
|
+
updatedUsers?: Maybe<Array<AvpPermissionsDashboardUserAccessResult>>;
|
|
765
|
+
};
|
|
730
766
|
export declare type AvpProductWorkspaceMapEntry = {
|
|
731
767
|
product: Scalars['String']['input'];
|
|
732
768
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -1835,6 +1871,11 @@ export declare type AdminIcon = {
|
|
|
1835
1871
|
name: Scalars['String']['output'];
|
|
1836
1872
|
value: Scalars['String']['output'];
|
|
1837
1873
|
};
|
|
1874
|
+
export declare enum AdminIdentityProviderPublicCertificateExpiryStatus {
|
|
1875
|
+
Expired = "EXPIRED",
|
|
1876
|
+
ExpiringSoon = "EXPIRING_SOON",
|
|
1877
|
+
Valid = "VALID"
|
|
1878
|
+
}
|
|
1838
1879
|
export declare type AdminImpersonateUserInput = {
|
|
1839
1880
|
accountId: Scalars['String']['input'];
|
|
1840
1881
|
directoryId: Scalars['String']['input'];
|
|
@@ -2119,6 +2160,23 @@ export declare type AdminRoleIdCounts = {
|
|
|
2119
2160
|
count: Scalars['Int']['output'];
|
|
2120
2161
|
roleId: Scalars['String']['output'];
|
|
2121
2162
|
};
|
|
2163
|
+
export declare type AdminSamlConfiguration = {
|
|
2164
|
+
__typename?: 'AdminSamlConfiguration';
|
|
2165
|
+
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
2166
|
+
samlConfiguration: AdminSamlConfigurationDetails;
|
|
2167
|
+
samlConfigurationId: Scalars['ID']['output'];
|
|
2168
|
+
};
|
|
2169
|
+
export declare type AdminSamlConfigurationDetails = {
|
|
2170
|
+
__typename?: 'AdminSamlConfigurationDetails';
|
|
2171
|
+
assertionConsumerServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
2172
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
2173
|
+
identityProviderPublicCertificate: Scalars['String']['output'];
|
|
2174
|
+
identityProviderPublicCertificateExpirationTimestamp?: Maybe<Scalars['String']['output']>;
|
|
2175
|
+
identityProviderPublicCertificateExpiryStatus?: Maybe<AdminIdentityProviderPublicCertificateExpiryStatus>;
|
|
2176
|
+
issuer: Scalars['String']['output'];
|
|
2177
|
+
serviceProviderSingleLogoutConfiguration?: Maybe<AdminServiceProviderSingleLogoutConfiguration>;
|
|
2178
|
+
singleSignOnUrl: Scalars['String']['output'];
|
|
2179
|
+
};
|
|
2122
2180
|
export declare type AdminSandbox = {
|
|
2123
2181
|
__typename?: 'AdminSandbox';
|
|
2124
2182
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2166,6 +2224,15 @@ export declare type AdminSeats = {
|
|
|
2166
2224
|
__typename?: 'AdminSeats';
|
|
2167
2225
|
usageInfo?: Maybe<AdminUsageInfo>;
|
|
2168
2226
|
};
|
|
2227
|
+
export declare type AdminServiceProviderSingleLogoutConfiguration = {
|
|
2228
|
+
__typename?: 'AdminServiceProviderSingleLogoutConfiguration';
|
|
2229
|
+
identityProviderUrl: Scalars['String']['output'];
|
|
2230
|
+
serviceProviderPublicCertificate?: Maybe<Scalars['String']['output']>;
|
|
2231
|
+
serviceProviderPublicCertificateExpiry?: Maybe<Scalars['String']['output']>;
|
|
2232
|
+
serviceProviderPublicCertificateId?: Maybe<Scalars['String']['output']>;
|
|
2233
|
+
serviceProviderUrl: Scalars['String']['output'];
|
|
2234
|
+
singleLogoutEnabled: Scalars['Boolean']['output'];
|
|
2235
|
+
};
|
|
2169
2236
|
export declare type AdminSingle = {
|
|
2170
2237
|
primitive?: InputMaybe<AdminPrimitive>;
|
|
2171
2238
|
};
|
|
@@ -5418,6 +5485,10 @@ export declare type AssetsDmDataSourceMergeGetByObjectIdResponse = {
|
|
|
5418
5485
|
step: Scalars['Int']['output'];
|
|
5419
5486
|
tenantId: Scalars['String']['output'];
|
|
5420
5487
|
};
|
|
5488
|
+
export declare type AssetsDmDataSourceMergeIsImportProgressingResponse = {
|
|
5489
|
+
__typename?: 'AssetsDMDataSourceMergeIsImportProgressingResponse';
|
|
5490
|
+
inProgress: Scalars['Boolean']['output'];
|
|
5491
|
+
};
|
|
5421
5492
|
export declare type AssetsDmDataSourceMergeObjectAttribute = {
|
|
5422
5493
|
__typename?: 'AssetsDMDataSourceMergeObjectAttribute';
|
|
5423
5494
|
dataType: Scalars['Int']['output'];
|
|
@@ -15103,6 +15174,7 @@ export declare type ConfluenceAddTrackPayload = {
|
|
|
15103
15174
|
__typename?: 'ConfluenceAddTrackPayload';
|
|
15104
15175
|
errors?: Maybe<Array<ConfluenceAddTrackPayloadError>>;
|
|
15105
15176
|
success: Scalars['Boolean']['output'];
|
|
15177
|
+
track?: Maybe<ConfluenceTrack>;
|
|
15106
15178
|
};
|
|
15107
15179
|
export declare type ConfluenceAddTrackPayloadError = {
|
|
15108
15180
|
__typename?: 'ConfluenceAddTrackPayloadError';
|
|
@@ -68648,6 +68720,7 @@ export declare type JiraFieldAssociationWithIssueTypesConnection = {
|
|
|
68648
68720
|
__typename?: 'JiraFieldAssociationWithIssueTypesConnection';
|
|
68649
68721
|
edges?: Maybe<Array<Maybe<JiraFieldAssociationWithIssueTypesEdge>>>;
|
|
68650
68722
|
pageInfo: PageInfo;
|
|
68723
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
68651
68724
|
};
|
|
68652
68725
|
export declare type JiraFieldAssociationWithIssueTypesEdge = {
|
|
68653
68726
|
__typename?: 'JiraFieldAssociationWithIssueTypesEdge';
|
|
@@ -71949,6 +72022,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
71949
72022
|
};
|
|
71950
72023
|
export declare type JiraIssueSearchCustomInput = {
|
|
71951
72024
|
jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
|
|
72025
|
+
jiraTimelineInput?: InputMaybe<JiraTimelineIssueSearchCustomInput>;
|
|
71952
72026
|
};
|
|
71953
72027
|
export declare type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
71954
72028
|
export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
@@ -82803,6 +82877,12 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
|
82803
82877
|
outwardItem?: Maybe<JiraIssue>;
|
|
82804
82878
|
success: Scalars['Boolean']['output'];
|
|
82805
82879
|
};
|
|
82880
|
+
export declare type JiraTimelineIssueSearchCustomInput = {
|
|
82881
|
+
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
82882
|
+
boardId: Scalars['ID']['input'];
|
|
82883
|
+
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82884
|
+
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82885
|
+
};
|
|
82806
82886
|
export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
82807
82887
|
__typename?: 'JiraTimelineView';
|
|
82808
82888
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -88371,6 +88451,18 @@ export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
|
|
|
88371
88451
|
Private = "PRIVATE",
|
|
88372
88452
|
Public = "PUBLIC"
|
|
88373
88453
|
}
|
|
88454
|
+
export declare type MarketplaceConsoleAppInput = {
|
|
88455
|
+
appKey: Scalars['ID']['input'];
|
|
88456
|
+
appName: Scalars['String']['input'];
|
|
88457
|
+
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
88458
|
+
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
88459
|
+
onDemandPaymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
88460
|
+
parentProductKey?: InputMaybe<Scalars['ID']['input']>;
|
|
88461
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
88462
|
+
vendorId: Scalars['Int']['input'];
|
|
88463
|
+
vendorLinks?: InputMaybe<MarketplaceConsoleAppVendorLinksInput>;
|
|
88464
|
+
version: MarketplaceConsoleAppSoftwareVersionInput;
|
|
88465
|
+
};
|
|
88374
88466
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
88375
88467
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
88376
88468
|
appKey: Scalars['ID']['output'];
|
|
@@ -88540,6 +88632,13 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
88540
88632
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
88541
88633
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
88542
88634
|
};
|
|
88635
|
+
export declare type MarketplaceConsoleAppVendorLinksInput = {
|
|
88636
|
+
appStatusPage?: InputMaybe<Scalars['String']['input']>;
|
|
88637
|
+
forums?: InputMaybe<Scalars['String']['input']>;
|
|
88638
|
+
issueTracker?: InputMaybe<Scalars['String']['input']>;
|
|
88639
|
+
privacy?: InputMaybe<Scalars['String']['input']>;
|
|
88640
|
+
supportTicketSystem?: InputMaybe<Scalars['String']['input']>;
|
|
88641
|
+
};
|
|
88543
88642
|
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
88544
88643
|
assets?: InputMaybe<MarketplaceConsoleCreateVersionAssetsInput>;
|
|
88545
88644
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -88617,6 +88716,11 @@ export declare type MarketplaceConsoleCreateAppSoftwareVersionMutationResponse =
|
|
|
88617
88716
|
success: Scalars['Boolean']['output'];
|
|
88618
88717
|
versionType: MarketplaceConsoleVersionType;
|
|
88619
88718
|
};
|
|
88719
|
+
export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = MarketplaceConsoleCreatePrivateAppMutationResponse | MarketplaceConsoleDomainErrorResponse;
|
|
88720
|
+
export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
|
|
88721
|
+
__typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
|
|
88722
|
+
success: Scalars['Boolean']['output'];
|
|
88723
|
+
};
|
|
88620
88724
|
export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
|
|
88621
88725
|
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionError';
|
|
88622
88726
|
id: Scalars['ID']['output'];
|
|
@@ -88728,6 +88832,18 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
88728
88832
|
Platinum = "PLATINUM",
|
|
88729
88833
|
Silver = "SILVER"
|
|
88730
88834
|
}
|
|
88835
|
+
export declare type MarketplaceConsoleDomainError = {
|
|
88836
|
+
__typename?: 'MarketplaceConsoleDomainError';
|
|
88837
|
+
code: Scalars['String']['output'];
|
|
88838
|
+
detail: Scalars['String']['output'];
|
|
88839
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
88840
|
+
status: Scalars['String']['output'];
|
|
88841
|
+
title: Scalars['String']['output'];
|
|
88842
|
+
};
|
|
88843
|
+
export declare type MarketplaceConsoleDomainErrorResponse = {
|
|
88844
|
+
__typename?: 'MarketplaceConsoleDomainErrorResponse';
|
|
88845
|
+
errors?: Maybe<Array<Maybe<MarketplaceConsoleDomainError>>>;
|
|
88846
|
+
};
|
|
88731
88847
|
export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
88732
88848
|
appKey: Scalars['ID']['input'];
|
|
88733
88849
|
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89130,6 +89246,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
89130
89246
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
89131
89247
|
createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
89132
89248
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
89249
|
+
createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
|
|
89133
89250
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
89134
89251
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
89135
89252
|
deleteMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
@@ -89164,6 +89281,9 @@ export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersion
|
|
|
89164
89281
|
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
89165
89282
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
89166
89283
|
};
|
|
89284
|
+
export declare type MarketplaceConsoleMutationApiCreatePrivateAppWithVersionArgs = {
|
|
89285
|
+
app: MarketplaceConsoleAppInput;
|
|
89286
|
+
};
|
|
89167
89287
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
89168
89288
|
appSoftwareId: Scalars['String']['input'];
|
|
89169
89289
|
token: Scalars['String']['input'];
|
|
@@ -94531,6 +94651,7 @@ export declare type Mutation = {
|
|
|
94531
94651
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
94532
94652
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
94533
94653
|
attachDanglingComment?: Maybe<Comment>;
|
|
94654
|
+
avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
|
|
94534
94655
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
94535
94656
|
avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
|
|
94536
94657
|
avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
|
|
@@ -95569,6 +95690,9 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
95569
95690
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
95570
95691
|
input: ReattachInlineCommentInput;
|
|
95571
95692
|
};
|
|
95693
|
+
export declare type MutationAvpPermissions_UpdateDashboardUserAccessArgs = {
|
|
95694
|
+
input: AvpPermissionsUpdateDashboardUserAccessInput;
|
|
95695
|
+
};
|
|
95572
95696
|
export declare type MutationAvp_AddDashboardElementArgs = {
|
|
95573
95697
|
input: AvpAddDashboardElementInput;
|
|
95574
95698
|
};
|
|
@@ -100815,6 +100939,7 @@ export declare type Query = {
|
|
|
100815
100939
|
admin_eventLocations?: Maybe<AdminEventLocationConnection>;
|
|
100816
100940
|
admin_group?: Maybe<AdminGroup>;
|
|
100817
100941
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
100942
|
+
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
100818
100943
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
100819
100944
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
100820
100945
|
admin_org?: Maybe<AdminOrganization>;
|
|
@@ -100903,6 +101028,7 @@ export declare type Query = {
|
|
|
100903
101028
|
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
100904
101029
|
assetsDM_dataSourceMergeGetByObjectId?: Maybe<AssetsDmDataSourceMergeGetByObjectIdResponse>;
|
|
100905
101030
|
assetsDM_dataSourceMergeGetObjectsForImport?: Maybe<Array<AssetsDmDataSourceMergeObjectForImportInfo>>;
|
|
101031
|
+
assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
|
|
100906
101032
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
100907
101033
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
100908
101034
|
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
@@ -100928,6 +101054,7 @@ export declare type Query = {
|
|
|
100928
101054
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
100929
101055
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
100930
101056
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
101057
|
+
avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
|
|
100931
101058
|
avp_getChart?: Maybe<AvpChart>;
|
|
100932
101059
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
100933
101060
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
@@ -101750,6 +101877,10 @@ export declare type QueryAdmin_GroupsArgs = {
|
|
|
101750
101877
|
input?: InputMaybe<AdminSearchGroupInput>;
|
|
101751
101878
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
101752
101879
|
};
|
|
101880
|
+
export declare type QueryAdmin_IdentityProviderDirectorySamlConfigurationArgs = {
|
|
101881
|
+
identityProviderDirectoryId: Scalars['ID']['input'];
|
|
101882
|
+
orgId: Scalars['ID']['input'];
|
|
101883
|
+
};
|
|
101753
101884
|
export declare type QueryAdmin_InvitePoliciesArgs = {
|
|
101754
101885
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101755
101886
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101943,6 +102074,7 @@ export declare type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
|
|
|
101943
102074
|
};
|
|
101944
102075
|
export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
|
|
101945
102076
|
cloudId: Scalars['String']['input'];
|
|
102077
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
101946
102078
|
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
101947
102079
|
};
|
|
101948
102080
|
export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
|
|
@@ -102203,6 +102335,10 @@ export declare type QueryAssetsDm_DataSourceMergeGetObjectsForImportArgs = {
|
|
|
102203
102335
|
dataSourceId: Scalars['ID']['input'];
|
|
102204
102336
|
workspaceId: Scalars['ID']['input'];
|
|
102205
102337
|
};
|
|
102338
|
+
export declare type QueryAssetsDm_DataSourceMergeIsImportProgressingArgs = {
|
|
102339
|
+
cloudId: Scalars['ID']['input'];
|
|
102340
|
+
workspaceId: Scalars['ID']['input'];
|
|
102341
|
+
};
|
|
102206
102342
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
102207
102343
|
cloudID: Scalars['ID']['input'];
|
|
102208
102344
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -102329,6 +102465,10 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
|
102329
102465
|
export declare type QueryAvailableContentStatesArgs = {
|
|
102330
102466
|
contentId: Scalars['ID']['input'];
|
|
102331
102467
|
};
|
|
102468
|
+
export declare type QueryAvpPermissions_HelloArgs = {
|
|
102469
|
+
cloudId: Scalars['ID']['input'];
|
|
102470
|
+
integrationId: Scalars['String']['input'];
|
|
102471
|
+
};
|
|
102332
102472
|
export declare type QueryAvp_GetChartArgs = {
|
|
102333
102473
|
chartAri: Scalars['ID']['input'];
|
|
102334
102474
|
};
|
|
@@ -135308,10 +135448,22 @@ export declare enum TrelloCardCoverColor {
|
|
|
135308
135448
|
Sky = "SKY",
|
|
135309
135449
|
Yellow = "YELLOW"
|
|
135310
135450
|
}
|
|
135451
|
+
export declare type TrelloCardCoverInput = {
|
|
135452
|
+
brightness?: InputMaybe<Scalars['String']['input']>;
|
|
135453
|
+
size?: InputMaybe<Scalars['String']['input']>;
|
|
135454
|
+
type: TrelloCardCoverTypeInput;
|
|
135455
|
+
yPosition?: InputMaybe<Scalars['Float']['input']>;
|
|
135456
|
+
};
|
|
135311
135457
|
export declare enum TrelloCardCoverSize {
|
|
135312
135458
|
Full = "FULL",
|
|
135313
135459
|
Normal = "NORMAL"
|
|
135314
135460
|
}
|
|
135461
|
+
export declare type TrelloCardCoverTypeInput = {
|
|
135462
|
+
attachmentId?: InputMaybe<Scalars['String']['input']>;
|
|
135463
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
135464
|
+
uploadedBackgroundId?: InputMaybe<Scalars['String']['input']>;
|
|
135465
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
135466
|
+
};
|
|
135315
135467
|
export declare type TrelloCardCoverUpdated = {
|
|
135316
135468
|
__typename?: 'TrelloCardCoverUpdated';
|
|
135317
135469
|
attachment?: Maybe<TrelloAttachmentUpdated>;
|
|
@@ -136308,6 +136460,15 @@ export declare type TrelloListViewer = {
|
|
|
136308
136460
|
__typename?: 'TrelloListViewer';
|
|
136309
136461
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
136310
136462
|
};
|
|
136463
|
+
export declare type TrelloMarkCardCompleteInput = {
|
|
136464
|
+
cardId: Scalars['ID']['input'];
|
|
136465
|
+
};
|
|
136466
|
+
export declare type TrelloMarkCardCompletePayload = Payload & {
|
|
136467
|
+
__typename?: 'TrelloMarkCardCompletePayload';
|
|
136468
|
+
card?: Maybe<TrelloCard>;
|
|
136469
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136470
|
+
success: Scalars['Boolean']['output'];
|
|
136471
|
+
};
|
|
136311
136472
|
export declare type TrelloMarkInboxNotificationsReadInput = {
|
|
136312
136473
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
136313
136474
|
read?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -136577,6 +136738,7 @@ export declare type TrelloMutationApi = {
|
|
|
136577
136738
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
136578
136739
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
136579
136740
|
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
136741
|
+
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
136580
136742
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
136581
136743
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
136582
136744
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
@@ -136606,6 +136768,7 @@ export declare type TrelloMutationApi = {
|
|
|
136606
136768
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
136607
136769
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
136608
136770
|
updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
|
|
136771
|
+
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
136609
136772
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
136610
136773
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
136611
136774
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
@@ -136666,6 +136829,9 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
136666
136829
|
export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
|
|
136667
136830
|
input: TrelloGenerateChecklistsForCardInput;
|
|
136668
136831
|
};
|
|
136832
|
+
export declare type TrelloMutationApiMarkCardCompleteArgs = {
|
|
136833
|
+
input: TrelloMarkCardCompleteInput;
|
|
136834
|
+
};
|
|
136669
136835
|
export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
136670
136836
|
input?: InputMaybe<TrelloMarkInboxNotificationsReadInput>;
|
|
136671
136837
|
};
|
|
@@ -136753,6 +136919,9 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
|
136753
136919
|
export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
|
|
136754
136920
|
input: TrelloUpdateBoardVisibilityInput;
|
|
136755
136921
|
};
|
|
136922
|
+
export declare type TrelloMutationApiUpdateCardCoverArgs = {
|
|
136923
|
+
input: TrelloUpdateCardCoverInput;
|
|
136924
|
+
};
|
|
136756
136925
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
136757
136926
|
input: TrelloUpdateCardNameInput;
|
|
136758
136927
|
};
|
|
@@ -137903,6 +138072,16 @@ export declare type TrelloUpdateCardCompleteActionDisplayEntities = {
|
|
|
137903
138072
|
card?: Maybe<TrelloActionCardEntity>;
|
|
137904
138073
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
137905
138074
|
};
|
|
138075
|
+
export declare type TrelloUpdateCardCoverInput = {
|
|
138076
|
+
cardId: Scalars['ID']['input'];
|
|
138077
|
+
cover: TrelloCardCoverInput;
|
|
138078
|
+
};
|
|
138079
|
+
export declare type TrelloUpdateCardCoverPayload = Payload & {
|
|
138080
|
+
__typename?: 'TrelloUpdateCardCoverPayload';
|
|
138081
|
+
cardId?: Maybe<Scalars['ID']['output']>;
|
|
138082
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138083
|
+
success: Scalars['Boolean']['output'];
|
|
138084
|
+
};
|
|
137906
138085
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
137907
138086
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
137908
138087
|
appCreator?: Maybe<TrelloAppCreator>;
|