@@ -137,7 +137,8 @@ export interface TwilioResponse {
137
137
*/
138
138
setHeaders ( headers : { [ key : string ] : string } ) : TwilioResponse ;
139
139
/**
140
- * Add a cookie to the HTTP response. Accepts the name of the cookie, its value, and any optional attributes to be assigned to the cookie
140
+ * Add a cookie to the HTTP response.
141
+ * Accepts the name of the cookie, its value, and any optional attributes to be assigned to the cookie.
141
142
*
142
143
* @param key - The name of the cookie to be set
143
144
* @param value - The value of the cookie
@@ -191,7 +192,17 @@ export type RuntimeSyncClientOptions = TwilioClientOptions & {
191
192
} ;
192
193
193
194
export type RuntimeSyncServiceContext = ServiceContext & {
195
+ /**
196
+ * Alias for `syncMaps`
197
+ *
198
+ * @see https://www.twilio.com/docs/sync/api/list-resource
199
+ */
194
200
maps : SyncMapListInstance ;
201
+ /**
202
+ * Alias for `syncLists`
203
+ *
204
+ * @see https://www.twilio.com/docs/sync/api/map-resource
205
+ */
195
206
lists : SyncListListInstance ;
196
207
} ;
197
208
@@ -264,7 +275,7 @@ export type RuntimeInstance = {
264
275
*/
265
276
getFunctions ( ) : ResourceMap ;
266
277
/**
267
- * Returns a Sync Service Context object that has been configured to work with your default Sync Service
278
+ * Returns a Sync Service Context object that has been configured to work with your default Sync Service.
268
279
*
269
280
* @param options - Optional object to configure the Sync Context, such as the name of a different Sync Service
270
281
* @returns A Sync Context object for interacting with Twilio Sync
0 commit comments