@forge/cli-shared 8.11.1-next.2-experimental-e14a289 → 8.11.1-next.3-experimental-a8bc05b
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 +12 -3
- package/out/graphql/graphql-types.d.ts +242 -59
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +2 -0
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +4 -2
- package/out/ui/text.d.ts +2 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -8
- package/package.json +2 -2
|
@@ -1538,9 +1538,9 @@ export declare type AdminAccessUrlCreationResponsePayload = Payload & {
|
|
|
1538
1538
|
errors?: Maybe<Array<MutationError>>;
|
|
1539
1539
|
success: Scalars['Boolean']['output'];
|
|
1540
1540
|
};
|
|
1541
|
-
export declare type AdminAccessUrlDeletionResponsePayload =
|
|
1541
|
+
export declare type AdminAccessUrlDeletionResponsePayload = {
|
|
1542
1542
|
__typename?: 'AdminAccessUrlDeletionResponsePayload';
|
|
1543
|
-
errors?: Maybe<Array<
|
|
1543
|
+
errors?: Maybe<Array<AdminTempMutationError>>;
|
|
1544
1544
|
success: Scalars['Boolean']['output'];
|
|
1545
1545
|
};
|
|
1546
1546
|
export declare type AdminAccessUrlEdge = {
|
|
@@ -1642,16 +1642,27 @@ export declare type AdminAssignRoleResponsePayload = Payload & {
|
|
|
1642
1642
|
errors?: Maybe<Array<MutationError>>;
|
|
1643
1643
|
success: Scalars['Boolean']['output'];
|
|
1644
1644
|
};
|
|
1645
|
+
export declare type AdminAuditLogDetailedEventLocation = {
|
|
1646
|
+
__typename?: 'AdminAuditLogDetailedEventLocation';
|
|
1647
|
+
cityName?: Maybe<Scalars['String']['output']>;
|
|
1648
|
+
countryName?: Maybe<Scalars['String']['output']>;
|
|
1649
|
+
ip: Scalars['String']['output'];
|
|
1650
|
+
regionName?: Maybe<Scalars['String']['output']>;
|
|
1651
|
+
};
|
|
1645
1652
|
export declare type AdminAuditLogEvent = {
|
|
1646
1653
|
__typename?: 'AdminAuditLogEvent';
|
|
1647
1654
|
action: Scalars['String']['output'];
|
|
1648
1655
|
containers?: Maybe<Array<Maybe<AdminAuditLogEventContainer>>>;
|
|
1649
1656
|
context?: Maybe<Array<Maybe<AdminAuditLogEventContext>>>;
|
|
1650
1657
|
correlationId?: Maybe<Scalars['String']['output']>;
|
|
1651
|
-
location?: Maybe<
|
|
1658
|
+
location?: Maybe<AdminAuditLogDetailedEventLocation>;
|
|
1652
1659
|
message?: Maybe<AdminAuditLogEventMessage>;
|
|
1653
1660
|
time: Scalars['String']['output'];
|
|
1654
1661
|
};
|
|
1662
|
+
export declare type AdminAuditLogEventAction = {
|
|
1663
|
+
__typename?: 'AdminAuditLogEventAction';
|
|
1664
|
+
name: Scalars['String']['output'];
|
|
1665
|
+
};
|
|
1655
1666
|
export declare type AdminAuditLogEventConnection = {
|
|
1656
1667
|
__typename?: 'AdminAuditLogEventConnection';
|
|
1657
1668
|
edges?: Maybe<Array<AdminAuditLogEventEdge>>;
|
|
@@ -1674,13 +1685,37 @@ export declare type AdminAuditLogEventEdge = {
|
|
|
1674
1685
|
cursor: Scalars['String']['output'];
|
|
1675
1686
|
node: AdminAuditLogEvent;
|
|
1676
1687
|
};
|
|
1688
|
+
export declare type AdminAuditLogEventExport = Payload & {
|
|
1689
|
+
__typename?: 'AdminAuditLogEventExport';
|
|
1690
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1691
|
+
success: Scalars['Boolean']['output'];
|
|
1692
|
+
};
|
|
1693
|
+
export declare type AdminAuditLogEventExportInput = {
|
|
1694
|
+
action?: InputMaybe<Scalars['String']['input']>;
|
|
1695
|
+
actor?: InputMaybe<Scalars['String']['input']>;
|
|
1696
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
1697
|
+
ip?: InputMaybe<Scalars['String']['input']>;
|
|
1698
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
1699
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
1700
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
1701
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
1702
|
+
};
|
|
1677
1703
|
export declare type AdminAuditLogEventLocation = {
|
|
1678
1704
|
__typename?: 'AdminAuditLogEventLocation';
|
|
1679
|
-
cityName
|
|
1680
|
-
countryName
|
|
1681
|
-
ip: Scalars['String']['output'];
|
|
1705
|
+
cityName: Scalars['String']['output'];
|
|
1706
|
+
countryName: Scalars['String']['output'];
|
|
1682
1707
|
regionName?: Maybe<Scalars['String']['output']>;
|
|
1683
1708
|
};
|
|
1709
|
+
export declare type AdminAuditLogEventLocationConnection = {
|
|
1710
|
+
__typename?: 'AdminAuditLogEventLocationConnection';
|
|
1711
|
+
edges?: Maybe<Array<AdminAuditLogEventLocationEdge>>;
|
|
1712
|
+
pageInfo: PageInfo;
|
|
1713
|
+
};
|
|
1714
|
+
export declare type AdminAuditLogEventLocationEdge = {
|
|
1715
|
+
__typename?: 'AdminAuditLogEventLocationEdge';
|
|
1716
|
+
cursor: Scalars['String']['output'];
|
|
1717
|
+
node: AdminAuditLogEventLocation;
|
|
1718
|
+
};
|
|
1684
1719
|
export declare type AdminAuditLogEventMessage = {
|
|
1685
1720
|
__typename?: 'AdminAuditLogEventMessage';
|
|
1686
1721
|
content: Scalars['String']['output'];
|
|
@@ -1695,6 +1730,21 @@ export declare type AdminAuditLogFeature = {
|
|
|
1695
1730
|
allInclusive?: Maybe<Scalars['Boolean']['output']>;
|
|
1696
1731
|
events?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1697
1732
|
};
|
|
1733
|
+
export declare type AdminAuditLogGroupEventAction = {
|
|
1734
|
+
__typename?: 'AdminAuditLogGroupEventAction';
|
|
1735
|
+
eventActions: Array<AdminAuditLogEventAction>;
|
|
1736
|
+
name: Scalars['String']['output'];
|
|
1737
|
+
};
|
|
1738
|
+
export declare type AdminAuditLogGroupEventActionConnection = {
|
|
1739
|
+
__typename?: 'AdminAuditLogGroupEventActionConnection';
|
|
1740
|
+
edges?: Maybe<Array<AdminAuditLogGroupEventActionEdge>>;
|
|
1741
|
+
pageInfo: PageInfo;
|
|
1742
|
+
};
|
|
1743
|
+
export declare type AdminAuditLogGroupEventActionEdge = {
|
|
1744
|
+
__typename?: 'AdminAuditLogGroupEventActionEdge';
|
|
1745
|
+
cursor: Scalars['String']['output'];
|
|
1746
|
+
node: AdminAuditLogGroupEventAction;
|
|
1747
|
+
};
|
|
1698
1748
|
export declare type AdminByok = {
|
|
1699
1749
|
__typename?: 'AdminByok';
|
|
1700
1750
|
config: Scalars['String']['output'];
|
|
@@ -1825,26 +1875,6 @@ export declare type AdminErrorExtension = {
|
|
|
1825
1875
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
1826
1876
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
1827
1877
|
};
|
|
1828
|
-
export declare type AdminEventAction = {
|
|
1829
|
-
__typename?: 'AdminEventAction';
|
|
1830
|
-
name: Scalars['String']['output'];
|
|
1831
|
-
};
|
|
1832
|
-
export declare type AdminEventLocation = {
|
|
1833
|
-
__typename?: 'AdminEventLocation';
|
|
1834
|
-
cityName: Scalars['String']['output'];
|
|
1835
|
-
countryName: Scalars['String']['output'];
|
|
1836
|
-
regionName?: Maybe<Scalars['String']['output']>;
|
|
1837
|
-
};
|
|
1838
|
-
export declare type AdminEventLocationConnection = {
|
|
1839
|
-
__typename?: 'AdminEventLocationConnection';
|
|
1840
|
-
edges?: Maybe<Array<AdminEventLocationEdge>>;
|
|
1841
|
-
pageInfo: PageInfo;
|
|
1842
|
-
};
|
|
1843
|
-
export declare type AdminEventLocationEdge = {
|
|
1844
|
-
__typename?: 'AdminEventLocationEdge';
|
|
1845
|
-
cursor: Scalars['String']['output'];
|
|
1846
|
-
node: AdminEventLocation;
|
|
1847
|
-
};
|
|
1848
1878
|
export declare type AdminExternalCollaboratorFeature = {
|
|
1849
1879
|
__typename?: 'AdminExternalCollaboratorFeature';
|
|
1850
1880
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1916,21 +1946,6 @@ export declare type AdminGroupEdge = {
|
|
|
1916
1946
|
cursor: Scalars['String']['output'];
|
|
1917
1947
|
node?: Maybe<AdminGroup>;
|
|
1918
1948
|
};
|
|
1919
|
-
export declare type AdminGroupEventAction = {
|
|
1920
|
-
__typename?: 'AdminGroupEventAction';
|
|
1921
|
-
eventActions: Array<AdminEventAction>;
|
|
1922
|
-
name: Scalars['String']['output'];
|
|
1923
|
-
};
|
|
1924
|
-
export declare type AdminGroupEventActionConnection = {
|
|
1925
|
-
__typename?: 'AdminGroupEventActionConnection';
|
|
1926
|
-
edges?: Maybe<Array<AdminGroupEventActionEdge>>;
|
|
1927
|
-
pageInfo: PageInfo;
|
|
1928
|
-
};
|
|
1929
|
-
export declare type AdminGroupEventActionEdge = {
|
|
1930
|
-
__typename?: 'AdminGroupEventActionEdge';
|
|
1931
|
-
cursor: Scalars['String']['output'];
|
|
1932
|
-
node: AdminGroupEventAction;
|
|
1933
|
-
};
|
|
1934
1949
|
export declare type AdminGroupStatsQueryInput = {
|
|
1935
1950
|
includeResources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1936
1951
|
includeUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -2343,6 +2358,17 @@ export declare type AdminStringKeyValuePair = {
|
|
|
2343
2358
|
key: Scalars['String']['output'];
|
|
2344
2359
|
value: Scalars['String']['output'];
|
|
2345
2360
|
};
|
|
2361
|
+
export declare type AdminTempMutationError = {
|
|
2362
|
+
__typename?: 'AdminTempMutationError';
|
|
2363
|
+
extensions?: Maybe<AdminTempMutationErrorExtension>;
|
|
2364
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
2365
|
+
};
|
|
2366
|
+
export declare type AdminTempMutationErrorExtension = {
|
|
2367
|
+
__typename?: 'AdminTempMutationErrorExtension';
|
|
2368
|
+
downstreamService?: Maybe<Scalars['String']['output']>;
|
|
2369
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
2370
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
2371
|
+
};
|
|
2346
2372
|
export declare enum AdminTimeSearchType {
|
|
2347
2373
|
BetweenAbsolute = "BETWEEN_ABSOLUTE",
|
|
2348
2374
|
BetweenRelative = "BETWEEN_RELATIVE",
|
|
@@ -10215,6 +10241,7 @@ export declare type ClassificationLevelDetails = {
|
|
|
10215
10241
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
10216
10242
|
classificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
10217
10243
|
featureEnabled: Scalars['Boolean']['output'];
|
|
10244
|
+
isReclassificationPermitted: Scalars['Boolean']['output'];
|
|
10218
10245
|
source?: Maybe<ClassificationLevelSource>;
|
|
10219
10246
|
};
|
|
10220
10247
|
export declare enum ClassificationLevelSource {
|
|
@@ -31356,6 +31383,7 @@ export declare type ExternalCue = {
|
|
|
31356
31383
|
export declare type ExternalCustomerOrg = Node & {
|
|
31357
31384
|
__typename?: 'ExternalCustomerOrg';
|
|
31358
31385
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
31386
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
31359
31387
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
31360
31388
|
contacts?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31361
31389
|
container?: Maybe<ExternalEntity>;
|
|
@@ -31366,8 +31394,10 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
31366
31394
|
createdBy?: Maybe<ExternalUser>;
|
|
31367
31395
|
customerOrgLastActivity?: Maybe<ExternalCustomerOrgLastActivity>;
|
|
31368
31396
|
customerOrgLifeTimeValue?: Maybe<ExternalCustomerOrgLifeTimeValue>;
|
|
31397
|
+
customerSegment?: Maybe<Scalars['String']['output']>;
|
|
31369
31398
|
description?: Maybe<Scalars['String']['output']>;
|
|
31370
31399
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
31400
|
+
entitlements?: Maybe<Array<Maybe<ExternalCustomerOrgEntitlement>>>;
|
|
31371
31401
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
31372
31402
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
31373
31403
|
id: Scalars['ID']['output'];
|
|
@@ -31379,6 +31409,7 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
31379
31409
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31380
31410
|
parent?: Maybe<ExternalEntity>;
|
|
31381
31411
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
31412
|
+
primaryContactUser?: Maybe<ExternalUser>;
|
|
31382
31413
|
provider?: Maybe<ExternalProvider>;
|
|
31383
31414
|
status?: Maybe<Scalars['String']['output']>;
|
|
31384
31415
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
@@ -31411,6 +31442,18 @@ export declare type ExternalCustomerOrgCategory = Node & {
|
|
|
31411
31442
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
31412
31443
|
url?: Maybe<Scalars['String']['output']>;
|
|
31413
31444
|
};
|
|
31445
|
+
export declare type ExternalCustomerOrgEntitlement = {
|
|
31446
|
+
__typename?: 'ExternalCustomerOrgEntitlement';
|
|
31447
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31448
|
+
edition?: Maybe<Scalars['String']['output']>;
|
|
31449
|
+
endDate?: Maybe<Scalars['String']['output']>;
|
|
31450
|
+
entitlementName?: Maybe<Scalars['String']['output']>;
|
|
31451
|
+
licenseKey?: Maybe<Scalars['String']['output']>;
|
|
31452
|
+
productName?: Maybe<Scalars['String']['output']>;
|
|
31453
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
31454
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
31455
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31456
|
+
};
|
|
31414
31457
|
export declare type ExternalCustomerOrgLastActivity = {
|
|
31415
31458
|
__typename?: 'ExternalCustomerOrgLastActivity';
|
|
31416
31459
|
event?: Maybe<Scalars['String']['output']>;
|
|
@@ -90588,6 +90631,7 @@ export declare enum JsmConversationStatus {
|
|
|
90588
90631
|
InProgress = "IN_PROGRESS",
|
|
90589
90632
|
Missed = "MISSED",
|
|
90590
90633
|
Requested = "REQUESTED",
|
|
90634
|
+
Timeout = "TIMEOUT",
|
|
90591
90635
|
Unassigned = "UNASSIGNED"
|
|
90592
90636
|
}
|
|
90593
90637
|
export declare type JsonContentProperty = {
|
|
@@ -92341,6 +92385,7 @@ export declare type LinksSelf = {
|
|
|
92341
92385
|
export declare type LiveChatClosed = {
|
|
92342
92386
|
__typename?: 'LiveChatClosed';
|
|
92343
92387
|
content?: Maybe<Scalars['String']['output']>;
|
|
92388
|
+
id: Scalars['ID']['output'];
|
|
92344
92389
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
92345
92390
|
};
|
|
92346
92391
|
export declare type LiveChatParticipantJoined = {
|
|
@@ -92367,6 +92412,7 @@ export declare type LiveChatStarted = {
|
|
|
92367
92412
|
export declare type LiveChatSystemMessage = {
|
|
92368
92413
|
__typename?: 'LiveChatSystemMessage';
|
|
92369
92414
|
content?: Maybe<Scalars['String']['output']>;
|
|
92415
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
92370
92416
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
92371
92417
|
};
|
|
92372
92418
|
export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatUserMessage | QueryError;
|
|
@@ -92484,6 +92530,16 @@ export declare type LoomComment = Node & {
|
|
|
92484
92530
|
video?: Maybe<LoomVideo>;
|
|
92485
92531
|
videoId: Scalars['ID']['output'];
|
|
92486
92532
|
};
|
|
92533
|
+
export declare type LoomDeleteVideo = {
|
|
92534
|
+
__typename?: 'LoomDeleteVideo';
|
|
92535
|
+
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
92536
|
+
success: Array<Scalars['ID']['output']>;
|
|
92537
|
+
};
|
|
92538
|
+
export declare type LoomDeleteVideoFailure = {
|
|
92539
|
+
__typename?: 'LoomDeleteVideoFailure';
|
|
92540
|
+
ari: Scalars['ID']['output'];
|
|
92541
|
+
error: Scalars['String']['output'];
|
|
92542
|
+
};
|
|
92487
92543
|
export declare type LoomFolder = {
|
|
92488
92544
|
__typename?: 'LoomFolder';
|
|
92489
92545
|
id: Scalars['ID']['output'];
|
|
@@ -99901,6 +99957,7 @@ export declare type Mutation = {
|
|
|
99901
99957
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
99902
99958
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
99903
99959
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
99960
|
+
admin_auditLogEventExport?: Maybe<AdminAuditLogEventExport>;
|
|
99904
99961
|
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
99905
99962
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
99906
99963
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
@@ -100306,12 +100363,16 @@ export declare type Mutation = {
|
|
|
100306
100363
|
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
100307
100364
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
100308
100365
|
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
100366
|
+
goals_editDropdownCustomField?: Maybe<TownsquareGoalsEditDropdownCustomFieldPayload>;
|
|
100309
100367
|
goals_editGoalTypePair?: Maybe<TownsquareEditGoalTypePairPayload>;
|
|
100310
100368
|
goals_editLearning?: Maybe<TownsquareGoalsEditLearningPayload>;
|
|
100311
100369
|
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
100312
100370
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
100371
|
+
goals_editNumberCustomField?: Maybe<TownsquareGoalsEditNumberCustomFieldPayload>;
|
|
100313
100372
|
goals_editRisk?: Maybe<TownsquareGoalsEditRiskPayload>;
|
|
100373
|
+
goals_editTextCustomField?: Maybe<TownsquareGoalsEditTextCustomFieldPayload>;
|
|
100314
100374
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
100375
|
+
goals_editUserCustomField?: Maybe<TownsquareGoalsEditUserCustomFieldPayload>;
|
|
100315
100376
|
goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
|
|
100316
100377
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
100317
100378
|
goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
|
|
@@ -100473,6 +100534,7 @@ export declare type Mutation = {
|
|
|
100473
100534
|
likeContent?: Maybe<LikeContentPayload>;
|
|
100474
100535
|
liveChat_sendUserMessage?: Maybe<LiveChatUserMessagePayload>;
|
|
100475
100536
|
loom_acceptOrganizationInvite?: Maybe<LoomAcceptOrganizationInvitation>;
|
|
100537
|
+
loom_deleteVideos?: Maybe<LoomDeleteVideo>;
|
|
100476
100538
|
loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
|
|
100477
100539
|
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
100478
100540
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
@@ -100808,6 +100870,10 @@ export declare type MutationAdmin_AssignRoleArgs = {
|
|
|
100808
100870
|
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
100809
100871
|
orgId: Scalars['ID']['input'];
|
|
100810
100872
|
};
|
|
100873
|
+
export declare type MutationAdmin_AuditLogEventExportArgs = {
|
|
100874
|
+
input?: InputMaybe<AdminAuditLogEventExportInput>;
|
|
100875
|
+
orgId: Scalars['ID']['input'];
|
|
100876
|
+
};
|
|
100811
100877
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
100812
100878
|
resourceAri: Scalars['ID']['input'];
|
|
100813
100879
|
};
|
|
@@ -102316,6 +102382,9 @@ export declare type MutationGoals_EditCommentArgs = {
|
|
|
102316
102382
|
export declare type MutationGoals_EditDecisionArgs = {
|
|
102317
102383
|
input: TownsquareGoalsEditDecisionInput;
|
|
102318
102384
|
};
|
|
102385
|
+
export declare type MutationGoals_EditDropdownCustomFieldArgs = {
|
|
102386
|
+
input: TownsquareGoalsEditDropdownCustomFieldInput;
|
|
102387
|
+
};
|
|
102319
102388
|
export declare type MutationGoals_EditGoalTypePairArgs = {
|
|
102320
102389
|
input: TownsquareGoalsEditGoalTypePairInput;
|
|
102321
102390
|
};
|
|
@@ -102328,12 +102397,21 @@ export declare type MutationGoals_EditMetricArgs = {
|
|
|
102328
102397
|
export declare type MutationGoals_EditMetricTargetArgs = {
|
|
102329
102398
|
input: TownsquareGoalsEditMetricTargetInput;
|
|
102330
102399
|
};
|
|
102400
|
+
export declare type MutationGoals_EditNumberCustomFieldArgs = {
|
|
102401
|
+
input: TownsquareGoalsEditNumberCustomFieldInput;
|
|
102402
|
+
};
|
|
102331
102403
|
export declare type MutationGoals_EditRiskArgs = {
|
|
102332
102404
|
input: TownsquareGoalsEditRiskInput;
|
|
102333
102405
|
};
|
|
102406
|
+
export declare type MutationGoals_EditTextCustomFieldArgs = {
|
|
102407
|
+
input: TownsquareGoalsEditTextCustomFieldInput;
|
|
102408
|
+
};
|
|
102334
102409
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
102335
102410
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
102336
102411
|
};
|
|
102412
|
+
export declare type MutationGoals_EditUserCustomFieldArgs = {
|
|
102413
|
+
input: TownsquareGoalsEditUserCustomFieldInput;
|
|
102414
|
+
};
|
|
102337
102415
|
export declare type MutationGoals_GrantAccessArgs = {
|
|
102338
102416
|
input: TownsquareGoalGrantAccessInput;
|
|
102339
102417
|
};
|
|
@@ -102838,6 +102916,9 @@ export declare type MutationLoom_AcceptOrganizationInviteArgs = {
|
|
|
102838
102916
|
inviteLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
102839
102917
|
orgToken?: InputMaybe<Scalars['String']['input']>;
|
|
102840
102918
|
};
|
|
102919
|
+
export declare type MutationLoom_DeleteVideosArgs = {
|
|
102920
|
+
ids: Array<Scalars['ID']['input']>;
|
|
102921
|
+
};
|
|
102841
102922
|
export declare type MutationLoom_JoinWorkspaceArgs = {
|
|
102842
102923
|
workspaceId: Scalars['String']['input'];
|
|
102843
102924
|
};
|
|
@@ -106617,11 +106698,11 @@ export declare type Query = {
|
|
|
106617
106698
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
106618
106699
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
106619
106700
|
admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
106701
|
+
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
106702
|
+
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
106620
106703
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
106621
106704
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
106622
106705
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
106623
|
-
admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
|
|
106624
|
-
admin_eventLocations?: Maybe<AdminEventLocationConnection>;
|
|
106625
106706
|
admin_group?: Maybe<AdminGroup>;
|
|
106626
106707
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
106627
106708
|
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
@@ -107616,40 +107697,40 @@ export declare type QueryAdmin_AuditAuditLogEventsArgs = {
|
|
|
107616
107697
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107617
107698
|
orgId: Scalars['ID']['input'];
|
|
107618
107699
|
};
|
|
107619
|
-
export declare type
|
|
107620
|
-
input: AdminLicenseInput;
|
|
107621
|
-
orgId: Scalars['ID']['input'];
|
|
107622
|
-
};
|
|
107623
|
-
export declare type QueryAdmin_ConnectedAppInstallationsArgs = {
|
|
107700
|
+
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
107624
107701
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107625
|
-
appInstallationId: Scalars['ID']['input'];
|
|
107626
107702
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
107627
107703
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107628
107704
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107705
|
+
orgId: Scalars['ID']['input'];
|
|
107629
107706
|
};
|
|
107630
|
-
export declare type
|
|
107707
|
+
export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
107631
107708
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107632
107709
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
107633
|
-
|
|
107710
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
107634
107711
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107635
107712
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107636
107713
|
orgId: Scalars['ID']['input'];
|
|
107637
|
-
principal: Scalars['ID']['input'];
|
|
107638
107714
|
};
|
|
107639
|
-
export declare type
|
|
107715
|
+
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
107716
|
+
input: AdminLicenseInput;
|
|
107717
|
+
orgId: Scalars['ID']['input'];
|
|
107718
|
+
};
|
|
107719
|
+
export declare type QueryAdmin_ConnectedAppInstallationsArgs = {
|
|
107640
107720
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107721
|
+
appInstallationId: Scalars['ID']['input'];
|
|
107641
107722
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
107642
107723
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107643
107724
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107644
|
-
orgId: Scalars['ID']['input'];
|
|
107645
107725
|
};
|
|
107646
|
-
export declare type
|
|
107726
|
+
export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
107647
107727
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107648
107728
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
107649
|
-
|
|
107729
|
+
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
107650
107730
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107651
107731
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107652
107732
|
orgId: Scalars['ID']['input'];
|
|
107733
|
+
principal: Scalars['ID']['input'];
|
|
107653
107734
|
};
|
|
107654
107735
|
export declare type QueryAdmin_GroupArgs = {
|
|
107655
107736
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
@@ -111843,11 +111924,12 @@ export declare type RadarDeleteFocusAreaProposalChangesInput = {
|
|
|
111843
111924
|
positionAri: Scalars['ID']['input'];
|
|
111844
111925
|
};
|
|
111845
111926
|
export declare type RadarDeleteLaborCostEstimateDataInput = {
|
|
111846
|
-
|
|
111847
|
-
importedData: Scalars['Boolean']['input'];
|
|
111927
|
+
deleteDefaultAmount: Scalars['Boolean']['input'];
|
|
111848
111928
|
};
|
|
111849
111929
|
export declare type RadarDeleteLaborCostEstimateDataResponse = {
|
|
111850
111930
|
__typename?: 'RadarDeleteLaborCostEstimateDataResponse';
|
|
111931
|
+
laborCostEstimatesDeletedCount?: Maybe<Scalars['Int']['output']>;
|
|
111932
|
+
positionCostsResetCount?: Maybe<Scalars['Int']['output']>;
|
|
111851
111933
|
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
111852
111934
|
success: Scalars['Boolean']['output'];
|
|
111853
111935
|
};
|
|
@@ -112474,6 +112556,7 @@ export declare enum RateLimitingCurrency {
|
|
|
112474
112556
|
TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
|
|
112475
112557
|
TeamV2Currency = "TEAM_V2_CURRENCY",
|
|
112476
112558
|
TestingService = "TESTING_SERVICE",
|
|
112559
|
+
TrelloAiCurrency = "TRELLO_AI_CURRENCY",
|
|
112477
112560
|
TrelloCurrency = "TRELLO_CURRENCY",
|
|
112478
112561
|
TrelloMutationCurrency = "TRELLO_MUTATION_CURRENCY"
|
|
112479
112562
|
}
|
|
@@ -139874,6 +139957,17 @@ export declare type TownsquareGoalsEditDecisionPayload = {
|
|
|
139874
139957
|
errors?: Maybe<Array<MutationError>>;
|
|
139875
139958
|
success: Scalars['Boolean']['output'];
|
|
139876
139959
|
};
|
|
139960
|
+
export declare type TownsquareGoalsEditDropdownCustomFieldInput = {
|
|
139961
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139962
|
+
goalId: Scalars['ID']['input'];
|
|
139963
|
+
valueId: Scalars['ID']['input'];
|
|
139964
|
+
};
|
|
139965
|
+
export declare type TownsquareGoalsEditDropdownCustomFieldPayload = {
|
|
139966
|
+
__typename?: 'TownsquareGoalsEditDropdownCustomFieldPayload';
|
|
139967
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139968
|
+
success: Scalars['Boolean']['output'];
|
|
139969
|
+
valueNode?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
139970
|
+
};
|
|
139877
139971
|
export declare type TownsquareGoalsEditGoalTypePairInput = {
|
|
139878
139972
|
goalType: TownsquareEditGoalTypeInputV2;
|
|
139879
139973
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
@@ -139915,6 +140009,17 @@ export declare type TownsquareGoalsEditMetricTargetPayload = {
|
|
|
139915
140009
|
goal?: Maybe<TownsquareGoal>;
|
|
139916
140010
|
success: Scalars['Boolean']['output'];
|
|
139917
140011
|
};
|
|
140012
|
+
export declare type TownsquareGoalsEditNumberCustomFieldInput = {
|
|
140013
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140014
|
+
goalId: Scalars['ID']['input'];
|
|
140015
|
+
value: Scalars['Float']['input'];
|
|
140016
|
+
};
|
|
140017
|
+
export declare type TownsquareGoalsEditNumberCustomFieldPayload = {
|
|
140018
|
+
__typename?: 'TownsquareGoalsEditNumberCustomFieldPayload';
|
|
140019
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140020
|
+
success: Scalars['Boolean']['output'];
|
|
140021
|
+
valueNode?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
|
|
140022
|
+
};
|
|
139918
140023
|
export declare type TownsquareGoalsEditRiskInput = {
|
|
139919
140024
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
139920
140025
|
riskId: Scalars['ID']['input'];
|
|
@@ -139926,6 +140031,17 @@ export declare type TownsquareGoalsEditRiskPayload = {
|
|
|
139926
140031
|
risk?: Maybe<TownsquareRisk>;
|
|
139927
140032
|
success: Scalars['Boolean']['output'];
|
|
139928
140033
|
};
|
|
140034
|
+
export declare type TownsquareGoalsEditTextCustomFieldInput = {
|
|
140035
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140036
|
+
goalId: Scalars['ID']['input'];
|
|
140037
|
+
value: Scalars['String']['input'];
|
|
140038
|
+
};
|
|
140039
|
+
export declare type TownsquareGoalsEditTextCustomFieldPayload = {
|
|
140040
|
+
__typename?: 'TownsquareGoalsEditTextCustomFieldPayload';
|
|
140041
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140042
|
+
success: Scalars['Boolean']['output'];
|
|
140043
|
+
valueNode?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
140044
|
+
};
|
|
139929
140045
|
export declare type TownsquareGoalsEditUpdateInput = {
|
|
139930
140046
|
goalUpdateId: Scalars['ID']['input'];
|
|
139931
140047
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
@@ -139942,6 +140058,17 @@ export declare type TownsquareGoalsEditUpdatePayload = {
|
|
|
139942
140058
|
success: Scalars['Boolean']['output'];
|
|
139943
140059
|
update?: Maybe<TownsquareGoalUpdate>;
|
|
139944
140060
|
};
|
|
140061
|
+
export declare type TownsquareGoalsEditUserCustomFieldInput = {
|
|
140062
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140063
|
+
goalId: Scalars['ID']['input'];
|
|
140064
|
+
userId: Scalars['ID']['input'];
|
|
140065
|
+
};
|
|
140066
|
+
export declare type TownsquareGoalsEditUserCustomFieldPayload = {
|
|
140067
|
+
__typename?: 'TownsquareGoalsEditUserCustomFieldPayload';
|
|
140068
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140069
|
+
success: Scalars['Boolean']['output'];
|
|
140070
|
+
user?: Maybe<User>;
|
|
140071
|
+
};
|
|
139945
140072
|
export declare type TownsquareGoalsLinkWorkItemInput = {
|
|
139946
140073
|
goalId: Scalars['ID']['input'];
|
|
139947
140074
|
workItemId: Scalars['ID']['input'];
|
|
@@ -142473,6 +142600,8 @@ export declare type TrelloBoardUpdated = TrelloBaseBoardUpdated & {
|
|
|
142473
142600
|
onCustomFieldDeleted?: Maybe<Array<TrelloCustomFieldDeleted>>;
|
|
142474
142601
|
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
142475
142602
|
onMembersDeleted?: Maybe<Array<TrelloBoardMembershipDeleted>>;
|
|
142603
|
+
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
142604
|
+
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
142476
142605
|
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
142477
142606
|
powerUps?: Maybe<TrelloBoardPowerUpConnectionUpdated>;
|
|
142478
142607
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
@@ -142895,6 +143024,12 @@ export declare type TrelloCardMemberEdgeUpdated = {
|
|
|
142895
143024
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
142896
143025
|
node?: Maybe<TrelloMember>;
|
|
142897
143026
|
};
|
|
143027
|
+
export declare type TrelloCardPlannerEvent = {
|
|
143028
|
+
__typename?: 'TrelloCardPlannerEvent';
|
|
143029
|
+
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
143030
|
+
id: Scalars['ID']['output'];
|
|
143031
|
+
objectId: Scalars['ID']['output'];
|
|
143032
|
+
};
|
|
142898
143033
|
export declare enum TrelloCardRole {
|
|
142899
143034
|
Board = "BOARD",
|
|
142900
143035
|
Link = "LINK",
|
|
@@ -143305,6 +143440,7 @@ export declare type TrelloCreatePlannerCalendarEventOptions = {
|
|
|
143305
143440
|
end: Scalars['DateTime']['input'];
|
|
143306
143441
|
start: Scalars['DateTime']['input'];
|
|
143307
143442
|
title: Scalars['String']['input'];
|
|
143443
|
+
visibility?: InputMaybe<TrelloPlannerCalendarEventVisibility>;
|
|
143308
143444
|
};
|
|
143309
143445
|
export declare type TrelloCreatePlannerCalendarEventPayload = Payload & {
|
|
143310
143446
|
__typename?: 'TrelloCreatePlannerCalendarEventPayload';
|
|
@@ -143488,6 +143624,7 @@ export declare type TrelloEditPlannerCalendarEventOptions = {
|
|
|
143488
143624
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
143489
143625
|
targetPlannerCalendar?: InputMaybe<TrelloMovePlannerCalendarEventTargetOptions>;
|
|
143490
143626
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
143627
|
+
visibility?: InputMaybe<TrelloPlannerCalendarEventVisibility>;
|
|
143491
143628
|
};
|
|
143492
143629
|
export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
|
|
143493
143630
|
__typename?: 'TrelloEditPlannerCalendarEventPayload';
|
|
@@ -143878,6 +144015,7 @@ export declare type TrelloMarkInboxNotificationsReadPayload = {
|
|
|
143878
144015
|
export declare type TrelloMember = Node & {
|
|
143879
144016
|
__typename?: 'TrelloMember';
|
|
143880
144017
|
activityBlocked?: Maybe<Scalars['Boolean']['output']>;
|
|
144018
|
+
aiPreferences?: Maybe<TrelloMemberAiPreference>;
|
|
143881
144019
|
aiRules?: Maybe<TrelloMemberAiRuleConnection>;
|
|
143882
144020
|
avatarSource?: Maybe<Scalars['String']['output']>;
|
|
143883
144021
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -143921,6 +144059,10 @@ export declare type TrelloMemberWorkspacesArgs = {
|
|
|
143921
144059
|
filter?: InputMaybe<TrelloMemberWorkspaceFilter>;
|
|
143922
144060
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143923
144061
|
};
|
|
144062
|
+
export declare type TrelloMemberAiPreference = {
|
|
144063
|
+
__typename?: 'TrelloMemberAiPreference';
|
|
144064
|
+
smartSchedule?: Maybe<TrelloSmartSchedulePreference>;
|
|
144065
|
+
};
|
|
143924
144066
|
export declare type TrelloMemberAiRuleConnection = {
|
|
143925
144067
|
__typename?: 'TrelloMemberAiRuleConnection';
|
|
143926
144068
|
edges?: Maybe<Array<TrelloMemberAiRuleEdge>>;
|
|
@@ -144170,6 +144312,7 @@ export declare type TrelloMutationApi = {
|
|
|
144170
144312
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
144171
144313
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
144172
144314
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
144315
|
+
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
144173
144316
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
144174
144317
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
144175
144318
|
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
@@ -144308,6 +144451,9 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
|
144308
144451
|
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
144309
144452
|
input: TrelloResetCardCoverInput;
|
|
144310
144453
|
};
|
|
144454
|
+
export declare type TrelloMutationApiRetryAiOnBoardArgs = {
|
|
144455
|
+
input: TrelloRetryAiOnBoardInput;
|
|
144456
|
+
};
|
|
144311
144457
|
export declare type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
|
|
144312
144458
|
input?: InputMaybe<TrelloSendBoardEmailKeyInput>;
|
|
144313
144459
|
};
|
|
@@ -144523,6 +144669,10 @@ export declare type TrelloPlannerCalendarAccountConnectionUpdated = {
|
|
|
144523
144669
|
__typename?: 'TrelloPlannerCalendarAccountConnectionUpdated';
|
|
144524
144670
|
edges?: Maybe<Array<TrelloPlannerCalendarAccountEdgeUpdated>>;
|
|
144525
144671
|
};
|
|
144672
|
+
export declare type TrelloPlannerCalendarAccountDeleted = {
|
|
144673
|
+
__typename?: 'TrelloPlannerCalendarAccountDeleted';
|
|
144674
|
+
id: Scalars['ID']['output'];
|
|
144675
|
+
};
|
|
144526
144676
|
export declare type TrelloPlannerCalendarAccountEdge = {
|
|
144527
144677
|
__typename?: 'TrelloPlannerCalendarAccountEdge';
|
|
144528
144678
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -144785,6 +144935,11 @@ export declare type TrelloPlannerEventCardConnection = {
|
|
|
144785
144935
|
edges: Array<TrelloPlannerEventCardEdge>;
|
|
144786
144936
|
pageInfo: PageInfo;
|
|
144787
144937
|
};
|
|
144938
|
+
export declare type TrelloPlannerEventCardDeleted = {
|
|
144939
|
+
__typename?: 'TrelloPlannerEventCardDeleted';
|
|
144940
|
+
id: Scalars['ID']['output'];
|
|
144941
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
144942
|
+
};
|
|
144788
144943
|
export declare type TrelloPlannerEventCardEdge = {
|
|
144789
144944
|
__typename?: 'TrelloPlannerEventCardEdge';
|
|
144790
144945
|
cursor: Scalars['String']['output'];
|
|
@@ -144798,7 +144953,7 @@ export declare type TrelloPlannerEventConnection = {
|
|
|
144798
144953
|
export declare type TrelloPlannerEventEdge = {
|
|
144799
144954
|
__typename?: 'TrelloPlannerEventEdge';
|
|
144800
144955
|
cursor: Scalars['String']['output'];
|
|
144801
|
-
node:
|
|
144956
|
+
node: TrelloCardPlannerEvent;
|
|
144802
144957
|
};
|
|
144803
144958
|
export declare enum TrelloPlannerEventTimeFilter {
|
|
144804
144959
|
All = "ALL",
|
|
@@ -144809,11 +144964,19 @@ export declare type TrelloPlannerProposedEventConnection = {
|
|
|
144809
144964
|
edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
|
|
144810
144965
|
pageInfo: PageInfo;
|
|
144811
144966
|
};
|
|
144967
|
+
export declare type TrelloPlannerProposedEventConnectionUpdated = {
|
|
144968
|
+
__typename?: 'TrelloPlannerProposedEventConnectionUpdated';
|
|
144969
|
+
edges?: Maybe<Array<TrelloPlannerProposedEventEdgeUpdated>>;
|
|
144970
|
+
};
|
|
144812
144971
|
export declare type TrelloPlannerProposedEventEdge = {
|
|
144813
144972
|
__typename?: 'TrelloPlannerProposedEventEdge';
|
|
144814
144973
|
cursor: Scalars['String']['output'];
|
|
144815
144974
|
node?: Maybe<TrelloProposedEvent>;
|
|
144816
144975
|
};
|
|
144976
|
+
export declare type TrelloPlannerProposedEventEdgeUpdated = {
|
|
144977
|
+
__typename?: 'TrelloPlannerProposedEventEdgeUpdated';
|
|
144978
|
+
node?: Maybe<TrelloProposedEvent>;
|
|
144979
|
+
};
|
|
144817
144980
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
144818
144981
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
144819
144982
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -144861,7 +145024,10 @@ export declare type TrelloPlannerUpdated = {
|
|
|
144861
145024
|
__typename?: 'TrelloPlannerUpdated';
|
|
144862
145025
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
144863
145026
|
id: Scalars['ID']['output'];
|
|
145027
|
+
onPlannerCalendarAccountDeleted?: Maybe<Array<TrelloPlannerCalendarAccountDeleted>>;
|
|
145028
|
+
onProposedEventDeleted?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
144864
145029
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
145030
|
+
proposedEvents?: Maybe<TrelloPlannerProposedEventConnectionUpdated>;
|
|
144865
145031
|
};
|
|
144866
145032
|
export declare type TrelloPowerUp = {
|
|
144867
145033
|
__typename?: 'TrelloPowerUp';
|
|
@@ -145301,6 +145467,15 @@ export declare type TrelloResetCardCoverPayload = Payload & {
|
|
|
145301
145467
|
errors?: Maybe<Array<MutationError>>;
|
|
145302
145468
|
success: Scalars['Boolean']['output'];
|
|
145303
145469
|
};
|
|
145470
|
+
export declare type TrelloRetryAiOnBoardInput = {
|
|
145471
|
+
boardId: Scalars['ID']['input'];
|
|
145472
|
+
userInput: TrelloAiBoardUserInput;
|
|
145473
|
+
};
|
|
145474
|
+
export declare type TrelloRetryAiOnBoardPayload = Payload & {
|
|
145475
|
+
__typename?: 'TrelloRetryAiOnBoardPayload';
|
|
145476
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145477
|
+
success: Scalars['Boolean']['output'];
|
|
145478
|
+
};
|
|
145304
145479
|
export declare type TrelloScaleProps = {
|
|
145305
145480
|
__typename?: 'TrelloScaleProps';
|
|
145306
145481
|
height?: Maybe<Scalars['Int']['output']>;
|
|
@@ -145327,6 +145502,13 @@ export declare type TrelloSmartScheduleCardsWithSmartSelectionInput = {
|
|
|
145327
145502
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145328
145503
|
timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
|
|
145329
145504
|
};
|
|
145505
|
+
export declare type TrelloSmartSchedulePreference = {
|
|
145506
|
+
__typename?: 'TrelloSmartSchedulePreference';
|
|
145507
|
+
lastActivity?: Maybe<Scalars['DateTime']['output']>;
|
|
145508
|
+
lastRun?: Maybe<Scalars['DateTime']['output']>;
|
|
145509
|
+
preferredRunTime?: Maybe<Scalars['Int']['output']>;
|
|
145510
|
+
status: TrelloSmartScheduleStatus;
|
|
145511
|
+
};
|
|
145330
145512
|
export declare enum TrelloSmartScheduleStatus {
|
|
145331
145513
|
Active = "ACTIVE",
|
|
145332
145514
|
Dormant = "DORMANT",
|
|
@@ -145384,6 +145566,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
145384
145566
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
145385
145567
|
onCardBatchUpdated?: Maybe<TrelloCardBatch>;
|
|
145386
145568
|
onInboxUpdated?: Maybe<TrelloInboxUpdated>;
|
|
145569
|
+
onMemberPlannerBadgesUpdated?: Maybe<TrelloBoardUpdated>;
|
|
145387
145570
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
145388
145571
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
145389
145572
|
};
|