@linear/sdk 20.0.0 → 21.1.0
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/dist/_generated_documents.d.ts +496 -47
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +522 -1
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +2304 -475
- package/dist/index-cjs.js.map +1 -1
- package/dist/index-cjs.min.js +1 -1
- package/dist/index-cjs.min.js.br +0 -0
- package/dist/index-cjs.min.js.gz +0 -0
- package/dist/index-cjs.min.js.map +1 -1
- package/dist/index-es.js +2283 -476
- package/dist/index-es.js.map +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-es.min.js.br +0 -0
- package/dist/index-es.min.js.gz +0 -0
- package/dist/index-es.min.js.map +1 -1
- package/dist/index-umd.js +2305 -476
- package/dist/index-umd.js.map +1 -1
- package/dist/index-umd.min.js +1 -1
- package/dist/index-umd.min.js.br +0 -0
- package/dist/index-umd.min.js.gz +0 -0
- package/dist/index-umd.min.js.map +1 -1
- package/package.json +1 -1
@@ -20,12 +20,16 @@ export declare type Scalars = {
|
|
20
20
|
Float: number;
|
21
21
|
/** Represents a date and time in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) */
|
22
22
|
DateTime: Date;
|
23
|
+
/** Represents a date and time in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) */
|
24
|
+
DateTimeOrDuration: Date | string;
|
23
25
|
/** The `JSON` scalar type represents arbitrary values as *stringified* JSON */
|
24
26
|
JSON: Record<string, unknown>;
|
25
27
|
/** The `JSONObject` scalar type represents arbitrary values as *embedded* JSON */
|
26
28
|
JSONObject: any;
|
27
29
|
/** Represents a date in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) */
|
28
30
|
TimelessDate: any;
|
31
|
+
/** Represents a date in ISO 8601 format or a duration. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings (e.g '-P2W1D'), which are not converted to dates. */
|
32
|
+
TimelessDateOrDuration: any;
|
29
33
|
/** A universally unique identifier as specified by RFC 4122. */
|
30
34
|
UUID: any;
|
31
35
|
};
|
@@ -1445,21 +1449,21 @@ export declare type CycleUpdateInput = {
|
|
1445
1449
|
/** Comparator for dates. */
|
1446
1450
|
export declare type DateComparator = {
|
1447
1451
|
/** Equals constraint. */
|
1448
|
-
eq?: Maybe<Scalars["
|
1452
|
+
eq?: Maybe<Scalars["DateTimeOrDuration"]>;
|
1449
1453
|
/** Greater-than constraint. Matches any values that are greater than the given value. */
|
1450
|
-
gt?: Maybe<Scalars["
|
1454
|
+
gt?: Maybe<Scalars["DateTimeOrDuration"]>;
|
1451
1455
|
/** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
|
1452
|
-
gte?: Maybe<Scalars["
|
1456
|
+
gte?: Maybe<Scalars["DateTimeOrDuration"]>;
|
1453
1457
|
/** In-array constraint. */
|
1454
|
-
in?: Maybe<Array<Scalars["
|
1458
|
+
in?: Maybe<Array<Scalars["DateTimeOrDuration"]>>;
|
1455
1459
|
/** Less-than constraint. Matches any values that are less than the given value. */
|
1456
|
-
lt?: Maybe<Scalars["
|
1460
|
+
lt?: Maybe<Scalars["DateTimeOrDuration"]>;
|
1457
1461
|
/** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
|
1458
|
-
lte?: Maybe<Scalars["
|
1462
|
+
lte?: Maybe<Scalars["DateTimeOrDuration"]>;
|
1459
1463
|
/** Not-equals constraint. */
|
1460
|
-
neq?: Maybe<Scalars["
|
1464
|
+
neq?: Maybe<Scalars["DateTimeOrDuration"]>;
|
1461
1465
|
/** Not-in-array constraint. */
|
1462
|
-
nin?: Maybe<Array<Scalars["
|
1466
|
+
nin?: Maybe<Array<Scalars["DateTimeOrDuration"]>>;
|
1463
1467
|
};
|
1464
1468
|
/** [INTERNAL] By which resolution is a date defined. */
|
1465
1469
|
export declare enum DateResolutionType {
|
@@ -1492,6 +1496,65 @@ export declare type DeletePayload = ArchivePayload & {
|
|
1492
1496
|
/** Whether the operation was successful. */
|
1493
1497
|
success: Scalars["Boolean"];
|
1494
1498
|
};
|
1499
|
+
/** A diary entry */
|
1500
|
+
export declare type DiaryEntry = Node & {
|
1501
|
+
__typename?: "DiaryEntry";
|
1502
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1503
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1504
|
+
/** [Internal] The entry content as a Prosemirror document. */
|
1505
|
+
bodyData: Scalars["String"];
|
1506
|
+
/** The time at which the entity was created. */
|
1507
|
+
createdAt: Scalars["DateTime"];
|
1508
|
+
/** The date for which the entry is created */
|
1509
|
+
date: Scalars["TimelessDate"];
|
1510
|
+
/** The unique identifier of the entity. */
|
1511
|
+
id: Scalars["ID"];
|
1512
|
+
/**
|
1513
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
1514
|
+
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
1515
|
+
* been updated after creation.
|
1516
|
+
*/
|
1517
|
+
updatedAt: Scalars["DateTime"];
|
1518
|
+
/** The canonical url for the DiaryEntry. */
|
1519
|
+
url: Scalars["String"];
|
1520
|
+
/** The user who the diary belongs to. */
|
1521
|
+
user: User;
|
1522
|
+
};
|
1523
|
+
export declare type DiaryEntryConnection = {
|
1524
|
+
__typename?: "DiaryEntryConnection";
|
1525
|
+
edges: Array<DiaryEntryEdge>;
|
1526
|
+
nodes: Array<DiaryEntry>;
|
1527
|
+
pageInfo: PageInfo;
|
1528
|
+
};
|
1529
|
+
export declare type DiaryEntryCreateInput = {
|
1530
|
+
/** [Internal] The comment content as a Prosemirror diaryEntry. */
|
1531
|
+
bodyData?: Maybe<Scalars["JSON"]>;
|
1532
|
+
/** The date for which the entry is created. */
|
1533
|
+
date?: Maybe<Scalars["TimelessDate"]>;
|
1534
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
1535
|
+
id?: Maybe<Scalars["String"]>;
|
1536
|
+
};
|
1537
|
+
export declare type DiaryEntryEdge = {
|
1538
|
+
__typename?: "DiaryEntryEdge";
|
1539
|
+
/** Used in `before` and `after` args */
|
1540
|
+
cursor: Scalars["String"];
|
1541
|
+
node: DiaryEntry;
|
1542
|
+
};
|
1543
|
+
export declare type DiaryEntryPayload = {
|
1544
|
+
__typename?: "DiaryEntryPayload";
|
1545
|
+
/** The diary entry that was created or updated. */
|
1546
|
+
diaryEntry: DiaryEntry;
|
1547
|
+
/** The identifier of the last sync operation. */
|
1548
|
+
lastSyncId: Scalars["Float"];
|
1549
|
+
/** Whether the operation was successful. */
|
1550
|
+
success: Scalars["Boolean"];
|
1551
|
+
};
|
1552
|
+
export declare type DiaryEntryUpdateInput = {
|
1553
|
+
/** [Internal] The comment content as a Prosemirror diaryEntry. */
|
1554
|
+
bodyData?: Maybe<Scalars["JSON"]>;
|
1555
|
+
/** The date for which the entry is created. */
|
1556
|
+
date?: Maybe<Scalars["TimelessDate"]>;
|
1557
|
+
};
|
1495
1558
|
/** A document that can be attached to different entities. */
|
1496
1559
|
export declare type Document = Node & {
|
1497
1560
|
__typename?: "Document";
|
@@ -4731,10 +4794,18 @@ export declare type Mutation = {
|
|
4731
4794
|
cycleShiftAll: CyclePayload;
|
4732
4795
|
/** Updates a cycle. */
|
4733
4796
|
cycleUpdate: CyclePayload;
|
4797
|
+
/** Creates a new diary entry. */
|
4798
|
+
diaryEntryCreate: DiaryEntryPayload;
|
4799
|
+
/** Deletes a diaryEntry. */
|
4800
|
+
diaryEntryDelete: DeletePayload;
|
4801
|
+
/** Updates a diaryEntry. */
|
4802
|
+
diaryEntryUpdate: DiaryEntryPayload;
|
4734
4803
|
/** Creates a new document. */
|
4735
4804
|
documentCreate: DocumentPayload;
|
4736
4805
|
/** Deletes a document. */
|
4737
4806
|
documentDelete: DeletePayload;
|
4807
|
+
/** Adds a document reminder. Will cause a notification to be sent when the issue reminder time is reached. */
|
4808
|
+
documentReminder: DocumentPayload;
|
4738
4809
|
/** Updates a document. */
|
4739
4810
|
documentUpdate: DocumentPayload;
|
4740
4811
|
/** Creates a new email intake address. */
|
@@ -5095,21 +5166,21 @@ export declare type Mutation = {
|
|
5095
5166
|
templateDelete: DeletePayload;
|
5096
5167
|
/** Updates an existing template. */
|
5097
5168
|
templateUpdate: TemplatePayload;
|
5098
|
-
/**
|
5169
|
+
/** Creates a new time schedule. */
|
5099
5170
|
timeScheduleCreate: TimeSchedulePayload;
|
5100
|
-
/**
|
5171
|
+
/** Deletes a time schedule. */
|
5101
5172
|
timeScheduleDelete: DeletePayload;
|
5102
|
-
/**
|
5173
|
+
/** Refresh the integration schedule information. */
|
5103
5174
|
timeScheduleRefreshIntegrationSchedule: TimeSchedulePayload;
|
5104
|
-
/**
|
5175
|
+
/** Updates a time schedule. */
|
5105
5176
|
timeScheduleUpdate: TimeSchedulePayload;
|
5106
|
-
/**
|
5177
|
+
/** Upsert an external time schedule. */
|
5107
5178
|
timeScheduleUpsertExternal: TimeSchedulePayload;
|
5108
|
-
/**
|
5179
|
+
/** Creates a new triage responsibility. */
|
5109
5180
|
triageResponsibilityCreate: TriageResponsibilityPayload;
|
5110
|
-
/**
|
5181
|
+
/** Deletes a triage responsibility. */
|
5111
5182
|
triageResponsibilityDelete: DeletePayload;
|
5112
|
-
/**
|
5183
|
+
/** Updates an existing triage responsibility. */
|
5113
5184
|
triageResponsibilityUpdate: TriageResponsibilityPayload;
|
5114
5185
|
/** Makes user a regular user. Can only be called by an admin. */
|
5115
5186
|
userDemoteAdmin: UserAdminPayload;
|
@@ -5322,12 +5393,26 @@ export declare type MutationCycleUpdateArgs = {
|
|
5322
5393
|
id: Scalars["String"];
|
5323
5394
|
input: CycleUpdateInput;
|
5324
5395
|
};
|
5396
|
+
export declare type MutationDiaryEntryCreateArgs = {
|
5397
|
+
input: DiaryEntryCreateInput;
|
5398
|
+
};
|
5399
|
+
export declare type MutationDiaryEntryDeleteArgs = {
|
5400
|
+
id: Scalars["String"];
|
5401
|
+
};
|
5402
|
+
export declare type MutationDiaryEntryUpdateArgs = {
|
5403
|
+
id: Scalars["String"];
|
5404
|
+
input: DiaryEntryUpdateInput;
|
5405
|
+
};
|
5325
5406
|
export declare type MutationDocumentCreateArgs = {
|
5326
5407
|
input: DocumentCreateInput;
|
5327
5408
|
};
|
5328
5409
|
export declare type MutationDocumentDeleteArgs = {
|
5329
5410
|
id: Scalars["String"];
|
5330
5411
|
};
|
5412
|
+
export declare type MutationDocumentReminderArgs = {
|
5413
|
+
id: Scalars["String"];
|
5414
|
+
reminderAt: Scalars["DateTime"];
|
5415
|
+
};
|
5331
5416
|
export declare type MutationDocumentUpdateArgs = {
|
5332
5417
|
id: Scalars["String"];
|
5333
5418
|
input: DocumentUpdateInput;
|
@@ -6304,21 +6389,21 @@ export declare type NullableCycleFilter = {
|
|
6304
6389
|
/** Comparator for optional dates. */
|
6305
6390
|
export declare type NullableDateComparator = {
|
6306
6391
|
/** Equals constraint. */
|
6307
|
-
eq?: Maybe<Scalars["
|
6392
|
+
eq?: Maybe<Scalars["DateTimeOrDuration"]>;
|
6308
6393
|
/** Greater-than constraint. Matches any values that are greater than the given value. */
|
6309
|
-
gt?: Maybe<Scalars["
|
6394
|
+
gt?: Maybe<Scalars["DateTimeOrDuration"]>;
|
6310
6395
|
/** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
|
6311
|
-
gte?: Maybe<Scalars["
|
6396
|
+
gte?: Maybe<Scalars["DateTimeOrDuration"]>;
|
6312
6397
|
/** In-array constraint. */
|
6313
|
-
in?: Maybe<Array<Scalars["
|
6398
|
+
in?: Maybe<Array<Scalars["DateTimeOrDuration"]>>;
|
6314
6399
|
/** Less-than constraint. Matches any values that are less than the given value. */
|
6315
|
-
lt?: Maybe<Scalars["
|
6400
|
+
lt?: Maybe<Scalars["DateTimeOrDuration"]>;
|
6316
6401
|
/** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
|
6317
|
-
lte?: Maybe<Scalars["
|
6402
|
+
lte?: Maybe<Scalars["DateTimeOrDuration"]>;
|
6318
6403
|
/** Not-equals constraint. */
|
6319
|
-
neq?: Maybe<Scalars["
|
6404
|
+
neq?: Maybe<Scalars["DateTimeOrDuration"]>;
|
6320
6405
|
/** Not-in-array constraint. */
|
6321
|
-
nin?: Maybe<Array<Scalars["
|
6406
|
+
nin?: Maybe<Array<Scalars["DateTimeOrDuration"]>>;
|
6322
6407
|
/** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
|
6323
6408
|
null?: Maybe<Scalars["Boolean"]>;
|
6324
6409
|
};
|
@@ -6613,23 +6698,24 @@ export declare type NullableTemplateFilter = {
|
|
6613
6698
|
/** Comparator for the updated at date. */
|
6614
6699
|
updatedAt?: Maybe<DateComparator>;
|
6615
6700
|
};
|
6701
|
+
/** Comparator for optional timeless dates. */
|
6616
6702
|
export declare type NullableTimelessDateComparator = {
|
6617
6703
|
/** Equals constraint. */
|
6618
|
-
eq?: Maybe<Scalars["
|
6704
|
+
eq?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
6619
6705
|
/** Greater-than constraint. Matches any values that are greater than the given value. */
|
6620
|
-
gt?: Maybe<Scalars["
|
6706
|
+
gt?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
6621
6707
|
/** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
|
6622
|
-
gte?: Maybe<Scalars["
|
6708
|
+
gte?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
6623
6709
|
/** In-array constraint. */
|
6624
|
-
in?: Maybe<Array<Scalars["
|
6710
|
+
in?: Maybe<Array<Scalars["TimelessDateOrDuration"]>>;
|
6625
6711
|
/** Less-than constraint. Matches any values that are less than the given value. */
|
6626
|
-
lt?: Maybe<Scalars["
|
6712
|
+
lt?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
6627
6713
|
/** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
|
6628
|
-
lte?: Maybe<Scalars["
|
6714
|
+
lte?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
6629
6715
|
/** Not-equals constraint. */
|
6630
|
-
neq?: Maybe<Scalars["
|
6716
|
+
neq?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
6631
6717
|
/** Not-in-array constraint. */
|
6632
|
-
nin?: Maybe<Array<Scalars["
|
6718
|
+
nin?: Maybe<Array<Scalars["TimelessDateOrDuration"]>>;
|
6633
6719
|
/** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
|
6634
6720
|
null?: Maybe<Scalars["Boolean"]>;
|
6635
6721
|
};
|
@@ -6904,6 +6990,8 @@ export declare type Organization = Node & {
|
|
6904
6990
|
teams: TeamConnection;
|
6905
6991
|
/** Templates associated with the organization. */
|
6906
6992
|
templates: TemplateConnection;
|
6993
|
+
/** [ALPHA] Theme settings for the organization. */
|
6994
|
+
themeSettings?: Maybe<Scalars["JSONObject"]>;
|
6907
6995
|
/** The time at which the trial of the plus plan will end. */
|
6908
6996
|
trialEndsAt?: Maybe<Scalars["DateTime"]>;
|
6909
6997
|
/**
|
@@ -7236,6 +7324,8 @@ export declare type OrganizationUpdateInput = {
|
|
7236
7324
|
slaDayCount?: Maybe<SLADayCountType>;
|
7237
7325
|
/** Internal. Whether SLAs have been enabled for the organization. */
|
7238
7326
|
slaEnabled?: Maybe<Scalars["Boolean"]>;
|
7327
|
+
/** [ALPHA] Theme settings for the organization. */
|
7328
|
+
themeSettings?: Maybe<Scalars["JSONObject"]>;
|
7239
7329
|
/** The URL key of the organization. */
|
7240
7330
|
urlKey?: Maybe<Scalars["String"]>;
|
7241
7331
|
};
|
@@ -8685,6 +8775,8 @@ export declare type Query = {
|
|
8685
8775
|
cycle: Cycle;
|
8686
8776
|
/** All cycles. */
|
8687
8777
|
cycles: CycleConnection;
|
8778
|
+
/** One specific diary entry. */
|
8779
|
+
diaryEntry: DiaryEntry;
|
8688
8780
|
/** One specific document. */
|
8689
8781
|
document: Document;
|
8690
8782
|
/** A collection of document content history entries. */
|
@@ -8833,13 +8925,13 @@ export declare type Query = {
|
|
8833
8925
|
templates: Array<Template>;
|
8834
8926
|
/** Returns all templates that are associated with the integration type. */
|
8835
8927
|
templatesForIntegration: Array<Template>;
|
8836
|
-
/**
|
8928
|
+
/** A specific time schedule. */
|
8837
8929
|
timeSchedule: TimeSchedule;
|
8838
|
-
/**
|
8930
|
+
/** All time schedules. */
|
8839
8931
|
timeSchedules: TimeScheduleConnection;
|
8840
|
-
/**
|
8932
|
+
/** All triage responsibilities. */
|
8841
8933
|
triageResponsibilities: TriageResponsibilityConnection;
|
8842
|
-
/**
|
8934
|
+
/** A specific triage responsibility. */
|
8843
8935
|
triageResponsibility: TriageResponsibility;
|
8844
8936
|
/** One specific user. */
|
8845
8937
|
user: User;
|
@@ -8972,6 +9064,9 @@ export declare type QueryCyclesArgs = {
|
|
8972
9064
|
last?: Maybe<Scalars["Int"]>;
|
8973
9065
|
orderBy?: Maybe<PaginationOrderBy>;
|
8974
9066
|
};
|
9067
|
+
export declare type QueryDiaryEntryArgs = {
|
9068
|
+
id: Scalars["String"];
|
9069
|
+
};
|
8975
9070
|
export declare type QueryDocumentArgs = {
|
8976
9071
|
id: Scalars["String"];
|
8977
9072
|
};
|
@@ -9509,6 +9604,34 @@ export declare enum ReleaseChannel {
|
|
9509
9604
|
PreRelease = "preRelease",
|
9510
9605
|
Public = "public"
|
9511
9606
|
}
|
9607
|
+
/** A reminder that can be attached to different entities. */
|
9608
|
+
export declare type Reminder = Node & {
|
9609
|
+
__typename?: "Reminder";
|
9610
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
9611
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
9612
|
+
/** The reminder's comment. */
|
9613
|
+
comment?: Maybe<Scalars["String"]>;
|
9614
|
+
/** The time at which the entity was created. */
|
9615
|
+
createdAt: Scalars["DateTime"];
|
9616
|
+
/** The document that the reminder is associated with. */
|
9617
|
+
documentId?: Maybe<Document>;
|
9618
|
+
/** The unique identifier of the entity. */
|
9619
|
+
id: Scalars["ID"];
|
9620
|
+
/** The issue that the reminder is associated with. */
|
9621
|
+
issueId?: Maybe<Issue>;
|
9622
|
+
/** The project that the reminder is associated with. */
|
9623
|
+
projectId?: Maybe<Project>;
|
9624
|
+
/** The time when a reminder triggers a notification in users inbox. */
|
9625
|
+
remindAt: Scalars["DateTime"];
|
9626
|
+
/**
|
9627
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
9628
|
+
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
9629
|
+
* been updated after creation.
|
9630
|
+
*/
|
9631
|
+
updatedAt: Scalars["DateTime"];
|
9632
|
+
/** The user that created a reminder. */
|
9633
|
+
user: User;
|
9634
|
+
};
|
9512
9635
|
/** A roadmap for projects. */
|
9513
9636
|
export declare type Roadmap = Node & {
|
9514
9637
|
__typename?: "Roadmap";
|
@@ -10179,7 +10302,7 @@ export declare type Team = Node & {
|
|
10179
10302
|
* @deprecated Use team.gitAutomationStates instead.
|
10180
10303
|
*/
|
10181
10304
|
reviewWorkflowState?: Maybe<WorkflowState>;
|
10182
|
-
/** Whether the team is managed by SCIM. */
|
10305
|
+
/** Whether the team is managed by SCIM integration. */
|
10183
10306
|
scimManaged: Scalars["Boolean"];
|
10184
10307
|
/** Where to move issues when changing state. */
|
10185
10308
|
setIssueSortOrderOnStateChange: Scalars["String"];
|
@@ -10658,6 +10781,8 @@ export declare type TeamUpdateInput = {
|
|
10658
10781
|
requirePriorityToLeaveTriage?: Maybe<Scalars["Boolean"]>;
|
10659
10782
|
/** The workflow state into which issues are moved when a review has been requested for the PR. */
|
10660
10783
|
reviewWorkflowStateId?: Maybe<Scalars["String"]>;
|
10784
|
+
/** Whether the team is managed by SCIM integration. Mutation restricted to workspace admins and only unsetting is allowed! */
|
10785
|
+
scimManaged?: Maybe<Scalars["Boolean"]>;
|
10661
10786
|
/** Whether to move issues to bottom of the column when changing state. */
|
10662
10787
|
setIssueSortOrderOnStateChange?: Maybe<Scalars["String"]>;
|
10663
10788
|
/** Whether to send new issue comment notifications to Slack. */
|
@@ -10694,6 +10819,8 @@ export declare type Template = Node & {
|
|
10694
10819
|
name: Scalars["String"];
|
10695
10820
|
/** The organization that the template is associated with. If null, the template is associated with a particular team. */
|
10696
10821
|
organization?: Maybe<Organization>;
|
10822
|
+
/** The sort order of the template. */
|
10823
|
+
sortOrder: Scalars["Float"];
|
10697
10824
|
/** The team that the template is associated with. If null, the template is global to the workspace. */
|
10698
10825
|
team?: Maybe<Team>;
|
10699
10826
|
/** Template data. */
|
@@ -10720,6 +10847,8 @@ export declare type TemplateCreateInput = {
|
|
10720
10847
|
id?: Maybe<Scalars["String"]>;
|
10721
10848
|
/** The template name. */
|
10722
10849
|
name: Scalars["String"];
|
10850
|
+
/** The position of the template in the templates list. */
|
10851
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
10723
10852
|
/** The identifier or key of the team associated with the template. If not given, the template will be shared across all teams. */
|
10724
10853
|
teamId?: Maybe<Scalars["String"]>;
|
10725
10854
|
/** The template data as JSON encoded attributes of the type of entity, such as an issue. */
|
@@ -10747,6 +10876,8 @@ export declare type TemplateUpdateInput = {
|
|
10747
10876
|
description?: Maybe<Scalars["String"]>;
|
10748
10877
|
/** The template name. */
|
10749
10878
|
name?: Maybe<Scalars["String"]>;
|
10879
|
+
/** The position of the template in the templates list. */
|
10880
|
+
sortOrder?: Maybe<Scalars["Float"]>;
|
10750
10881
|
/** The identifier or key of the team associated with the template. If set to null, the template will be shared across all teams. */
|
10751
10882
|
teamId?: Maybe<Scalars["String"]>;
|
10752
10883
|
/** The template data as JSON encoded attributes of the type of entity, such as an issue. */
|
@@ -10846,21 +10977,21 @@ export declare type TimeScheduleUpdateInput = {
|
|
10846
10977
|
/** Comparator for timeless dates. */
|
10847
10978
|
export declare type TimelessDateComparator = {
|
10848
10979
|
/** Equals constraint. */
|
10849
|
-
eq?: Maybe<Scalars["
|
10980
|
+
eq?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
10850
10981
|
/** Greater-than constraint. Matches any values that are greater than the given value. */
|
10851
|
-
gt?: Maybe<Scalars["
|
10982
|
+
gt?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
10852
10983
|
/** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
|
10853
|
-
gte?: Maybe<Scalars["
|
10984
|
+
gte?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
10854
10985
|
/** In-array constraint. */
|
10855
|
-
in?: Maybe<Array<Scalars["
|
10986
|
+
in?: Maybe<Array<Scalars["TimelessDateOrDuration"]>>;
|
10856
10987
|
/** Less-than constraint. Matches any values that are less than the given value. */
|
10857
|
-
lt?: Maybe<Scalars["
|
10988
|
+
lt?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
10858
10989
|
/** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
|
10859
|
-
lte?: Maybe<Scalars["
|
10990
|
+
lte?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
10860
10991
|
/** Not-equals constraint. */
|
10861
|
-
neq?: Maybe<Scalars["
|
10992
|
+
neq?: Maybe<Scalars["TimelessDateOrDuration"]>;
|
10862
10993
|
/** Not-in-array constraint. */
|
10863
|
-
nin?: Maybe<Array<Scalars["
|
10994
|
+
nin?: Maybe<Array<Scalars["TimelessDateOrDuration"]>>;
|
10864
10995
|
};
|
10865
10996
|
/** Issue title sorting options. */
|
10866
10997
|
export declare type TitleSort = {
|
@@ -12152,6 +12283,13 @@ export declare type CycleNotificationSubscriptionFragment = {
|
|
12152
12283
|
__typename?: "User";
|
12153
12284
|
} & Pick<User, "id">>;
|
12154
12285
|
};
|
12286
|
+
export declare type DiaryEntryFragment = {
|
12287
|
+
__typename: "DiaryEntry";
|
12288
|
+
} & Pick<DiaryEntry, "url" | "date" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
12289
|
+
user: {
|
12290
|
+
__typename?: "User";
|
12291
|
+
} & Pick<User, "id">;
|
12292
|
+
};
|
12155
12293
|
export declare type DocumentContentFragment = {
|
12156
12294
|
__typename: "DocumentContent";
|
12157
12295
|
} & Pick<DocumentContent, "content" | "contentState" | "updatedAt" | "restoredAt" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -12590,6 +12728,22 @@ export declare type ProjectRelationFragment = {
|
|
12590
12728
|
__typename?: "Project";
|
12591
12729
|
} & Pick<Project, "id">;
|
12592
12730
|
};
|
12731
|
+
export declare type ReminderFragment = {
|
12732
|
+
__typename: "Reminder";
|
12733
|
+
} & Pick<Reminder, "updatedAt" | "comment" | "archivedAt" | "createdAt" | "remindAt" | "id"> & {
|
12734
|
+
documentId?: Maybe<{
|
12735
|
+
__typename?: "Document";
|
12736
|
+
} & Pick<Document, "id">>;
|
12737
|
+
issueId?: Maybe<{
|
12738
|
+
__typename?: "Issue";
|
12739
|
+
} & Pick<Issue, "id">>;
|
12740
|
+
projectId?: Maybe<{
|
12741
|
+
__typename?: "Project";
|
12742
|
+
} & Pick<Project, "id">>;
|
12743
|
+
user: {
|
12744
|
+
__typename?: "User";
|
12745
|
+
} & Pick<User, "id">;
|
12746
|
+
};
|
12593
12747
|
export declare type RoadmapFragment = {
|
12594
12748
|
__typename: "Roadmap";
|
12595
12749
|
} & Pick<Roadmap, "url" | "description" | "updatedAt" | "name" | "color" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -12657,7 +12811,7 @@ export declare type TriageResponsibilityFragment = {
|
|
12657
12811
|
};
|
12658
12812
|
export declare type TemplateFragment = {
|
12659
12813
|
__typename: "Template";
|
12660
|
-
} & Pick<Template, "templateData" | "description" | "type" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
|
12814
|
+
} & Pick<Template, "templateData" | "description" | "type" | "updatedAt" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
|
12661
12815
|
team?: Maybe<{
|
12662
12816
|
__typename?: "Team";
|
12663
12817
|
} & Pick<Team, "id">>;
|
@@ -13696,6 +13850,23 @@ export declare type CyclePayloadFragment = {
|
|
13696
13850
|
__typename?: "Cycle";
|
13697
13851
|
} & Pick<Cycle, "id">>;
|
13698
13852
|
};
|
13853
|
+
export declare type DiaryEntryConnectionFragment = {
|
13854
|
+
__typename: "DiaryEntryConnection";
|
13855
|
+
} & {
|
13856
|
+
nodes: Array<{
|
13857
|
+
__typename?: "DiaryEntry";
|
13858
|
+
} & DiaryEntryFragment>;
|
13859
|
+
pageInfo: {
|
13860
|
+
__typename?: "PageInfo";
|
13861
|
+
} & PageInfoFragment;
|
13862
|
+
};
|
13863
|
+
export declare type DiaryEntryPayloadFragment = {
|
13864
|
+
__typename: "DiaryEntryPayload";
|
13865
|
+
} & Pick<DiaryEntryPayload, "lastSyncId" | "success"> & {
|
13866
|
+
diaryEntry: {
|
13867
|
+
__typename?: "DiaryEntry";
|
13868
|
+
} & Pick<DiaryEntry, "id">;
|
13869
|
+
};
|
13699
13870
|
export declare type DocumentConnectionFragment = {
|
13700
13871
|
__typename: "DocumentConnection";
|
13701
13872
|
} & {
|
@@ -14120,6 +14291,9 @@ declare type Node_Cycle_Fragment = {
|
|
14120
14291
|
declare type Node_CycleNotificationSubscription_Fragment = {
|
14121
14292
|
__typename: "CycleNotificationSubscription";
|
14122
14293
|
} & Pick<CycleNotificationSubscription, "id">;
|
14294
|
+
declare type Node_DiaryEntry_Fragment = {
|
14295
|
+
__typename: "DiaryEntry";
|
14296
|
+
} & Pick<DiaryEntry, "id">;
|
14123
14297
|
declare type Node_Document_Fragment = {
|
14124
14298
|
__typename: "Document";
|
14125
14299
|
} & Pick<Document, "id">;
|
@@ -14258,6 +14432,9 @@ declare type Node_PushSubscription_Fragment = {
|
|
14258
14432
|
declare type Node_Reaction_Fragment = {
|
14259
14433
|
__typename: "Reaction";
|
14260
14434
|
} & Pick<Reaction, "id">;
|
14435
|
+
declare type Node_Reminder_Fragment = {
|
14436
|
+
__typename: "Reminder";
|
14437
|
+
} & Pick<Reminder, "id">;
|
14261
14438
|
declare type Node_Roadmap_Fragment = {
|
14262
14439
|
__typename: "Roadmap";
|
14263
14440
|
} & Pick<Roadmap, "id">;
|
@@ -14306,7 +14483,7 @@ declare type Node_WorkflowDefinition_Fragment = {
|
|
14306
14483
|
declare type Node_WorkflowState_Fragment = {
|
14307
14484
|
__typename: "WorkflowState";
|
14308
14485
|
} & Pick<WorkflowState, "id">;
|
14309
|
-
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
14486
|
+
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_DiaryEntry_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Reminder_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
14310
14487
|
export declare type NotificationBatchActionPayloadFragment = {
|
14311
14488
|
__typename: "NotificationBatchActionPayload";
|
14312
14489
|
} & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
|
@@ -15573,6 +15750,16 @@ export declare type CyclesQuery = {
|
|
15573
15750
|
__typename?: "CycleConnection";
|
15574
15751
|
} & CycleConnectionFragment;
|
15575
15752
|
};
|
15753
|
+
export declare type DiaryEntryQueryVariables = Exact<{
|
15754
|
+
id: Scalars["String"];
|
15755
|
+
}>;
|
15756
|
+
export declare type DiaryEntryQuery = {
|
15757
|
+
__typename?: "Query";
|
15758
|
+
} & {
|
15759
|
+
diaryEntry: {
|
15760
|
+
__typename?: "DiaryEntry";
|
15761
|
+
} & DiaryEntryFragment;
|
15762
|
+
};
|
15576
15763
|
export declare type DocumentQueryVariables = Exact<{
|
15577
15764
|
id: Scalars["String"];
|
15578
15765
|
}>;
|
@@ -17457,6 +17644,70 @@ export declare type TemplatesForIntegrationQuery = {
|
|
17457
17644
|
__typename?: "Template";
|
17458
17645
|
} & TemplateFragment>;
|
17459
17646
|
};
|
17647
|
+
export declare type TimeScheduleQueryVariables = Exact<{
|
17648
|
+
id: Scalars["String"];
|
17649
|
+
}>;
|
17650
|
+
export declare type TimeScheduleQuery = {
|
17651
|
+
__typename?: "Query";
|
17652
|
+
} & {
|
17653
|
+
timeSchedule: {
|
17654
|
+
__typename?: "TimeSchedule";
|
17655
|
+
} & TimeScheduleFragment;
|
17656
|
+
};
|
17657
|
+
export declare type TimeSchedulesQueryVariables = Exact<{
|
17658
|
+
after?: Maybe<Scalars["String"]>;
|
17659
|
+
before?: Maybe<Scalars["String"]>;
|
17660
|
+
first?: Maybe<Scalars["Int"]>;
|
17661
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
17662
|
+
last?: Maybe<Scalars["Int"]>;
|
17663
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
17664
|
+
}>;
|
17665
|
+
export declare type TimeSchedulesQuery = {
|
17666
|
+
__typename?: "Query";
|
17667
|
+
} & {
|
17668
|
+
timeSchedules: {
|
17669
|
+
__typename?: "TimeScheduleConnection";
|
17670
|
+
} & TimeScheduleConnectionFragment;
|
17671
|
+
};
|
17672
|
+
export declare type TriageResponsibilitiesQueryVariables = Exact<{
|
17673
|
+
after?: Maybe<Scalars["String"]>;
|
17674
|
+
before?: Maybe<Scalars["String"]>;
|
17675
|
+
first?: Maybe<Scalars["Int"]>;
|
17676
|
+
includeArchived?: Maybe<Scalars["Boolean"]>;
|
17677
|
+
last?: Maybe<Scalars["Int"]>;
|
17678
|
+
orderBy?: Maybe<PaginationOrderBy>;
|
17679
|
+
}>;
|
17680
|
+
export declare type TriageResponsibilitiesQuery = {
|
17681
|
+
__typename?: "Query";
|
17682
|
+
} & {
|
17683
|
+
triageResponsibilities: {
|
17684
|
+
__typename?: "TriageResponsibilityConnection";
|
17685
|
+
} & TriageResponsibilityConnectionFragment;
|
17686
|
+
};
|
17687
|
+
export declare type TriageResponsibilityQueryVariables = Exact<{
|
17688
|
+
id: Scalars["String"];
|
17689
|
+
}>;
|
17690
|
+
export declare type TriageResponsibilityQuery = {
|
17691
|
+
__typename?: "Query";
|
17692
|
+
} & {
|
17693
|
+
triageResponsibility: {
|
17694
|
+
__typename?: "TriageResponsibility";
|
17695
|
+
} & TriageResponsibilityFragment;
|
17696
|
+
};
|
17697
|
+
export declare type TriageResponsibility_ManualSelectionQueryVariables = Exact<{
|
17698
|
+
id: Scalars["String"];
|
17699
|
+
}>;
|
17700
|
+
export declare type TriageResponsibility_ManualSelectionQuery = {
|
17701
|
+
__typename?: "Query";
|
17702
|
+
} & {
|
17703
|
+
triageResponsibility: {
|
17704
|
+
__typename?: "TriageResponsibility";
|
17705
|
+
} & {
|
17706
|
+
manualSelection?: Maybe<{
|
17707
|
+
__typename?: "TriageResponsibilityManualSelection";
|
17708
|
+
} & TriageResponsibilityManualSelectionFragment>;
|
17709
|
+
};
|
17710
|
+
};
|
17460
17711
|
export declare type UserQueryVariables = Exact<{
|
17461
17712
|
id: Scalars["String"];
|
17462
17713
|
}>;
|
@@ -18132,6 +18383,37 @@ export declare type UpdateCycleMutation = {
|
|
18132
18383
|
__typename?: "CyclePayload";
|
18133
18384
|
} & CyclePayloadFragment;
|
18134
18385
|
};
|
18386
|
+
export declare type CreateDiaryEntryMutationVariables = Exact<{
|
18387
|
+
input: DiaryEntryCreateInput;
|
18388
|
+
}>;
|
18389
|
+
export declare type CreateDiaryEntryMutation = {
|
18390
|
+
__typename?: "Mutation";
|
18391
|
+
} & {
|
18392
|
+
diaryEntryCreate: {
|
18393
|
+
__typename?: "DiaryEntryPayload";
|
18394
|
+
} & DiaryEntryPayloadFragment;
|
18395
|
+
};
|
18396
|
+
export declare type DeleteDiaryEntryMutationVariables = Exact<{
|
18397
|
+
id: Scalars["String"];
|
18398
|
+
}>;
|
18399
|
+
export declare type DeleteDiaryEntryMutation = {
|
18400
|
+
__typename?: "Mutation";
|
18401
|
+
} & {
|
18402
|
+
diaryEntryDelete: {
|
18403
|
+
__typename?: "DeletePayload";
|
18404
|
+
} & DeletePayloadFragment;
|
18405
|
+
};
|
18406
|
+
export declare type UpdateDiaryEntryMutationVariables = Exact<{
|
18407
|
+
id: Scalars["String"];
|
18408
|
+
input: DiaryEntryUpdateInput;
|
18409
|
+
}>;
|
18410
|
+
export declare type UpdateDiaryEntryMutation = {
|
18411
|
+
__typename?: "Mutation";
|
18412
|
+
} & {
|
18413
|
+
diaryEntryUpdate: {
|
18414
|
+
__typename?: "DiaryEntryPayload";
|
18415
|
+
} & DiaryEntryPayloadFragment;
|
18416
|
+
};
|
18135
18417
|
export declare type CreateDocumentMutationVariables = Exact<{
|
18136
18418
|
input: DocumentCreateInput;
|
18137
18419
|
}>;
|
@@ -18152,6 +18434,17 @@ export declare type DeleteDocumentMutation = {
|
|
18152
18434
|
__typename?: "DeletePayload";
|
18153
18435
|
} & DeletePayloadFragment;
|
18154
18436
|
};
|
18437
|
+
export declare type DocumentReminderMutationVariables = Exact<{
|
18438
|
+
id: Scalars["String"];
|
18439
|
+
reminderAt: Scalars["DateTime"];
|
18440
|
+
}>;
|
18441
|
+
export declare type DocumentReminderMutation = {
|
18442
|
+
__typename?: "Mutation";
|
18443
|
+
} & {
|
18444
|
+
documentReminder: {
|
18445
|
+
__typename?: "DocumentPayload";
|
18446
|
+
} & DocumentPayloadFragment;
|
18447
|
+
};
|
18155
18448
|
export declare type UpdateDocumentMutationVariables = Exact<{
|
18156
18449
|
id: Scalars["String"];
|
18157
18450
|
input: DocumentUpdateInput;
|
@@ -19772,6 +20065,89 @@ export declare type UpdateTemplateMutation = {
|
|
19772
20065
|
__typename?: "TemplatePayload";
|
19773
20066
|
} & TemplatePayloadFragment;
|
19774
20067
|
};
|
20068
|
+
export declare type CreateTimeScheduleMutationVariables = Exact<{
|
20069
|
+
input: TimeScheduleCreateInput;
|
20070
|
+
}>;
|
20071
|
+
export declare type CreateTimeScheduleMutation = {
|
20072
|
+
__typename?: "Mutation";
|
20073
|
+
} & {
|
20074
|
+
timeScheduleCreate: {
|
20075
|
+
__typename?: "TimeSchedulePayload";
|
20076
|
+
} & TimeSchedulePayloadFragment;
|
20077
|
+
};
|
20078
|
+
export declare type DeleteTimeScheduleMutationVariables = Exact<{
|
20079
|
+
id: Scalars["String"];
|
20080
|
+
}>;
|
20081
|
+
export declare type DeleteTimeScheduleMutation = {
|
20082
|
+
__typename?: "Mutation";
|
20083
|
+
} & {
|
20084
|
+
timeScheduleDelete: {
|
20085
|
+
__typename?: "DeletePayload";
|
20086
|
+
} & DeletePayloadFragment;
|
20087
|
+
};
|
20088
|
+
export declare type TimeScheduleRefreshIntegrationScheduleMutationVariables = Exact<{
|
20089
|
+
id: Scalars["String"];
|
20090
|
+
}>;
|
20091
|
+
export declare type TimeScheduleRefreshIntegrationScheduleMutation = {
|
20092
|
+
__typename?: "Mutation";
|
20093
|
+
} & {
|
20094
|
+
timeScheduleRefreshIntegrationSchedule: {
|
20095
|
+
__typename?: "TimeSchedulePayload";
|
20096
|
+
} & TimeSchedulePayloadFragment;
|
20097
|
+
};
|
20098
|
+
export declare type UpdateTimeScheduleMutationVariables = Exact<{
|
20099
|
+
id: Scalars["String"];
|
20100
|
+
input: TimeScheduleUpdateInput;
|
20101
|
+
}>;
|
20102
|
+
export declare type UpdateTimeScheduleMutation = {
|
20103
|
+
__typename?: "Mutation";
|
20104
|
+
} & {
|
20105
|
+
timeScheduleUpdate: {
|
20106
|
+
__typename?: "TimeSchedulePayload";
|
20107
|
+
} & TimeSchedulePayloadFragment;
|
20108
|
+
};
|
20109
|
+
export declare type TimeScheduleUpsertExternalMutationVariables = Exact<{
|
20110
|
+
externalId: Scalars["String"];
|
20111
|
+
input: TimeScheduleUpdateInput;
|
20112
|
+
}>;
|
20113
|
+
export declare type TimeScheduleUpsertExternalMutation = {
|
20114
|
+
__typename?: "Mutation";
|
20115
|
+
} & {
|
20116
|
+
timeScheduleUpsertExternal: {
|
20117
|
+
__typename?: "TimeSchedulePayload";
|
20118
|
+
} & TimeSchedulePayloadFragment;
|
20119
|
+
};
|
20120
|
+
export declare type CreateTriageResponsibilityMutationVariables = Exact<{
|
20121
|
+
input: TriageResponsibilityCreateInput;
|
20122
|
+
}>;
|
20123
|
+
export declare type CreateTriageResponsibilityMutation = {
|
20124
|
+
__typename?: "Mutation";
|
20125
|
+
} & {
|
20126
|
+
triageResponsibilityCreate: {
|
20127
|
+
__typename?: "TriageResponsibilityPayload";
|
20128
|
+
} & TriageResponsibilityPayloadFragment;
|
20129
|
+
};
|
20130
|
+
export declare type DeleteTriageResponsibilityMutationVariables = Exact<{
|
20131
|
+
id: Scalars["String"];
|
20132
|
+
}>;
|
20133
|
+
export declare type DeleteTriageResponsibilityMutation = {
|
20134
|
+
__typename?: "Mutation";
|
20135
|
+
} & {
|
20136
|
+
triageResponsibilityDelete: {
|
20137
|
+
__typename?: "DeletePayload";
|
20138
|
+
} & DeletePayloadFragment;
|
20139
|
+
};
|
20140
|
+
export declare type UpdateTriageResponsibilityMutationVariables = Exact<{
|
20141
|
+
id: Scalars["String"];
|
20142
|
+
input: TriageResponsibilityUpdateInput;
|
20143
|
+
}>;
|
20144
|
+
export declare type UpdateTriageResponsibilityMutation = {
|
20145
|
+
__typename?: "Mutation";
|
20146
|
+
} & {
|
20147
|
+
triageResponsibilityUpdate: {
|
20148
|
+
__typename?: "TriageResponsibilityPayload";
|
20149
|
+
} & TriageResponsibilityPayloadFragment;
|
20150
|
+
};
|
19775
20151
|
export declare type UserDemoteAdminMutationVariables = Exact<{
|
19776
20152
|
id: Scalars["String"];
|
19777
20153
|
}>;
|
@@ -20025,6 +20401,7 @@ export declare const WorkflowStateArchivePayloadFragmentDoc: DocumentNode<Workfl
|
|
20025
20401
|
export declare const ArchivePayloadFragmentDoc: DocumentNode<ArchivePayloadFragment, unknown>;
|
20026
20402
|
export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<LabelNotificationSubscriptionFragment, unknown>;
|
20027
20403
|
export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
|
20404
|
+
export declare const ReminderFragmentDoc: DocumentNode<ReminderFragment, unknown>;
|
20028
20405
|
export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
|
20029
20406
|
export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
|
20030
20407
|
export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
|
@@ -20112,6 +20489,9 @@ export declare const CustomViewSuggestionPayloadFragmentDoc: DocumentNode<Custom
|
|
20112
20489
|
export declare const CycleFragmentDoc: DocumentNode<CycleFragment, unknown>;
|
20113
20490
|
export declare const CycleConnectionFragmentDoc: DocumentNode<CycleConnectionFragment, unknown>;
|
20114
20491
|
export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment, unknown>;
|
20492
|
+
export declare const DiaryEntryFragmentDoc: DocumentNode<DiaryEntryFragment, unknown>;
|
20493
|
+
export declare const DiaryEntryConnectionFragmentDoc: DocumentNode<DiaryEntryConnectionFragment, unknown>;
|
20494
|
+
export declare const DiaryEntryPayloadFragmentDoc: DocumentNode<DiaryEntryPayloadFragment, unknown>;
|
20115
20495
|
export declare const DocumentFragmentDoc: DocumentNode<DocumentFragment, unknown>;
|
20116
20496
|
export declare const DocumentConnectionFragmentDoc: DocumentNode<DocumentConnectionFragment, unknown>;
|
20117
20497
|
export declare const DocumentContentHistoryTypeFragmentDoc: DocumentNode<DocumentContentHistoryTypeFragment, unknown>;
|
@@ -20537,6 +20917,9 @@ export declare const CyclesDocument: DocumentNode<CyclesQuery, Exact<{
|
|
20537
20917
|
last?: Maybe<number> | undefined;
|
20538
20918
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
20539
20919
|
}>>;
|
20920
|
+
export declare const DiaryEntryDocument: DocumentNode<DiaryEntryQuery, Exact<{
|
20921
|
+
id: Scalars["String"];
|
20922
|
+
}>>;
|
20540
20923
|
export declare const DocumentDocument: DocumentNode<DocumentQuery, Exact<{
|
20541
20924
|
id: Scalars["String"];
|
20542
20925
|
}>>;
|
@@ -21375,6 +21758,31 @@ export declare const TemplatesDocument: DocumentNode<TemplatesQuery, Exact<{
|
|
21375
21758
|
export declare const TemplatesForIntegrationDocument: DocumentNode<TemplatesForIntegrationQuery, Exact<{
|
21376
21759
|
integrationType: Scalars["String"];
|
21377
21760
|
}>>;
|
21761
|
+
export declare const TimeScheduleDocument: DocumentNode<TimeScheduleQuery, Exact<{
|
21762
|
+
id: Scalars["String"];
|
21763
|
+
}>>;
|
21764
|
+
export declare const TimeSchedulesDocument: DocumentNode<TimeSchedulesQuery, Exact<{
|
21765
|
+
after?: Maybe<string> | undefined;
|
21766
|
+
before?: Maybe<string> | undefined;
|
21767
|
+
first?: Maybe<number> | undefined;
|
21768
|
+
includeArchived?: Maybe<boolean> | undefined;
|
21769
|
+
last?: Maybe<number> | undefined;
|
21770
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
21771
|
+
}>>;
|
21772
|
+
export declare const TriageResponsibilitiesDocument: DocumentNode<TriageResponsibilitiesQuery, Exact<{
|
21773
|
+
after?: Maybe<string> | undefined;
|
21774
|
+
before?: Maybe<string> | undefined;
|
21775
|
+
first?: Maybe<number> | undefined;
|
21776
|
+
includeArchived?: Maybe<boolean> | undefined;
|
21777
|
+
last?: Maybe<number> | undefined;
|
21778
|
+
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
21779
|
+
}>>;
|
21780
|
+
export declare const TriageResponsibilityDocument: DocumentNode<TriageResponsibilityQuery, Exact<{
|
21781
|
+
id: Scalars["String"];
|
21782
|
+
}>>;
|
21783
|
+
export declare const TriageResponsibility_ManualSelectionDocument: DocumentNode<TriageResponsibility_ManualSelectionQuery, Exact<{
|
21784
|
+
id: Scalars["String"];
|
21785
|
+
}>>;
|
21378
21786
|
export declare const UserDocument: DocumentNode<UserQuery, Exact<{
|
21379
21787
|
id: Scalars["String"];
|
21380
21788
|
}>>;
|
@@ -21664,12 +22072,26 @@ export declare const UpdateCycleDocument: DocumentNode<UpdateCycleMutation, Exac
|
|
21664
22072
|
id: Scalars["String"];
|
21665
22073
|
input: CycleUpdateInput;
|
21666
22074
|
}>>;
|
22075
|
+
export declare const CreateDiaryEntryDocument: DocumentNode<CreateDiaryEntryMutation, Exact<{
|
22076
|
+
input: DiaryEntryCreateInput;
|
22077
|
+
}>>;
|
22078
|
+
export declare const DeleteDiaryEntryDocument: DocumentNode<DeleteDiaryEntryMutation, Exact<{
|
22079
|
+
id: Scalars["String"];
|
22080
|
+
}>>;
|
22081
|
+
export declare const UpdateDiaryEntryDocument: DocumentNode<UpdateDiaryEntryMutation, Exact<{
|
22082
|
+
id: Scalars["String"];
|
22083
|
+
input: DiaryEntryUpdateInput;
|
22084
|
+
}>>;
|
21667
22085
|
export declare const CreateDocumentDocument: DocumentNode<CreateDocumentMutation, Exact<{
|
21668
22086
|
input: DocumentCreateInput;
|
21669
22087
|
}>>;
|
21670
22088
|
export declare const DeleteDocumentDocument: DocumentNode<DeleteDocumentMutation, Exact<{
|
21671
22089
|
id: Scalars["String"];
|
21672
22090
|
}>>;
|
22091
|
+
export declare const DocumentReminderDocument: DocumentNode<DocumentReminderMutation, Exact<{
|
22092
|
+
id: Scalars["String"];
|
22093
|
+
reminderAt: Scalars["DateTime"];
|
22094
|
+
}>>;
|
21673
22095
|
export declare const UpdateDocumentDocument: DocumentNode<UpdateDocumentMutation, Exact<{
|
21674
22096
|
id: Scalars["String"];
|
21675
22097
|
input: DocumentUpdateInput;
|
@@ -22233,6 +22655,33 @@ export declare const UpdateTemplateDocument: DocumentNode<UpdateTemplateMutation
|
|
22233
22655
|
id: Scalars["String"];
|
22234
22656
|
input: TemplateUpdateInput;
|
22235
22657
|
}>>;
|
22658
|
+
export declare const CreateTimeScheduleDocument: DocumentNode<CreateTimeScheduleMutation, Exact<{
|
22659
|
+
input: TimeScheduleCreateInput;
|
22660
|
+
}>>;
|
22661
|
+
export declare const DeleteTimeScheduleDocument: DocumentNode<DeleteTimeScheduleMutation, Exact<{
|
22662
|
+
id: Scalars["String"];
|
22663
|
+
}>>;
|
22664
|
+
export declare const TimeScheduleRefreshIntegrationScheduleDocument: DocumentNode<TimeScheduleRefreshIntegrationScheduleMutation, Exact<{
|
22665
|
+
id: Scalars["String"];
|
22666
|
+
}>>;
|
22667
|
+
export declare const UpdateTimeScheduleDocument: DocumentNode<UpdateTimeScheduleMutation, Exact<{
|
22668
|
+
id: Scalars["String"];
|
22669
|
+
input: TimeScheduleUpdateInput;
|
22670
|
+
}>>;
|
22671
|
+
export declare const TimeScheduleUpsertExternalDocument: DocumentNode<TimeScheduleUpsertExternalMutation, Exact<{
|
22672
|
+
externalId: Scalars["String"];
|
22673
|
+
input: TimeScheduleUpdateInput;
|
22674
|
+
}>>;
|
22675
|
+
export declare const CreateTriageResponsibilityDocument: DocumentNode<CreateTriageResponsibilityMutation, Exact<{
|
22676
|
+
input: TriageResponsibilityCreateInput;
|
22677
|
+
}>>;
|
22678
|
+
export declare const DeleteTriageResponsibilityDocument: DocumentNode<DeleteTriageResponsibilityMutation, Exact<{
|
22679
|
+
id: Scalars["String"];
|
22680
|
+
}>>;
|
22681
|
+
export declare const UpdateTriageResponsibilityDocument: DocumentNode<UpdateTriageResponsibilityMutation, Exact<{
|
22682
|
+
id: Scalars["String"];
|
22683
|
+
input: TriageResponsibilityUpdateInput;
|
22684
|
+
}>>;
|
22236
22685
|
export declare const UserDemoteAdminDocument: DocumentNode<UserDemoteAdminMutation, Exact<{
|
22237
22686
|
id: Scalars["String"];
|
22238
22687
|
}>>;
|