@forge/cli-shared 8.9.1-next.7 → 8.9.1-next.9
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 +13 -0
- package/out/graphql/graphql-types.d.ts +1277 -13
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +95 -31
- package/out/ui/text.js +5 -5
- package/package.json +2 -2
|
@@ -595,6 +595,7 @@ export declare type AvpDeleteVariablePayload = Payload & {
|
|
|
595
595
|
};
|
|
596
596
|
export declare type AvpEnvVar = {
|
|
597
597
|
__typename?: 'AVPEnvVar';
|
|
598
|
+
applyToAll?: Maybe<Scalars['Boolean']['output']>;
|
|
598
599
|
chartId?: Maybe<Scalars['ID']['output']>;
|
|
599
600
|
dataType?: Maybe<AvpEnvVarDataType>;
|
|
600
601
|
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -615,6 +616,7 @@ export declare enum AvpEnvVarDataType {
|
|
|
615
616
|
}
|
|
616
617
|
export declare type AvpEnvVarWithChart = {
|
|
617
618
|
__typename?: 'AVPEnvVarWithChart';
|
|
619
|
+
applyToAll?: Maybe<Scalars['Boolean']['output']>;
|
|
618
620
|
chart?: Maybe<AvpChart>;
|
|
619
621
|
chartType?: Maybe<Scalars['String']['output']>;
|
|
620
622
|
dataType?: Maybe<AvpEnvVarDataType>;
|
|
@@ -897,6 +899,7 @@ export declare type AvpVariableInput = {
|
|
|
897
899
|
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
898
900
|
dataType?: InputMaybe<AvpEnvVarDataType>;
|
|
899
901
|
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
902
|
+
hotTierFilterConfig?: InputMaybe<AvpHotTierFilterConfigInput>;
|
|
900
903
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
901
904
|
name: Scalars['String']['input'];
|
|
902
905
|
};
|
|
@@ -1635,6 +1638,54 @@ export declare type AdminAssignRoleResponsePayload = Payload & {
|
|
|
1635
1638
|
errors?: Maybe<Array<MutationError>>;
|
|
1636
1639
|
success: Scalars['Boolean']['output'];
|
|
1637
1640
|
};
|
|
1641
|
+
export declare type AdminAuditLogEvent = {
|
|
1642
|
+
__typename?: 'AdminAuditLogEvent';
|
|
1643
|
+
action: Scalars['String']['output'];
|
|
1644
|
+
containers?: Maybe<Array<Maybe<AdminAuditLogEventContainer>>>;
|
|
1645
|
+
context?: Maybe<Array<Maybe<AdminAuditLogEventContext>>>;
|
|
1646
|
+
correlationId?: Maybe<Scalars['String']['output']>;
|
|
1647
|
+
location?: Maybe<AdminAuditLogEventLocation>;
|
|
1648
|
+
message?: Maybe<AdminAuditLogEventMessage>;
|
|
1649
|
+
time: Scalars['String']['output'];
|
|
1650
|
+
};
|
|
1651
|
+
export declare type AdminAuditLogEventConnection = {
|
|
1652
|
+
__typename?: 'AdminAuditLogEventConnection';
|
|
1653
|
+
edges?: Maybe<Array<AdminAuditLogEventEdge>>;
|
|
1654
|
+
pageInfo: PageInfo;
|
|
1655
|
+
};
|
|
1656
|
+
export declare type AdminAuditLogEventContainer = {
|
|
1657
|
+
__typename?: 'AdminAuditLogEventContainer';
|
|
1658
|
+
attributes: Array<Maybe<AdminStringKeyValuePair>>;
|
|
1659
|
+
id: Scalars['ID']['output'];
|
|
1660
|
+
type: Scalars['String']['output'];
|
|
1661
|
+
};
|
|
1662
|
+
export declare type AdminAuditLogEventContext = {
|
|
1663
|
+
__typename?: 'AdminAuditLogEventContext';
|
|
1664
|
+
attributes: Array<Maybe<AdminStringKeyValuePair>>;
|
|
1665
|
+
id: Scalars['ID']['output'];
|
|
1666
|
+
type: Scalars['String']['output'];
|
|
1667
|
+
};
|
|
1668
|
+
export declare type AdminAuditLogEventEdge = {
|
|
1669
|
+
__typename?: 'AdminAuditLogEventEdge';
|
|
1670
|
+
cursor: Scalars['String']['output'];
|
|
1671
|
+
node: AdminAuditLogEvent;
|
|
1672
|
+
};
|
|
1673
|
+
export declare type AdminAuditLogEventLocation = {
|
|
1674
|
+
__typename?: 'AdminAuditLogEventLocation';
|
|
1675
|
+
cityName?: Maybe<Scalars['String']['output']>;
|
|
1676
|
+
countryName?: Maybe<Scalars['String']['output']>;
|
|
1677
|
+
ip: Scalars['String']['output'];
|
|
1678
|
+
regionName?: Maybe<Scalars['String']['output']>;
|
|
1679
|
+
};
|
|
1680
|
+
export declare type AdminAuditLogEventMessage = {
|
|
1681
|
+
__typename?: 'AdminAuditLogEventMessage';
|
|
1682
|
+
content: Scalars['String']['output'];
|
|
1683
|
+
format: AdminAuditLogEventMessageFormat;
|
|
1684
|
+
};
|
|
1685
|
+
export declare enum AdminAuditLogEventMessageFormat {
|
|
1686
|
+
Adf = "ADF",
|
|
1687
|
+
Simple = "SIMPLE"
|
|
1688
|
+
}
|
|
1638
1689
|
export declare type AdminAuditLogFeature = {
|
|
1639
1690
|
__typename?: 'AdminAuditLogFeature';
|
|
1640
1691
|
allInclusive?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1786,6 +1837,19 @@ export declare type AdminExternalCollaboratorFeature = {
|
|
|
1786
1837
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1787
1838
|
};
|
|
1788
1839
|
export declare type AdminFeature = AdminAiFeature | AdminAuditLogFeature | AdminCustomDomains | AdminDataResidencyFeature | AdminExternalCollaboratorFeature | AdminFreezeWindowsFeature | AdminInsightsFeature | AdminIpAllowlistingFeature | AdminReleaseTrackFeature | AdminSandboxFeature | AdminStorageFeature | AdminUserManagement;
|
|
1840
|
+
export declare type AdminFetchAdminAuditLogEventsInput = {
|
|
1841
|
+
action?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1842
|
+
actor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1843
|
+
appType?: InputMaybe<Scalars['String']['input']>;
|
|
1844
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
1845
|
+
format?: InputMaybe<AdminAuditLogEventMessageFormat>;
|
|
1846
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
1847
|
+
ip?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1848
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
1849
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
1850
|
+
sortOrder?: InputMaybe<SortDirection>;
|
|
1851
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
1852
|
+
};
|
|
1789
1853
|
export declare type AdminFetchGroupInput = {
|
|
1790
1854
|
directoryId?: InputMaybe<Scalars['String']['input']>;
|
|
1791
1855
|
groupId: Scalars['String']['input'];
|
|
@@ -2261,6 +2325,11 @@ export declare type AdminStorageFeature = {
|
|
|
2261
2325
|
__typename?: 'AdminStorageFeature';
|
|
2262
2326
|
name?: Maybe<Scalars['String']['output']>;
|
|
2263
2327
|
};
|
|
2328
|
+
export declare type AdminStringKeyValuePair = {
|
|
2329
|
+
__typename?: 'AdminStringKeyValuePair';
|
|
2330
|
+
key: Scalars['String']['output'];
|
|
2331
|
+
value: Scalars['String']['output'];
|
|
2332
|
+
};
|
|
2264
2333
|
export declare type AdminUnit = {
|
|
2265
2334
|
__typename?: 'AdminUnit';
|
|
2266
2335
|
apps?: Maybe<AdminUnitAppsConnection>;
|
|
@@ -3664,15 +3733,11 @@ export declare type AppAdminQuery = {
|
|
|
3664
3733
|
__typename?: 'AppAdminQuery';
|
|
3665
3734
|
appId: Scalars['ID']['output'];
|
|
3666
3735
|
getQuotaInfo?: Maybe<Array<QuotaInfo>>;
|
|
3667
|
-
listStorage?: Maybe<AppStoredEntityConnection>;
|
|
3668
3736
|
};
|
|
3669
3737
|
export declare type AppAdminQueryGetQuotaInfoArgs = {
|
|
3670
3738
|
contextAri: Scalars['ID']['input'];
|
|
3671
3739
|
environmentId: Scalars['ID']['input'];
|
|
3672
3740
|
};
|
|
3673
|
-
export declare type AppAdminQueryListStorageArgs = {
|
|
3674
|
-
input: ListStorageInput;
|
|
3675
|
-
};
|
|
3676
3741
|
export declare type AppAuditConnection = {
|
|
3677
3742
|
__typename?: 'AppAuditConnection';
|
|
3678
3743
|
edges?: Maybe<Array<Maybe<AuditEventEdge>>>;
|
|
@@ -7547,6 +7612,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
7547
7612
|
meteredChargeElementUsageLatest?: Maybe<Scalars['Float']['output']>;
|
|
7548
7613
|
offering?: Maybe<CcpOffering>;
|
|
7549
7614
|
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
7615
|
+
offeringTransitionRoute?: Maybe<CcpOfferingTransitionRoute>;
|
|
7550
7616
|
order?: Maybe<CcpOrder>;
|
|
7551
7617
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
7552
7618
|
preDunning?: Maybe<CcpEntitlementPreDunning>;
|
|
@@ -7583,6 +7649,9 @@ export declare type CcpEntitlementMeteredChargeElementUsageAggregatedArgs = {
|
|
|
7583
7649
|
export declare type CcpEntitlementMeteredChargeElementUsageLatestArgs = {
|
|
7584
7650
|
input: CcpMeteredChargeElementLatestUsageInput;
|
|
7585
7651
|
};
|
|
7652
|
+
export declare type CcpEntitlementOfferingTransitionRouteArgs = {
|
|
7653
|
+
routeBehaviour: CcpOfferingRouteBehaviourEnum;
|
|
7654
|
+
};
|
|
7586
7655
|
export declare type CcpEntitlementDisplayInfo = {
|
|
7587
7656
|
__typename?: 'CcpEntitlementDisplayInfo';
|
|
7588
7657
|
provisionedResource?: Maybe<CcpEntitlementProvisionedResource>;
|
|
@@ -7595,6 +7664,7 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
|
|
|
7595
7664
|
changeOfferingV2?: Maybe<CcpChangeOfferingExperienceCapability>;
|
|
7596
7665
|
compareOfferings?: Maybe<CcpCompareOfferingsExperienceCapability>;
|
|
7597
7666
|
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
7667
|
+
placeOrderLite?: Maybe<CcpPlaceOrderLiteExperienceCapability>;
|
|
7598
7668
|
};
|
|
7599
7669
|
export declare type CcpEntitlementExperienceCapabilitiesApplyEntitlementPromotionArgs = {
|
|
7600
7670
|
promotionId: Scalars['ID']['input'];
|
|
@@ -7611,6 +7681,10 @@ export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
|
|
|
7611
7681
|
export declare type CcpEntitlementExperienceCapabilitiesCompareOfferingsArgs = {
|
|
7612
7682
|
input?: InputMaybe<CcpCompareOfferingsInput>;
|
|
7613
7683
|
};
|
|
7684
|
+
export declare type CcpEntitlementExperienceCapabilitiesPlaceOrderLiteArgs = {
|
|
7685
|
+
source: Scalars['String']['input'];
|
|
7686
|
+
targetOffering: CcpPlaceOrderLiteTargetOfferingInput;
|
|
7687
|
+
};
|
|
7614
7688
|
export declare type CcpEntitlementOfferingTransition = {
|
|
7615
7689
|
__typename?: 'CcpEntitlementOfferingTransition';
|
|
7616
7690
|
id: Scalars['ID']['output'];
|
|
@@ -7677,9 +7751,13 @@ export declare type CcpEntitlementTemplateUserUsageInclusions = {
|
|
|
7677
7751
|
export declare type CcpEntitlementUsage = {
|
|
7678
7752
|
__typename?: 'CcpEntitlementUsage';
|
|
7679
7753
|
offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
|
|
7754
|
+
usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
7680
7755
|
usageAmount?: Maybe<Scalars['Float']['output']>;
|
|
7681
7756
|
usageIdentifier?: Maybe<Scalars['String']['output']>;
|
|
7682
7757
|
};
|
|
7758
|
+
export declare type CcpEntitlementUsageUsageAlertsArgs = {
|
|
7759
|
+
state?: InputMaybe<UtsAlertState>;
|
|
7760
|
+
};
|
|
7683
7761
|
export declare type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
7684
7762
|
__typename?: 'CcpExperienceCapability';
|
|
7685
7763
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -8151,12 +8229,23 @@ export declare enum CcpOfferingRelationshipTemplateType {
|
|
|
8151
8229
|
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
8152
8230
|
SandboxGrant = "SANDBOX_GRANT"
|
|
8153
8231
|
}
|
|
8232
|
+
export declare enum CcpOfferingRouteBehaviourEnum {
|
|
8233
|
+
DefaultPricing = "DEFAULT_PRICING",
|
|
8234
|
+
Legacy = "LEGACY",
|
|
8235
|
+
PricingMigration = "PRICING_MIGRATION"
|
|
8236
|
+
}
|
|
8154
8237
|
export declare enum CcpOfferingStatus {
|
|
8155
8238
|
Active = "ACTIVE",
|
|
8156
8239
|
AtNotice = "AT_NOTICE",
|
|
8157
8240
|
Draft = "DRAFT",
|
|
8158
8241
|
Expired = "EXPIRED"
|
|
8159
8242
|
}
|
|
8243
|
+
export declare type CcpOfferingTransitionRoute = {
|
|
8244
|
+
__typename?: 'CcpOfferingTransitionRoute';
|
|
8245
|
+
effectiveDate?: Maybe<Scalars['Float']['output']>;
|
|
8246
|
+
offering?: Maybe<CcpOffering>;
|
|
8247
|
+
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
8248
|
+
};
|
|
8160
8249
|
export declare type CcpOfferingTrial = CommerceOfferingTrial & {
|
|
8161
8250
|
__typename?: 'CcpOfferingTrial';
|
|
8162
8251
|
lengthDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8220,6 +8309,15 @@ export declare enum CcpPaymentMethodType {
|
|
|
8220
8309
|
Deferred = "DEFERRED",
|
|
8221
8310
|
Paypal = "PAYPAL"
|
|
8222
8311
|
}
|
|
8312
|
+
export declare type CcpPlaceOrderLiteExperienceCapability = CommerceExperienceCapability & {
|
|
8313
|
+
__typename?: 'CcpPlaceOrderLiteExperienceCapability';
|
|
8314
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
8315
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
8316
|
+
};
|
|
8317
|
+
export declare type CcpPlaceOrderLiteTargetOfferingInput = {
|
|
8318
|
+
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
8319
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
8320
|
+
};
|
|
8223
8321
|
export declare type CcpPostalAddress = {
|
|
8224
8322
|
__typename?: 'CcpPostalAddress';
|
|
8225
8323
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -15949,6 +16047,11 @@ export declare type ConfluenceContentBodyInput = {
|
|
|
15949
16047
|
representation: ConfluenceContentRepresentation;
|
|
15950
16048
|
value: Scalars['String']['input'];
|
|
15951
16049
|
};
|
|
16050
|
+
export declare type ConfluenceContentDirectRestrictions = {
|
|
16051
|
+
__typename?: 'ConfluenceContentDirectRestrictions';
|
|
16052
|
+
applied?: Maybe<ConfluenceDirectRestrictionsApplied>;
|
|
16053
|
+
restrictionsSummary?: Maybe<ConfluenceRestrictionsSummary>;
|
|
16054
|
+
};
|
|
15952
16055
|
export declare type ConfluenceContentGeneralAccess = {
|
|
15953
16056
|
__typename?: 'ConfluenceContentGeneralAccess';
|
|
15954
16057
|
mode?: Maybe<ConfluenceContentRestrictionState>;
|
|
@@ -16770,6 +16873,24 @@ export declare type ConfluenceDeletedUser = {
|
|
|
16770
16873
|
__typename?: 'ConfluenceDeletedUser';
|
|
16771
16874
|
accountIds: Array<Maybe<Scalars['String']['output']>>;
|
|
16772
16875
|
};
|
|
16876
|
+
export declare type ConfluenceDirectRestrictionsAddInput = {
|
|
16877
|
+
edit?: InputMaybe<ConfluenceRestrictionsInput>;
|
|
16878
|
+
view?: InputMaybe<ConfluenceRestrictionsInput>;
|
|
16879
|
+
};
|
|
16880
|
+
export declare type ConfluenceDirectRestrictionsApplied = {
|
|
16881
|
+
__typename?: 'ConfluenceDirectRestrictionsApplied';
|
|
16882
|
+
added?: Maybe<ConfluenceDirectRestrictionsResult>;
|
|
16883
|
+
removed?: Maybe<ConfluenceDirectRestrictionsResult>;
|
|
16884
|
+
};
|
|
16885
|
+
export declare type ConfluenceDirectRestrictionsRemoveInput = {
|
|
16886
|
+
edit?: InputMaybe<ConfluenceRestrictionsInput>;
|
|
16887
|
+
view?: InputMaybe<ConfluenceRestrictionsInput>;
|
|
16888
|
+
};
|
|
16889
|
+
export declare type ConfluenceDirectRestrictionsResult = {
|
|
16890
|
+
__typename?: 'ConfluenceDirectRestrictionsResult';
|
|
16891
|
+
edit?: Maybe<ConfluenceRestrictionsResult>;
|
|
16892
|
+
view?: Maybe<ConfluenceRestrictionsResult>;
|
|
16893
|
+
};
|
|
16773
16894
|
export declare type ConfluenceDisableBlueprintInput = {
|
|
16774
16895
|
id: Scalars['ID']['input'];
|
|
16775
16896
|
spaceId: Scalars['Long']['input'];
|
|
@@ -18971,6 +19092,28 @@ export declare type ConfluenceRestoreContentVersionPayload = {
|
|
|
18971
19092
|
success: Scalars['Boolean']['output'];
|
|
18972
19093
|
version: Version;
|
|
18973
19094
|
};
|
|
19095
|
+
export declare type ConfluenceRestriction = {
|
|
19096
|
+
__typename?: 'ConfluenceRestriction';
|
|
19097
|
+
principalId: Scalars['ID']['output'];
|
|
19098
|
+
principalType: ConfluencePrincipalType;
|
|
19099
|
+
};
|
|
19100
|
+
export declare type ConfluenceRestrictionInput = {
|
|
19101
|
+
principalId: Scalars['ID']['input'];
|
|
19102
|
+
principalType: ConfluencePrincipalType;
|
|
19103
|
+
};
|
|
19104
|
+
export declare type ConfluenceRestrictionsInput = {
|
|
19105
|
+
restrictions: Array<InputMaybe<ConfluenceRestrictionInput>>;
|
|
19106
|
+
};
|
|
19107
|
+
export declare type ConfluenceRestrictionsResult = {
|
|
19108
|
+
__typename?: 'ConfluenceRestrictionsResult';
|
|
19109
|
+
restrictions: Array<Maybe<ConfluenceRestriction>>;
|
|
19110
|
+
};
|
|
19111
|
+
export declare type ConfluenceRestrictionsSummary = {
|
|
19112
|
+
__typename?: 'ConfluenceRestrictionsSummary';
|
|
19113
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
19114
|
+
remainingSlots?: Maybe<Scalars['Int']['output']>;
|
|
19115
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
19116
|
+
};
|
|
18974
19117
|
export declare enum ConfluenceRoleAssignabilityCode {
|
|
18975
19118
|
Assignable = "ASSIGNABLE",
|
|
18976
19119
|
DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
|
|
@@ -19706,6 +19849,18 @@ export declare type ConfluenceUpdateContentAccessRequestPayload = Payload & {
|
|
|
19706
19849
|
errors: Array<MutationError>;
|
|
19707
19850
|
success: Scalars['Boolean']['output'];
|
|
19708
19851
|
};
|
|
19852
|
+
export declare type ConfluenceUpdateContentDirectRestrictionsInput = {
|
|
19853
|
+
add?: InputMaybe<ConfluenceDirectRestrictionsAddInput>;
|
|
19854
|
+
contentId: Scalars['ID']['input'];
|
|
19855
|
+
includeInvites?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19856
|
+
remove?: InputMaybe<ConfluenceDirectRestrictionsRemoveInput>;
|
|
19857
|
+
};
|
|
19858
|
+
export declare type ConfluenceUpdateContentDirectRestrictionsPayload = Payload & {
|
|
19859
|
+
__typename?: 'ConfluenceUpdateContentDirectRestrictionsPayload';
|
|
19860
|
+
contentDirectRestrictions?: Maybe<ConfluenceContentDirectRestrictions>;
|
|
19861
|
+
errors: Array<MutationError>;
|
|
19862
|
+
success: Scalars['Boolean']['output'];
|
|
19863
|
+
};
|
|
19709
19864
|
export declare type ConfluenceUpdateContentModeInput = {
|
|
19710
19865
|
contentId: Scalars['ID']['input'];
|
|
19711
19866
|
contentMode: ConfluenceGraphQlContentMode;
|
|
@@ -37096,6 +37251,18 @@ export declare type GraphStore = {
|
|
|
37096
37251
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
37097
37252
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
37098
37253
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
37254
|
+
userCreatedExternalCustomerOrg?: Maybe<GraphStoreSimplifiedUserCreatedExternalCustomerOrgConnection>;
|
|
37255
|
+
userCreatedExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalCustomerOrgInverseConnection>;
|
|
37256
|
+
userCreatedExternalDashboard?: Maybe<GraphStoreSimplifiedUserCreatedExternalDashboardConnection>;
|
|
37257
|
+
userCreatedExternalDashboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalDashboardInverseConnection>;
|
|
37258
|
+
userCreatedExternalDataTable?: Maybe<GraphStoreSimplifiedUserCreatedExternalDataTableConnection>;
|
|
37259
|
+
userCreatedExternalDataTableInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalDataTableInverseConnection>;
|
|
37260
|
+
userCreatedExternalDeal?: Maybe<GraphStoreSimplifiedUserCreatedExternalDealConnection>;
|
|
37261
|
+
userCreatedExternalDealInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalDealInverseConnection>;
|
|
37262
|
+
userCreatedExternalSoftwareService?: Maybe<GraphStoreSimplifiedUserCreatedExternalSoftwareServiceConnection>;
|
|
37263
|
+
userCreatedExternalSoftwareServiceInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalSoftwareServiceInverseConnection>;
|
|
37264
|
+
userCreatedExternalSpace?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceConnection>;
|
|
37265
|
+
userCreatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceInverseConnection>;
|
|
37099
37266
|
userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
|
|
37100
37267
|
userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
|
|
37101
37268
|
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
@@ -37166,6 +37333,18 @@ export declare type GraphStore = {
|
|
|
37166
37333
|
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
37167
37334
|
userOwnedDocument?: Maybe<GraphStoreSimplifiedUserOwnedDocumentConnection>;
|
|
37168
37335
|
userOwnedDocumentInverse?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseConnection>;
|
|
37336
|
+
userOwnedExternalCustomerOrg?: Maybe<GraphStoreSimplifiedUserOwnedExternalCustomerOrgConnection>;
|
|
37337
|
+
userOwnedExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalCustomerOrgInverseConnection>;
|
|
37338
|
+
userOwnedExternalDashboard?: Maybe<GraphStoreSimplifiedUserOwnedExternalDashboardConnection>;
|
|
37339
|
+
userOwnedExternalDashboardInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalDashboardInverseConnection>;
|
|
37340
|
+
userOwnedExternalDataTable?: Maybe<GraphStoreSimplifiedUserOwnedExternalDataTableConnection>;
|
|
37341
|
+
userOwnedExternalDataTableInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalDataTableInverseConnection>;
|
|
37342
|
+
userOwnedExternalDeal?: Maybe<GraphStoreSimplifiedUserOwnedExternalDealConnection>;
|
|
37343
|
+
userOwnedExternalDealInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalDealInverseConnection>;
|
|
37344
|
+
userOwnedExternalSoftwareService?: Maybe<GraphStoreSimplifiedUserOwnedExternalSoftwareServiceConnection>;
|
|
37345
|
+
userOwnedExternalSoftwareServiceInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalSoftwareServiceInverseConnection>;
|
|
37346
|
+
userOwnedExternalSpace?: Maybe<GraphStoreSimplifiedUserOwnedExternalSpaceConnection>;
|
|
37347
|
+
userOwnedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalSpaceInverseConnection>;
|
|
37169
37348
|
userOwnedExternalTest?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestConnection>;
|
|
37170
37349
|
userOwnedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestInverseConnection>;
|
|
37171
37350
|
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
@@ -37214,6 +37393,18 @@ export declare type GraphStore = {
|
|
|
37214
37393
|
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
37215
37394
|
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
37216
37395
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
37396
|
+
userUpdatedExternalCustomerOrg?: Maybe<GraphStoreSimplifiedUserUpdatedExternalCustomerOrgConnection>;
|
|
37397
|
+
userUpdatedExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalCustomerOrgInverseConnection>;
|
|
37398
|
+
userUpdatedExternalDashboard?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDashboardConnection>;
|
|
37399
|
+
userUpdatedExternalDashboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDashboardInverseConnection>;
|
|
37400
|
+
userUpdatedExternalDataTable?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDataTableConnection>;
|
|
37401
|
+
userUpdatedExternalDataTableInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDataTableInverseConnection>;
|
|
37402
|
+
userUpdatedExternalDeal?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDealConnection>;
|
|
37403
|
+
userUpdatedExternalDealInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDealInverseConnection>;
|
|
37404
|
+
userUpdatedExternalSoftwareService?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceConnection>;
|
|
37405
|
+
userUpdatedExternalSoftwareServiceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceInverseConnection>;
|
|
37406
|
+
userUpdatedExternalSpace?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSpaceConnection>;
|
|
37407
|
+
userUpdatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSpaceInverseConnection>;
|
|
37217
37408
|
userUpdatedExternalTest?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestConnection>;
|
|
37218
37409
|
userUpdatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection>;
|
|
37219
37410
|
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
@@ -41423,6 +41614,90 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
41423
41614
|
id: Scalars['ID']['input'];
|
|
41424
41615
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
41425
41616
|
};
|
|
41617
|
+
export declare type GraphStoreUserCreatedExternalCustomerOrgArgs = {
|
|
41618
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41619
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41620
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41621
|
+
id: Scalars['ID']['input'];
|
|
41622
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalCustomerOrgSortInput>;
|
|
41623
|
+
};
|
|
41624
|
+
export declare type GraphStoreUserCreatedExternalCustomerOrgInverseArgs = {
|
|
41625
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41626
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41627
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41628
|
+
id: Scalars['ID']['input'];
|
|
41629
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalCustomerOrgSortInput>;
|
|
41630
|
+
};
|
|
41631
|
+
export declare type GraphStoreUserCreatedExternalDashboardArgs = {
|
|
41632
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41633
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41634
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41635
|
+
id: Scalars['ID']['input'];
|
|
41636
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalDashboardSortInput>;
|
|
41637
|
+
};
|
|
41638
|
+
export declare type GraphStoreUserCreatedExternalDashboardInverseArgs = {
|
|
41639
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41640
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41641
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41642
|
+
id: Scalars['ID']['input'];
|
|
41643
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalDashboardSortInput>;
|
|
41644
|
+
};
|
|
41645
|
+
export declare type GraphStoreUserCreatedExternalDataTableArgs = {
|
|
41646
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41647
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41648
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41649
|
+
id: Scalars['ID']['input'];
|
|
41650
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalDataTableSortInput>;
|
|
41651
|
+
};
|
|
41652
|
+
export declare type GraphStoreUserCreatedExternalDataTableInverseArgs = {
|
|
41653
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41654
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41655
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41656
|
+
id: Scalars['ID']['input'];
|
|
41657
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalDataTableSortInput>;
|
|
41658
|
+
};
|
|
41659
|
+
export declare type GraphStoreUserCreatedExternalDealArgs = {
|
|
41660
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41661
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41662
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41663
|
+
id: Scalars['ID']['input'];
|
|
41664
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalDealSortInput>;
|
|
41665
|
+
};
|
|
41666
|
+
export declare type GraphStoreUserCreatedExternalDealInverseArgs = {
|
|
41667
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41668
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41669
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41670
|
+
id: Scalars['ID']['input'];
|
|
41671
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalDealSortInput>;
|
|
41672
|
+
};
|
|
41673
|
+
export declare type GraphStoreUserCreatedExternalSoftwareServiceArgs = {
|
|
41674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41675
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41676
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41677
|
+
id: Scalars['ID']['input'];
|
|
41678
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalSoftwareServiceSortInput>;
|
|
41679
|
+
};
|
|
41680
|
+
export declare type GraphStoreUserCreatedExternalSoftwareServiceInverseArgs = {
|
|
41681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41682
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41683
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41684
|
+
id: Scalars['ID']['input'];
|
|
41685
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalSoftwareServiceSortInput>;
|
|
41686
|
+
};
|
|
41687
|
+
export declare type GraphStoreUserCreatedExternalSpaceArgs = {
|
|
41688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41689
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41690
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41691
|
+
id: Scalars['ID']['input'];
|
|
41692
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalSpaceSortInput>;
|
|
41693
|
+
};
|
|
41694
|
+
export declare type GraphStoreUserCreatedExternalSpaceInverseArgs = {
|
|
41695
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41696
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41697
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41698
|
+
id: Scalars['ID']['input'];
|
|
41699
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalSpaceSortInput>;
|
|
41700
|
+
};
|
|
41426
41701
|
export declare type GraphStoreUserCreatedExternalTestArgs = {
|
|
41427
41702
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41428
41703
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41913,6 +42188,90 @@ export declare type GraphStoreUserOwnedDocumentInverseArgs = {
|
|
|
41913
42188
|
id: Scalars['ID']['input'];
|
|
41914
42189
|
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
41915
42190
|
};
|
|
42191
|
+
export declare type GraphStoreUserOwnedExternalCustomerOrgArgs = {
|
|
42192
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42193
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42194
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42195
|
+
id: Scalars['ID']['input'];
|
|
42196
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalCustomerOrgSortInput>;
|
|
42197
|
+
};
|
|
42198
|
+
export declare type GraphStoreUserOwnedExternalCustomerOrgInverseArgs = {
|
|
42199
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42200
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42201
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42202
|
+
id: Scalars['ID']['input'];
|
|
42203
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalCustomerOrgSortInput>;
|
|
42204
|
+
};
|
|
42205
|
+
export declare type GraphStoreUserOwnedExternalDashboardArgs = {
|
|
42206
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42207
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42208
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42209
|
+
id: Scalars['ID']['input'];
|
|
42210
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalDashboardSortInput>;
|
|
42211
|
+
};
|
|
42212
|
+
export declare type GraphStoreUserOwnedExternalDashboardInverseArgs = {
|
|
42213
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42214
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42215
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42216
|
+
id: Scalars['ID']['input'];
|
|
42217
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalDashboardSortInput>;
|
|
42218
|
+
};
|
|
42219
|
+
export declare type GraphStoreUserOwnedExternalDataTableArgs = {
|
|
42220
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42221
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42222
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42223
|
+
id: Scalars['ID']['input'];
|
|
42224
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalDataTableSortInput>;
|
|
42225
|
+
};
|
|
42226
|
+
export declare type GraphStoreUserOwnedExternalDataTableInverseArgs = {
|
|
42227
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42228
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42229
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42230
|
+
id: Scalars['ID']['input'];
|
|
42231
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalDataTableSortInput>;
|
|
42232
|
+
};
|
|
42233
|
+
export declare type GraphStoreUserOwnedExternalDealArgs = {
|
|
42234
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42235
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42236
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42237
|
+
id: Scalars['ID']['input'];
|
|
42238
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalDealSortInput>;
|
|
42239
|
+
};
|
|
42240
|
+
export declare type GraphStoreUserOwnedExternalDealInverseArgs = {
|
|
42241
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42242
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42243
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42244
|
+
id: Scalars['ID']['input'];
|
|
42245
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalDealSortInput>;
|
|
42246
|
+
};
|
|
42247
|
+
export declare type GraphStoreUserOwnedExternalSoftwareServiceArgs = {
|
|
42248
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42249
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42250
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42251
|
+
id: Scalars['ID']['input'];
|
|
42252
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalSoftwareServiceSortInput>;
|
|
42253
|
+
};
|
|
42254
|
+
export declare type GraphStoreUserOwnedExternalSoftwareServiceInverseArgs = {
|
|
42255
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42256
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42257
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42258
|
+
id: Scalars['ID']['input'];
|
|
42259
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalSoftwareServiceSortInput>;
|
|
42260
|
+
};
|
|
42261
|
+
export declare type GraphStoreUserOwnedExternalSpaceArgs = {
|
|
42262
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42263
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42264
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42265
|
+
id: Scalars['ID']['input'];
|
|
42266
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalSpaceSortInput>;
|
|
42267
|
+
};
|
|
42268
|
+
export declare type GraphStoreUserOwnedExternalSpaceInverseArgs = {
|
|
42269
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42270
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42271
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42272
|
+
id: Scalars['ID']['input'];
|
|
42273
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalSpaceSortInput>;
|
|
42274
|
+
};
|
|
41916
42275
|
export declare type GraphStoreUserOwnedExternalTestArgs = {
|
|
41917
42276
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41918
42277
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42251,6 +42610,90 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
|
42251
42610
|
id: Scalars['ID']['input'];
|
|
42252
42611
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
42253
42612
|
};
|
|
42613
|
+
export declare type GraphStoreUserUpdatedExternalCustomerOrgArgs = {
|
|
42614
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42615
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42616
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42617
|
+
id: Scalars['ID']['input'];
|
|
42618
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalCustomerOrgSortInput>;
|
|
42619
|
+
};
|
|
42620
|
+
export declare type GraphStoreUserUpdatedExternalCustomerOrgInverseArgs = {
|
|
42621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42622
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42623
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42624
|
+
id: Scalars['ID']['input'];
|
|
42625
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalCustomerOrgSortInput>;
|
|
42626
|
+
};
|
|
42627
|
+
export declare type GraphStoreUserUpdatedExternalDashboardArgs = {
|
|
42628
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42629
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42630
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42631
|
+
id: Scalars['ID']['input'];
|
|
42632
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalDashboardSortInput>;
|
|
42633
|
+
};
|
|
42634
|
+
export declare type GraphStoreUserUpdatedExternalDashboardInverseArgs = {
|
|
42635
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42636
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42637
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42638
|
+
id: Scalars['ID']['input'];
|
|
42639
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalDashboardSortInput>;
|
|
42640
|
+
};
|
|
42641
|
+
export declare type GraphStoreUserUpdatedExternalDataTableArgs = {
|
|
42642
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42643
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42644
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42645
|
+
id: Scalars['ID']['input'];
|
|
42646
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalDataTableSortInput>;
|
|
42647
|
+
};
|
|
42648
|
+
export declare type GraphStoreUserUpdatedExternalDataTableInverseArgs = {
|
|
42649
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42650
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42651
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42652
|
+
id: Scalars['ID']['input'];
|
|
42653
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalDataTableSortInput>;
|
|
42654
|
+
};
|
|
42655
|
+
export declare type GraphStoreUserUpdatedExternalDealArgs = {
|
|
42656
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42657
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42658
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42659
|
+
id: Scalars['ID']['input'];
|
|
42660
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalDealSortInput>;
|
|
42661
|
+
};
|
|
42662
|
+
export declare type GraphStoreUserUpdatedExternalDealInverseArgs = {
|
|
42663
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42664
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42665
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42666
|
+
id: Scalars['ID']['input'];
|
|
42667
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalDealSortInput>;
|
|
42668
|
+
};
|
|
42669
|
+
export declare type GraphStoreUserUpdatedExternalSoftwareServiceArgs = {
|
|
42670
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42671
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42672
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42673
|
+
id: Scalars['ID']['input'];
|
|
42674
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalSoftwareServiceSortInput>;
|
|
42675
|
+
};
|
|
42676
|
+
export declare type GraphStoreUserUpdatedExternalSoftwareServiceInverseArgs = {
|
|
42677
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42678
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42679
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42680
|
+
id: Scalars['ID']['input'];
|
|
42681
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalSoftwareServiceSortInput>;
|
|
42682
|
+
};
|
|
42683
|
+
export declare type GraphStoreUserUpdatedExternalSpaceArgs = {
|
|
42684
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42685
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42686
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42687
|
+
id: Scalars['ID']['input'];
|
|
42688
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalSpaceSortInput>;
|
|
42689
|
+
};
|
|
42690
|
+
export declare type GraphStoreUserUpdatedExternalSpaceInverseArgs = {
|
|
42691
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42692
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42693
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42694
|
+
id: Scalars['ID']['input'];
|
|
42695
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalSpaceSortInput>;
|
|
42696
|
+
};
|
|
42254
42697
|
export declare type GraphStoreUserUpdatedExternalTestArgs = {
|
|
42255
42698
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
42256
42699
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -56310,6 +56753,174 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
56310
56753
|
};
|
|
56311
56754
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56312
56755
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
56756
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalCustomerOrgConnection = HasPageInfo & {
|
|
56757
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalCustomerOrgConnection';
|
|
56758
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalCustomerOrgEdge>>>;
|
|
56759
|
+
pageInfo: PageInfo;
|
|
56760
|
+
};
|
|
56761
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalCustomerOrgEdge = {
|
|
56762
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalCustomerOrgEdge';
|
|
56763
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56764
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56765
|
+
id: Scalars['ID']['output'];
|
|
56766
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56767
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalCustomerOrgUnion>;
|
|
56768
|
+
};
|
|
56769
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalCustomerOrgInverseConnection = HasPageInfo & {
|
|
56770
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalCustomerOrgInverseConnection';
|
|
56771
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalCustomerOrgInverseEdge>>>;
|
|
56772
|
+
pageInfo: PageInfo;
|
|
56773
|
+
};
|
|
56774
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalCustomerOrgInverseEdge = {
|
|
56775
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalCustomerOrgInverseEdge';
|
|
56776
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56777
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56778
|
+
id: Scalars['ID']['output'];
|
|
56779
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56780
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalCustomerOrgInverseUnion>;
|
|
56781
|
+
};
|
|
56782
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalCustomerOrgInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56783
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalCustomerOrgUnion = ExternalCustomerOrg;
|
|
56784
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDashboardConnection = HasPageInfo & {
|
|
56785
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDashboardConnection';
|
|
56786
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalDashboardEdge>>>;
|
|
56787
|
+
pageInfo: PageInfo;
|
|
56788
|
+
};
|
|
56789
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDashboardEdge = {
|
|
56790
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDashboardEdge';
|
|
56791
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56792
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56793
|
+
id: Scalars['ID']['output'];
|
|
56794
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56795
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalDashboardUnion>;
|
|
56796
|
+
};
|
|
56797
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDashboardInverseConnection = HasPageInfo & {
|
|
56798
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDashboardInverseConnection';
|
|
56799
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalDashboardInverseEdge>>>;
|
|
56800
|
+
pageInfo: PageInfo;
|
|
56801
|
+
};
|
|
56802
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDashboardInverseEdge = {
|
|
56803
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDashboardInverseEdge';
|
|
56804
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56805
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56806
|
+
id: Scalars['ID']['output'];
|
|
56807
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56808
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalDashboardInverseUnion>;
|
|
56809
|
+
};
|
|
56810
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDashboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56811
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDashboardUnion = ExternalDashboard;
|
|
56812
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDataTableConnection = HasPageInfo & {
|
|
56813
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDataTableConnection';
|
|
56814
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalDataTableEdge>>>;
|
|
56815
|
+
pageInfo: PageInfo;
|
|
56816
|
+
};
|
|
56817
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDataTableEdge = {
|
|
56818
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDataTableEdge';
|
|
56819
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56820
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56821
|
+
id: Scalars['ID']['output'];
|
|
56822
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56823
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalDataTableUnion>;
|
|
56824
|
+
};
|
|
56825
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDataTableInverseConnection = HasPageInfo & {
|
|
56826
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDataTableInverseConnection';
|
|
56827
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalDataTableInverseEdge>>>;
|
|
56828
|
+
pageInfo: PageInfo;
|
|
56829
|
+
};
|
|
56830
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDataTableInverseEdge = {
|
|
56831
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDataTableInverseEdge';
|
|
56832
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56833
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56834
|
+
id: Scalars['ID']['output'];
|
|
56835
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56836
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalDataTableInverseUnion>;
|
|
56837
|
+
};
|
|
56838
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDataTableInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56839
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDataTableUnion = ExternalDataTable;
|
|
56840
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDealConnection = HasPageInfo & {
|
|
56841
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDealConnection';
|
|
56842
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalDealEdge>>>;
|
|
56843
|
+
pageInfo: PageInfo;
|
|
56844
|
+
};
|
|
56845
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDealEdge = {
|
|
56846
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDealEdge';
|
|
56847
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56848
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56849
|
+
id: Scalars['ID']['output'];
|
|
56850
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56851
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalDealUnion>;
|
|
56852
|
+
};
|
|
56853
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDealInverseConnection = HasPageInfo & {
|
|
56854
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDealInverseConnection';
|
|
56855
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalDealInverseEdge>>>;
|
|
56856
|
+
pageInfo: PageInfo;
|
|
56857
|
+
};
|
|
56858
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDealInverseEdge = {
|
|
56859
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalDealInverseEdge';
|
|
56860
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56861
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56862
|
+
id: Scalars['ID']['output'];
|
|
56863
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56864
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalDealInverseUnion>;
|
|
56865
|
+
};
|
|
56866
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDealInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56867
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalDealUnion = ExternalDeal;
|
|
56868
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
56869
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalSoftwareServiceConnection';
|
|
56870
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalSoftwareServiceEdge>>>;
|
|
56871
|
+
pageInfo: PageInfo;
|
|
56872
|
+
};
|
|
56873
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSoftwareServiceEdge = {
|
|
56874
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalSoftwareServiceEdge';
|
|
56875
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56876
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56877
|
+
id: Scalars['ID']['output'];
|
|
56878
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56879
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalSoftwareServiceUnion>;
|
|
56880
|
+
};
|
|
56881
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSoftwareServiceInverseConnection = HasPageInfo & {
|
|
56882
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalSoftwareServiceInverseConnection';
|
|
56883
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalSoftwareServiceInverseEdge>>>;
|
|
56884
|
+
pageInfo: PageInfo;
|
|
56885
|
+
};
|
|
56886
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSoftwareServiceInverseEdge = {
|
|
56887
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalSoftwareServiceInverseEdge';
|
|
56888
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56889
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56890
|
+
id: Scalars['ID']['output'];
|
|
56891
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56892
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalSoftwareServiceInverseUnion>;
|
|
56893
|
+
};
|
|
56894
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSoftwareServiceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56895
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSoftwareServiceUnion = ExternalSoftwareService;
|
|
56896
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSpaceConnection = HasPageInfo & {
|
|
56897
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalSpaceConnection';
|
|
56898
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceEdge>>>;
|
|
56899
|
+
pageInfo: PageInfo;
|
|
56900
|
+
};
|
|
56901
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSpaceEdge = {
|
|
56902
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalSpaceEdge';
|
|
56903
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56904
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56905
|
+
id: Scalars['ID']['output'];
|
|
56906
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56907
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceUnion>;
|
|
56908
|
+
};
|
|
56909
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSpaceInverseConnection = HasPageInfo & {
|
|
56910
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalSpaceInverseConnection';
|
|
56911
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceInverseEdge>>>;
|
|
56912
|
+
pageInfo: PageInfo;
|
|
56913
|
+
};
|
|
56914
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSpaceInverseEdge = {
|
|
56915
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalSpaceInverseEdge';
|
|
56916
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56917
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56918
|
+
id: Scalars['ID']['output'];
|
|
56919
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56920
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceInverseUnion>;
|
|
56921
|
+
};
|
|
56922
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56923
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalSpaceUnion = ExternalSpace;
|
|
56313
56924
|
export declare type GraphStoreSimplifiedUserCreatedExternalTestConnection = HasPageInfo & {
|
|
56314
56925
|
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestConnection';
|
|
56315
56926
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalTestEdge>>>;
|
|
@@ -57282,6 +57893,174 @@ export declare type GraphStoreSimplifiedUserOwnedDocumentInverseEdge = {
|
|
|
57282
57893
|
};
|
|
57283
57894
|
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
57284
57895
|
export declare type GraphStoreSimplifiedUserOwnedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
57896
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalCustomerOrgConnection = HasPageInfo & {
|
|
57897
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalCustomerOrgConnection';
|
|
57898
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalCustomerOrgEdge>>>;
|
|
57899
|
+
pageInfo: PageInfo;
|
|
57900
|
+
};
|
|
57901
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalCustomerOrgEdge = {
|
|
57902
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalCustomerOrgEdge';
|
|
57903
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57904
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57905
|
+
id: Scalars['ID']['output'];
|
|
57906
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57907
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalCustomerOrgUnion>;
|
|
57908
|
+
};
|
|
57909
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalCustomerOrgInverseConnection = HasPageInfo & {
|
|
57910
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalCustomerOrgInverseConnection';
|
|
57911
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalCustomerOrgInverseEdge>>>;
|
|
57912
|
+
pageInfo: PageInfo;
|
|
57913
|
+
};
|
|
57914
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalCustomerOrgInverseEdge = {
|
|
57915
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalCustomerOrgInverseEdge';
|
|
57916
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57917
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57918
|
+
id: Scalars['ID']['output'];
|
|
57919
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57920
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalCustomerOrgInverseUnion>;
|
|
57921
|
+
};
|
|
57922
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalCustomerOrgInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
57923
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalCustomerOrgUnion = ExternalCustomerOrg;
|
|
57924
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDashboardConnection = HasPageInfo & {
|
|
57925
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDashboardConnection';
|
|
57926
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalDashboardEdge>>>;
|
|
57927
|
+
pageInfo: PageInfo;
|
|
57928
|
+
};
|
|
57929
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDashboardEdge = {
|
|
57930
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDashboardEdge';
|
|
57931
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57932
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57933
|
+
id: Scalars['ID']['output'];
|
|
57934
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57935
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalDashboardUnion>;
|
|
57936
|
+
};
|
|
57937
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDashboardInverseConnection = HasPageInfo & {
|
|
57938
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDashboardInverseConnection';
|
|
57939
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalDashboardInverseEdge>>>;
|
|
57940
|
+
pageInfo: PageInfo;
|
|
57941
|
+
};
|
|
57942
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDashboardInverseEdge = {
|
|
57943
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDashboardInverseEdge';
|
|
57944
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57945
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57946
|
+
id: Scalars['ID']['output'];
|
|
57947
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57948
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalDashboardInverseUnion>;
|
|
57949
|
+
};
|
|
57950
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDashboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
57951
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDashboardUnion = ExternalDashboard;
|
|
57952
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDataTableConnection = HasPageInfo & {
|
|
57953
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDataTableConnection';
|
|
57954
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalDataTableEdge>>>;
|
|
57955
|
+
pageInfo: PageInfo;
|
|
57956
|
+
};
|
|
57957
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDataTableEdge = {
|
|
57958
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDataTableEdge';
|
|
57959
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57960
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57961
|
+
id: Scalars['ID']['output'];
|
|
57962
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57963
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalDataTableUnion>;
|
|
57964
|
+
};
|
|
57965
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDataTableInverseConnection = HasPageInfo & {
|
|
57966
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDataTableInverseConnection';
|
|
57967
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalDataTableInverseEdge>>>;
|
|
57968
|
+
pageInfo: PageInfo;
|
|
57969
|
+
};
|
|
57970
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDataTableInverseEdge = {
|
|
57971
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDataTableInverseEdge';
|
|
57972
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57973
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57974
|
+
id: Scalars['ID']['output'];
|
|
57975
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57976
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalDataTableInverseUnion>;
|
|
57977
|
+
};
|
|
57978
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDataTableInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
57979
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDataTableUnion = ExternalDataTable;
|
|
57980
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDealConnection = HasPageInfo & {
|
|
57981
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDealConnection';
|
|
57982
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalDealEdge>>>;
|
|
57983
|
+
pageInfo: PageInfo;
|
|
57984
|
+
};
|
|
57985
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDealEdge = {
|
|
57986
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDealEdge';
|
|
57987
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57988
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57989
|
+
id: Scalars['ID']['output'];
|
|
57990
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57991
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalDealUnion>;
|
|
57992
|
+
};
|
|
57993
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDealInverseConnection = HasPageInfo & {
|
|
57994
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDealInverseConnection';
|
|
57995
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalDealInverseEdge>>>;
|
|
57996
|
+
pageInfo: PageInfo;
|
|
57997
|
+
};
|
|
57998
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDealInverseEdge = {
|
|
57999
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalDealInverseEdge';
|
|
58000
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58001
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58002
|
+
id: Scalars['ID']['output'];
|
|
58003
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58004
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalDealInverseUnion>;
|
|
58005
|
+
};
|
|
58006
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDealInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58007
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalDealUnion = ExternalDeal;
|
|
58008
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
58009
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalSoftwareServiceConnection';
|
|
58010
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalSoftwareServiceEdge>>>;
|
|
58011
|
+
pageInfo: PageInfo;
|
|
58012
|
+
};
|
|
58013
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSoftwareServiceEdge = {
|
|
58014
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalSoftwareServiceEdge';
|
|
58015
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58016
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58017
|
+
id: Scalars['ID']['output'];
|
|
58018
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58019
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalSoftwareServiceUnion>;
|
|
58020
|
+
};
|
|
58021
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSoftwareServiceInverseConnection = HasPageInfo & {
|
|
58022
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalSoftwareServiceInverseConnection';
|
|
58023
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalSoftwareServiceInverseEdge>>>;
|
|
58024
|
+
pageInfo: PageInfo;
|
|
58025
|
+
};
|
|
58026
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSoftwareServiceInverseEdge = {
|
|
58027
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalSoftwareServiceInverseEdge';
|
|
58028
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58029
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58030
|
+
id: Scalars['ID']['output'];
|
|
58031
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58032
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalSoftwareServiceInverseUnion>;
|
|
58033
|
+
};
|
|
58034
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSoftwareServiceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58035
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSoftwareServiceUnion = ExternalSoftwareService;
|
|
58036
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSpaceConnection = HasPageInfo & {
|
|
58037
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalSpaceConnection';
|
|
58038
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalSpaceEdge>>>;
|
|
58039
|
+
pageInfo: PageInfo;
|
|
58040
|
+
};
|
|
58041
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSpaceEdge = {
|
|
58042
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalSpaceEdge';
|
|
58043
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58044
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58045
|
+
id: Scalars['ID']['output'];
|
|
58046
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58047
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalSpaceUnion>;
|
|
58048
|
+
};
|
|
58049
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSpaceInverseConnection = HasPageInfo & {
|
|
58050
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalSpaceInverseConnection';
|
|
58051
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalSpaceInverseEdge>>>;
|
|
58052
|
+
pageInfo: PageInfo;
|
|
58053
|
+
};
|
|
58054
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSpaceInverseEdge = {
|
|
58055
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalSpaceInverseEdge';
|
|
58056
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58057
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58058
|
+
id: Scalars['ID']['output'];
|
|
58059
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58060
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalSpaceInverseUnion>;
|
|
58061
|
+
};
|
|
58062
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58063
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalSpaceUnion = ExternalSpace;
|
|
57285
58064
|
export declare type GraphStoreSimplifiedUserOwnedExternalTestConnection = HasPageInfo & {
|
|
57286
58065
|
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestConnection';
|
|
57287
58066
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalTestEdge>>>;
|
|
@@ -57958,6 +58737,174 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEd
|
|
|
57958
58737
|
};
|
|
57959
58738
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
57960
58739
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
58740
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalCustomerOrgConnection = HasPageInfo & {
|
|
58741
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalCustomerOrgConnection';
|
|
58742
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalCustomerOrgEdge>>>;
|
|
58743
|
+
pageInfo: PageInfo;
|
|
58744
|
+
};
|
|
58745
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalCustomerOrgEdge = {
|
|
58746
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalCustomerOrgEdge';
|
|
58747
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58748
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58749
|
+
id: Scalars['ID']['output'];
|
|
58750
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58751
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalCustomerOrgUnion>;
|
|
58752
|
+
};
|
|
58753
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalCustomerOrgInverseConnection = HasPageInfo & {
|
|
58754
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalCustomerOrgInverseConnection';
|
|
58755
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalCustomerOrgInverseEdge>>>;
|
|
58756
|
+
pageInfo: PageInfo;
|
|
58757
|
+
};
|
|
58758
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalCustomerOrgInverseEdge = {
|
|
58759
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalCustomerOrgInverseEdge';
|
|
58760
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58761
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58762
|
+
id: Scalars['ID']['output'];
|
|
58763
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58764
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalCustomerOrgInverseUnion>;
|
|
58765
|
+
};
|
|
58766
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalCustomerOrgInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58767
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalCustomerOrgUnion = ExternalCustomerOrg;
|
|
58768
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDashboardConnection = HasPageInfo & {
|
|
58769
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDashboardConnection';
|
|
58770
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalDashboardEdge>>>;
|
|
58771
|
+
pageInfo: PageInfo;
|
|
58772
|
+
};
|
|
58773
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDashboardEdge = {
|
|
58774
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDashboardEdge';
|
|
58775
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58776
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58777
|
+
id: Scalars['ID']['output'];
|
|
58778
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58779
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDashboardUnion>;
|
|
58780
|
+
};
|
|
58781
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDashboardInverseConnection = HasPageInfo & {
|
|
58782
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDashboardInverseConnection';
|
|
58783
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalDashboardInverseEdge>>>;
|
|
58784
|
+
pageInfo: PageInfo;
|
|
58785
|
+
};
|
|
58786
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDashboardInverseEdge = {
|
|
58787
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDashboardInverseEdge';
|
|
58788
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58789
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58790
|
+
id: Scalars['ID']['output'];
|
|
58791
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58792
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDashboardInverseUnion>;
|
|
58793
|
+
};
|
|
58794
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDashboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58795
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDashboardUnion = ExternalDashboard;
|
|
58796
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDataTableConnection = HasPageInfo & {
|
|
58797
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDataTableConnection';
|
|
58798
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalDataTableEdge>>>;
|
|
58799
|
+
pageInfo: PageInfo;
|
|
58800
|
+
};
|
|
58801
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDataTableEdge = {
|
|
58802
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDataTableEdge';
|
|
58803
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58804
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58805
|
+
id: Scalars['ID']['output'];
|
|
58806
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58807
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDataTableUnion>;
|
|
58808
|
+
};
|
|
58809
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDataTableInverseConnection = HasPageInfo & {
|
|
58810
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDataTableInverseConnection';
|
|
58811
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalDataTableInverseEdge>>>;
|
|
58812
|
+
pageInfo: PageInfo;
|
|
58813
|
+
};
|
|
58814
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDataTableInverseEdge = {
|
|
58815
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDataTableInverseEdge';
|
|
58816
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58817
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58818
|
+
id: Scalars['ID']['output'];
|
|
58819
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58820
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDataTableInverseUnion>;
|
|
58821
|
+
};
|
|
58822
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDataTableInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58823
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDataTableUnion = ExternalDataTable;
|
|
58824
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDealConnection = HasPageInfo & {
|
|
58825
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDealConnection';
|
|
58826
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalDealEdge>>>;
|
|
58827
|
+
pageInfo: PageInfo;
|
|
58828
|
+
};
|
|
58829
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDealEdge = {
|
|
58830
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDealEdge';
|
|
58831
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58832
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58833
|
+
id: Scalars['ID']['output'];
|
|
58834
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58835
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDealUnion>;
|
|
58836
|
+
};
|
|
58837
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDealInverseConnection = HasPageInfo & {
|
|
58838
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDealInverseConnection';
|
|
58839
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalDealInverseEdge>>>;
|
|
58840
|
+
pageInfo: PageInfo;
|
|
58841
|
+
};
|
|
58842
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDealInverseEdge = {
|
|
58843
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalDealInverseEdge';
|
|
58844
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58845
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58846
|
+
id: Scalars['ID']['output'];
|
|
58847
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58848
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalDealInverseUnion>;
|
|
58849
|
+
};
|
|
58850
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDealInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58851
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalDealUnion = ExternalDeal;
|
|
58852
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
58853
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceConnection';
|
|
58854
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceEdge>>>;
|
|
58855
|
+
pageInfo: PageInfo;
|
|
58856
|
+
};
|
|
58857
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceEdge = {
|
|
58858
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceEdge';
|
|
58859
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58860
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58861
|
+
id: Scalars['ID']['output'];
|
|
58862
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58863
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceUnion>;
|
|
58864
|
+
};
|
|
58865
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceInverseConnection = HasPageInfo & {
|
|
58866
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceInverseConnection';
|
|
58867
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceInverseEdge>>>;
|
|
58868
|
+
pageInfo: PageInfo;
|
|
58869
|
+
};
|
|
58870
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceInverseEdge = {
|
|
58871
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceInverseEdge';
|
|
58872
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58873
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58874
|
+
id: Scalars['ID']['output'];
|
|
58875
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58876
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceInverseUnion>;
|
|
58877
|
+
};
|
|
58878
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58879
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSoftwareServiceUnion = ExternalSoftwareService;
|
|
58880
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSpaceConnection = HasPageInfo & {
|
|
58881
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalSpaceConnection';
|
|
58882
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalSpaceEdge>>>;
|
|
58883
|
+
pageInfo: PageInfo;
|
|
58884
|
+
};
|
|
58885
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSpaceEdge = {
|
|
58886
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalSpaceEdge';
|
|
58887
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58888
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58889
|
+
id: Scalars['ID']['output'];
|
|
58890
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58891
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSpaceUnion>;
|
|
58892
|
+
};
|
|
58893
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSpaceInverseConnection = HasPageInfo & {
|
|
58894
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalSpaceInverseConnection';
|
|
58895
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalSpaceInverseEdge>>>;
|
|
58896
|
+
pageInfo: PageInfo;
|
|
58897
|
+
};
|
|
58898
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSpaceInverseEdge = {
|
|
58899
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalSpaceInverseEdge';
|
|
58900
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58901
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58902
|
+
id: Scalars['ID']['output'];
|
|
58903
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58904
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSpaceInverseUnion>;
|
|
58905
|
+
};
|
|
58906
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
58907
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalSpaceUnion = ExternalSpace;
|
|
57961
58908
|
export declare type GraphStoreSimplifiedUserUpdatedExternalTestConnection = HasPageInfo & {
|
|
57962
58909
|
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestConnection';
|
|
57963
58910
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalTestEdge>>>;
|
|
@@ -59265,6 +60212,24 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
59265
60212
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
59266
60213
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59267
60214
|
};
|
|
60215
|
+
export declare type GraphStoreUserCreatedExternalCustomerOrgSortInput = {
|
|
60216
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60217
|
+
};
|
|
60218
|
+
export declare type GraphStoreUserCreatedExternalDashboardSortInput = {
|
|
60219
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60220
|
+
};
|
|
60221
|
+
export declare type GraphStoreUserCreatedExternalDataTableSortInput = {
|
|
60222
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60223
|
+
};
|
|
60224
|
+
export declare type GraphStoreUserCreatedExternalDealSortInput = {
|
|
60225
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60226
|
+
};
|
|
60227
|
+
export declare type GraphStoreUserCreatedExternalSoftwareServiceSortInput = {
|
|
60228
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60229
|
+
};
|
|
60230
|
+
export declare type GraphStoreUserCreatedExternalSpaceSortInput = {
|
|
60231
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60232
|
+
};
|
|
59268
60233
|
export declare type GraphStoreUserCreatedExternalTestSortInput = {
|
|
59269
60234
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59270
60235
|
};
|
|
@@ -59400,6 +60365,24 @@ export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
|
59400
60365
|
export declare type GraphStoreUserOwnedDocumentSortInput = {
|
|
59401
60366
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59402
60367
|
};
|
|
60368
|
+
export declare type GraphStoreUserOwnedExternalCustomerOrgSortInput = {
|
|
60369
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60370
|
+
};
|
|
60371
|
+
export declare type GraphStoreUserOwnedExternalDashboardSortInput = {
|
|
60372
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60373
|
+
};
|
|
60374
|
+
export declare type GraphStoreUserOwnedExternalDataTableSortInput = {
|
|
60375
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60376
|
+
};
|
|
60377
|
+
export declare type GraphStoreUserOwnedExternalDealSortInput = {
|
|
60378
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60379
|
+
};
|
|
60380
|
+
export declare type GraphStoreUserOwnedExternalSoftwareServiceSortInput = {
|
|
60381
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60382
|
+
};
|
|
60383
|
+
export declare type GraphStoreUserOwnedExternalSpaceSortInput = {
|
|
60384
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60385
|
+
};
|
|
59403
60386
|
export declare type GraphStoreUserOwnedExternalTestSortInput = {
|
|
59404
60387
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59405
60388
|
};
|
|
@@ -59485,6 +60468,24 @@ export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
|
59485
60468
|
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
59486
60469
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59487
60470
|
};
|
|
60471
|
+
export declare type GraphStoreUserUpdatedExternalCustomerOrgSortInput = {
|
|
60472
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60473
|
+
};
|
|
60474
|
+
export declare type GraphStoreUserUpdatedExternalDashboardSortInput = {
|
|
60475
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60476
|
+
};
|
|
60477
|
+
export declare type GraphStoreUserUpdatedExternalDataTableSortInput = {
|
|
60478
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60479
|
+
};
|
|
60480
|
+
export declare type GraphStoreUserUpdatedExternalDealSortInput = {
|
|
60481
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60482
|
+
};
|
|
60483
|
+
export declare type GraphStoreUserUpdatedExternalSoftwareServiceSortInput = {
|
|
60484
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60485
|
+
};
|
|
60486
|
+
export declare type GraphStoreUserUpdatedExternalSpaceSortInput = {
|
|
60487
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60488
|
+
};
|
|
59488
60489
|
export declare type GraphStoreUserUpdatedExternalTestSortInput = {
|
|
59489
60490
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59490
60491
|
};
|
|
@@ -74233,7 +75234,7 @@ export declare type JiraMentionableEdge = {
|
|
|
74233
75234
|
export declare type JiraMergeIssueError = {
|
|
74234
75235
|
__typename?: 'JiraMergeIssueError';
|
|
74235
75236
|
message?: Maybe<Scalars['String']['output']>;
|
|
74236
|
-
step?: Maybe<
|
|
75237
|
+
step?: Maybe<JiraMergeSteps>;
|
|
74237
75238
|
};
|
|
74238
75239
|
export declare type JiraMergeIssuesInput = {
|
|
74239
75240
|
mergeAttachments: Scalars['Boolean']['input'];
|
|
@@ -74264,6 +75265,14 @@ export declare type JiraMergeIssuesPayload = Payload & {
|
|
|
74264
75265
|
progress?: Maybe<JiraMergeIssuesOperationProgress>;
|
|
74265
75266
|
success: Scalars['Boolean']['output'];
|
|
74266
75267
|
};
|
|
75268
|
+
export declare enum JiraMergeSteps {
|
|
75269
|
+
MergeAttachments = "MERGE_ATTACHMENTS",
|
|
75270
|
+
MergeComments = "MERGE_COMMENTS",
|
|
75271
|
+
MergeDescription = "MERGE_DESCRIPTION",
|
|
75272
|
+
MergeFields = "MERGE_FIELDS",
|
|
75273
|
+
MergeLinks = "MERGE_LINKS",
|
|
75274
|
+
MergeSubtasks = "MERGE_SUBTASKS"
|
|
75275
|
+
}
|
|
74267
75276
|
export declare type JiraMergeVersionInput = {
|
|
74268
75277
|
id: Scalars['ID']['input'];
|
|
74269
75278
|
targetVersionId: Scalars['ID']['input'];
|
|
@@ -88155,12 +89164,6 @@ export declare type LinksSelf = {
|
|
|
88155
89164
|
__typename?: 'LinksSelf';
|
|
88156
89165
|
self?: Maybe<Scalars['String']['output']>;
|
|
88157
89166
|
};
|
|
88158
|
-
export declare type ListStorageInput = {
|
|
88159
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88160
|
-
contextAri: Scalars['ID']['input'];
|
|
88161
|
-
environmentId: Scalars['ID']['input'];
|
|
88162
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88163
|
-
};
|
|
88164
89167
|
export declare type LocalStorage = {
|
|
88165
89168
|
__typename?: 'LocalStorage';
|
|
88166
89169
|
booleanValues: Array<Maybe<LocalStorageBooleanPair>>;
|
|
@@ -89232,6 +90235,10 @@ export declare type MarketplaceConsoleCreateAppSoftwareVersionMutationResponse =
|
|
|
89232
90235
|
success: Scalars['Boolean']['output'];
|
|
89233
90236
|
versionType: MarketplaceConsoleVersionType;
|
|
89234
90237
|
};
|
|
90238
|
+
export declare type MarketplaceConsoleCreateMakerInput = {
|
|
90239
|
+
developerSpaceListing: MarketplaceConsoleDevSpaceListingInput;
|
|
90240
|
+
makerName: Scalars['String']['input'];
|
|
90241
|
+
};
|
|
89235
90242
|
export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = MarketplaceConsoleCreatePrivateAppMutationResponse | MarketplaceConsoleDomainErrorResponse;
|
|
89236
90243
|
export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
|
|
89237
90244
|
__typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
|
|
@@ -89296,6 +90303,18 @@ export declare type MarketplaceConsoleDevSpaceContact = {
|
|
|
89296
90303
|
postCode?: Maybe<Scalars['String']['output']>;
|
|
89297
90304
|
state?: Maybe<Scalars['String']['output']>;
|
|
89298
90305
|
};
|
|
90306
|
+
export declare type MarketplaceConsoleDevSpaceContactInput = {
|
|
90307
|
+
addressLine1?: InputMaybe<Scalars['String']['input']>;
|
|
90308
|
+
addressLine2?: InputMaybe<Scalars['String']['input']>;
|
|
90309
|
+
city?: InputMaybe<Scalars['String']['input']>;
|
|
90310
|
+
country?: InputMaybe<Scalars['String']['input']>;
|
|
90311
|
+
email: Scalars['String']['input'];
|
|
90312
|
+
homePageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
90313
|
+
otherContactDetails?: InputMaybe<Scalars['String']['input']>;
|
|
90314
|
+
phone?: InputMaybe<Scalars['String']['input']>;
|
|
90315
|
+
postCode?: InputMaybe<Scalars['String']['input']>;
|
|
90316
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
90317
|
+
};
|
|
89299
90318
|
export declare type MarketplaceConsoleDevSpaceListing = {
|
|
89300
90319
|
__typename?: 'MarketplaceConsoleDevSpaceListing';
|
|
89301
90320
|
contactDetails: MarketplaceConsoleDevSpaceContact;
|
|
@@ -89304,6 +90323,13 @@ export declare type MarketplaceConsoleDevSpaceListing = {
|
|
|
89304
90323
|
supportDetails?: Maybe<MarketplaceConsoleDevSpaceSupportDetails>;
|
|
89305
90324
|
trustCenterUrl?: Maybe<Scalars['String']['output']>;
|
|
89306
90325
|
};
|
|
90326
|
+
export declare type MarketplaceConsoleDevSpaceListingInput = {
|
|
90327
|
+
contactDetails: MarketplaceConsoleDevSpaceContactInput;
|
|
90328
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
90329
|
+
displayLogoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
90330
|
+
supportDetails?: InputMaybe<MarketplaceConsoleDevSpaceSupportDetailsInput>;
|
|
90331
|
+
trustCenterUrl?: InputMaybe<Scalars['String']['input']>;
|
|
90332
|
+
};
|
|
89307
90333
|
export declare enum MarketplaceConsoleDevSpaceProgram {
|
|
89308
90334
|
AtlassianParter = "ATLASSIAN_PARTER",
|
|
89309
90335
|
FreeLicense = "FREE_LICENSE",
|
|
@@ -89326,12 +90352,24 @@ export declare type MarketplaceConsoleDevSpaceSupportAvailability = {
|
|
|
89326
90352
|
holidays?: Maybe<Array<MarketplaceConsoleDevSpaceSupportContactHoliday>>;
|
|
89327
90353
|
timezone: Scalars['String']['output'];
|
|
89328
90354
|
};
|
|
90355
|
+
export declare type MarketplaceConsoleDevSpaceSupportAvailabilityInput = {
|
|
90356
|
+
availableFrom: Scalars['String']['input'];
|
|
90357
|
+
availableTo: Scalars['String']['input'];
|
|
90358
|
+
days?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
90359
|
+
holidays?: InputMaybe<Array<MarketplaceConsoleDevSpaceSupportContactHolidayInput>>;
|
|
90360
|
+
timezone: Scalars['String']['input'];
|
|
90361
|
+
};
|
|
89329
90362
|
export declare type MarketplaceConsoleDevSpaceSupportContactHoliday = {
|
|
89330
90363
|
__typename?: 'MarketplaceConsoleDevSpaceSupportContactHoliday';
|
|
89331
90364
|
date: Scalars['String']['output'];
|
|
89332
90365
|
repeatAnnually: Scalars['Boolean']['output'];
|
|
89333
90366
|
title: Scalars['String']['output'];
|
|
89334
90367
|
};
|
|
90368
|
+
export declare type MarketplaceConsoleDevSpaceSupportContactHolidayInput = {
|
|
90369
|
+
date: Scalars['String']['input'];
|
|
90370
|
+
repeatAnnually: Scalars['Boolean']['input'];
|
|
90371
|
+
title: Scalars['String']['input'];
|
|
90372
|
+
};
|
|
89335
90373
|
export declare type MarketplaceConsoleDevSpaceSupportDetails = {
|
|
89336
90374
|
__typename?: 'MarketplaceConsoleDevSpaceSupportDetails';
|
|
89337
90375
|
availability?: Maybe<MarketplaceConsoleDevSpaceSupportAvailability>;
|
|
@@ -89343,6 +90381,16 @@ export declare type MarketplaceConsoleDevSpaceSupportDetails = {
|
|
|
89343
90381
|
targetResponseTimeInHrs?: Maybe<Scalars['Int']['output']>;
|
|
89344
90382
|
url?: Maybe<Scalars['String']['output']>;
|
|
89345
90383
|
};
|
|
90384
|
+
export declare type MarketplaceConsoleDevSpaceSupportDetailsInput = {
|
|
90385
|
+
availability?: InputMaybe<MarketplaceConsoleDevSpaceSupportAvailabilityInput>;
|
|
90386
|
+
contactEmail?: InputMaybe<Scalars['String']['input']>;
|
|
90387
|
+
contactName?: InputMaybe<Scalars['String']['input']>;
|
|
90388
|
+
contactPhone?: InputMaybe<Scalars['String']['input']>;
|
|
90389
|
+
emergencyContact?: InputMaybe<Scalars['String']['input']>;
|
|
90390
|
+
slaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
90391
|
+
targetResponseTimeInHrs?: InputMaybe<Scalars['Int']['input']>;
|
|
90392
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
90393
|
+
};
|
|
89346
90394
|
export declare enum MarketplaceConsoleDevSpaceTier {
|
|
89347
90395
|
Gold = "GOLD",
|
|
89348
90396
|
Platinum = "PLATINUM",
|
|
@@ -89772,12 +90820,14 @@ export declare type MarketplaceConsoleMakerContactsResponse = {
|
|
|
89772
90820
|
count: Scalars['Int']['output'];
|
|
89773
90821
|
makerContacts: Array<Maybe<MarketplaceConsoleMakerContact>>;
|
|
89774
90822
|
};
|
|
90823
|
+
export declare type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
89775
90824
|
export declare type MarketplaceConsoleMutationApi = {
|
|
89776
90825
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
89777
90826
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
89778
90827
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
89779
90828
|
createAppSoftwareVersion?: Maybe<MarketplaceConsoleCreateAppSoftwareVersionMutationOutput>;
|
|
89780
90829
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
90830
|
+
createMaker?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
89781
90831
|
createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
89782
90832
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
89783
90833
|
createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
|
|
@@ -89797,7 +90847,6 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
89797
90847
|
product: MarketplaceConsoleEditionsInput;
|
|
89798
90848
|
};
|
|
89799
90849
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
89800
|
-
appId: Scalars['String']['input'];
|
|
89801
90850
|
appSoftwareId: Scalars['String']['input'];
|
|
89802
90851
|
};
|
|
89803
90852
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareVersionArgs = {
|
|
@@ -89807,6 +90856,9 @@ export declare type MarketplaceConsoleMutationApiCreateAppSoftwareVersionArgs =
|
|
|
89807
90856
|
export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
89808
90857
|
product: MarketplaceConsoleEditionsInput;
|
|
89809
90858
|
};
|
|
90859
|
+
export declare type MarketplaceConsoleMutationApiCreateMakerArgs = {
|
|
90860
|
+
input: MarketplaceConsoleCreateMakerInput;
|
|
90861
|
+
};
|
|
89810
90862
|
export declare type MarketplaceConsoleMutationApiCreateMakerContactArgs = {
|
|
89811
90863
|
input: MarketplaceConsoleMakerContactCreateInput;
|
|
89812
90864
|
};
|
|
@@ -90149,7 +91201,6 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
90149
91201
|
validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
|
|
90150
91202
|
};
|
|
90151
91203
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
90152
|
-
appId: Scalars['ID']['input'];
|
|
90153
91204
|
appSoftwareId: Scalars['ID']['input'];
|
|
90154
91205
|
};
|
|
90155
91206
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionByAppIdArgs = {
|
|
@@ -91752,6 +92803,10 @@ export declare type MercuryChangeProposalCountByStatus = {
|
|
|
91752
92803
|
count?: Maybe<Scalars['Int']['output']>;
|
|
91753
92804
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
91754
92805
|
};
|
|
92806
|
+
export declare type MercuryChangeProposalCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
92807
|
+
__typename?: 'MercuryChangeProposalCustomFieldDefinitionScope';
|
|
92808
|
+
entityType: Scalars['String']['output'];
|
|
92809
|
+
};
|
|
91755
92810
|
export declare type MercuryChangeProposalEdge = {
|
|
91756
92811
|
__typename?: 'MercuryChangeProposalEdge';
|
|
91757
92812
|
cursor: Scalars['String']['output'];
|
|
@@ -91999,6 +93054,10 @@ export declare type MercuryCreateChangeProposalCommentPayload = Payload & {
|
|
|
91999
93054
|
errors?: Maybe<Array<MutationError>>;
|
|
92000
93055
|
success: Scalars['Boolean']['output'];
|
|
92001
93056
|
};
|
|
93057
|
+
export declare type MercuryCreateChangeProposalCustomFieldDefinitionInput = {
|
|
93058
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
93059
|
+
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
93060
|
+
};
|
|
92002
93061
|
export declare type MercuryCreateChangeProposalInput = {
|
|
92003
93062
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
92004
93063
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -93489,6 +94548,38 @@ export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
93489
94548
|
export declare type MercuryOriginalProjectStatus = {
|
|
93490
94549
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
93491
94550
|
};
|
|
94551
|
+
export declare enum MercuryPermission {
|
|
94552
|
+
ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
|
|
94553
|
+
CreateFocusArea = "CREATE_FOCUS_AREA",
|
|
94554
|
+
CreateFocusAreaGoalLink = "CREATE_FOCUS_AREA_GOAL_LINK",
|
|
94555
|
+
CreateFocusAreaLink = "CREATE_FOCUS_AREA_LINK",
|
|
94556
|
+
CreateFocusAreaUpdate = "CREATE_FOCUS_AREA_UPDATE",
|
|
94557
|
+
CreateFocusAreaWorkLink = "CREATE_FOCUS_AREA_WORK_LINK",
|
|
94558
|
+
CreateProposal = "CREATE_PROPOSAL",
|
|
94559
|
+
CreateStrategicEvent = "CREATE_STRATEGIC_EVENT",
|
|
94560
|
+
DeleteFocusArea = "DELETE_FOCUS_AREA",
|
|
94561
|
+
DeleteFocusAreaGoalLink = "DELETE_FOCUS_AREA_GOAL_LINK",
|
|
94562
|
+
DeleteFocusAreaLink = "DELETE_FOCUS_AREA_LINK",
|
|
94563
|
+
DeleteFocusAreaUpdate = "DELETE_FOCUS_AREA_UPDATE",
|
|
94564
|
+
DeleteFocusAreaView = "DELETE_FOCUS_AREA_VIEW",
|
|
94565
|
+
DeleteFocusAreaWorkLink = "DELETE_FOCUS_AREA_WORK_LINK",
|
|
94566
|
+
DeleteProposal = "DELETE_PROPOSAL",
|
|
94567
|
+
DeleteStrategicEvent = "DELETE_STRATEGIC_EVENT",
|
|
94568
|
+
EditFocusAreaAbout = "EDIT_FOCUS_AREA_ABOUT",
|
|
94569
|
+
EditFocusAreaName = "EDIT_FOCUS_AREA_NAME",
|
|
94570
|
+
EditFocusAreaOwner = "EDIT_FOCUS_AREA_OWNER",
|
|
94571
|
+
EditFocusAreaType = "EDIT_FOCUS_AREA_TYPE",
|
|
94572
|
+
EditProposal = "EDIT_PROPOSAL",
|
|
94573
|
+
EditProposalStatus = "EDIT_PROPOSAL_STATUS",
|
|
94574
|
+
EditStrategicEvent = "EDIT_STRATEGIC_EVENT",
|
|
94575
|
+
ExportFocusArea = "EXPORT_FOCUS_AREA",
|
|
94576
|
+
ExportFocusAreaView = "EXPORT_FOCUS_AREA_VIEW",
|
|
94577
|
+
Manage = "MANAGE",
|
|
94578
|
+
Read = "READ",
|
|
94579
|
+
ViewFocusAreaFund = "VIEW_FOCUS_AREA_FUND",
|
|
94580
|
+
ViewStrategicEvent = "VIEW_STRATEGIC_EVENT",
|
|
94581
|
+
Write = "WRITE"
|
|
94582
|
+
}
|
|
93492
94583
|
export declare type MercuryPortfolio = Node & {
|
|
93493
94584
|
__typename?: 'MercuryPortfolio';
|
|
93494
94585
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
@@ -94087,6 +95178,17 @@ export declare type MercuryRestrictedStrategicEventEdge = {
|
|
|
94087
95178
|
cursor: Scalars['String']['output'];
|
|
94088
95179
|
node?: Maybe<MercuryRestrictedStrategicEvent>;
|
|
94089
95180
|
};
|
|
95181
|
+
export declare type MercurySetChangeProposalCustomFieldInput = {
|
|
95182
|
+
changeProposalId: Scalars['ID']['input'];
|
|
95183
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
95184
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
95185
|
+
};
|
|
95186
|
+
export declare type MercurySetChangeProposalCustomFieldPayload = Payload & {
|
|
95187
|
+
__typename?: 'MercurySetChangeProposalCustomFieldPayload';
|
|
95188
|
+
customField?: Maybe<MercuryCustomField>;
|
|
95189
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95190
|
+
success: Scalars['Boolean']['output'];
|
|
95191
|
+
};
|
|
94090
95192
|
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
94091
95193
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
94092
95194
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
@@ -94228,11 +95330,13 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
94228
95330
|
addTagsToChangeProposal?: Maybe<MercuryAddTagsToProposalPayload>;
|
|
94229
95331
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
94230
95332
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
95333
|
+
createChangeProposalCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
94231
95334
|
createChangeProposalsView?: Maybe<MercuryCreateChangeProposalsViewSettingPayload>;
|
|
94232
95335
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
94233
95336
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
94234
95337
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
94235
95338
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
95339
|
+
deleteChangeProposalCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
94236
95340
|
deleteChangeProposalsView?: Maybe<MercuryDeleteChangeProposalsViewPayload>;
|
|
94237
95341
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
94238
95342
|
deleteStrategicEvent?: Maybe<MercuryDeleteStrategicEventPayload>;
|
|
@@ -94241,11 +95345,14 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
94241
95345
|
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
94242
95346
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
94243
95347
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
95348
|
+
setChangeProposalCustomFieldValue?: Maybe<MercurySetChangeProposalCustomFieldPayload>;
|
|
94244
95349
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
94245
95350
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
94246
95351
|
unlinkGoalsFromChangeProposal?: Maybe<MercuryUnlinkGoalsFromChangeProposalPayload>;
|
|
94247
95352
|
unrankChangeProposalInView?: Maybe<MercuryUnrankChangeProposalInViewPayload>;
|
|
94248
95353
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
95354
|
+
updateChangeProposalCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
95355
|
+
updateChangeProposalCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
94249
95356
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
94250
95357
|
updateChangeProposalFocusArea?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
94251
95358
|
updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
@@ -94274,6 +95381,9 @@ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs =
|
|
|
94274
95381
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCommentArgs = {
|
|
94275
95382
|
input: MercuryCreateChangeProposalCommentInput;
|
|
94276
95383
|
};
|
|
95384
|
+
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCustomFieldDefinitionArgs = {
|
|
95385
|
+
input: MercuryCreateChangeProposalCustomFieldDefinitionInput;
|
|
95386
|
+
};
|
|
94277
95387
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalsViewArgs = {
|
|
94278
95388
|
input: MercuryCreateChangeProposalsViewInput;
|
|
94279
95389
|
};
|
|
@@ -94289,6 +95399,9 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs =
|
|
|
94289
95399
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
94290
95400
|
input: MercuryDeleteChangeProposalCommentInput;
|
|
94291
95401
|
};
|
|
95402
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCustomFieldDefinitionArgs = {
|
|
95403
|
+
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
95404
|
+
};
|
|
94292
95405
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalsViewArgs = {
|
|
94293
95406
|
input: MercuryDeleteChangeProposalsViewInput;
|
|
94294
95407
|
};
|
|
@@ -94313,6 +95426,9 @@ export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
|
94313
95426
|
export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposalArgs = {
|
|
94314
95427
|
input: MercuryRemoveTagsFromProposalInput;
|
|
94315
95428
|
};
|
|
95429
|
+
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValueArgs = {
|
|
95430
|
+
input: MercurySetChangeProposalCustomFieldInput;
|
|
95431
|
+
};
|
|
94316
95432
|
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
94317
95433
|
input: MercuryTransitionChangeProposalStatusInput;
|
|
94318
95434
|
};
|
|
@@ -94328,6 +95444,12 @@ export declare type MercuryStrategicEventsMutationApiUnrankChangeProposalInViewA
|
|
|
94328
95444
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
|
|
94329
95445
|
input: MercuryUpdateChangeProposalCommentInput;
|
|
94330
95446
|
};
|
|
95447
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCustomFieldDefinitionDescriptionArgs = {
|
|
95448
|
+
input: MercuryUpdateCustomFieldDefinitionDescriptionInput;
|
|
95449
|
+
};
|
|
95450
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCustomFieldDefinitionNameArgs = {
|
|
95451
|
+
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
95452
|
+
};
|
|
94331
95453
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
|
|
94332
95454
|
input: MercuryUpdateChangeProposalDescriptionInput;
|
|
94333
95455
|
};
|
|
@@ -94974,6 +96096,7 @@ export declare type MercuryWorkspaceContext = {
|
|
|
94974
96096
|
activationId: Scalars['String']['output'];
|
|
94975
96097
|
aiEnabled: Scalars['Boolean']['output'];
|
|
94976
96098
|
cloudId: Scalars['String']['output'];
|
|
96099
|
+
userPermissions?: Maybe<Array<MercuryPermission>>;
|
|
94977
96100
|
};
|
|
94978
96101
|
export declare type MigrateComponentTypeInput = {
|
|
94979
96102
|
destinationTypeId: Scalars['ID']['input'];
|
|
@@ -95390,6 +96513,7 @@ export declare type Mutation = {
|
|
|
95390
96513
|
confluence_updateCalendarSandboxEventTypeReminder?: Maybe<ConfluenceUpdateCalendarSandboxEventTypeReminderPayload>;
|
|
95391
96514
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
95392
96515
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
96516
|
+
confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
|
|
95393
96517
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
95394
96518
|
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
95395
96519
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
@@ -95920,6 +97044,7 @@ export declare type Mutation = {
|
|
|
95920
97044
|
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95921
97045
|
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95922
97046
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
97047
|
+
stakeholderComms_getPreSignedUrl?: Maybe<StakeholderCommsPreSignedUrlResponse>;
|
|
95923
97048
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
95924
97049
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
95925
97050
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -95932,6 +97057,7 @@ export declare type Mutation = {
|
|
|
95932
97057
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
95933
97058
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
95934
97059
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
97060
|
+
stakeholderComms_validateSubscriberToken?: Maybe<Scalars['Boolean']['output']>;
|
|
95935
97061
|
startSprint?: Maybe<SprintResponse>;
|
|
95936
97062
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
95937
97063
|
team?: Maybe<TeamMutation>;
|
|
@@ -96760,6 +97886,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
|
96760
97886
|
cloudId: Scalars['ID']['input'];
|
|
96761
97887
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
96762
97888
|
};
|
|
97889
|
+
export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
|
|
97890
|
+
cloudId: Scalars['ID']['input'];
|
|
97891
|
+
input: ConfluenceUpdateContentDirectRestrictionsInput;
|
|
97892
|
+
};
|
|
96763
97893
|
export declare type MutationConfluence_UpdateContentModeArgs = {
|
|
96764
97894
|
cloudId: Scalars['ID']['input'];
|
|
96765
97895
|
input: ConfluenceUpdateContentModeInput;
|
|
@@ -98457,6 +99587,9 @@ export declare type MutationStakeholderComms_DeletePageArgs = {
|
|
|
98457
99587
|
export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
|
|
98458
99588
|
id: Scalars['String']['input'];
|
|
98459
99589
|
};
|
|
99590
|
+
export declare type MutationStakeholderComms_GetPreSignedUrlArgs = {
|
|
99591
|
+
input: StakeholderCommsPreSignedUrlInput;
|
|
99592
|
+
};
|
|
98460
99593
|
export declare type MutationStakeholderComms_PublishPageArgs = {
|
|
98461
99594
|
draftPageId: Scalars['String']['input'];
|
|
98462
99595
|
};
|
|
@@ -98495,6 +99628,9 @@ export declare type MutationStakeholderComms_UpdateStakeholderGroupArgs = {
|
|
|
98495
99628
|
stakeholderGroupInput: StakeholderCommsUpdateStakeholderGroupInput;
|
|
98496
99629
|
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
98497
99630
|
};
|
|
99631
|
+
export declare type MutationStakeholderComms_ValidateSubscriberTokenArgs = {
|
|
99632
|
+
token: Scalars['String']['input'];
|
|
99633
|
+
};
|
|
98498
99634
|
export declare type MutationStartSprintArgs = {
|
|
98499
99635
|
input?: InputMaybe<StartSprintInput>;
|
|
98500
99636
|
};
|
|
@@ -101649,6 +102785,7 @@ export declare type Query = {
|
|
|
101649
102785
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
101650
102786
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
101651
102787
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
102788
|
+
admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
101652
102789
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
101653
102790
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
101654
102791
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -102462,6 +103599,7 @@ export declare type Query = {
|
|
|
102462
103599
|
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
102463
103600
|
stakeholderComms_listIncidentsV2?: Maybe<StakeholderCommsIncidentWithUpdatesConnection>;
|
|
102464
103601
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
103602
|
+
stakeholderComms_listSubscribers?: Maybe<StakeholderCommsListSubscriberResponse>;
|
|
102465
103603
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
102466
103604
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
102467
103605
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
@@ -102522,6 +103660,7 @@ export declare type Query = {
|
|
|
102522
103660
|
userWithContentRestrictions?: Maybe<UserWithRestrictions>;
|
|
102523
103661
|
users?: Maybe<Array<User>>;
|
|
102524
103662
|
usersWithContentRestrictions?: Maybe<Array<Maybe<UserWithRestrictions>>>;
|
|
103663
|
+
uts_usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
102525
103664
|
validateConvertPageToLiveEdit?: Maybe<ConvertPageToLiveEditValidationResult>;
|
|
102526
103665
|
validatePageCopy?: Maybe<ValidatePageCopyPayload>;
|
|
102527
103666
|
validatePagePublish?: Maybe<PageValidationResult>;
|
|
@@ -102559,6 +103698,14 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
102559
103698
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
102560
103699
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
102561
103700
|
};
|
|
103701
|
+
export declare type QueryAdmin_AuditAuditLogEventsArgs = {
|
|
103702
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103703
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
103704
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103705
|
+
input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
|
|
103706
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
103707
|
+
orgId: Scalars['ID']['input'];
|
|
103708
|
+
};
|
|
102562
103709
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
102563
103710
|
input: AdminLicenseInput;
|
|
102564
103711
|
orgId: Scalars['ID']['input'];
|
|
@@ -105972,6 +107119,9 @@ export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
|
105972
107119
|
order?: InputMaybe<StakeholderCommsStakeholderConnectionOrder>;
|
|
105973
107120
|
search?: InputMaybe<StakeholderCommsStakeholderConnectionSearch>;
|
|
105974
107121
|
};
|
|
107122
|
+
export declare type QueryStakeholderComms_ListSubscribersArgs = {
|
|
107123
|
+
listSubscribersInput: StakeholderCommsListSubscriberInput;
|
|
107124
|
+
};
|
|
105975
107125
|
export declare type QueryStakeholderComms_UnifiedSearchArgs = {
|
|
105976
107126
|
input: StakeholderCommsUnifiedSearchInput;
|
|
105977
107127
|
};
|
|
@@ -106195,6 +107345,10 @@ export declare type QueryUsersWithContentRestrictionsArgs = {
|
|
|
106195
107345
|
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
106196
107346
|
contentId: Scalars['ID']['input'];
|
|
106197
107347
|
};
|
|
107348
|
+
export declare type QueryUts_UsageAlertsArgs = {
|
|
107349
|
+
state?: InputMaybe<UtsAlertState>;
|
|
107350
|
+
usageIdentifier: Scalars['ID']['input'];
|
|
107351
|
+
};
|
|
106198
107352
|
export declare type QueryValidateConvertPageToLiveEditArgs = {
|
|
106199
107353
|
input: ValidateConvertPageToLiveEditInput;
|
|
106200
107354
|
};
|
|
@@ -127512,6 +128666,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
127512
128666
|
JiraDataDiscoveryPrivateKey = "JIRA_DATA_DISCOVERY_PRIVATE_KEY",
|
|
127513
128667
|
JiraDataDiscoveryUsSsn = "JIRA_DATA_DISCOVERY_US_SSN",
|
|
127514
128668
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
128669
|
+
JiraSuspiciousSearch = "JIRA_SUSPICIOUS_SEARCH",
|
|
127515
128670
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
127516
128671
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
127517
128672
|
MobileScreenLock = "MOBILE_SCREEN_LOCK",
|
|
@@ -130749,6 +131904,15 @@ export declare type StakeholderCommsListIncidentTemplateResponse = {
|
|
|
130749
131904
|
error?: Maybe<Scalars['String']['output']>;
|
|
130750
131905
|
incidentTemplates?: Maybe<Array<Maybe<StakeholderCommsIncidentTemplate>>>;
|
|
130751
131906
|
};
|
|
131907
|
+
export declare type StakeholderCommsListSubscriberInput = {
|
|
131908
|
+
itemId: Scalars['String']['input'];
|
|
131909
|
+
itemType: StakeholderCommsSubscriberItemType;
|
|
131910
|
+
};
|
|
131911
|
+
export declare type StakeholderCommsListSubscriberResponse = {
|
|
131912
|
+
__typename?: 'StakeholderCommsListSubscriberResponse';
|
|
131913
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
131914
|
+
subscribers?: Maybe<Array<Maybe<StakeholderCommsSubscriber>>>;
|
|
131915
|
+
};
|
|
130752
131916
|
export declare type StakeholderCommsMediaToken = {
|
|
130753
131917
|
__typename?: 'StakeholderCommsMediaToken';
|
|
130754
131918
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -131068,6 +132232,16 @@ export declare type StakeholderCommsPaginatedStakeholderResults = {
|
|
|
131068
132232
|
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
131069
132233
|
results?: Maybe<Array<Maybe<StakeholderCommsStakeholder>>>;
|
|
131070
132234
|
};
|
|
132235
|
+
export declare type StakeholderCommsPreSignedUrlInput = {
|
|
132236
|
+
filename: Scalars['String']['input'];
|
|
132237
|
+
filetype: Scalars['String']['input'];
|
|
132238
|
+
};
|
|
132239
|
+
export declare type StakeholderCommsPreSignedUrlResponse = {
|
|
132240
|
+
__typename?: 'StakeholderCommsPreSignedUrlResponse';
|
|
132241
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
132242
|
+
filename?: Maybe<Scalars['String']['output']>;
|
|
132243
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
132244
|
+
};
|
|
131071
132245
|
export declare type StakeholderCommsPreferences = {
|
|
131072
132246
|
__typename?: 'StakeholderCommsPreferences';
|
|
131073
132247
|
email?: Maybe<StakeholderCommsModePreference>;
|
|
@@ -133402,6 +134576,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
133402
134576
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
133403
134577
|
canEditUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
133404
134578
|
canPostUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
134579
|
+
capabilities?: Maybe<TownsquareGoalCapabilities>;
|
|
133405
134580
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
133406
134581
|
creationDate: Scalars['DateTime']['output'];
|
|
133407
134582
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -133508,6 +134683,41 @@ export declare type TownsquareGoalWatchersArgs = {
|
|
|
133508
134683
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
133509
134684
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133510
134685
|
};
|
|
134686
|
+
export declare type TownsquareGoalCapabilities = {
|
|
134687
|
+
__typename?: 'TownsquareGoalCapabilities';
|
|
134688
|
+
canAddJiraAlignItems?: Maybe<Scalars['Boolean']['output']>;
|
|
134689
|
+
canAddLinkedFocusAreas?: Maybe<Scalars['Boolean']['output']>;
|
|
134690
|
+
canAddLinkedGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
134691
|
+
canAddLinkedProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
134692
|
+
canAddLinkedWorkItems?: Maybe<Scalars['Boolean']['output']>;
|
|
134693
|
+
canAddTags?: Maybe<Scalars['Boolean']['output']>;
|
|
134694
|
+
canAddTeams?: Maybe<Scalars['Boolean']['output']>;
|
|
134695
|
+
canAddWatchers?: Maybe<Scalars['Boolean']['output']>;
|
|
134696
|
+
canArchiveGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
134697
|
+
canCommentOnGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
134698
|
+
canCommentOnUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
134699
|
+
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
134700
|
+
canDeleteUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
134701
|
+
canEditCustomFields?: Maybe<Scalars['Boolean']['output']>;
|
|
134702
|
+
canEditMetadata?: Maybe<Scalars['Boolean']['output']>;
|
|
134703
|
+
canEditMetrics?: Maybe<Scalars['Boolean']['output']>;
|
|
134704
|
+
canEditStartDate?: Maybe<Scalars['Boolean']['output']>;
|
|
134705
|
+
canEditStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
134706
|
+
canEditTargetDate?: Maybe<Scalars['Boolean']['output']>;
|
|
134707
|
+
canEditUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
134708
|
+
canManageAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
134709
|
+
canManageChannels?: Maybe<Scalars['Boolean']['output']>;
|
|
134710
|
+
canManageOwnership?: Maybe<Scalars['Boolean']['output']>;
|
|
134711
|
+
canRemoveJiraAlignItems?: Maybe<Scalars['Boolean']['output']>;
|
|
134712
|
+
canRemoveLinkedFocusAreas?: Maybe<Scalars['Boolean']['output']>;
|
|
134713
|
+
canRemoveLinkedGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
134714
|
+
canRemoveLinkedProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
134715
|
+
canRemoveLinkedWorkItems?: Maybe<Scalars['Boolean']['output']>;
|
|
134716
|
+
canRemoveTags?: Maybe<Scalars['Boolean']['output']>;
|
|
134717
|
+
canRemoveTeams?: Maybe<Scalars['Boolean']['output']>;
|
|
134718
|
+
canRemoveWatchers?: Maybe<Scalars['Boolean']['output']>;
|
|
134719
|
+
canWatchGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
134720
|
+
};
|
|
133511
134721
|
export declare type TownsquareGoalConnection = {
|
|
133512
134722
|
__typename?: 'TownsquareGoalConnection';
|
|
133513
134723
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
@@ -133949,6 +135159,7 @@ export declare type TownsquareGoalsEditRiskPayload = {
|
|
|
133949
135159
|
};
|
|
133950
135160
|
export declare type TownsquareGoalsEditUpdateInput = {
|
|
133951
135161
|
goalUpdateId: Scalars['ID']['input'];
|
|
135162
|
+
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
133952
135163
|
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateEditInput>>>;
|
|
133953
135164
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
133954
135165
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -137813,6 +139024,7 @@ export declare type TrelloMutationApi = {
|
|
|
137813
139024
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
137814
139025
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
137815
139026
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
139027
|
+
rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
|
|
137816
139028
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
137817
139029
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
137818
139030
|
removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
|
|
@@ -137915,6 +139127,9 @@ export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
|
137915
139127
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
137916
139128
|
input: TrelloPinCardInput;
|
|
137917
139129
|
};
|
|
139130
|
+
export declare type TrelloMutationApiRejectProposedEventsArgs = {
|
|
139131
|
+
input: TrelloRejectProposedEventsInput;
|
|
139132
|
+
};
|
|
137918
139133
|
export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
137919
139134
|
input: TrelloRemoveBoardStarInput;
|
|
137920
139135
|
};
|
|
@@ -138544,6 +139759,10 @@ export declare type TrelloProposedEventCardEdge = {
|
|
|
138544
139759
|
cursor: Scalars['String']['output'];
|
|
138545
139760
|
node?: Maybe<TrelloBaseCard>;
|
|
138546
139761
|
};
|
|
139762
|
+
export declare type TrelloProposedEventDeleted = {
|
|
139763
|
+
__typename?: 'TrelloProposedEventDeleted';
|
|
139764
|
+
objectId: Scalars['ID']['output'];
|
|
139765
|
+
};
|
|
138547
139766
|
export declare type TrelloProposedSmartSchedule = {
|
|
138548
139767
|
__typename?: 'TrelloProposedSmartSchedule';
|
|
138549
139768
|
events?: Maybe<Array<TrelloProposedSmartScheduleEvent>>;
|
|
@@ -138767,6 +139986,15 @@ export declare type TrelloReactionLimits = {
|
|
|
138767
139986
|
perAction?: Maybe<TrelloLimitProps>;
|
|
138768
139987
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
138769
139988
|
};
|
|
139989
|
+
export declare type TrelloRejectProposedEventsInput = {
|
|
139990
|
+
proposedEventIds: Array<Scalars['ID']['input']>;
|
|
139991
|
+
};
|
|
139992
|
+
export declare type TrelloRejectProposedEventsPayload = Payload & {
|
|
139993
|
+
__typename?: 'TrelloRejectProposedEventsPayload';
|
|
139994
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139995
|
+
proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
139996
|
+
success: Scalars['Boolean']['output'];
|
|
139997
|
+
};
|
|
138770
139998
|
export declare type TrelloRemoveBoardStarInput = {
|
|
138771
139999
|
boardStarId: Scalars['ID']['input'];
|
|
138772
140000
|
userId: Scalars['ID']['input'];
|
|
@@ -141932,6 +143160,42 @@ export declare type UsersWithEffectiveRestrictions = {
|
|
|
141932
143160
|
permissionsViaGroups: PermissionsViaGroups;
|
|
141933
143161
|
user?: Maybe<UserWithRestrictions>;
|
|
141934
143162
|
};
|
|
143163
|
+
export declare type UtsAlertDetector = {
|
|
143164
|
+
__typename?: 'UtsAlertDetector';
|
|
143165
|
+
consumerKey?: Maybe<Scalars['String']['output']>;
|
|
143166
|
+
consumerKeyType?: Maybe<Scalars['String']['output']>;
|
|
143167
|
+
expression?: Maybe<Scalars['String']['output']>;
|
|
143168
|
+
formula?: Maybe<Scalars['String']['output']>;
|
|
143169
|
+
id: Scalars['ID']['output'];
|
|
143170
|
+
retriggerPolicy?: Maybe<UtsAlertRetriggerPolicy>;
|
|
143171
|
+
usageKey: Scalars['String']['output'];
|
|
143172
|
+
};
|
|
143173
|
+
export declare enum UtsAlertRetriggerPolicy {
|
|
143174
|
+
Always = "ALWAYS",
|
|
143175
|
+
Once = "ONCE"
|
|
143176
|
+
}
|
|
143177
|
+
export declare enum UtsAlertState {
|
|
143178
|
+
Closed = "CLOSED",
|
|
143179
|
+
Open = "OPEN"
|
|
143180
|
+
}
|
|
143181
|
+
export declare type UtsAlertThreshold = {
|
|
143182
|
+
__typename?: 'UtsAlertThreshold';
|
|
143183
|
+
usageIdentifier: Scalars['String']['output'];
|
|
143184
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
143185
|
+
};
|
|
143186
|
+
export declare type UtsUsageAlert = {
|
|
143187
|
+
__typename?: 'UtsUsageAlert';
|
|
143188
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
143189
|
+
detector?: Maybe<UtsAlertDetector>;
|
|
143190
|
+
id: Scalars['ID']['output'];
|
|
143191
|
+
initialValue?: Maybe<Scalars['Float']['output']>;
|
|
143192
|
+
lastUpdatedValue?: Maybe<Scalars['Float']['output']>;
|
|
143193
|
+
state?: Maybe<UtsAlertState>;
|
|
143194
|
+
threshold?: Maybe<UtsAlertThreshold>;
|
|
143195
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
143196
|
+
usageIdentifier: Scalars['String']['output'];
|
|
143197
|
+
version?: Maybe<Scalars['Float']['output']>;
|
|
143198
|
+
};
|
|
141935
143199
|
export declare type ValidateConvertPageToLiveEditInput = {
|
|
141936
143200
|
adf: Scalars['String']['input'];
|
|
141937
143201
|
contentId: Scalars['ID']['input'];
|