@product-live/api-sdk 3.1.2 → 3.1.3
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/index.d.mts +36 -27
- package/dist/index.d.ts +36 -27
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2023,6 +2023,9 @@ function deserializeIntoScreenColumnDto(screenColumnDto = {}) {
|
|
|
2023
2023
|
"createdAt": (n) => {
|
|
2024
2024
|
screenColumnDto.createdAt = n.getStringValue();
|
|
2025
2025
|
},
|
|
2026
|
+
"display": (n) => {
|
|
2027
|
+
screenColumnDto.display = n.getEnumValue(ScreenColumnDto_displayObject);
|
|
2028
|
+
},
|
|
2026
2029
|
"fieldId": (n) => {
|
|
2027
2030
|
screenColumnDto.fieldId = n.getStringValue();
|
|
2028
2031
|
},
|
|
@@ -3570,6 +3573,7 @@ function serializePublicationDto_fields(writer, publicationDto_fields = {}) {
|
|
|
3570
3573
|
function serializeScreenColumnDto(writer, screenColumnDto = {}) {
|
|
3571
3574
|
if (screenColumnDto) {
|
|
3572
3575
|
writer.writeStringValue("createdAt", screenColumnDto.createdAt);
|
|
3576
|
+
writer.writeEnumValue("display", screenColumnDto.display);
|
|
3573
3577
|
writer.writeStringValue("fieldId", screenColumnDto.fieldId);
|
|
3574
3578
|
writer.writeStringValue("id", screenColumnDto.id);
|
|
3575
3579
|
writer.writeBooleanValue("isFixed", screenColumnDto.isFixed);
|
|
@@ -3947,6 +3951,7 @@ var CommentThreadDto_targetTypeObject = {
|
|
|
3947
3951
|
Partition: "partition",
|
|
3948
3952
|
Level: "level",
|
|
3949
3953
|
Item: "item",
|
|
3954
|
+
Item_cache: "item_cache",
|
|
3950
3955
|
Item_link: "item_link",
|
|
3951
3956
|
Permission: "permission",
|
|
3952
3957
|
ConditionalFormatting: "conditionalFormatting",
|
|
@@ -4222,6 +4227,9 @@ var PublicationDto_statusObject = {
|
|
|
4222
4227
|
RECEIVED: "RECEIVED",
|
|
4223
4228
|
REJECTED: "REJECTED"
|
|
4224
4229
|
};
|
|
4230
|
+
var ScreenColumnDto_displayObject = {
|
|
4231
|
+
MARKDOWN: "MARKDOWN"
|
|
4232
|
+
};
|
|
4225
4233
|
var ScreenColumnDto_objectObject = {
|
|
4226
4234
|
Screen_column: "screen_column"
|
|
4227
4235
|
};
|
|
@@ -9390,6 +9398,7 @@ export {
|
|
|
9390
9398
|
ProjectDto_objectObject,
|
|
9391
9399
|
PublicationDto_objectObject,
|
|
9392
9400
|
PublicationDto_statusObject,
|
|
9401
|
+
ScreenColumnDto_displayObject,
|
|
9393
9402
|
ScreenColumnDto_objectObject,
|
|
9394
9403
|
ScreenColumnDto_widthObject,
|
|
9395
9404
|
ScreenDto_lineHeightObject,
|