@smartytalent/mcp-tools 0.8.15 → 0.8.16
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 +54 -8
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -168,6 +168,10 @@
|
|
|
168
168
|
"ad": {
|
|
169
169
|
"type": "object"
|
|
170
170
|
},
|
|
171
|
+
"brand": {
|
|
172
|
+
"type": "object",
|
|
173
|
+
"description": "Brand rules the ad and careers generators read. Split by who can\nact on what: exact colours are applied by CODE (an image model\nonly ever approximates a hex), while the look-and-feel strings\nare fed to the image prompt. Keys: primaryColor / secondaryColor\n(^#[0-9a-fA-F]{6}$), photography, avoid, tone. Freeform for now;\na dedicated brand service is the endgame once logo variants,\ntypefaces and versioning arrive."
|
|
174
|
+
},
|
|
171
175
|
"conversation": {
|
|
172
176
|
"type": "object"
|
|
173
177
|
},
|
|
@@ -638,6 +642,10 @@
|
|
|
638
642
|
"ad": {
|
|
639
643
|
"type": "object"
|
|
640
644
|
},
|
|
645
|
+
"brand": {
|
|
646
|
+
"type": "object",
|
|
647
|
+
"description": "Brand rules the ad and careers generators read. Split by who can\nact on what: exact colours are applied by CODE (an image model\nonly ever approximates a hex), while the look-and-feel strings\nare fed to the image prompt. Keys: primaryColor / secondaryColor\n(^#[0-9a-fA-F]{6}$), photography, avoid, tone. Freeform for now;\na dedicated brand service is the endgame once logo variants,\ntypefaces and versioning arrive."
|
|
648
|
+
},
|
|
641
649
|
"conversation": {
|
|
642
650
|
"type": "object"
|
|
643
651
|
},
|
|
@@ -20912,7 +20920,17 @@
|
|
|
20912
20920
|
"type": "string"
|
|
20913
20921
|
},
|
|
20914
20922
|
"status": {
|
|
20915
|
-
"type": "string"
|
|
20923
|
+
"type": "string",
|
|
20924
|
+
"enum": [
|
|
20925
|
+
"active",
|
|
20926
|
+
"inactive",
|
|
20927
|
+
"pending",
|
|
20928
|
+
"draft",
|
|
20929
|
+
"accepted",
|
|
20930
|
+
"archived",
|
|
20931
|
+
"failed"
|
|
20932
|
+
],
|
|
20933
|
+
"description": "Lifecycle of the ad. Clients do NOT drive `accepted`: the gate-2\nworkflow's job:accept-artifacts step flips draft -> accepted when the\noperator activates the job. A build-phase ad lands `draft`, a legacy\ncreate-on-activate ad lands `active`, and `failed` is stamped by the\npipeline's own failure handler."
|
|
20916
20934
|
},
|
|
20917
20935
|
"platforms": {
|
|
20918
20936
|
"type": "object",
|
|
@@ -20920,7 +20938,7 @@
|
|
|
20920
20938
|
},
|
|
20921
20939
|
"files": {
|
|
20922
20940
|
"type": "array",
|
|
20923
|
-
"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
|
|
20941
|
+
"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.\n\nThe PUBLIC CDN copy of the apply hero and listing card is written by\nthe `apply:publish` workflow action, which runs automatically as a\nstep of the gate-2 workflow (Activate Job From Operator). There is no\n`ad:publish` action and no status a client can write to trigger\npublication. The published URLs are `heroUrl` / `cardUrl` inside\n`tenants/{tenantShortCode}/apply/{jobShortCode}.json` on the CDN, and\nthey are content-addressed (a regenerated creative gets a new path)\nso they can be cached immutably.\n\nReplaces the never-emitted legacy `images` field.",
|
|
20924
20942
|
"items": {
|
|
20925
20943
|
"type": "object",
|
|
20926
20944
|
"properties": {
|
|
@@ -20935,11 +20953,20 @@
|
|
|
20935
20953
|
},
|
|
20936
20954
|
"variant": {
|
|
20937
20955
|
"type": "string",
|
|
20938
|
-
"
|
|
20956
|
+
"enum": [
|
|
20957
|
+
"square",
|
|
20958
|
+
"landscape"
|
|
20959
|
+
],
|
|
20960
|
+
"description": "Aspect variant for a master. `portrait` was removed - nothing consumed it."
|
|
20939
20961
|
},
|
|
20940
20962
|
"platform": {
|
|
20941
20963
|
"type": "string",
|
|
20942
|
-
"description": "Target platform for a crop (
|
|
20964
|
+
"description": "Target platform for a crop (linkedin_short / indeed / apply / apply_card / ...)."
|
|
20965
|
+
},
|
|
20966
|
+
"language": {
|
|
20967
|
+
"type": "string",
|
|
20968
|
+
"pattern": "^[a-z]{2}-[A-Z]{2}$",
|
|
20969
|
+
"description": "Locale of the text composited onto this crop. Present only on\n`type: image`; masters are text-free artwork and the zip is a\nbundle, so both omit it. Absent on crops generated before\nper-locale banners shipped - treat as the job's languageCode."
|
|
20943
20970
|
},
|
|
20944
20971
|
"s3Key": {
|
|
20945
20972
|
"type": "string"
|
|
@@ -21081,7 +21108,17 @@
|
|
|
21081
21108
|
"type": "string"
|
|
21082
21109
|
},
|
|
21083
21110
|
"status": {
|
|
21084
|
-
"type": "string"
|
|
21111
|
+
"type": "string",
|
|
21112
|
+
"enum": [
|
|
21113
|
+
"active",
|
|
21114
|
+
"inactive",
|
|
21115
|
+
"pending",
|
|
21116
|
+
"draft",
|
|
21117
|
+
"accepted",
|
|
21118
|
+
"archived",
|
|
21119
|
+
"failed"
|
|
21120
|
+
],
|
|
21121
|
+
"description": "Lifecycle of the ad. Clients do NOT drive `accepted`: the gate-2\nworkflow's job:accept-artifacts step flips draft -> accepted when the\noperator activates the job. A build-phase ad lands `draft`, a legacy\ncreate-on-activate ad lands `active`, and `failed` is stamped by the\npipeline's own failure handler."
|
|
21085
21122
|
},
|
|
21086
21123
|
"platforms": {
|
|
21087
21124
|
"type": "object",
|
|
@@ -21089,7 +21126,7 @@
|
|
|
21089
21126
|
},
|
|
21090
21127
|
"files": {
|
|
21091
21128
|
"type": "array",
|
|
21092
|
-
"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
|
|
21129
|
+
"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.\n\nThe PUBLIC CDN copy of the apply hero and listing card is written by\nthe `apply:publish` workflow action, which runs automatically as a\nstep of the gate-2 workflow (Activate Job From Operator). There is no\n`ad:publish` action and no status a client can write to trigger\npublication. The published URLs are `heroUrl` / `cardUrl` inside\n`tenants/{tenantShortCode}/apply/{jobShortCode}.json` on the CDN, and\nthey are content-addressed (a regenerated creative gets a new path)\nso they can be cached immutably.\n\nReplaces the never-emitted legacy `images` field.",
|
|
21093
21130
|
"items": {
|
|
21094
21131
|
"type": "object",
|
|
21095
21132
|
"properties": {
|
|
@@ -21104,11 +21141,20 @@
|
|
|
21104
21141
|
},
|
|
21105
21142
|
"variant": {
|
|
21106
21143
|
"type": "string",
|
|
21107
|
-
"
|
|
21144
|
+
"enum": [
|
|
21145
|
+
"square",
|
|
21146
|
+
"landscape"
|
|
21147
|
+
],
|
|
21148
|
+
"description": "Aspect variant for a master. `portrait` was removed - nothing consumed it."
|
|
21108
21149
|
},
|
|
21109
21150
|
"platform": {
|
|
21110
21151
|
"type": "string",
|
|
21111
|
-
"description": "Target platform for a crop (
|
|
21152
|
+
"description": "Target platform for a crop (linkedin_short / indeed / apply / apply_card / ...)."
|
|
21153
|
+
},
|
|
21154
|
+
"language": {
|
|
21155
|
+
"type": "string",
|
|
21156
|
+
"pattern": "^[a-z]{2}-[A-Z]{2}$",
|
|
21157
|
+
"description": "Locale of the text composited onto this crop. Present only on\n`type: image`; masters are text-free artwork and the zip is a\nbundle, so both omit it. Absent on crops generated before\nper-locale banners shipped - treat as the job's languageCode."
|
|
21112
21158
|
},
|
|
21113
21159
|
"s3Key": {
|
|
21114
21160
|
"type": "string"
|