@salesforce/lds-adapters-platform-sharing 1.292.0 → 1.294.0
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/es/es2018/platform-sharing.js +276 -65
- package/dist/es/es2018/types/src/generated/types/PublicGroupMembershipDetailsRepresentation.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/types/RolesInGroupRepresentation.d.ts +46 -0
- package/dist/es/es2018/types/src/generated/types/UserMembersInPublicGroupRepresentation.d.ts +18 -12
- package/package.json +3 -3
- package/sfdc/index.js +297 -86
- package/src/raml/api.raml +50 -9
package/src/raml/api.raml
CHANGED
|
@@ -140,6 +140,16 @@ types:
|
|
|
140
140
|
API
|
|
141
141
|
type: object
|
|
142
142
|
properties:
|
|
143
|
+
listRoles:
|
|
144
|
+
description: Output response data for Roles
|
|
145
|
+
type: array
|
|
146
|
+
items:
|
|
147
|
+
type: RolesInGroupRepresentation
|
|
148
|
+
listRolesAndInternalSubordinates:
|
|
149
|
+
description: Output response data for Roles and Internal Subordinates
|
|
150
|
+
type: array
|
|
151
|
+
items:
|
|
152
|
+
type: RolesInGroupRepresentation
|
|
143
153
|
listUsers:
|
|
144
154
|
description: Output response data for Users
|
|
145
155
|
type: array
|
|
@@ -304,6 +314,31 @@ types:
|
|
|
304
314
|
description: Report and Dashboard Folder type. It can be either 'Report' or
|
|
305
315
|
'Dashboard'.
|
|
306
316
|
type: string
|
|
317
|
+
RolesInGroupRepresentation:
|
|
318
|
+
description: Roles in Public Group Representation
|
|
319
|
+
type: object
|
|
320
|
+
properties:
|
|
321
|
+
dataId:
|
|
322
|
+
description: Group Member dataId
|
|
323
|
+
type: string
|
|
324
|
+
groupType:
|
|
325
|
+
description: Group Type
|
|
326
|
+
type: string
|
|
327
|
+
roleName:
|
|
328
|
+
description: Role Name
|
|
329
|
+
type: string
|
|
330
|
+
roleParentDevName:
|
|
331
|
+
description: Role Parent dev Name
|
|
332
|
+
type: string
|
|
333
|
+
roleParentLabel:
|
|
334
|
+
description: Role Parent label
|
|
335
|
+
type: string
|
|
336
|
+
roleUpdatedBy:
|
|
337
|
+
description: Role Updated By
|
|
338
|
+
type: string
|
|
339
|
+
roleUpdatedOn:
|
|
340
|
+
description: Role Updated On
|
|
341
|
+
type: string
|
|
307
342
|
ShareAccessLevelRepresentation:
|
|
308
343
|
description: Representation of a share access level per entity.
|
|
309
344
|
type: object
|
|
@@ -503,21 +538,27 @@ types:
|
|
|
503
538
|
alias:
|
|
504
539
|
description: Group Member alias
|
|
505
540
|
type: string
|
|
506
|
-
|
|
507
|
-
description: Group Member
|
|
508
|
-
type: string
|
|
509
|
-
profile:
|
|
510
|
-
description: Group Member Profile
|
|
511
|
-
type: string
|
|
512
|
-
role:
|
|
513
|
-
description: Group Member User Role
|
|
541
|
+
dataId:
|
|
542
|
+
description: Group Member dataId
|
|
514
543
|
type: string
|
|
515
544
|
status:
|
|
516
545
|
description: Group Member Status
|
|
517
546
|
type: boolean
|
|
518
|
-
|
|
547
|
+
userFullName:
|
|
548
|
+
description: Group Member userFullName
|
|
549
|
+
type: string
|
|
550
|
+
userName:
|
|
519
551
|
description: Group Member Full username
|
|
520
552
|
type: string
|
|
553
|
+
userProfile:
|
|
554
|
+
description: Group Member userProfile
|
|
555
|
+
type: string
|
|
556
|
+
userRoleName:
|
|
557
|
+
description: Group Member userRoleName
|
|
558
|
+
type: string
|
|
559
|
+
userType:
|
|
560
|
+
description: User Member userType
|
|
561
|
+
type: string
|
|
521
562
|
UserOrGroupRepresentation:
|
|
522
563
|
description: Representation of user or group with whom an object can be shared.
|
|
523
564
|
type: object
|