gd-sprest 9.8.2 → 9.8.4
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/build/helper/fieldSchemaXML.js +1 -1
- package/build/mapper/v2.js +3 -0
- package/build/rest.js +1 -1
- package/dist/gd-sprest.js +1 -1
- package/dist/gd-sprest.min.js +1 -1
- package/package.json +2 -2
|
@@ -380,7 +380,7 @@ export const FieldSchemaXML = (fieldInfo, targetWebUrl) => {
|
|
|
380
380
|
let createUser = (fieldInfo, props) => {
|
|
381
381
|
let schemaXml = null;
|
|
382
382
|
// Set the field type
|
|
383
|
-
props["Type"] = "User";
|
|
383
|
+
props["Type"] = fieldInfo.multi ? "UserMulti" : "User";
|
|
384
384
|
// Set the user properties
|
|
385
385
|
if (fieldInfo.multi) {
|
|
386
386
|
props["Mult"] = "TRUE";
|
package/build/mapper/v2.js
CHANGED
|
@@ -3550,6 +3550,9 @@ export const MapperV2 = {
|
|
|
3550
3550
|
name: "",
|
|
3551
3551
|
requestType: RequestType.GraphDelete
|
|
3552
3552
|
},
|
|
3553
|
+
content: {
|
|
3554
|
+
requestType: RequestType.GetBuffer
|
|
3555
|
+
},
|
|
3553
3556
|
query: { argNames: ["oData"], requestType: RequestType.OData },
|
|
3554
3557
|
workbook: {
|
|
3555
3558
|
returnType: "workbook"
|
package/build/rest.js
CHANGED