@product-live/api-sdk 3.1.1 → 3.1.2
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 +41 -1
- package/dist/index.d.ts +41 -1
- package/dist/index.js +31 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +30 -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
|
},
|
|
@@ -3437,6 +3457,7 @@ function serializePartitionDto(writer, partitionDto = {}) {
|
|
|
3437
3457
|
writer.writeStringValue("id", partitionDto.id);
|
|
3438
3458
|
writer.writeStringValue("key", partitionDto.key);
|
|
3439
3459
|
writer.writeNumberValue("position", partitionDto.position);
|
|
3460
|
+
writer.writeEnumValue("status", partitionDto.status);
|
|
3440
3461
|
writer.writeStringValue("tableId", partitionDto.tableId);
|
|
3441
3462
|
writer.writeStringValue("title", partitionDto.title);
|
|
3442
3463
|
writer.writeObjectValue("titleLocal", partitionDto.titleLocal, serializeLocalizedStringDto);
|
|
@@ -4176,6 +4197,11 @@ var MatrixFieldDto_statusObject = {
|
|
|
4176
4197
|
ARCHIVED: "ARCHIVED",
|
|
4177
4198
|
DELETED: "DELETED"
|
|
4178
4199
|
};
|
|
4200
|
+
var PartitionDto_statusObject = {
|
|
4201
|
+
ACTIVE: "ACTIVE",
|
|
4202
|
+
ARCHIVED: "ARCHIVED",
|
|
4203
|
+
DELETED: "DELETED"
|
|
4204
|
+
};
|
|
4179
4205
|
var PatchPublicationDto_statusObject = {
|
|
4180
4206
|
SENT: "SENT",
|
|
4181
4207
|
RECEIVED: "RECEIVED",
|
|
@@ -9287,6 +9313,9 @@ function createApiClient(requestAdapter) {
|
|
|
9287
9313
|
}
|
|
9288
9314
|
var ApiClientUriTemplate = "{+baseurl}";
|
|
9289
9315
|
var ApiClientNavigationMetadata = {
|
|
9316
|
+
featureFlag: {
|
|
9317
|
+
navigationMetadata: FeatureFlagRequestBuilderNavigationMetadata
|
|
9318
|
+
},
|
|
9290
9319
|
probe: {
|
|
9291
9320
|
navigationMetadata: ProbeRequestBuilderNavigationMetadata
|
|
9292
9321
|
},
|
|
@@ -9355,6 +9384,7 @@ export {
|
|
|
9355
9384
|
LowOrderQueryDTO_typeObject,
|
|
9356
9385
|
MatrixFieldDto_objectObject,
|
|
9357
9386
|
MatrixFieldDto_statusObject,
|
|
9387
|
+
PartitionDto_statusObject,
|
|
9358
9388
|
PatchPublicationDto_statusObject,
|
|
9359
9389
|
PatchTaskExecutionDto_statusObject,
|
|
9360
9390
|
ProjectDto_objectObject,
|