@smartytalent/openai-tools 0.1.33-dev.90 → 0.1.33-dev.92
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 +70 -10
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -5966,7 +5966,7 @@
|
|
|
5966
5966
|
"extension": {
|
|
5967
5967
|
"type": "string"
|
|
5968
5968
|
},
|
|
5969
|
-
"
|
|
5969
|
+
"shortCode": {
|
|
5970
5970
|
"type": "string"
|
|
5971
5971
|
},
|
|
5972
5972
|
"source": {
|
|
@@ -6147,7 +6147,7 @@
|
|
|
6147
6147
|
"extension": {
|
|
6148
6148
|
"type": "string"
|
|
6149
6149
|
},
|
|
6150
|
-
"
|
|
6150
|
+
"shortCode": {
|
|
6151
6151
|
"type": "string"
|
|
6152
6152
|
},
|
|
6153
6153
|
"source": {
|
|
@@ -7486,7 +7486,7 @@
|
|
|
7486
7486
|
"default": "general",
|
|
7487
7487
|
"description": "Role marker. Identifies which downstream resource this form's\nsubmission becomes:\n - jobBrief: produces a Brief about a Job (email/api intake;\n consumed by the create-job-from-brief workflow).\n - candidateSubmission: produces a Submission about a\n Candidate (apply form intake).\n - talentSubmission: produces a Submission about a Talent.\n - general: catch-all / undecided.\nTenant pins one form per kind as its default via\n`tenant.relationships.forms`. Mirrors the role-marker pattern\nused on Feedback (`stage`)."
|
|
7488
7488
|
},
|
|
7489
|
-
"
|
|
7489
|
+
"shortCode": {
|
|
7490
7490
|
"type": "string"
|
|
7491
7491
|
},
|
|
7492
7492
|
"content": {
|
|
@@ -7623,7 +7623,7 @@
|
|
|
7623
7623
|
"default": "general",
|
|
7624
7624
|
"description": "Role marker. Identifies which downstream resource this form's\nsubmission becomes:\n - jobBrief: produces a Brief about a Job (email/api intake;\n consumed by the create-job-from-brief workflow).\n - candidateSubmission: produces a Submission about a\n Candidate (apply form intake).\n - talentSubmission: produces a Submission about a Talent.\n - general: catch-all / undecided.\nTenant pins one form per kind as its default via\n`tenant.relationships.forms`. Mirrors the role-marker pattern\nused on Feedback (`stage`)."
|
|
7625
7625
|
},
|
|
7626
|
-
"
|
|
7626
|
+
"shortCode": {
|
|
7627
7627
|
"type": "string"
|
|
7628
7628
|
},
|
|
7629
7629
|
"content": {
|
|
@@ -17149,20 +17149,50 @@
|
|
|
17149
17149
|
"type": "object",
|
|
17150
17150
|
"description": "Platform-specific ad copy keyed by platform name and language code."
|
|
17151
17151
|
},
|
|
17152
|
-
"
|
|
17152
|
+
"files": {
|
|
17153
17153
|
"type": "array",
|
|
17154
|
-
"description": "
|
|
17154
|
+
"description": "Generated ad artifacts: master images per aspect variant, platform\ncrops, and a zip. Stored in the PRIVATE ad bucket; each entry carries\na short-lived presigned `url` the govern UI renders during review.\nThe public CDN copy is written only when the job is accepted\n(ad:publish). Replaces the never-emitted legacy `images` field.",
|
|
17155
17155
|
"items": {
|
|
17156
17156
|
"type": "object",
|
|
17157
17157
|
"properties": {
|
|
17158
|
+
"type": {
|
|
17159
|
+
"type": "string",
|
|
17160
|
+
"enum": [
|
|
17161
|
+
"master",
|
|
17162
|
+
"image",
|
|
17163
|
+
"zip"
|
|
17164
|
+
],
|
|
17165
|
+
"description": "master = full aspect render, image = platform crop, zip = bundle."
|
|
17166
|
+
},
|
|
17167
|
+
"variant": {
|
|
17168
|
+
"type": "string",
|
|
17169
|
+
"description": "Aspect variant for a master (square / landscape / portrait)."
|
|
17170
|
+
},
|
|
17158
17171
|
"platform": {
|
|
17159
|
-
"type": "string"
|
|
17172
|
+
"type": "string",
|
|
17173
|
+
"description": "Target platform for a crop (linkedin / indeed / ...)."
|
|
17160
17174
|
},
|
|
17161
17175
|
"s3Key": {
|
|
17162
17176
|
"type": "string"
|
|
17163
17177
|
},
|
|
17164
17178
|
"size": {
|
|
17165
17179
|
"type": "string"
|
|
17180
|
+
},
|
|
17181
|
+
"width": {
|
|
17182
|
+
"type": "integer"
|
|
17183
|
+
},
|
|
17184
|
+
"height": {
|
|
17185
|
+
"type": "integer"
|
|
17186
|
+
},
|
|
17187
|
+
"version": {
|
|
17188
|
+
"type": "integer"
|
|
17189
|
+
},
|
|
17190
|
+
"name": {
|
|
17191
|
+
"type": "string"
|
|
17192
|
+
},
|
|
17193
|
+
"url": {
|
|
17194
|
+
"type": "string",
|
|
17195
|
+
"description": "Short-lived presigned GET url for the preview. Absent if signing failed."
|
|
17166
17196
|
}
|
|
17167
17197
|
}
|
|
17168
17198
|
}
|
|
@@ -17282,20 +17312,50 @@
|
|
|
17282
17312
|
"type": "object",
|
|
17283
17313
|
"description": "Platform-specific ad copy keyed by platform name and language code."
|
|
17284
17314
|
},
|
|
17285
|
-
"
|
|
17315
|
+
"files": {
|
|
17286
17316
|
"type": "array",
|
|
17287
|
-
"description": "
|
|
17317
|
+
"description": "Generated ad artifacts: master images per aspect variant, platform\ncrops, and a zip. Stored in the PRIVATE ad bucket; each entry carries\na short-lived presigned `url` the govern UI renders during review.\nThe public CDN copy is written only when the job is accepted\n(ad:publish). Replaces the never-emitted legacy `images` field.",
|
|
17288
17318
|
"items": {
|
|
17289
17319
|
"type": "object",
|
|
17290
17320
|
"properties": {
|
|
17321
|
+
"type": {
|
|
17322
|
+
"type": "string",
|
|
17323
|
+
"enum": [
|
|
17324
|
+
"master",
|
|
17325
|
+
"image",
|
|
17326
|
+
"zip"
|
|
17327
|
+
],
|
|
17328
|
+
"description": "master = full aspect render, image = platform crop, zip = bundle."
|
|
17329
|
+
},
|
|
17330
|
+
"variant": {
|
|
17331
|
+
"type": "string",
|
|
17332
|
+
"description": "Aspect variant for a master (square / landscape / portrait)."
|
|
17333
|
+
},
|
|
17291
17334
|
"platform": {
|
|
17292
|
-
"type": "string"
|
|
17335
|
+
"type": "string",
|
|
17336
|
+
"description": "Target platform for a crop (linkedin / indeed / ...)."
|
|
17293
17337
|
},
|
|
17294
17338
|
"s3Key": {
|
|
17295
17339
|
"type": "string"
|
|
17296
17340
|
},
|
|
17297
17341
|
"size": {
|
|
17298
17342
|
"type": "string"
|
|
17343
|
+
},
|
|
17344
|
+
"width": {
|
|
17345
|
+
"type": "integer"
|
|
17346
|
+
},
|
|
17347
|
+
"height": {
|
|
17348
|
+
"type": "integer"
|
|
17349
|
+
},
|
|
17350
|
+
"version": {
|
|
17351
|
+
"type": "integer"
|
|
17352
|
+
},
|
|
17353
|
+
"name": {
|
|
17354
|
+
"type": "string"
|
|
17355
|
+
},
|
|
17356
|
+
"url": {
|
|
17357
|
+
"type": "string",
|
|
17358
|
+
"description": "Short-lived presigned GET url for the preview. Absent if signing failed."
|
|
17299
17359
|
}
|
|
17300
17360
|
}
|
|
17301
17361
|
}
|