@smartytalent/openai-tools 0.1.32 → 0.1.33-dev.1
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/tools.json +552 -3
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6494,12 +6494,21 @@
|
|
|
6494
6494
|
"properties": {
|
|
6495
6495
|
"filterStatus": {
|
|
6496
6496
|
"type": "string",
|
|
6497
|
-
"description": "
|
|
6497
|
+
"description": "Filter by the email's lifecycle status. Omit to return all statuses.",
|
|
6498
6498
|
"enum": [
|
|
6499
|
-
"
|
|
6500
|
-
"
|
|
6499
|
+
"draft",
|
|
6500
|
+
"scheduled",
|
|
6501
|
+
"sent",
|
|
6502
|
+
"suppressed",
|
|
6503
|
+
"archived",
|
|
6504
|
+
"failed",
|
|
6505
|
+
"pending"
|
|
6501
6506
|
]
|
|
6502
6507
|
},
|
|
6508
|
+
"filterConversationId": {
|
|
6509
|
+
"type": "string",
|
|
6510
|
+
"description": "Return only emails belonging to this conversation. Resolved via the ConversationIdIndex GSI (top-level denormalisation of relationships.conversations[0].data.id). Pass the full conversation id (e.g. `980434e7...-2`)."
|
|
6511
|
+
},
|
|
6503
6512
|
"filterCreatedFrom": {
|
|
6504
6513
|
"type": "string",
|
|
6505
6514
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -8058,6 +8067,546 @@
|
|
|
8058
8067
|
}
|
|
8059
8068
|
}
|
|
8060
8069
|
},
|
|
8070
|
+
{
|
|
8071
|
+
"type": "function",
|
|
8072
|
+
"function": {
|
|
8073
|
+
"name": "list_schedules",
|
|
8074
|
+
"description": "List Schedules",
|
|
8075
|
+
"parameters": {
|
|
8076
|
+
"type": "object",
|
|
8077
|
+
"properties": {
|
|
8078
|
+
"filterStatus": {
|
|
8079
|
+
"type": "string",
|
|
8080
|
+
"description": "Filter by status. Omit to return all.",
|
|
8081
|
+
"enum": [
|
|
8082
|
+
"pending",
|
|
8083
|
+
"fired",
|
|
8084
|
+
"cancelled",
|
|
8085
|
+
"failed"
|
|
8086
|
+
]
|
|
8087
|
+
},
|
|
8088
|
+
"filterCreatedFrom": {
|
|
8089
|
+
"type": "string",
|
|
8090
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
8091
|
+
},
|
|
8092
|
+
"filterCreatedTo": {
|
|
8093
|
+
"type": "string",
|
|
8094
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
8095
|
+
},
|
|
8096
|
+
"filterModifiedFrom": {
|
|
8097
|
+
"type": "string",
|
|
8098
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
8099
|
+
},
|
|
8100
|
+
"filterModifiedTo": {
|
|
8101
|
+
"type": "string",
|
|
8102
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
8103
|
+
},
|
|
8104
|
+
"pageSize": {
|
|
8105
|
+
"type": "integer",
|
|
8106
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
8107
|
+
},
|
|
8108
|
+
"pageNumber": {
|
|
8109
|
+
"type": "integer",
|
|
8110
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
8111
|
+
},
|
|
8112
|
+
"pageAfter": {
|
|
8113
|
+
"type": "string",
|
|
8114
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
8115
|
+
},
|
|
8116
|
+
"pageBefore": {
|
|
8117
|
+
"type": "string",
|
|
8118
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
8119
|
+
}
|
|
8120
|
+
}
|
|
8121
|
+
}
|
|
8122
|
+
}
|
|
8123
|
+
},
|
|
8124
|
+
{
|
|
8125
|
+
"type": "function",
|
|
8126
|
+
"function": {
|
|
8127
|
+
"name": "create_schedule",
|
|
8128
|
+
"description": "Create Schedule",
|
|
8129
|
+
"parameters": {
|
|
8130
|
+
"title": "CreateScheduleRequestBody",
|
|
8131
|
+
"type": "object",
|
|
8132
|
+
"required": [
|
|
8133
|
+
"data"
|
|
8134
|
+
],
|
|
8135
|
+
"properties": {
|
|
8136
|
+
"data": {
|
|
8137
|
+
"title": "CreateScheduleRequestBodyData",
|
|
8138
|
+
"type": "object",
|
|
8139
|
+
"required": [
|
|
8140
|
+
"type",
|
|
8141
|
+
"attributes"
|
|
8142
|
+
],
|
|
8143
|
+
"properties": {
|
|
8144
|
+
"type": {
|
|
8145
|
+
"type": "string",
|
|
8146
|
+
"enum": [
|
|
8147
|
+
"schedules"
|
|
8148
|
+
]
|
|
8149
|
+
},
|
|
8150
|
+
"attributes": {
|
|
8151
|
+
"title": "ScheduleAttributesSchema",
|
|
8152
|
+
"type": "object",
|
|
8153
|
+
"required": [
|
|
8154
|
+
"fireAt",
|
|
8155
|
+
"target"
|
|
8156
|
+
],
|
|
8157
|
+
"properties": {
|
|
8158
|
+
"name": {
|
|
8159
|
+
"type": "string",
|
|
8160
|
+
"description": "Optional human-readable label for the schedule."
|
|
8161
|
+
},
|
|
8162
|
+
"status": {
|
|
8163
|
+
"type": "string",
|
|
8164
|
+
"enum": [
|
|
8165
|
+
"pending",
|
|
8166
|
+
"fired",
|
|
8167
|
+
"cancelled",
|
|
8168
|
+
"failed"
|
|
8169
|
+
]
|
|
8170
|
+
},
|
|
8171
|
+
"fireAt": {
|
|
8172
|
+
"type": "string",
|
|
8173
|
+
"format": "date-time",
|
|
8174
|
+
"description": "ISO 8601 timestamp when the schedule fires. Absolute; compute delayMinutes client-side if needed."
|
|
8175
|
+
},
|
|
8176
|
+
"firedAt": {
|
|
8177
|
+
"type": "string",
|
|
8178
|
+
"format": "date-time",
|
|
8179
|
+
"description": "Set by the dispatcher when the schedule actually fires."
|
|
8180
|
+
},
|
|
8181
|
+
"target": {
|
|
8182
|
+
"title": "ScheduleTargetSchema",
|
|
8183
|
+
"type": "object",
|
|
8184
|
+
"description": "What to invoke when the schedule fires.",
|
|
8185
|
+
"required": [
|
|
8186
|
+
"type",
|
|
8187
|
+
"actionName"
|
|
8188
|
+
],
|
|
8189
|
+
"properties": {
|
|
8190
|
+
"type": {
|
|
8191
|
+
"type": "string",
|
|
8192
|
+
"enum": [
|
|
8193
|
+
"action"
|
|
8194
|
+
],
|
|
8195
|
+
"description": "Target kind. Only `action` is supported today; the dispatcher invokes the matching action Lambda."
|
|
8196
|
+
},
|
|
8197
|
+
"actionName": {
|
|
8198
|
+
"type": "string",
|
|
8199
|
+
"description": "Action identifier (e.g. `email:send`, `call:initiate`). Resolved by the same convention the workflow engine uses — `resource:verb` maps to `sm-${env}-tb-service-action-function-${resource}-${verb}`."
|
|
8200
|
+
},
|
|
8201
|
+
"input": {
|
|
8202
|
+
"type": "object",
|
|
8203
|
+
"description": "Payload passed to the action Lambda. Shape is action-specific."
|
|
8204
|
+
}
|
|
8205
|
+
}
|
|
8206
|
+
},
|
|
8207
|
+
"result": {
|
|
8208
|
+
"type": "object",
|
|
8209
|
+
"description": "Dispatcher's recorded result after firing (status, messageId, or error detail). Server-managed."
|
|
8210
|
+
},
|
|
8211
|
+
"timestamps": {
|
|
8212
|
+
"title": "ResourceTimestampsSchema",
|
|
8213
|
+
"type": "object",
|
|
8214
|
+
"properties": {
|
|
8215
|
+
"created": {
|
|
8216
|
+
"type": "string",
|
|
8217
|
+
"format": "date-time"
|
|
8218
|
+
},
|
|
8219
|
+
"modified": {
|
|
8220
|
+
"type": "string",
|
|
8221
|
+
"format": "date-time"
|
|
8222
|
+
}
|
|
8223
|
+
}
|
|
8224
|
+
}
|
|
8225
|
+
}
|
|
8226
|
+
},
|
|
8227
|
+
"relationships": {
|
|
8228
|
+
"title": "ScheduleRelationshipsSchema",
|
|
8229
|
+
"type": "object",
|
|
8230
|
+
"description": "Optional audit links. None required; use the ones relevant to the scheduled action.",
|
|
8231
|
+
"properties": {
|
|
8232
|
+
"candidate": {
|
|
8233
|
+
"title": "ScheduleRelationshipsCandidateSchema",
|
|
8234
|
+
"type": "object",
|
|
8235
|
+
"properties": {
|
|
8236
|
+
"data": {
|
|
8237
|
+
"type": "object",
|
|
8238
|
+
"properties": {
|
|
8239
|
+
"type": {
|
|
8240
|
+
"type": "string"
|
|
8241
|
+
},
|
|
8242
|
+
"id": {
|
|
8243
|
+
"type": "string"
|
|
8244
|
+
}
|
|
8245
|
+
}
|
|
8246
|
+
}
|
|
8247
|
+
}
|
|
8248
|
+
},
|
|
8249
|
+
"job": {
|
|
8250
|
+
"title": "ScheduleRelationshipsJobSchema",
|
|
8251
|
+
"type": "object",
|
|
8252
|
+
"properties": {
|
|
8253
|
+
"data": {
|
|
8254
|
+
"type": "object",
|
|
8255
|
+
"properties": {
|
|
8256
|
+
"type": {
|
|
8257
|
+
"type": "string"
|
|
8258
|
+
},
|
|
8259
|
+
"id": {
|
|
8260
|
+
"type": "string"
|
|
8261
|
+
}
|
|
8262
|
+
}
|
|
8263
|
+
}
|
|
8264
|
+
}
|
|
8265
|
+
},
|
|
8266
|
+
"conversation": {
|
|
8267
|
+
"title": "ScheduleRelationshipsConversationSchema",
|
|
8268
|
+
"type": "object",
|
|
8269
|
+
"properties": {
|
|
8270
|
+
"data": {
|
|
8271
|
+
"type": "object",
|
|
8272
|
+
"properties": {
|
|
8273
|
+
"type": {
|
|
8274
|
+
"type": "string"
|
|
8275
|
+
},
|
|
8276
|
+
"id": {
|
|
8277
|
+
"type": "string"
|
|
8278
|
+
}
|
|
8279
|
+
}
|
|
8280
|
+
}
|
|
8281
|
+
}
|
|
8282
|
+
},
|
|
8283
|
+
"talent": {
|
|
8284
|
+
"title": "ScheduleRelationshipsTalentSchema",
|
|
8285
|
+
"type": "object",
|
|
8286
|
+
"properties": {
|
|
8287
|
+
"data": {
|
|
8288
|
+
"type": "object",
|
|
8289
|
+
"properties": {
|
|
8290
|
+
"type": {
|
|
8291
|
+
"type": "string"
|
|
8292
|
+
},
|
|
8293
|
+
"id": {
|
|
8294
|
+
"type": "string"
|
|
8295
|
+
}
|
|
8296
|
+
}
|
|
8297
|
+
}
|
|
8298
|
+
}
|
|
8299
|
+
},
|
|
8300
|
+
"user": {
|
|
8301
|
+
"title": "ScheduleRelationshipsUserSchema",
|
|
8302
|
+
"type": "object",
|
|
8303
|
+
"properties": {
|
|
8304
|
+
"data": {
|
|
8305
|
+
"type": "object",
|
|
8306
|
+
"properties": {
|
|
8307
|
+
"type": {
|
|
8308
|
+
"type": "string"
|
|
8309
|
+
},
|
|
8310
|
+
"id": {
|
|
8311
|
+
"type": "string"
|
|
8312
|
+
}
|
|
8313
|
+
}
|
|
8314
|
+
}
|
|
8315
|
+
}
|
|
8316
|
+
}
|
|
8317
|
+
}
|
|
8318
|
+
}
|
|
8319
|
+
}
|
|
8320
|
+
}
|
|
8321
|
+
}
|
|
8322
|
+
}
|
|
8323
|
+
}
|
|
8324
|
+
},
|
|
8325
|
+
{
|
|
8326
|
+
"type": "function",
|
|
8327
|
+
"function": {
|
|
8328
|
+
"name": "schedules_options",
|
|
8329
|
+
"description": "Schedules Options",
|
|
8330
|
+
"parameters": {
|
|
8331
|
+
"type": "object",
|
|
8332
|
+
"properties": {}
|
|
8333
|
+
}
|
|
8334
|
+
}
|
|
8335
|
+
},
|
|
8336
|
+
{
|
|
8337
|
+
"type": "function",
|
|
8338
|
+
"function": {
|
|
8339
|
+
"name": "show_schedule",
|
|
8340
|
+
"description": "Show Schedule",
|
|
8341
|
+
"parameters": {
|
|
8342
|
+
"type": "object",
|
|
8343
|
+
"properties": {
|
|
8344
|
+
"scheduleId": {
|
|
8345
|
+
"type": "string",
|
|
8346
|
+
"description": "scheduleId parameter"
|
|
8347
|
+
}
|
|
8348
|
+
},
|
|
8349
|
+
"required": [
|
|
8350
|
+
"scheduleId"
|
|
8351
|
+
]
|
|
8352
|
+
}
|
|
8353
|
+
}
|
|
8354
|
+
},
|
|
8355
|
+
{
|
|
8356
|
+
"type": "function",
|
|
8357
|
+
"function": {
|
|
8358
|
+
"name": "update_schedule",
|
|
8359
|
+
"description": "Update Schedule",
|
|
8360
|
+
"parameters": {
|
|
8361
|
+
"type": "object",
|
|
8362
|
+
"properties": {
|
|
8363
|
+
"scheduleId": {
|
|
8364
|
+
"type": "string",
|
|
8365
|
+
"description": "scheduleId parameter"
|
|
8366
|
+
},
|
|
8367
|
+
"requestBody": {
|
|
8368
|
+
"title": "UpdateScheduleRequestBody",
|
|
8369
|
+
"type": "object",
|
|
8370
|
+
"required": [
|
|
8371
|
+
"data"
|
|
8372
|
+
],
|
|
8373
|
+
"properties": {
|
|
8374
|
+
"data": {
|
|
8375
|
+
"title": "UpdateScheduleRequestBodyData",
|
|
8376
|
+
"type": "object",
|
|
8377
|
+
"required": [
|
|
8378
|
+
"type",
|
|
8379
|
+
"id"
|
|
8380
|
+
],
|
|
8381
|
+
"properties": {
|
|
8382
|
+
"type": {
|
|
8383
|
+
"type": "string",
|
|
8384
|
+
"enum": [
|
|
8385
|
+
"schedules"
|
|
8386
|
+
]
|
|
8387
|
+
},
|
|
8388
|
+
"id": {
|
|
8389
|
+
"type": "string"
|
|
8390
|
+
},
|
|
8391
|
+
"attributes": {
|
|
8392
|
+
"title": "ScheduleAttributesSchema",
|
|
8393
|
+
"type": "object",
|
|
8394
|
+
"required": [
|
|
8395
|
+
"fireAt",
|
|
8396
|
+
"target"
|
|
8397
|
+
],
|
|
8398
|
+
"properties": {
|
|
8399
|
+
"name": {
|
|
8400
|
+
"type": "string",
|
|
8401
|
+
"description": "Optional human-readable label for the schedule."
|
|
8402
|
+
},
|
|
8403
|
+
"status": {
|
|
8404
|
+
"type": "string",
|
|
8405
|
+
"enum": [
|
|
8406
|
+
"pending",
|
|
8407
|
+
"fired",
|
|
8408
|
+
"cancelled",
|
|
8409
|
+
"failed"
|
|
8410
|
+
]
|
|
8411
|
+
},
|
|
8412
|
+
"fireAt": {
|
|
8413
|
+
"type": "string",
|
|
8414
|
+
"format": "date-time",
|
|
8415
|
+
"description": "ISO 8601 timestamp when the schedule fires. Absolute; compute delayMinutes client-side if needed."
|
|
8416
|
+
},
|
|
8417
|
+
"firedAt": {
|
|
8418
|
+
"type": "string",
|
|
8419
|
+
"format": "date-time",
|
|
8420
|
+
"description": "Set by the dispatcher when the schedule actually fires."
|
|
8421
|
+
},
|
|
8422
|
+
"target": {
|
|
8423
|
+
"title": "ScheduleTargetSchema",
|
|
8424
|
+
"type": "object",
|
|
8425
|
+
"description": "What to invoke when the schedule fires.",
|
|
8426
|
+
"required": [
|
|
8427
|
+
"type",
|
|
8428
|
+
"actionName"
|
|
8429
|
+
],
|
|
8430
|
+
"properties": {
|
|
8431
|
+
"type": {
|
|
8432
|
+
"type": "string",
|
|
8433
|
+
"enum": [
|
|
8434
|
+
"action"
|
|
8435
|
+
],
|
|
8436
|
+
"description": "Target kind. Only `action` is supported today; the dispatcher invokes the matching action Lambda."
|
|
8437
|
+
},
|
|
8438
|
+
"actionName": {
|
|
8439
|
+
"type": "string",
|
|
8440
|
+
"description": "Action identifier (e.g. `email:send`, `call:initiate`). Resolved by the same convention the workflow engine uses — `resource:verb` maps to `sm-${env}-tb-service-action-function-${resource}-${verb}`."
|
|
8441
|
+
},
|
|
8442
|
+
"input": {
|
|
8443
|
+
"type": "object",
|
|
8444
|
+
"description": "Payload passed to the action Lambda. Shape is action-specific."
|
|
8445
|
+
}
|
|
8446
|
+
}
|
|
8447
|
+
},
|
|
8448
|
+
"result": {
|
|
8449
|
+
"type": "object",
|
|
8450
|
+
"description": "Dispatcher's recorded result after firing (status, messageId, or error detail). Server-managed."
|
|
8451
|
+
},
|
|
8452
|
+
"timestamps": {
|
|
8453
|
+
"title": "ResourceTimestampsSchema",
|
|
8454
|
+
"type": "object",
|
|
8455
|
+
"properties": {
|
|
8456
|
+
"created": {
|
|
8457
|
+
"type": "string",
|
|
8458
|
+
"format": "date-time"
|
|
8459
|
+
},
|
|
8460
|
+
"modified": {
|
|
8461
|
+
"type": "string",
|
|
8462
|
+
"format": "date-time"
|
|
8463
|
+
}
|
|
8464
|
+
}
|
|
8465
|
+
}
|
|
8466
|
+
}
|
|
8467
|
+
},
|
|
8468
|
+
"relationships": {
|
|
8469
|
+
"title": "ScheduleRelationshipsSchema",
|
|
8470
|
+
"type": "object",
|
|
8471
|
+
"description": "Optional audit links. None required; use the ones relevant to the scheduled action.",
|
|
8472
|
+
"properties": {
|
|
8473
|
+
"candidate": {
|
|
8474
|
+
"title": "ScheduleRelationshipsCandidateSchema",
|
|
8475
|
+
"type": "object",
|
|
8476
|
+
"properties": {
|
|
8477
|
+
"data": {
|
|
8478
|
+
"type": "object",
|
|
8479
|
+
"properties": {
|
|
8480
|
+
"type": {
|
|
8481
|
+
"type": "string"
|
|
8482
|
+
},
|
|
8483
|
+
"id": {
|
|
8484
|
+
"type": "string"
|
|
8485
|
+
}
|
|
8486
|
+
}
|
|
8487
|
+
}
|
|
8488
|
+
}
|
|
8489
|
+
},
|
|
8490
|
+
"job": {
|
|
8491
|
+
"title": "ScheduleRelationshipsJobSchema",
|
|
8492
|
+
"type": "object",
|
|
8493
|
+
"properties": {
|
|
8494
|
+
"data": {
|
|
8495
|
+
"type": "object",
|
|
8496
|
+
"properties": {
|
|
8497
|
+
"type": {
|
|
8498
|
+
"type": "string"
|
|
8499
|
+
},
|
|
8500
|
+
"id": {
|
|
8501
|
+
"type": "string"
|
|
8502
|
+
}
|
|
8503
|
+
}
|
|
8504
|
+
}
|
|
8505
|
+
}
|
|
8506
|
+
},
|
|
8507
|
+
"conversation": {
|
|
8508
|
+
"title": "ScheduleRelationshipsConversationSchema",
|
|
8509
|
+
"type": "object",
|
|
8510
|
+
"properties": {
|
|
8511
|
+
"data": {
|
|
8512
|
+
"type": "object",
|
|
8513
|
+
"properties": {
|
|
8514
|
+
"type": {
|
|
8515
|
+
"type": "string"
|
|
8516
|
+
},
|
|
8517
|
+
"id": {
|
|
8518
|
+
"type": "string"
|
|
8519
|
+
}
|
|
8520
|
+
}
|
|
8521
|
+
}
|
|
8522
|
+
}
|
|
8523
|
+
},
|
|
8524
|
+
"talent": {
|
|
8525
|
+
"title": "ScheduleRelationshipsTalentSchema",
|
|
8526
|
+
"type": "object",
|
|
8527
|
+
"properties": {
|
|
8528
|
+
"data": {
|
|
8529
|
+
"type": "object",
|
|
8530
|
+
"properties": {
|
|
8531
|
+
"type": {
|
|
8532
|
+
"type": "string"
|
|
8533
|
+
},
|
|
8534
|
+
"id": {
|
|
8535
|
+
"type": "string"
|
|
8536
|
+
}
|
|
8537
|
+
}
|
|
8538
|
+
}
|
|
8539
|
+
}
|
|
8540
|
+
},
|
|
8541
|
+
"user": {
|
|
8542
|
+
"title": "ScheduleRelationshipsUserSchema",
|
|
8543
|
+
"type": "object",
|
|
8544
|
+
"properties": {
|
|
8545
|
+
"data": {
|
|
8546
|
+
"type": "object",
|
|
8547
|
+
"properties": {
|
|
8548
|
+
"type": {
|
|
8549
|
+
"type": "string"
|
|
8550
|
+
},
|
|
8551
|
+
"id": {
|
|
8552
|
+
"type": "string"
|
|
8553
|
+
}
|
|
8554
|
+
}
|
|
8555
|
+
}
|
|
8556
|
+
}
|
|
8557
|
+
}
|
|
8558
|
+
}
|
|
8559
|
+
}
|
|
8560
|
+
}
|
|
8561
|
+
}
|
|
8562
|
+
}
|
|
8563
|
+
}
|
|
8564
|
+
},
|
|
8565
|
+
"required": [
|
|
8566
|
+
"scheduleId",
|
|
8567
|
+
"requestBody"
|
|
8568
|
+
]
|
|
8569
|
+
}
|
|
8570
|
+
}
|
|
8571
|
+
},
|
|
8572
|
+
{
|
|
8573
|
+
"type": "function",
|
|
8574
|
+
"function": {
|
|
8575
|
+
"name": "delete_schedule",
|
|
8576
|
+
"description": "Cancel Schedule",
|
|
8577
|
+
"parameters": {
|
|
8578
|
+
"type": "object",
|
|
8579
|
+
"properties": {
|
|
8580
|
+
"scheduleId": {
|
|
8581
|
+
"type": "string",
|
|
8582
|
+
"description": "scheduleId parameter"
|
|
8583
|
+
},
|
|
8584
|
+
"permanentDelete": {
|
|
8585
|
+
"type": "string",
|
|
8586
|
+
"description": "Set to true for permanent deletion.",
|
|
8587
|
+
"enum": [
|
|
8588
|
+
"true",
|
|
8589
|
+
"false"
|
|
8590
|
+
]
|
|
8591
|
+
}
|
|
8592
|
+
},
|
|
8593
|
+
"required": [
|
|
8594
|
+
"scheduleId"
|
|
8595
|
+
]
|
|
8596
|
+
}
|
|
8597
|
+
}
|
|
8598
|
+
},
|
|
8599
|
+
{
|
|
8600
|
+
"type": "function",
|
|
8601
|
+
"function": {
|
|
8602
|
+
"name": "schedule_options",
|
|
8603
|
+
"description": "Schedule Options",
|
|
8604
|
+
"parameters": {
|
|
8605
|
+
"type": "object",
|
|
8606
|
+
"properties": {}
|
|
8607
|
+
}
|
|
8608
|
+
}
|
|
8609
|
+
},
|
|
8061
8610
|
{
|
|
8062
8611
|
"type": "function",
|
|
8063
8612
|
"function": {
|