@@ -144,11 +144,6 @@ export interface RecipientCreateResponse {
144144 */
145145 modified : string ;
146146
147- /**
148- * Share Recipient status message.
149- */
150- status_message : string ;
151-
152147 resources ?: Array < RecipientCreateResponse . Resource > ;
153148}
154149
@@ -168,6 +163,11 @@ export namespace RecipientCreateResponse {
168163 * Resource Version.
169164 */
170165 resource_version : number ;
166+
167+ /**
168+ * Whether the error is terminal or will be continually retried.
169+ */
170+ terminal : boolean ;
171171 }
172172}
173173
@@ -197,11 +197,6 @@ export interface RecipientListResponse {
197197 */
198198 modified : string ;
199199
200- /**
201- * Share Recipient status message.
202- */
203- status_message : string ;
204-
205200 resources ?: Array < RecipientListResponse . Resource > ;
206201}
207202
@@ -221,6 +216,11 @@ export namespace RecipientListResponse {
221216 * Resource Version.
222217 */
223218 resource_version : number ;
219+
220+ /**
221+ * Whether the error is terminal or will be continually retried.
222+ */
223+ terminal : boolean ;
224224 }
225225}
226226
@@ -250,11 +250,6 @@ export interface RecipientDeleteResponse {
250250 */
251251 modified : string ;
252252
253- /**
254- * Share Recipient status message.
255- */
256- status_message : string ;
257-
258253 resources ?: Array < RecipientDeleteResponse . Resource > ;
259254}
260255
@@ -274,6 +269,11 @@ export namespace RecipientDeleteResponse {
274269 * Resource Version.
275270 */
276271 resource_version : number ;
272+
273+ /**
274+ * Whether the error is terminal or will be continually retried.
275+ */
276+ terminal : boolean ;
277277 }
278278}
279279
@@ -303,11 +303,6 @@ export interface RecipientGetResponse {
303303 */
304304 modified : string ;
305305
306- /**
307- * Share Recipient status message.
308- */
309- status_message : string ;
310-
311306 resources ?: Array < RecipientGetResponse . Resource > ;
312307}
313308
@@ -327,6 +322,11 @@ export namespace RecipientGetResponse {
327322 * Resource Version.
328323 */
329324 resource_version : number ;
325+
326+ /**
327+ * Whether the error is terminal or will be continually retried.
328+ */
329+ terminal : boolean ;
330330 }
331331}
332332
0 commit comments