@smartytalent/openai-tools 0.1.10 → 0.1.11

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.
Files changed (2) hide show
  1. package/dist/tools.json +134 -24
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2396,6 +2396,10 @@
2396
2396
  },
2397
2397
  "source": {
2398
2398
  "type": "string"
2399
+ },
2400
+ "meta": {
2401
+ "type": "object",
2402
+ "additionalProperties": true
2399
2403
  }
2400
2404
  }
2401
2405
  },
@@ -3005,6 +3009,10 @@
3005
3009
  },
3006
3010
  "source": {
3007
3011
  "type": "string"
3012
+ },
3013
+ "meta": {
3014
+ "type": "object",
3015
+ "additionalProperties": true
3008
3016
  }
3009
3017
  }
3010
3018
  }
@@ -4720,6 +4728,10 @@
4720
4728
  "additionalProperties": {
4721
4729
  "$ref": "#/components/schemas/CandidateCriteriaSchema"
4722
4730
  }
4731
+ },
4732
+ "meta": {
4733
+ "type": "object",
4734
+ "additionalProperties": true
4723
4735
  }
4724
4736
  }
4725
4737
  },
@@ -5238,6 +5250,10 @@
5238
5250
  "additionalProperties": {
5239
5251
  "$ref": "#/components/schemas/CandidateCriteriaSchema"
5240
5252
  }
5253
+ },
5254
+ "meta": {
5255
+ "type": "object",
5256
+ "additionalProperties": true
5241
5257
  }
5242
5258
  }
5243
5259
  }
@@ -5502,6 +5518,13 @@
5502
5518
  }
5503
5519
  }
5504
5520
  }
5521
+ },
5522
+ "meta": {
5523
+ "title": "ResourceMetaSchema",
5524
+ "type": "object",
5525
+ "additionalProperties": {
5526
+ "type": "string"
5527
+ }
5505
5528
  }
5506
5529
  }
5507
5530
  }
@@ -6264,10 +6287,6 @@
6264
6287
  "attributes": {
6265
6288
  "title": "EmailAttributesSchema",
6266
6289
  "type": "object",
6267
- "required": [
6268
- "name",
6269
- "email"
6270
- ],
6271
6290
  "properties": {
6272
6291
  "name": {
6273
6292
  "type": "string"
@@ -6275,6 +6294,43 @@
6275
6294
  "status": {
6276
6295
  "type": "string"
6277
6296
  },
6297
+ "emailFrom": {
6298
+ "type": "string"
6299
+ },
6300
+ "emailTo": {
6301
+ "type": "string"
6302
+ },
6303
+ "subject": {
6304
+ "type": "string"
6305
+ },
6306
+ "body": {
6307
+ "type": "string"
6308
+ },
6309
+ "shortCode": {
6310
+ "type": "string"
6311
+ },
6312
+ "source": {
6313
+ "type": "string"
6314
+ },
6315
+ "isReply": {
6316
+ "type": "boolean"
6317
+ },
6318
+ "isSendable": {
6319
+ "type": "boolean"
6320
+ },
6321
+ "isExternalSender": {
6322
+ "type": "boolean"
6323
+ },
6324
+ "ttl": {
6325
+ "type": "string"
6326
+ },
6327
+ "sendScheduleDate": {
6328
+ "type": "string"
6329
+ },
6330
+ "meta": {
6331
+ "type": "object",
6332
+ "additionalProperties": true
6333
+ },
6278
6334
  "timestamps": {
6279
6335
  "title": "ResourceTimestampsSchema",
6280
6336
  "type": "object",
@@ -6313,6 +6369,27 @@
6313
6369
  }
6314
6370
  }
6315
6371
  },
6372
+ "conversations": {
6373
+ "title": "EmailRelationshipsConversationsSchema",
6374
+ "type": "object",
6375
+ "properties": {
6376
+ "data": {
6377
+ "type": "array",
6378
+ "items": {
6379
+ "title": "EmailRelationshipsConversationsDataSchema",
6380
+ "type": "object",
6381
+ "properties": {
6382
+ "type": {
6383
+ "type": "string"
6384
+ },
6385
+ "id": {
6386
+ "type": "string"
6387
+ }
6388
+ }
6389
+ }
6390
+ }
6391
+ }
6392
+ },
6316
6393
  "translations": {
6317
6394
  "title": "EmailRelationshipsTranslationsSchema",
6318
6395
  "type": "object",
@@ -6437,10 +6514,6 @@
6437
6514
  "attributes": {
6438
6515
  "title": "EmailAttributesSchema",
6439
6516
  "type": "object",
6440
- "required": [
6441
- "name",
6442
- "email"
6443
- ],
6444
6517
  "properties": {
6445
6518
  "name": {
6446
6519
  "type": "string"
@@ -6448,6 +6521,43 @@
6448
6521
  "status": {
6449
6522
  "type": "string"
6450
6523
  },
6524
+ "emailFrom": {
6525
+ "type": "string"
6526
+ },
6527
+ "emailTo": {
6528
+ "type": "string"
6529
+ },
6530
+ "subject": {
6531
+ "type": "string"
6532
+ },
6533
+ "body": {
6534
+ "type": "string"
6535
+ },
6536
+ "shortCode": {
6537
+ "type": "string"
6538
+ },
6539
+ "source": {
6540
+ "type": "string"
6541
+ },
6542
+ "isReply": {
6543
+ "type": "boolean"
6544
+ },
6545
+ "isSendable": {
6546
+ "type": "boolean"
6547
+ },
6548
+ "isExternalSender": {
6549
+ "type": "boolean"
6550
+ },
6551
+ "ttl": {
6552
+ "type": "string"
6553
+ },
6554
+ "sendScheduleDate": {
6555
+ "type": "string"
6556
+ },
6557
+ "meta": {
6558
+ "type": "object",
6559
+ "additionalProperties": true
6560
+ },
6451
6561
  "timestamps": {
6452
6562
  "title": "ResourceTimestampsSchema",
6453
6563
  "type": "object",
@@ -8293,10 +8403,6 @@
8293
8403
  "attributes": {
8294
8404
  "title": "NoteAttributesSchema",
8295
8405
  "type": "object",
8296
- "required": [
8297
- "name",
8298
- "email"
8299
- ],
8300
8406
  "properties": {
8301
8407
  "name": {
8302
8408
  "type": "string"
@@ -8304,6 +8410,10 @@
8304
8410
  "status": {
8305
8411
  "type": "string"
8306
8412
  },
8413
+ "meta": {
8414
+ "type": "object",
8415
+ "additionalProperties": true
8416
+ },
8307
8417
  "timestamps": {
8308
8418
  "title": "ResourceTimestampsSchema",
8309
8419
  "type": "object",
@@ -8462,10 +8572,6 @@
8462
8572
  "attributes": {
8463
8573
  "title": "NoteAttributesSchema",
8464
8574
  "type": "object",
8465
- "required": [
8466
- "name",
8467
- "email"
8468
- ],
8469
8575
  "properties": {
8470
8576
  "name": {
8471
8577
  "type": "string"
@@ -8473,6 +8579,10 @@
8473
8579
  "status": {
8474
8580
  "type": "string"
8475
8581
  },
8582
+ "meta": {
8583
+ "type": "object",
8584
+ "additionalProperties": true
8585
+ },
8476
8586
  "timestamps": {
8477
8587
  "title": "ResourceTimestampsSchema",
8478
8588
  "type": "object",
@@ -9147,10 +9257,6 @@
9147
9257
  "attributes": {
9148
9258
  "title": "ConversationAttributesSchema",
9149
9259
  "type": "object",
9150
- "required": [
9151
- "name",
9152
- "email"
9153
- ],
9154
9260
  "properties": {
9155
9261
  "name": {
9156
9262
  "type": "string"
@@ -9158,6 +9264,10 @@
9158
9264
  "status": {
9159
9265
  "type": "string"
9160
9266
  },
9267
+ "meta": {
9268
+ "type": "object",
9269
+ "additionalProperties": true
9270
+ },
9161
9271
  "timestamps": {
9162
9272
  "title": "ResourceTimestampsSchema",
9163
9273
  "type": "object",
@@ -9259,10 +9369,6 @@
9259
9369
  "attributes": {
9260
9370
  "title": "ConversationAttributesSchema",
9261
9371
  "type": "object",
9262
- "required": [
9263
- "name",
9264
- "email"
9265
- ],
9266
9372
  "properties": {
9267
9373
  "name": {
9268
9374
  "type": "string"
@@ -9270,6 +9376,10 @@
9270
9376
  "status": {
9271
9377
  "type": "string"
9272
9378
  },
9379
+ "meta": {
9380
+ "type": "object",
9381
+ "additionalProperties": true
9382
+ },
9273
9383
  "timestamps": {
9274
9384
  "title": "ResourceTimestampsSchema",
9275
9385
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",