@treeseed/sdk 0.13.0-rc.42 → 0.13.0-rc.43
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.
|
@@ -83,11 +83,15 @@ export interface AccountIdentity {
|
|
|
83
83
|
linkedAt: string;
|
|
84
84
|
canUnlink: boolean;
|
|
85
85
|
}>;
|
|
86
|
+
/** Exact account revision supplied as If-Match for concurrent identity mutations. */
|
|
87
|
+
updatedAt?: string;
|
|
86
88
|
}
|
|
87
89
|
export interface AccountPreferences {
|
|
88
90
|
timeZone: string;
|
|
89
91
|
realTimeUpdates: boolean;
|
|
90
92
|
realTimePollingIntervalSeconds: 2 | 5 | 15 | 30;
|
|
93
|
+
/** Exact preference revision supplied as If-Match for concurrent preference mutations. */
|
|
94
|
+
updatedAt?: string;
|
|
91
95
|
}
|
|
92
96
|
export type AccountPreferencesUpdate = Partial<AccountPreferences>;
|
|
93
97
|
export interface AccountWebSession {
|
|
@@ -130,6 +134,8 @@ export interface NotificationPreferences {
|
|
|
130
134
|
emailCadence: NotificationEmailCadence;
|
|
131
135
|
globalContentTypes: string[];
|
|
132
136
|
projectOverrides: NotificationProjectOverride[];
|
|
137
|
+
/** Exact notification-preference revision supplied as If-Match for concurrent updates. */
|
|
138
|
+
updatedAt?: string;
|
|
133
139
|
}
|
|
134
140
|
export interface AccountNotification {
|
|
135
141
|
id: string;
|