@azure-tools/typespec-azure-resource-manager 0.70.0-dev.4 → 0.70.0-dev.5
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/lib/base-types/agent.tsp +8 -8
- package/package.json +1 -1
package/lib/base-types/agent.tsp
CHANGED
|
@@ -189,7 +189,7 @@ model ConversationProperties {
|
|
|
189
189
|
|
|
190
190
|
/** Timestamp of when the conversation was created. Read-only. */
|
|
191
191
|
@visibility(Lifecycle.Read)
|
|
192
|
-
createdAt?:
|
|
192
|
+
createdAt?: utcDateTime;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
/**
|
|
@@ -226,24 +226,24 @@ model ConversationOutput {
|
|
|
226
226
|
union ResponseStatus {
|
|
227
227
|
/** The response completed successfully. */
|
|
228
228
|
@Azure.Core.lroSucceeded
|
|
229
|
-
Completed: "
|
|
229
|
+
Completed: "Completed",
|
|
230
230
|
|
|
231
231
|
/** The response failed. */
|
|
232
232
|
@Azure.Core.lroFailed
|
|
233
|
-
Failed: "
|
|
233
|
+
Failed: "Failed",
|
|
234
234
|
|
|
235
235
|
/** The response was cancelled. */
|
|
236
236
|
@Azure.Core.lroCanceled
|
|
237
|
-
Cancelled: "
|
|
237
|
+
Cancelled: "Cancelled",
|
|
238
238
|
|
|
239
239
|
/** The response is incomplete. */
|
|
240
|
-
Incomplete: "
|
|
240
|
+
Incomplete: "Incomplete",
|
|
241
241
|
|
|
242
242
|
/** The response is queued for execution. */
|
|
243
|
-
Queued: "
|
|
243
|
+
Queued: "Queued",
|
|
244
244
|
|
|
245
245
|
/** The response is in progress. */
|
|
246
|
-
InProgress: "
|
|
246
|
+
InProgress: "InProgress",
|
|
247
247
|
|
|
248
248
|
string,
|
|
249
249
|
}
|
|
@@ -259,7 +259,7 @@ model ResponseProperties {
|
|
|
259
259
|
|
|
260
260
|
/** Timestamp of when the response was created. Read-only. */
|
|
261
261
|
@visibility(Lifecycle.Read)
|
|
262
|
-
createdAt?:
|
|
262
|
+
createdAt?: utcDateTime;
|
|
263
263
|
|
|
264
264
|
/** Model ID used to generate the response. May be specified on request to override the agent default; read-only in GET. */
|
|
265
265
|
`model`?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-tools/typespec-azure-resource-manager",
|
|
3
|
-
"version": "0.70.0-dev.
|
|
3
|
+
"version": "0.70.0-dev.5",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec Azure Resource Manager library",
|
|
6
6
|
"homepage": "https://azure.github.io/typespec-azure",
|