@budibase/worker 3.27.3 → 3.27.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/worker",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "3.27.
|
|
4
|
+
"version": "3.27.4",
|
|
5
5
|
"description": "Budibase background service",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "d0d77e2d7618885095e00c73cefcfefd8ad54877"
|
|
111
111
|
}
|
|
@@ -691,7 +691,7 @@ describe("scim", () => {
|
|
|
691
691
|
groups = []
|
|
692
692
|
|
|
693
693
|
const groupNames = generator.unique(
|
|
694
|
-
() =>
|
|
694
|
+
() => structures.uuid(),
|
|
695
695
|
groupCount
|
|
696
696
|
)
|
|
697
697
|
|
|
@@ -807,7 +807,7 @@ describe("scim", () => {
|
|
|
807
807
|
|
|
808
808
|
const groupData = {
|
|
809
809
|
externalId: structures.uuid(),
|
|
810
|
-
displayName: structures.
|
|
810
|
+
displayName: structures.uuid(),
|
|
811
811
|
}
|
|
812
812
|
const body = structures.scim.createGroupRequest(groupData)
|
|
813
813
|
|
|
@@ -962,7 +962,7 @@ describe("scim", () => {
|
|
|
962
962
|
unauthorisedTests(patchScimGroup)
|
|
963
963
|
|
|
964
964
|
it("an existing group can be updated", async () => {
|
|
965
|
-
const newDisplayName = structures.
|
|
965
|
+
const newDisplayName = structures.uuid()
|
|
966
966
|
|
|
967
967
|
const body: ScimUpdateRequest = {
|
|
968
968
|
schemas: ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
|
|
@@ -1165,7 +1165,7 @@ describe("scim", () => {
|
|
|
1165
1165
|
})
|
|
1166
1166
|
|
|
1167
1167
|
it("adding members and updating fields can performed in a single operation", async () => {
|
|
1168
|
-
const newDisplayName = structures.
|
|
1168
|
+
const newDisplayName = structures.uuid()
|
|
1169
1169
|
|
|
1170
1170
|
const body: ScimUpdateRequest = {
|
|
1171
1171
|
schemas: ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
|