@salesforce/lds-adapters-platform-sharing 1.312.1 → 1.314.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 +197 -87
- package/dist/es/es2018/types/src/generated/types/PublicGroupSummaryRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/QueuesSharingRepresentation.d.ts +37 -0
- package/package.json +3 -3
- package/sfdc/index.js +218 -108
- package/src/raml/api.raml +21 -0
package/src/raml/api.raml
CHANGED
|
@@ -272,6 +272,11 @@ types:
|
|
|
272
272
|
type: array
|
|
273
273
|
items:
|
|
274
274
|
type: ListViewGroupSharingRepresentation
|
|
275
|
+
queuesSharing:
|
|
276
|
+
description: Output response data for Queue tab
|
|
277
|
+
type: array
|
|
278
|
+
items:
|
|
279
|
+
type: QueuesSharingRepresentation
|
|
275
280
|
reportAndDashboardFolderGroupSharing:
|
|
276
281
|
description: Report and Dashboard Folder shared with a group
|
|
277
282
|
type: array
|
|
@@ -300,6 +305,22 @@ types:
|
|
|
300
305
|
queueId:
|
|
301
306
|
description: The Id of the queue.
|
|
302
307
|
type: string
|
|
308
|
+
QueuesSharingRepresentation:
|
|
309
|
+
description: Output representation of queues with given group as a member
|
|
310
|
+
type: object
|
|
311
|
+
properties:
|
|
312
|
+
developerName:
|
|
313
|
+
description: Queue Developer name.
|
|
314
|
+
type: string
|
|
315
|
+
email:
|
|
316
|
+
description: Queue Email.
|
|
317
|
+
type: string
|
|
318
|
+
label:
|
|
319
|
+
description: Queue label.
|
|
320
|
+
type: string
|
|
321
|
+
supportedObjects:
|
|
322
|
+
description: Supported Objects.
|
|
323
|
+
type: string
|
|
303
324
|
RecordAccessDetailRepresentation:
|
|
304
325
|
description: Representation of a record access detail.
|
|
305
326
|
type: object
|