@salesforce/lds-adapters-industries-scheduler 1.308.0 → 1.309.0-dev10

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.
@@ -7058,7 +7058,7 @@ function select$a(luvio, params) {
7058
7058
  return select$b();
7059
7059
  }
7060
7060
  function keyBuilder$6(luvio, params) {
7061
- return keyPrefix + '::WaitlistRelationshipsOutputRepresentation:(' + 'serviceTerritoryId:' + params.queryParams.serviceTerritoryId + ',' + 'waitlistIds:' + params.queryParams.waitlistIds + ',' + 'workTypeIds:' + params.queryParams.workTypeIds + ')';
7061
+ return keyPrefix + '::WaitlistRelationshipsOutputRepresentation:(' + 'isSelfCheckin:' + params.queryParams.isSelfCheckin + ',' + 'serviceTerritoryId:' + params.queryParams.serviceTerritoryId + ',' + 'waitlistIds:' + params.queryParams.waitlistIds + ',' + 'workTypeIds:' + params.queryParams.workTypeIds + ')';
7062
7062
  }
7063
7063
  function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
7064
7064
  getTypeCacheKeys$3(storeKeyMap, luvio, response, () => keyBuilder$6(luvio, resourceParams));
@@ -7102,6 +7102,7 @@ function createResourceRequest$3(config) {
7102
7102
 
7103
7103
  const adapterName$3 = 'getWaitlistRelationships';
7104
7104
  const getWaitlistRelationships_ConfigPropertyMetadata = [
7105
+ generateParamConfigMetadata('isSelfCheckin', false, 1 /* QueryParameter */, 1 /* Boolean */),
7105
7106
  generateParamConfigMetadata('serviceTerritoryId', false, 1 /* QueryParameter */, 0 /* String */),
7106
7107
  generateParamConfigMetadata('waitlistIds', false, 1 /* QueryParameter */, 0 /* String */, true),
7107
7108
  generateParamConfigMetadata('workTypeIds', false, 1 /* QueryParameter */, 0 /* String */, true),
@@ -6,6 +6,7 @@ export declare const adapterName = "getWaitlistRelationships";
6
6
  export declare const getWaitlistRelationships_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
7
  export declare const getWaitlistRelationships_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
8
  export interface GetWaitlistRelationshipsConfig {
9
+ isSelfCheckin?: boolean;
9
10
  serviceTerritoryId?: string;
10
11
  waitlistIds?: Array<string>;
11
12
  workTypeIds?: Array<string>;
@@ -2,6 +2,7 @@ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment,
2
2
  import { WaitlistRelationshipsOutputRepresentation as types_WaitlistRelationshipsOutputRepresentation_WaitlistRelationshipsOutputRepresentation } from '../types/WaitlistRelationshipsOutputRepresentation';
3
3
  export interface ResourceRequestConfig {
4
4
  queryParams: {
5
+ isSelfCheckin?: boolean;
5
6
  serviceTerritoryId?: string;
6
7
  waitlistIds?: Array<string>;
7
8
  workTypeIds?: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-scheduler",
3
- "version": "1.308.0",
3
+ "version": "1.309.0-dev10",
4
4
  "description": "Wire adapters for Lightning Scheduler resources",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/industries-scheduler.js",
@@ -44,11 +44,11 @@
44
44
  "test:unit": "jest"
45
45
  },
46
46
  "dependencies": {
47
- "@salesforce/lds-bindings": "^1.308.0"
47
+ "@salesforce/lds-bindings": "^1.309.0-dev10"
48
48
  },
49
49
  "devDependencies": {
50
- "@salesforce/lds-compiler-plugins": "^1.308.0",
51
- "@salesforce/lds-karma": "^1.308.0"
50
+ "@salesforce/lds-compiler-plugins": "^1.309.0-dev10",
51
+ "@salesforce/lds-karma": "^1.309.0-dev10"
52
52
  },
53
53
  "nx": {
54
54
  "targets": {
package/sfdc/index.js CHANGED
@@ -7348,7 +7348,7 @@ function select$7(luvio, params) {
7348
7348
  return select$8();
7349
7349
  }
7350
7350
  function keyBuilder$4(luvio, params) {
7351
- return keyPrefix + '::WaitlistRelationshipsOutputRepresentation:(' + 'serviceTerritoryId:' + params.queryParams.serviceTerritoryId + ',' + 'waitlistIds:' + params.queryParams.waitlistIds + ',' + 'workTypeIds:' + params.queryParams.workTypeIds + ')';
7351
+ return keyPrefix + '::WaitlistRelationshipsOutputRepresentation:(' + 'isSelfCheckin:' + params.queryParams.isSelfCheckin + ',' + 'serviceTerritoryId:' + params.queryParams.serviceTerritoryId + ',' + 'waitlistIds:' + params.queryParams.waitlistIds + ',' + 'workTypeIds:' + params.queryParams.workTypeIds + ')';
7352
7352
  }
7353
7353
  function getResponseCacheKeys$4(storeKeyMap, luvio, resourceParams, response) {
7354
7354
  getTypeCacheKeys$2(storeKeyMap, luvio, response, () => keyBuilder$4(luvio, resourceParams));
@@ -7392,6 +7392,7 @@ function createResourceRequest$4(config) {
7392
7392
 
7393
7393
  const adapterName$4 = 'getWaitlistRelationships';
7394
7394
  const getWaitlistRelationships_ConfigPropertyMetadata = [
7395
+ generateParamConfigMetadata('isSelfCheckin', false, 1 /* QueryParameter */, 1 /* Boolean */),
7395
7396
  generateParamConfigMetadata('serviceTerritoryId', false, 1 /* QueryParameter */, 0 /* String */),
7396
7397
  generateParamConfigMetadata('waitlistIds', false, 1 /* QueryParameter */, 0 /* String */, true),
7397
7398
  generateParamConfigMetadata('workTypeIds', false, 1 /* QueryParameter */, 0 /* String */, true),
@@ -8357,4 +8358,4 @@ withDefaultLuvio((luvio) => {
8357
8358
  });
8358
8359
 
8359
8360
  export { createServiceAppointment, createServiceAppointmentAttendee, createWaitlistAppointment, createWaitlistCheckIn, decryption, decryption_imperative, encrypt, encrypt_imperative, getAppointmentFromToken, getAppointmentFromToken_imperative, getEngagementChannelTypes, getEngagementChannelTypes_imperative, getGroupAppointments, getGroupAppointments_imperative, getNextWaitlistParticipant, getNextWaitlistParticipant_imperative, getParticipantRecentInteractions, getParticipantRecentInteractions_imperative, getServiceResourceCapacity, getServiceResourceCapacity_imperative, getServiceTerritoryCapacity, getServiceTerritoryCapacity_imperative, getWaitlistParticipantStats, getWaitlistParticipantStats_imperative, getWaitlistRelationships, getWaitlistRelationships_imperative, getWaitlists, getWaitlists_imperative, updateServiceAppointment, updateServiceAppointmentAttendee, updateWaitlistParticipant };
8360
- // version: 1.308.0-e148a73d6a
8361
+ // version: 1.309.0-dev10-96422fc06f
package/src/raml/api.raml CHANGED
@@ -1708,6 +1708,9 @@ types:
1708
1708
  application/json:
1709
1709
  type: WaitlistRelationshipsOutputRepresentation
1710
1710
  queryParameters:
1711
+ isSelfCheckin:
1712
+ type: boolean
1713
+ required: false
1711
1714
  serviceTerritoryId:
1712
1715
  type: string
1713
1716
  required: false