@smartytalent/openai-tools 0.1.18 → 0.1.20
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 +772 -64
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6919,11 +6919,777 @@
|
|
|
6919
6919
|
}
|
|
6920
6920
|
}
|
|
6921
6921
|
},
|
|
6922
|
+
{
|
|
6923
|
+
"type": "function",
|
|
6924
|
+
"function": {
|
|
6925
|
+
"name": "list_feedbacks",
|
|
6926
|
+
"description": "List Feedbacks",
|
|
6927
|
+
"parameters": {
|
|
6928
|
+
"type": "object",
|
|
6929
|
+
"properties": {
|
|
6930
|
+
"filterStatus": {
|
|
6931
|
+
"type": "string",
|
|
6932
|
+
"description": "Returns feedbacks with the current status.",
|
|
6933
|
+
"enum": [
|
|
6934
|
+
"active",
|
|
6935
|
+
"draft",
|
|
6936
|
+
"archived",
|
|
6937
|
+
"failed"
|
|
6938
|
+
]
|
|
6939
|
+
},
|
|
6940
|
+
"filterCreatedFrom": {
|
|
6941
|
+
"type": "string",
|
|
6942
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
6943
|
+
},
|
|
6944
|
+
"filterCreatedTo": {
|
|
6945
|
+
"type": "string",
|
|
6946
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
6947
|
+
},
|
|
6948
|
+
"filterModifiedFrom": {
|
|
6949
|
+
"type": "string",
|
|
6950
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
6951
|
+
},
|
|
6952
|
+
"filterModifiedTo": {
|
|
6953
|
+
"type": "string",
|
|
6954
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
6955
|
+
},
|
|
6956
|
+
"pageSize": {
|
|
6957
|
+
"type": "integer",
|
|
6958
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
6959
|
+
},
|
|
6960
|
+
"pageNumber": {
|
|
6961
|
+
"type": "integer",
|
|
6962
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
6963
|
+
},
|
|
6964
|
+
"pageAfter": {
|
|
6965
|
+
"type": "string",
|
|
6966
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
6967
|
+
},
|
|
6968
|
+
"pageBefore": {
|
|
6969
|
+
"type": "string",
|
|
6970
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
6971
|
+
}
|
|
6972
|
+
}
|
|
6973
|
+
}
|
|
6974
|
+
}
|
|
6975
|
+
},
|
|
6976
|
+
{
|
|
6977
|
+
"type": "function",
|
|
6978
|
+
"function": {
|
|
6979
|
+
"name": "create_feedback",
|
|
6980
|
+
"description": "Create Feedback",
|
|
6981
|
+
"parameters": {
|
|
6982
|
+
"title": "CreateFeedbackRequestBody",
|
|
6983
|
+
"type": "object",
|
|
6984
|
+
"required": [
|
|
6985
|
+
"data"
|
|
6986
|
+
],
|
|
6987
|
+
"properties": {
|
|
6988
|
+
"data": {
|
|
6989
|
+
"title": "CreateFeedbackRequestBodyData",
|
|
6990
|
+
"type": "object",
|
|
6991
|
+
"required": [
|
|
6992
|
+
"type",
|
|
6993
|
+
"attributes"
|
|
6994
|
+
],
|
|
6995
|
+
"properties": {
|
|
6996
|
+
"type": {
|
|
6997
|
+
"type": "string",
|
|
6998
|
+
"enum": [
|
|
6999
|
+
"feedbacks"
|
|
7000
|
+
]
|
|
7001
|
+
},
|
|
7002
|
+
"attributes": {
|
|
7003
|
+
"title": "FeedbackAttributesSchema",
|
|
7004
|
+
"type": "object",
|
|
7005
|
+
"required": [
|
|
7006
|
+
"name"
|
|
7007
|
+
],
|
|
7008
|
+
"properties": {
|
|
7009
|
+
"name": {
|
|
7010
|
+
"type": "string"
|
|
7011
|
+
},
|
|
7012
|
+
"transparency": {
|
|
7013
|
+
"type": "string",
|
|
7014
|
+
"enum": [
|
|
7015
|
+
"generic",
|
|
7016
|
+
"category",
|
|
7017
|
+
"specific"
|
|
7018
|
+
]
|
|
7019
|
+
},
|
|
7020
|
+
"tone": {
|
|
7021
|
+
"type": "string",
|
|
7022
|
+
"enum": [
|
|
7023
|
+
"casual",
|
|
7024
|
+
"formal",
|
|
7025
|
+
"superFormal"
|
|
7026
|
+
]
|
|
7027
|
+
},
|
|
7028
|
+
"delay": {
|
|
7029
|
+
"type": "integer",
|
|
7030
|
+
"default": 72
|
|
7031
|
+
},
|
|
7032
|
+
"respectBusinessDays": {
|
|
7033
|
+
"type": "boolean",
|
|
7034
|
+
"default": false
|
|
7035
|
+
},
|
|
7036
|
+
"signature": {
|
|
7037
|
+
"type": "object",
|
|
7038
|
+
"properties": {
|
|
7039
|
+
"name": {
|
|
7040
|
+
"type": "string"
|
|
7041
|
+
},
|
|
7042
|
+
"title": {
|
|
7043
|
+
"type": "string"
|
|
7044
|
+
},
|
|
7045
|
+
"company": {
|
|
7046
|
+
"type": "string"
|
|
7047
|
+
}
|
|
7048
|
+
}
|
|
7049
|
+
},
|
|
7050
|
+
"aiDisclosure": {
|
|
7051
|
+
"type": "boolean",
|
|
7052
|
+
"default": true
|
|
7053
|
+
},
|
|
7054
|
+
"instructions": {
|
|
7055
|
+
"type": "string"
|
|
7056
|
+
},
|
|
7057
|
+
"categories": {
|
|
7058
|
+
"type": "array",
|
|
7059
|
+
"items": {
|
|
7060
|
+
"type": "string"
|
|
7061
|
+
}
|
|
7062
|
+
},
|
|
7063
|
+
"reasons": {
|
|
7064
|
+
"type": "array",
|
|
7065
|
+
"items": {
|
|
7066
|
+
"type": "string"
|
|
7067
|
+
}
|
|
7068
|
+
},
|
|
7069
|
+
"links": {
|
|
7070
|
+
"type": "array",
|
|
7071
|
+
"items": {
|
|
7072
|
+
"type": "object",
|
|
7073
|
+
"properties": {
|
|
7074
|
+
"label": {
|
|
7075
|
+
"type": "string"
|
|
7076
|
+
},
|
|
7077
|
+
"url": {
|
|
7078
|
+
"type": "string"
|
|
7079
|
+
}
|
|
7080
|
+
}
|
|
7081
|
+
}
|
|
7082
|
+
},
|
|
7083
|
+
"feedbackFormUrl": {
|
|
7084
|
+
"type": "string"
|
|
7085
|
+
},
|
|
7086
|
+
"status": {
|
|
7087
|
+
"type": "string",
|
|
7088
|
+
"enum": [
|
|
7089
|
+
"active",
|
|
7090
|
+
"draft",
|
|
7091
|
+
"archived",
|
|
7092
|
+
"failed"
|
|
7093
|
+
]
|
|
7094
|
+
},
|
|
7095
|
+
"source": {
|
|
7096
|
+
"type": "string"
|
|
7097
|
+
},
|
|
7098
|
+
"timestamps": {
|
|
7099
|
+
"title": "ResourceTimestampsSchema",
|
|
7100
|
+
"type": "object",
|
|
7101
|
+
"properties": {
|
|
7102
|
+
"created": {
|
|
7103
|
+
"type": "string",
|
|
7104
|
+
"format": "date-time"
|
|
7105
|
+
},
|
|
7106
|
+
"modified": {
|
|
7107
|
+
"type": "string",
|
|
7108
|
+
"format": "date-time"
|
|
7109
|
+
}
|
|
7110
|
+
}
|
|
7111
|
+
}
|
|
7112
|
+
}
|
|
7113
|
+
},
|
|
7114
|
+
"relationships": {
|
|
7115
|
+
"title": "FeedbackRelationshipsSchema",
|
|
7116
|
+
"type": "object",
|
|
7117
|
+
"properties": {
|
|
7118
|
+
"jobs": {
|
|
7119
|
+
"title": "FeedbackRelationshipsJobsSchema",
|
|
7120
|
+
"type": "object",
|
|
7121
|
+
"properties": {
|
|
7122
|
+
"data": {
|
|
7123
|
+
"type": "object",
|
|
7124
|
+
"properties": {
|
|
7125
|
+
"type": {
|
|
7126
|
+
"type": "string"
|
|
7127
|
+
},
|
|
7128
|
+
"id": {
|
|
7129
|
+
"type": "string"
|
|
7130
|
+
}
|
|
7131
|
+
}
|
|
7132
|
+
}
|
|
7133
|
+
}
|
|
7134
|
+
}
|
|
7135
|
+
}
|
|
7136
|
+
}
|
|
7137
|
+
}
|
|
7138
|
+
}
|
|
7139
|
+
}
|
|
7140
|
+
}
|
|
7141
|
+
}
|
|
7142
|
+
},
|
|
7143
|
+
{
|
|
7144
|
+
"type": "function",
|
|
7145
|
+
"function": {
|
|
7146
|
+
"name": "feedbacks_options",
|
|
7147
|
+
"description": "Feedbacks Options",
|
|
7148
|
+
"parameters": {
|
|
7149
|
+
"type": "object",
|
|
7150
|
+
"properties": {}
|
|
7151
|
+
}
|
|
7152
|
+
}
|
|
7153
|
+
},
|
|
7154
|
+
{
|
|
7155
|
+
"type": "function",
|
|
7156
|
+
"function": {
|
|
7157
|
+
"name": "show_feedback",
|
|
7158
|
+
"description": "Show Feedback",
|
|
7159
|
+
"parameters": {
|
|
7160
|
+
"type": "object",
|
|
7161
|
+
"properties": {
|
|
7162
|
+
"feedbackId": {
|
|
7163
|
+
"type": "string",
|
|
7164
|
+
"description": "feedbackId parameter"
|
|
7165
|
+
}
|
|
7166
|
+
},
|
|
7167
|
+
"required": [
|
|
7168
|
+
"feedbackId"
|
|
7169
|
+
]
|
|
7170
|
+
}
|
|
7171
|
+
}
|
|
7172
|
+
},
|
|
7173
|
+
{
|
|
7174
|
+
"type": "function",
|
|
7175
|
+
"function": {
|
|
7176
|
+
"name": "update_feedback",
|
|
7177
|
+
"description": "Update Feedback",
|
|
7178
|
+
"parameters": {
|
|
7179
|
+
"type": "object",
|
|
7180
|
+
"properties": {
|
|
7181
|
+
"feedbackId": {
|
|
7182
|
+
"type": "string",
|
|
7183
|
+
"description": "feedbackId parameter"
|
|
7184
|
+
},
|
|
7185
|
+
"requestBody": {
|
|
7186
|
+
"title": "UpdateFeedbackRequestBody",
|
|
7187
|
+
"type": "object",
|
|
7188
|
+
"required": [
|
|
7189
|
+
"data"
|
|
7190
|
+
],
|
|
7191
|
+
"properties": {
|
|
7192
|
+
"data": {
|
|
7193
|
+
"title": "UpdateFeedbackRequestBodyData",
|
|
7194
|
+
"type": "object",
|
|
7195
|
+
"required": [
|
|
7196
|
+
"type",
|
|
7197
|
+
"id",
|
|
7198
|
+
"attributes"
|
|
7199
|
+
],
|
|
7200
|
+
"properties": {
|
|
7201
|
+
"type": {
|
|
7202
|
+
"type": "string",
|
|
7203
|
+
"enum": [
|
|
7204
|
+
"feedbacks"
|
|
7205
|
+
]
|
|
7206
|
+
},
|
|
7207
|
+
"id": {
|
|
7208
|
+
"type": "string"
|
|
7209
|
+
},
|
|
7210
|
+
"attributes": {
|
|
7211
|
+
"title": "FeedbackAttributesSchema",
|
|
7212
|
+
"type": "object",
|
|
7213
|
+
"required": [
|
|
7214
|
+
"name"
|
|
7215
|
+
],
|
|
7216
|
+
"properties": {
|
|
7217
|
+
"name": {
|
|
7218
|
+
"type": "string"
|
|
7219
|
+
},
|
|
7220
|
+
"transparency": {
|
|
7221
|
+
"type": "string",
|
|
7222
|
+
"enum": [
|
|
7223
|
+
"generic",
|
|
7224
|
+
"category",
|
|
7225
|
+
"specific"
|
|
7226
|
+
]
|
|
7227
|
+
},
|
|
7228
|
+
"tone": {
|
|
7229
|
+
"type": "string",
|
|
7230
|
+
"enum": [
|
|
7231
|
+
"casual",
|
|
7232
|
+
"formal",
|
|
7233
|
+
"superFormal"
|
|
7234
|
+
]
|
|
7235
|
+
},
|
|
7236
|
+
"delay": {
|
|
7237
|
+
"type": "integer",
|
|
7238
|
+
"default": 72
|
|
7239
|
+
},
|
|
7240
|
+
"respectBusinessDays": {
|
|
7241
|
+
"type": "boolean",
|
|
7242
|
+
"default": false
|
|
7243
|
+
},
|
|
7244
|
+
"signature": {
|
|
7245
|
+
"type": "object",
|
|
7246
|
+
"properties": {
|
|
7247
|
+
"name": {
|
|
7248
|
+
"type": "string"
|
|
7249
|
+
},
|
|
7250
|
+
"title": {
|
|
7251
|
+
"type": "string"
|
|
7252
|
+
},
|
|
7253
|
+
"company": {
|
|
7254
|
+
"type": "string"
|
|
7255
|
+
}
|
|
7256
|
+
}
|
|
7257
|
+
},
|
|
7258
|
+
"aiDisclosure": {
|
|
7259
|
+
"type": "boolean",
|
|
7260
|
+
"default": true
|
|
7261
|
+
},
|
|
7262
|
+
"instructions": {
|
|
7263
|
+
"type": "string"
|
|
7264
|
+
},
|
|
7265
|
+
"categories": {
|
|
7266
|
+
"type": "array",
|
|
7267
|
+
"items": {
|
|
7268
|
+
"type": "string"
|
|
7269
|
+
}
|
|
7270
|
+
},
|
|
7271
|
+
"reasons": {
|
|
7272
|
+
"type": "array",
|
|
7273
|
+
"items": {
|
|
7274
|
+
"type": "string"
|
|
7275
|
+
}
|
|
7276
|
+
},
|
|
7277
|
+
"links": {
|
|
7278
|
+
"type": "array",
|
|
7279
|
+
"items": {
|
|
7280
|
+
"type": "object",
|
|
7281
|
+
"properties": {
|
|
7282
|
+
"label": {
|
|
7283
|
+
"type": "string"
|
|
7284
|
+
},
|
|
7285
|
+
"url": {
|
|
7286
|
+
"type": "string"
|
|
7287
|
+
}
|
|
7288
|
+
}
|
|
7289
|
+
}
|
|
7290
|
+
},
|
|
7291
|
+
"feedbackFormUrl": {
|
|
7292
|
+
"type": "string"
|
|
7293
|
+
},
|
|
7294
|
+
"status": {
|
|
7295
|
+
"type": "string",
|
|
7296
|
+
"enum": [
|
|
7297
|
+
"active",
|
|
7298
|
+
"draft",
|
|
7299
|
+
"archived",
|
|
7300
|
+
"failed"
|
|
7301
|
+
]
|
|
7302
|
+
},
|
|
7303
|
+
"source": {
|
|
7304
|
+
"type": "string"
|
|
7305
|
+
},
|
|
7306
|
+
"timestamps": {
|
|
7307
|
+
"title": "ResourceTimestampsSchema",
|
|
7308
|
+
"type": "object",
|
|
7309
|
+
"properties": {
|
|
7310
|
+
"created": {
|
|
7311
|
+
"type": "string",
|
|
7312
|
+
"format": "date-time"
|
|
7313
|
+
},
|
|
7314
|
+
"modified": {
|
|
7315
|
+
"type": "string",
|
|
7316
|
+
"format": "date-time"
|
|
7317
|
+
}
|
|
7318
|
+
}
|
|
7319
|
+
}
|
|
7320
|
+
}
|
|
7321
|
+
},
|
|
7322
|
+
"relationships": {
|
|
7323
|
+
"title": "FeedbackRelationshipsSchema",
|
|
7324
|
+
"type": "object",
|
|
7325
|
+
"properties": {
|
|
7326
|
+
"jobs": {
|
|
7327
|
+
"title": "FeedbackRelationshipsJobsSchema",
|
|
7328
|
+
"type": "object",
|
|
7329
|
+
"properties": {
|
|
7330
|
+
"data": {
|
|
7331
|
+
"type": "object",
|
|
7332
|
+
"properties": {
|
|
7333
|
+
"type": {
|
|
7334
|
+
"type": "string"
|
|
7335
|
+
},
|
|
7336
|
+
"id": {
|
|
7337
|
+
"type": "string"
|
|
7338
|
+
}
|
|
7339
|
+
}
|
|
7340
|
+
}
|
|
7341
|
+
}
|
|
7342
|
+
}
|
|
7343
|
+
}
|
|
7344
|
+
}
|
|
7345
|
+
}
|
|
7346
|
+
}
|
|
7347
|
+
}
|
|
7348
|
+
}
|
|
7349
|
+
},
|
|
7350
|
+
"required": [
|
|
7351
|
+
"feedbackId",
|
|
7352
|
+
"requestBody"
|
|
7353
|
+
]
|
|
7354
|
+
}
|
|
7355
|
+
}
|
|
7356
|
+
},
|
|
7357
|
+
{
|
|
7358
|
+
"type": "function",
|
|
7359
|
+
"function": {
|
|
7360
|
+
"name": "delete_feedback",
|
|
7361
|
+
"description": "Delete Feedback",
|
|
7362
|
+
"parameters": {
|
|
7363
|
+
"type": "object",
|
|
7364
|
+
"properties": {
|
|
7365
|
+
"feedbackId": {
|
|
7366
|
+
"type": "string",
|
|
7367
|
+
"description": "feedbackId parameter"
|
|
7368
|
+
},
|
|
7369
|
+
"permanentDelete": {
|
|
7370
|
+
"type": "string",
|
|
7371
|
+
"description": "Set to true for permanent deletion.",
|
|
7372
|
+
"enum": [
|
|
7373
|
+
"true",
|
|
7374
|
+
"false"
|
|
7375
|
+
]
|
|
7376
|
+
}
|
|
7377
|
+
},
|
|
7378
|
+
"required": [
|
|
7379
|
+
"feedbackId"
|
|
7380
|
+
]
|
|
7381
|
+
}
|
|
7382
|
+
}
|
|
7383
|
+
},
|
|
7384
|
+
{
|
|
7385
|
+
"type": "function",
|
|
7386
|
+
"function": {
|
|
7387
|
+
"name": "feedback_options",
|
|
7388
|
+
"description": "Feedback Options",
|
|
7389
|
+
"parameters": {
|
|
7390
|
+
"type": "object",
|
|
7391
|
+
"properties": {}
|
|
7392
|
+
}
|
|
7393
|
+
}
|
|
7394
|
+
},
|
|
6922
7395
|
{
|
|
6923
7396
|
"type": "function",
|
|
6924
7397
|
"function": {
|
|
6925
7398
|
"name": "create_submission",
|
|
6926
7399
|
"description": "Create Submission",
|
|
7400
|
+
"parameters": {
|
|
7401
|
+
"title": "CreateSubmissionRequestBody",
|
|
7402
|
+
"type": "object",
|
|
7403
|
+
"required": [
|
|
7404
|
+
"data"
|
|
7405
|
+
],
|
|
7406
|
+
"properties": {
|
|
7407
|
+
"data": {
|
|
7408
|
+
"title": "CreateSubmissionRequestBodyData",
|
|
7409
|
+
"type": "object",
|
|
7410
|
+
"required": [
|
|
7411
|
+
"type",
|
|
7412
|
+
"attributes"
|
|
7413
|
+
],
|
|
7414
|
+
"properties": {
|
|
7415
|
+
"type": {
|
|
7416
|
+
"type": "string",
|
|
7417
|
+
"enum": [
|
|
7418
|
+
"submissions"
|
|
7419
|
+
]
|
|
7420
|
+
},
|
|
7421
|
+
"attributes": {
|
|
7422
|
+
"title": "SubmissionAttributesSchema",
|
|
7423
|
+
"type": "object",
|
|
7424
|
+
"required": [
|
|
7425
|
+
"name",
|
|
7426
|
+
"email"
|
|
7427
|
+
],
|
|
7428
|
+
"properties": {
|
|
7429
|
+
"name": {
|
|
7430
|
+
"type": "string"
|
|
7431
|
+
},
|
|
7432
|
+
"email": {
|
|
7433
|
+
"type": "string"
|
|
7434
|
+
},
|
|
7435
|
+
"phone": {
|
|
7436
|
+
"type": "string"
|
|
7437
|
+
},
|
|
7438
|
+
"source": {
|
|
7439
|
+
"type": "string",
|
|
7440
|
+
"enum": [
|
|
7441
|
+
"form",
|
|
7442
|
+
"email",
|
|
7443
|
+
"call",
|
|
7444
|
+
"api"
|
|
7445
|
+
]
|
|
7446
|
+
},
|
|
7447
|
+
"status": {
|
|
7448
|
+
"type": "string",
|
|
7449
|
+
"enum": [
|
|
7450
|
+
"received",
|
|
7451
|
+
"processing",
|
|
7452
|
+
"processed",
|
|
7453
|
+
"failed"
|
|
7454
|
+
]
|
|
7455
|
+
},
|
|
7456
|
+
"language": {
|
|
7457
|
+
"type": "string"
|
|
7458
|
+
},
|
|
7459
|
+
"fields": {
|
|
7460
|
+
"type": "object",
|
|
7461
|
+
"description": "Custom form field answers keyed by field identifier"
|
|
7462
|
+
},
|
|
7463
|
+
"files": {
|
|
7464
|
+
"type": "array",
|
|
7465
|
+
"items": {
|
|
7466
|
+
"type": "object",
|
|
7467
|
+
"properties": {
|
|
7468
|
+
"key": {
|
|
7469
|
+
"type": "string"
|
|
7470
|
+
},
|
|
7471
|
+
"bucket": {
|
|
7472
|
+
"type": "string"
|
|
7473
|
+
},
|
|
7474
|
+
"name": {
|
|
7475
|
+
"type": "string"
|
|
7476
|
+
},
|
|
7477
|
+
"contentType": {
|
|
7478
|
+
"type": "string"
|
|
7479
|
+
}
|
|
7480
|
+
}
|
|
7481
|
+
}
|
|
7482
|
+
},
|
|
7483
|
+
"referral": {
|
|
7484
|
+
"type": "object",
|
|
7485
|
+
"properties": {
|
|
7486
|
+
"referrerName": {
|
|
7487
|
+
"type": "string"
|
|
7488
|
+
},
|
|
7489
|
+
"referrerEmail": {
|
|
7490
|
+
"type": "string"
|
|
7491
|
+
},
|
|
7492
|
+
"relationship": {
|
|
7493
|
+
"type": "string"
|
|
7494
|
+
},
|
|
7495
|
+
"note": {
|
|
7496
|
+
"type": "string"
|
|
7497
|
+
}
|
|
7498
|
+
}
|
|
7499
|
+
},
|
|
7500
|
+
"consent": {
|
|
7501
|
+
"type": "object",
|
|
7502
|
+
"properties": {
|
|
7503
|
+
"current": {
|
|
7504
|
+
"type": "boolean"
|
|
7505
|
+
},
|
|
7506
|
+
"future": {
|
|
7507
|
+
"type": "boolean"
|
|
7508
|
+
}
|
|
7509
|
+
}
|
|
7510
|
+
},
|
|
7511
|
+
"timestamps": {
|
|
7512
|
+
"title": "ResourceTimestampsSchema",
|
|
7513
|
+
"type": "object",
|
|
7514
|
+
"properties": {
|
|
7515
|
+
"created": {
|
|
7516
|
+
"type": "string",
|
|
7517
|
+
"format": "date-time"
|
|
7518
|
+
},
|
|
7519
|
+
"modified": {
|
|
7520
|
+
"type": "string",
|
|
7521
|
+
"format": "date-time"
|
|
7522
|
+
}
|
|
7523
|
+
}
|
|
7524
|
+
}
|
|
7525
|
+
}
|
|
7526
|
+
},
|
|
7527
|
+
"relationships": {
|
|
7528
|
+
"title": "SubmissionRelationshipsSchema",
|
|
7529
|
+
"type": "object",
|
|
7530
|
+
"properties": {
|
|
7531
|
+
"forms": {
|
|
7532
|
+
"title": "SubmissionRelationshipsFormsSchema",
|
|
7533
|
+
"type": "object",
|
|
7534
|
+
"properties": {
|
|
7535
|
+
"data": {
|
|
7536
|
+
"type": "array",
|
|
7537
|
+
"items": {
|
|
7538
|
+
"type": "object",
|
|
7539
|
+
"properties": {
|
|
7540
|
+
"type": {
|
|
7541
|
+
"type": "string"
|
|
7542
|
+
},
|
|
7543
|
+
"id": {
|
|
7544
|
+
"type": "string"
|
|
7545
|
+
}
|
|
7546
|
+
}
|
|
7547
|
+
}
|
|
7548
|
+
}
|
|
7549
|
+
}
|
|
7550
|
+
},
|
|
7551
|
+
"jobs": {
|
|
7552
|
+
"title": "SubmissionRelationshipsJobsSchema",
|
|
7553
|
+
"type": "object",
|
|
7554
|
+
"properties": {
|
|
7555
|
+
"data": {
|
|
7556
|
+
"type": "array",
|
|
7557
|
+
"items": {
|
|
7558
|
+
"type": "object",
|
|
7559
|
+
"properties": {
|
|
7560
|
+
"type": {
|
|
7561
|
+
"type": "string"
|
|
7562
|
+
},
|
|
7563
|
+
"id": {
|
|
7564
|
+
"type": "string"
|
|
7565
|
+
}
|
|
7566
|
+
}
|
|
7567
|
+
}
|
|
7568
|
+
}
|
|
7569
|
+
}
|
|
7570
|
+
},
|
|
7571
|
+
"talents": {
|
|
7572
|
+
"title": "SubmissionRelationshipsTalentsSchema",
|
|
7573
|
+
"type": "object",
|
|
7574
|
+
"properties": {
|
|
7575
|
+
"data": {
|
|
7576
|
+
"type": "array",
|
|
7577
|
+
"items": {
|
|
7578
|
+
"type": "object",
|
|
7579
|
+
"properties": {
|
|
7580
|
+
"type": {
|
|
7581
|
+
"type": "string"
|
|
7582
|
+
},
|
|
7583
|
+
"id": {
|
|
7584
|
+
"type": "string"
|
|
7585
|
+
}
|
|
7586
|
+
}
|
|
7587
|
+
}
|
|
7588
|
+
}
|
|
7589
|
+
}
|
|
7590
|
+
},
|
|
7591
|
+
"candidates": {
|
|
7592
|
+
"title": "SubmissionRelationshipsCandidatesSchema",
|
|
7593
|
+
"type": "object",
|
|
7594
|
+
"properties": {
|
|
7595
|
+
"data": {
|
|
7596
|
+
"type": "array",
|
|
7597
|
+
"items": {
|
|
7598
|
+
"type": "object",
|
|
7599
|
+
"properties": {
|
|
7600
|
+
"type": {
|
|
7601
|
+
"type": "string"
|
|
7602
|
+
},
|
|
7603
|
+
"id": {
|
|
7604
|
+
"type": "string"
|
|
7605
|
+
}
|
|
7606
|
+
}
|
|
7607
|
+
}
|
|
7608
|
+
}
|
|
7609
|
+
}
|
|
7610
|
+
}
|
|
7611
|
+
}
|
|
7612
|
+
}
|
|
7613
|
+
}
|
|
7614
|
+
}
|
|
7615
|
+
}
|
|
7616
|
+
}
|
|
7617
|
+
}
|
|
7618
|
+
},
|
|
7619
|
+
{
|
|
7620
|
+
"type": "function",
|
|
7621
|
+
"function": {
|
|
7622
|
+
"name": "list_submissions",
|
|
7623
|
+
"description": "List Submissions",
|
|
7624
|
+
"parameters": {
|
|
7625
|
+
"type": "object",
|
|
7626
|
+
"properties": {
|
|
7627
|
+
"filterStatus": {
|
|
7628
|
+
"type": "string",
|
|
7629
|
+
"description": "Returns submissions with the current status.",
|
|
7630
|
+
"enum": [
|
|
7631
|
+
"received",
|
|
7632
|
+
"processing",
|
|
7633
|
+
"processed",
|
|
7634
|
+
"failed"
|
|
7635
|
+
]
|
|
7636
|
+
},
|
|
7637
|
+
"filterEmail": {
|
|
7638
|
+
"type": "string",
|
|
7639
|
+
"description": "Filter submissions by email address."
|
|
7640
|
+
},
|
|
7641
|
+
"filterCreatedFrom": {
|
|
7642
|
+
"type": "string",
|
|
7643
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
7644
|
+
},
|
|
7645
|
+
"filterCreatedTo": {
|
|
7646
|
+
"type": "string",
|
|
7647
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
7648
|
+
},
|
|
7649
|
+
"filterModifiedFrom": {
|
|
7650
|
+
"type": "string",
|
|
7651
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
7652
|
+
},
|
|
7653
|
+
"filterModifiedTo": {
|
|
7654
|
+
"type": "string",
|
|
7655
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
7656
|
+
},
|
|
7657
|
+
"pageSize": {
|
|
7658
|
+
"type": "integer",
|
|
7659
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
7660
|
+
},
|
|
7661
|
+
"pageNumber": {
|
|
7662
|
+
"type": "integer",
|
|
7663
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
7664
|
+
},
|
|
7665
|
+
"pageAfter": {
|
|
7666
|
+
"type": "string",
|
|
7667
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
7668
|
+
},
|
|
7669
|
+
"pageBefore": {
|
|
7670
|
+
"type": "string",
|
|
7671
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
7672
|
+
}
|
|
7673
|
+
}
|
|
7674
|
+
}
|
|
7675
|
+
}
|
|
7676
|
+
},
|
|
7677
|
+
{
|
|
7678
|
+
"type": "function",
|
|
7679
|
+
"function": {
|
|
7680
|
+
"name": "submissions_options",
|
|
7681
|
+
"description": "Submissions Options",
|
|
7682
|
+
"parameters": {
|
|
7683
|
+
"type": "object",
|
|
7684
|
+
"properties": {}
|
|
7685
|
+
}
|
|
7686
|
+
}
|
|
7687
|
+
},
|
|
7688
|
+
{
|
|
7689
|
+
"type": "function",
|
|
7690
|
+
"function": {
|
|
7691
|
+
"name": "create_guest_submission",
|
|
7692
|
+
"description": "Create Submission (Guest)",
|
|
6927
7693
|
"parameters": {
|
|
6928
7694
|
"type": "object",
|
|
6929
7695
|
"required": [
|
|
@@ -7001,66 +7767,8 @@
|
|
|
7001
7767
|
{
|
|
7002
7768
|
"type": "function",
|
|
7003
7769
|
"function": {
|
|
7004
|
-
"name": "
|
|
7005
|
-
"description": "
|
|
7006
|
-
"parameters": {
|
|
7007
|
-
"type": "object",
|
|
7008
|
-
"properties": {
|
|
7009
|
-
"filterStatus": {
|
|
7010
|
-
"type": "string",
|
|
7011
|
-
"description": "Returns submissions with the current status.",
|
|
7012
|
-
"enum": [
|
|
7013
|
-
"received",
|
|
7014
|
-
"processing",
|
|
7015
|
-
"processed",
|
|
7016
|
-
"failed"
|
|
7017
|
-
]
|
|
7018
|
-
},
|
|
7019
|
-
"filterEmail": {
|
|
7020
|
-
"type": "string",
|
|
7021
|
-
"description": "Filter submissions by email address."
|
|
7022
|
-
},
|
|
7023
|
-
"filterCreatedFrom": {
|
|
7024
|
-
"type": "string",
|
|
7025
|
-
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
7026
|
-
},
|
|
7027
|
-
"filterCreatedTo": {
|
|
7028
|
-
"type": "string",
|
|
7029
|
-
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
7030
|
-
},
|
|
7031
|
-
"filterModifiedFrom": {
|
|
7032
|
-
"type": "string",
|
|
7033
|
-
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
7034
|
-
},
|
|
7035
|
-
"filterModifiedTo": {
|
|
7036
|
-
"type": "string",
|
|
7037
|
-
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
7038
|
-
},
|
|
7039
|
-
"pageSize": {
|
|
7040
|
-
"type": "integer",
|
|
7041
|
-
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
7042
|
-
},
|
|
7043
|
-
"pageNumber": {
|
|
7044
|
-
"type": "integer",
|
|
7045
|
-
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
7046
|
-
},
|
|
7047
|
-
"pageAfter": {
|
|
7048
|
-
"type": "string",
|
|
7049
|
-
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
7050
|
-
},
|
|
7051
|
-
"pageBefore": {
|
|
7052
|
-
"type": "string",
|
|
7053
|
-
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
7054
|
-
}
|
|
7055
|
-
}
|
|
7056
|
-
}
|
|
7057
|
-
}
|
|
7058
|
-
},
|
|
7059
|
-
{
|
|
7060
|
-
"type": "function",
|
|
7061
|
-
"function": {
|
|
7062
|
-
"name": "submissions_options",
|
|
7063
|
-
"description": "Submissions Options",
|
|
7770
|
+
"name": "guest_submissions_options",
|
|
7771
|
+
"description": "Guest Submissions Options",
|
|
7064
7772
|
"parameters": {
|
|
7065
7773
|
"type": "object",
|
|
7066
7774
|
"properties": {}
|
|
@@ -7070,8 +7778,8 @@
|
|
|
7070
7778
|
{
|
|
7071
7779
|
"type": "function",
|
|
7072
7780
|
"function": {
|
|
7073
|
-
"name": "
|
|
7074
|
-
"description": "Upload Submission File",
|
|
7781
|
+
"name": "upload_guest_submission_file",
|
|
7782
|
+
"description": "Upload Submission File (Guest)",
|
|
7075
7783
|
"parameters": {
|
|
7076
7784
|
"type": "object",
|
|
7077
7785
|
"required": [
|
|
@@ -7100,8 +7808,8 @@
|
|
|
7100
7808
|
{
|
|
7101
7809
|
"type": "function",
|
|
7102
7810
|
"function": {
|
|
7103
|
-
"name": "
|
|
7104
|
-
"description": "Submission Uploads Options",
|
|
7811
|
+
"name": "guest_submission_uploads_options",
|
|
7812
|
+
"description": "Guest Submission Uploads Options",
|
|
7105
7813
|
"parameters": {
|
|
7106
7814
|
"type": "object",
|
|
7107
7815
|
"properties": {}
|