@product-live/api-sdk 3.1.1 → 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 +76 -27
- package/dist/index.d.ts +76 -27
- package/dist/index.js +40 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +39 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
2
|
import { ApiKeyAuthenticationProvider, ApiKeyLocation } from "@microsoft/kiota-abstractions";
|
|
3
3
|
|
|
4
|
+
// src/featureFlag/refresh/index.ts
|
|
5
|
+
var RefreshRequestBuilderUriTemplate = "{+baseurl}/feature-flag/refresh";
|
|
6
|
+
var RefreshRequestBuilderRequestsMetadata = {
|
|
7
|
+
get: {
|
|
8
|
+
uriTemplate: RefreshRequestBuilderUriTemplate,
|
|
9
|
+
adapterMethodName: "sendPrimitive",
|
|
10
|
+
responseBodyFactory: "ArrayBuffer"
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
// src/featureFlag/index.ts
|
|
15
|
+
var FeatureFlagRequestBuilderNavigationMetadata = {
|
|
16
|
+
refresh: {
|
|
17
|
+
requestsMetadata: RefreshRequestBuilderRequestsMetadata
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
4
21
|
// src/probe/liveness/index.ts
|
|
5
22
|
var LivenessRequestBuilderUriTemplate = "{+baseurl}/probe/liveness";
|
|
6
23
|
var LivenessRequestBuilderRequestsMetadata = {
|
|
@@ -1879,6 +1896,9 @@ function deserializeIntoPartitionDto(partitionDto = {}) {
|
|
|
1879
1896
|
"position": (n) => {
|
|
1880
1897
|
partitionDto.position = n.getNumberValue();
|
|
1881
1898
|
},
|
|
1899
|
+
"status": (n) => {
|
|
1900
|
+
partitionDto.status = n.getEnumValue(PartitionDto_statusObject);
|
|
1901
|
+
},
|
|
1882
1902
|
"tableId": (n) => {
|
|
1883
1903
|
partitionDto.tableId = n.getStringValue();
|
|
1884
1904
|
},
|
|
@@ -2003,6 +2023,9 @@ function deserializeIntoScreenColumnDto(screenColumnDto = {}) {
|
|
|
2003
2023
|
"createdAt": (n) => {
|
|
2004
2024
|
screenColumnDto.createdAt = n.getStringValue();
|
|
2005
2025
|
},
|
|
2026
|
+
"display": (n) => {
|
|
2027
|
+
screenColumnDto.display = n.getEnumValue(ScreenColumnDto_displayObject);
|
|
2028
|
+
},
|
|
2006
2029
|
"fieldId": (n) => {
|
|
2007
2030
|
screenColumnDto.fieldId = n.getStringValue();
|
|
2008
2031
|
},
|
|
@@ -3437,6 +3460,7 @@ function serializePartitionDto(writer, partitionDto = {}) {
|
|
|
3437
3460
|
writer.writeStringValue("id", partitionDto.id);
|
|
3438
3461
|
writer.writeStringValue("key", partitionDto.key);
|
|
3439
3462
|
writer.writeNumberValue("position", partitionDto.position);
|
|
3463
|
+
writer.writeEnumValue("status", partitionDto.status);
|
|
3440
3464
|
writer.writeStringValue("tableId", partitionDto.tableId);
|
|
3441
3465
|
writer.writeStringValue("title", partitionDto.title);
|
|
3442
3466
|
writer.writeObjectValue("titleLocal", partitionDto.titleLocal, serializeLocalizedStringDto);
|
|
@@ -3549,6 +3573,7 @@ function serializePublicationDto_fields(writer, publicationDto_fields = {}) {
|
|
|
3549
3573
|
function serializeScreenColumnDto(writer, screenColumnDto = {}) {
|
|
3550
3574
|
if (screenColumnDto) {
|
|
3551
3575
|
writer.writeStringValue("createdAt", screenColumnDto.createdAt);
|
|
3576
|
+
writer.writeEnumValue("display", screenColumnDto.display);
|
|
3552
3577
|
writer.writeStringValue("fieldId", screenColumnDto.fieldId);
|
|
3553
3578
|
writer.writeStringValue("id", screenColumnDto.id);
|
|
3554
3579
|
writer.writeBooleanValue("isFixed", screenColumnDto.isFixed);
|
|
@@ -3926,6 +3951,7 @@ var CommentThreadDto_targetTypeObject = {
|
|
|
3926
3951
|
Partition: "partition",
|
|
3927
3952
|
Level: "level",
|
|
3928
3953
|
Item: "item",
|
|
3954
|
+
Item_cache: "item_cache",
|
|
3929
3955
|
Item_link: "item_link",
|
|
3930
3956
|
Permission: "permission",
|
|
3931
3957
|
ConditionalFormatting: "conditionalFormatting",
|
|
@@ -4176,6 +4202,11 @@ var MatrixFieldDto_statusObject = {
|
|
|
4176
4202
|
ARCHIVED: "ARCHIVED",
|
|
4177
4203
|
DELETED: "DELETED"
|
|
4178
4204
|
};
|
|
4205
|
+
var PartitionDto_statusObject = {
|
|
4206
|
+
ACTIVE: "ACTIVE",
|
|
4207
|
+
ARCHIVED: "ARCHIVED",
|
|
4208
|
+
DELETED: "DELETED"
|
|
4209
|
+
};
|
|
4179
4210
|
var PatchPublicationDto_statusObject = {
|
|
4180
4211
|
SENT: "SENT",
|
|
4181
4212
|
RECEIVED: "RECEIVED",
|
|
@@ -4196,6 +4227,9 @@ var PublicationDto_statusObject = {
|
|
|
4196
4227
|
RECEIVED: "RECEIVED",
|
|
4197
4228
|
REJECTED: "REJECTED"
|
|
4198
4229
|
};
|
|
4230
|
+
var ScreenColumnDto_displayObject = {
|
|
4231
|
+
MARKDOWN: "MARKDOWN"
|
|
4232
|
+
};
|
|
4199
4233
|
var ScreenColumnDto_objectObject = {
|
|
4200
4234
|
Screen_column: "screen_column"
|
|
4201
4235
|
};
|
|
@@ -9287,6 +9321,9 @@ function createApiClient(requestAdapter) {
|
|
|
9287
9321
|
}
|
|
9288
9322
|
var ApiClientUriTemplate = "{+baseurl}";
|
|
9289
9323
|
var ApiClientNavigationMetadata = {
|
|
9324
|
+
featureFlag: {
|
|
9325
|
+
navigationMetadata: FeatureFlagRequestBuilderNavigationMetadata
|
|
9326
|
+
},
|
|
9290
9327
|
probe: {
|
|
9291
9328
|
navigationMetadata: ProbeRequestBuilderNavigationMetadata
|
|
9292
9329
|
},
|
|
@@ -9355,11 +9392,13 @@ export {
|
|
|
9355
9392
|
LowOrderQueryDTO_typeObject,
|
|
9356
9393
|
MatrixFieldDto_objectObject,
|
|
9357
9394
|
MatrixFieldDto_statusObject,
|
|
9395
|
+
PartitionDto_statusObject,
|
|
9358
9396
|
PatchPublicationDto_statusObject,
|
|
9359
9397
|
PatchTaskExecutionDto_statusObject,
|
|
9360
9398
|
ProjectDto_objectObject,
|
|
9361
9399
|
PublicationDto_objectObject,
|
|
9362
9400
|
PublicationDto_statusObject,
|
|
9401
|
+
ScreenColumnDto_displayObject,
|
|
9363
9402
|
ScreenColumnDto_objectObject,
|
|
9364
9403
|
ScreenColumnDto_widthObject,
|
|
9365
9404
|
ScreenDto_lineHeightObject,
|