@salesforce/lds-adapters-platform-sharing 1.421.0 → 1.422.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 +364 -117
- package/dist/es/es2018/types/src/generated/types/PublicGroupSummaryRepresentation.d.ts +9 -1
- package/dist/es/es2018/types/src/generated/types/QueueSupportedObjectDetailsRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/RoutingConfigDetailsRepresentation.d.ts +31 -0
- package/package.json +3 -3
- package/sfdc/index.js +385 -138
- package/src/raml/api.raml +36 -0
package/src/raml/api.raml
CHANGED
|
@@ -349,6 +349,32 @@ types:
|
|
|
349
349
|
type: array
|
|
350
350
|
items:
|
|
351
351
|
type: SharingRulesOwnerGroupSharingRepresentation
|
|
352
|
+
queueSupportedObjectDetails:
|
|
353
|
+
description: Queue supported object details for QueueSupportedObjects operation
|
|
354
|
+
type: array
|
|
355
|
+
required: false
|
|
356
|
+
items:
|
|
357
|
+
type: QueueSupportedObjectDetailsRepresentation
|
|
358
|
+
routingConfigDetails:
|
|
359
|
+
description: Routing config details for RoutingConfigDetails operation
|
|
360
|
+
type: RoutingConfigDetailsRepresentation | nil
|
|
361
|
+
required: false
|
|
362
|
+
QueueSupportedObjectDetailsRepresentation:
|
|
363
|
+
description: Supported object details for a queue
|
|
364
|
+
type: object
|
|
365
|
+
properties:
|
|
366
|
+
masterLabel:
|
|
367
|
+
description: Master label of the supported object
|
|
368
|
+
type: string
|
|
369
|
+
apiName:
|
|
370
|
+
description: API name of the supported object
|
|
371
|
+
type: string
|
|
372
|
+
isCustom:
|
|
373
|
+
description: Whether the supported object is a custom object
|
|
374
|
+
type: boolean | nil
|
|
375
|
+
namespace:
|
|
376
|
+
description: Namespace prefix of the supported object
|
|
377
|
+
type: string
|
|
352
378
|
QueueRepresentation:
|
|
353
379
|
description: Output representation of an instance of a Queue for a given user.
|
|
354
380
|
type: object
|
|
@@ -396,6 +422,16 @@ types:
|
|
|
396
422
|
supportedObjects:
|
|
397
423
|
description: Supported Objects.
|
|
398
424
|
type: string
|
|
425
|
+
RoutingConfigDetailsRepresentation:
|
|
426
|
+
description: Routing config details of a queue
|
|
427
|
+
type: object
|
|
428
|
+
properties:
|
|
429
|
+
id:
|
|
430
|
+
description: Routing config record id
|
|
431
|
+
type: string
|
|
432
|
+
masterLabel:
|
|
433
|
+
description: Master label of the routing config
|
|
434
|
+
type: string
|
|
399
435
|
RecordAccessDetailRepresentation:
|
|
400
436
|
description: Representation of a record access detail.
|
|
401
437
|
type: object
|