@salesforce/lds-adapters-industries-scheduler 0.1.0-dev1

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.
Files changed (134) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/industries-scheduler.js +8565 -0
  3. package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
  4. package/dist/es/es2018/types/src/generated/adapters/createServiceAppointment.d.ts +16 -0
  5. package/dist/es/es2018/types/src/generated/adapters/createServiceAppointmentAttendee.d.ts +18 -0
  6. package/dist/es/es2018/types/src/generated/adapters/createWaitlistAppointment.d.ts +16 -0
  7. package/dist/es/es2018/types/src/generated/adapters/createWaitlistCheckIn.d.ts +16 -0
  8. package/dist/es/es2018/types/src/generated/adapters/decryption.d.ts +27 -0
  9. package/dist/es/es2018/types/src/generated/adapters/encrypt.d.ts +27 -0
  10. package/dist/es/es2018/types/src/generated/adapters/getAppointmentFromToken.d.ts +27 -0
  11. package/dist/es/es2018/types/src/generated/adapters/getAppointmentPaymentDetails.d.ts +29 -0
  12. package/dist/es/es2018/types/src/generated/adapters/getEngagementChannelTypes.d.ts +28 -0
  13. package/dist/es/es2018/types/src/generated/adapters/getGroupAppointments.d.ts +37 -0
  14. package/dist/es/es2018/types/src/generated/adapters/getNextWaitlistParticipant.d.ts +27 -0
  15. package/dist/es/es2018/types/src/generated/adapters/getParticipantRecentInteractions.d.ts +29 -0
  16. package/dist/es/es2018/types/src/generated/adapters/getServiceResourceCapacity.d.ts +32 -0
  17. package/dist/es/es2018/types/src/generated/adapters/getServiceTerritoryCapacity.d.ts +32 -0
  18. package/dist/es/es2018/types/src/generated/adapters/getWaitlistParticipantStats.d.ts +28 -0
  19. package/dist/es/es2018/types/src/generated/adapters/getWaitlistRelationships.d.ts +30 -0
  20. package/dist/es/es2018/types/src/generated/adapters/getWaitlists.d.ts +33 -0
  21. package/dist/es/es2018/types/src/generated/adapters/updateServiceAppointment.d.ts +16 -0
  22. package/dist/es/es2018/types/src/generated/adapters/updateServiceAppointmentAttendee.d.ts +19 -0
  23. package/dist/es/es2018/types/src/generated/adapters/updateWaitlistParticipant.d.ts +17 -0
  24. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +20 -0
  25. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +34 -0
  26. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingAppointmentFromToken.d.ts +15 -0
  27. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingAppointmentPaymentDetails.d.ts +17 -0
  28. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingDecryption.d.ts +15 -0
  29. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingEncryption.d.ts +15 -0
  30. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingEngagementChannelTypes.d.ts +16 -0
  31. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingNextWaitlistParticipant.d.ts +15 -0
  32. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingParticipantRecentInteractions.d.ts +17 -0
  33. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingServiceResourceCapacity.d.ts +20 -0
  34. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingServiceTerritoryCapacity.d.ts +20 -0
  35. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingWaitlistParticipantsStatistics.d.ts +16 -0
  36. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingWaitlistRelationships.d.ts +18 -0
  37. package/dist/es/es2018/types/src/generated/resources/getConnectSchedulingWaitlists.d.ts +21 -0
  38. package/dist/es/es2018/types/src/generated/resources/patchConnectSchedulingServiceAppointmentAttendee.d.ts +16 -0
  39. package/dist/es/es2018/types/src/generated/resources/patchConnectSchedulingServiceAppointments.d.ts +13 -0
  40. package/dist/es/es2018/types/src/generated/resources/patchConnectSchedulingWaitlistParticipants.d.ts +14 -0
  41. package/dist/es/es2018/types/src/generated/resources/postConnectSchedulingGroupAppointments.d.ts +25 -0
  42. package/dist/es/es2018/types/src/generated/resources/postConnectSchedulingServiceAppointmentAttendee.d.ts +15 -0
  43. package/dist/es/es2018/types/src/generated/resources/postConnectSchedulingServiceAppointments.d.ts +13 -0
  44. package/dist/es/es2018/types/src/generated/resources/postConnectSchedulingWaitlistAppointments.d.ts +13 -0
  45. package/dist/es/es2018/types/src/generated/resources/postConnectSchedulingWaitlistCheckin.d.ts +13 -0
  46. package/dist/es/es2018/types/src/generated/types/AbstractServiceAppointmentInputRepresentation.d.ts +40 -0
  47. package/dist/es/es2018/types/src/generated/types/AppointmentChannelRepresentation.d.ts +34 -0
  48. package/dist/es/es2018/types/src/generated/types/AssignedResourceInputRepresentation.d.ts +37 -0
  49. package/dist/es/es2018/types/src/generated/types/AssignedResourceListInputRepresentation.d.ts +28 -0
  50. package/dist/es/es2018/types/src/generated/types/CreateServiceAppointmentAttendeeInputRepresentation.d.ts +35 -0
  51. package/dist/es/es2018/types/src/generated/types/CreateServiceAppointmentData.d.ts +29 -0
  52. package/dist/es/es2018/types/src/generated/types/CreateServiceAppointmentInputRepresentation.d.ts +40 -0
  53. package/dist/es/es2018/types/src/generated/types/CreateServiceAppointmentResult.d.ts +34 -0
  54. package/dist/es/es2018/types/src/generated/types/DayCapacity.d.ts +31 -0
  55. package/dist/es/es2018/types/src/generated/types/DecryptionOutputRepresentation.d.ts +28 -0
  56. package/dist/es/es2018/types/src/generated/types/DecryptionResult.d.ts +28 -0
  57. package/dist/es/es2018/types/src/generated/types/EncryptionOutputRepresentation.d.ts +28 -0
  58. package/dist/es/es2018/types/src/generated/types/EncryptionResult.d.ts +28 -0
  59. package/dist/es/es2018/types/src/generated/types/ExtendedFieldInputRepresentation.d.ts +31 -0
  60. package/dist/es/es2018/types/src/generated/types/ExtendedFieldListInputRepresentation.d.ts +28 -0
  61. package/dist/es/es2018/types/src/generated/types/ExtendedFieldsOutputRepresentation.d.ts +31 -0
  62. package/dist/es/es2018/types/src/generated/types/GetAppointmentFromTokenOutputRepresentation.d.ts +28 -0
  63. package/dist/es/es2018/types/src/generated/types/GetAppointmentFromTokenResult.d.ts +34 -0
  64. package/dist/es/es2018/types/src/generated/types/GetAppointmentPaymentDetailsOutputRepresentation.d.ts +28 -0
  65. package/dist/es/es2018/types/src/generated/types/GetAppointmentPaymentDetailsResult.d.ts +43 -0
  66. package/dist/es/es2018/types/src/generated/types/GetEngagementChannelTypeListResult.d.ts +29 -0
  67. package/dist/es/es2018/types/src/generated/types/GetEngagementChannelTypeOutputRepresentation.d.ts +29 -0
  68. package/dist/es/es2018/types/src/generated/types/GetEngagementChannelTypeResult.d.ts +43 -0
  69. package/dist/es/es2018/types/src/generated/types/GetGroupAppointmentsInputRepresentation.d.ts +58 -0
  70. package/dist/es/es2018/types/src/generated/types/GetGroupAppointmentsListResult.d.ts +29 -0
  71. package/dist/es/es2018/types/src/generated/types/GetGroupAppointmentsOutputRepresentation.d.ts +29 -0
  72. package/dist/es/es2018/types/src/generated/types/GetNextWaitlistParticipantOutputRepresentation.d.ts +28 -0
  73. package/dist/es/es2018/types/src/generated/types/GetNextWaitlistParticipantResult.d.ts +38 -0
  74. package/dist/es/es2018/types/src/generated/types/GetServiceResourceCapacityOutputRepresentation.d.ts +28 -0
  75. package/dist/es/es2018/types/src/generated/types/GetServiceTerritoriesResult.d.ts +55 -0
  76. package/dist/es/es2018/types/src/generated/types/GetServiceTerritoryCapacityOutputRepresentation.d.ts +28 -0
  77. package/dist/es/es2018/types/src/generated/types/GetWaitlistParticipantStatsListResult.d.ts +29 -0
  78. package/dist/es/es2018/types/src/generated/types/GetWaitlistParticipantStatsOutputRepresentation.d.ts +29 -0
  79. package/dist/es/es2018/types/src/generated/types/GroupAppointmentResult.d.ts +65 -0
  80. package/dist/es/es2018/types/src/generated/types/LeadInputRepresentation.d.ts +43 -0
  81. package/dist/es/es2018/types/src/generated/types/ParticipantRecentInteractionsOutputRepresentation.d.ts +28 -0
  82. package/dist/es/es2018/types/src/generated/types/ParticipantRecentInteractionsResult.d.ts +29 -0
  83. package/dist/es/es2018/types/src/generated/types/SchedulerExtendedFieldsOutputRepresentation.d.ts +31 -0
  84. package/dist/es/es2018/types/src/generated/types/ServiceAppointmentAttendeeInputRepresentation.d.ts +34 -0
  85. package/dist/es/es2018/types/src/generated/types/ServiceAppointmentAttendeeOutputRepresentation.d.ts +46 -0
  86. package/dist/es/es2018/types/src/generated/types/ServiceAppointmentAttendeeResult.d.ts +37 -0
  87. package/dist/es/es2018/types/src/generated/types/ServiceAppointmentInputRepresentation.d.ts +79 -0
  88. package/dist/es/es2018/types/src/generated/types/ServiceAppointmentOutputRepresentation.d.ts +46 -0
  89. package/dist/es/es2018/types/src/generated/types/ServiceAppointmentRepresentation.d.ts +78 -0
  90. package/dist/es/es2018/types/src/generated/types/ServiceAppointmentResult.d.ts +43 -0
  91. package/dist/es/es2018/types/src/generated/types/ServiceResourceCapacity.d.ts +41 -0
  92. package/dist/es/es2018/types/src/generated/types/ServiceResourceCapacityInputRepresentation.d.ts +43 -0
  93. package/dist/es/es2018/types/src/generated/types/ServiceResourceCapacityListResult.d.ts +29 -0
  94. package/dist/es/es2018/types/src/generated/types/ServiceResourceRepresentation.d.ts +31 -0
  95. package/dist/es/es2018/types/src/generated/types/ServiceTerritoryCapacity.d.ts +41 -0
  96. package/dist/es/es2018/types/src/generated/types/ServiceTerritoryCapacityInputRepresentation.d.ts +43 -0
  97. package/dist/es/es2018/types/src/generated/types/ServiceTerritoryCapacityListResult.d.ts +29 -0
  98. package/dist/es/es2018/types/src/generated/types/TokenInputRepresentation.d.ts +28 -0
  99. package/dist/es/es2018/types/src/generated/types/UpdateServiceAppointmentAttendeeInputRepresentation.d.ts +38 -0
  100. package/dist/es/es2018/types/src/generated/types/UpdateServiceAppointmentData.d.ts +29 -0
  101. package/dist/es/es2018/types/src/generated/types/UpdateServiceAppointmentInputRepresentation.d.ts +40 -0
  102. package/dist/es/es2018/types/src/generated/types/UpdateWaitlistParticipantInputRepresentation.d.ts +34 -0
  103. package/dist/es/es2018/types/src/generated/types/WaitlistAnalytics.d.ts +43 -0
  104. package/dist/es/es2018/types/src/generated/types/WaitlistAppointmentData.d.ts +29 -0
  105. package/dist/es/es2018/types/src/generated/types/WaitlistAppointmentInputRepresentation.d.ts +31 -0
  106. package/dist/es/es2018/types/src/generated/types/WaitlistAppointmentOutputRepresentation.d.ts +46 -0
  107. package/dist/es/es2018/types/src/generated/types/WaitlistAppointmentResult.d.ts +43 -0
  108. package/dist/es/es2018/types/src/generated/types/WaitlistCheckInData.d.ts +29 -0
  109. package/dist/es/es2018/types/src/generated/types/WaitlistCheckInInputRepresentation.d.ts +55 -0
  110. package/dist/es/es2018/types/src/generated/types/WaitlistCheckInOutputRepresentation.d.ts +46 -0
  111. package/dist/es/es2018/types/src/generated/types/WaitlistCheckInResult.d.ts +43 -0
  112. package/dist/es/es2018/types/src/generated/types/WaitlistInputRepresentation.d.ts +46 -0
  113. package/dist/es/es2018/types/src/generated/types/WaitlistListResult.d.ts +29 -0
  114. package/dist/es/es2018/types/src/generated/types/WaitlistOutputRepresentation.d.ts +29 -0
  115. package/dist/es/es2018/types/src/generated/types/WaitlistParticipantOutputRepresentation.d.ts +43 -0
  116. package/dist/es/es2018/types/src/generated/types/WaitlistParticipantParticipant.d.ts +31 -0
  117. package/dist/es/es2018/types/src/generated/types/WaitlistParticipantResult.d.ts +51 -0
  118. package/dist/es/es2018/types/src/generated/types/WaitlistParticipantStats.d.ts +49 -0
  119. package/dist/es/es2018/types/src/generated/types/WaitlistRelationshipsOutputRepresentation.d.ts +28 -0
  120. package/dist/es/es2018/types/src/generated/types/WaitlistRelationshipsResult.d.ts +33 -0
  121. package/dist/es/es2018/types/src/generated/types/WaitlistResult.d.ts +53 -0
  122. package/dist/es/es2018/types/src/generated/types/WaitlistServiceResource.d.ts +31 -0
  123. package/dist/es/es2018/types/src/generated/types/WaitlistServiceResourceWithWorkTypes.d.ts +37 -0
  124. package/dist/es/es2018/types/src/generated/types/WaitlistWorkType.d.ts +38 -0
  125. package/dist/es/es2018/types/src/generated/types/WaitlistWorkTypeGroup.d.ts +31 -0
  126. package/dist/es/es2018/types/src/generated/types/WorkTypeGroupRepresentation.d.ts +31 -0
  127. package/dist/es/es2018/types/src/generated/types/WorkTypeInputRepresentation.d.ts +52 -0
  128. package/dist/es/es2018/types/src/generated/types/WorkTypeRepresentation.d.ts +31 -0
  129. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
  130. package/package.json +76 -0
  131. package/sfdc/index.d.ts +1 -0
  132. package/sfdc/index.js +8749 -0
  133. package/src/raml/api.raml +1865 -0
  134. package/src/raml/luvio.raml +120 -0
@@ -0,0 +1,1865 @@
1
+ #%RAML 1.0
2
+ securedBy:
3
+ - OAuth2
4
+ title: Salesforce Connect API
5
+ version: '58.0'
6
+ mediaType: application/json
7
+ protocols:
8
+ - https
9
+ baseUri: /services/data/v66.0
10
+ securitySchemes:
11
+ OAuth2:
12
+ type: OAuth 2.0
13
+ settings:
14
+ authorizationUri: https://example.com/oauth/authorize
15
+ accessTokenUri: ''
16
+ authorizationGrants:
17
+ - implicit
18
+ annotationTypes:
19
+ oas-readOnly:
20
+ type: boolean
21
+ allowedTargets: TypeDeclaration
22
+ oas-collectionFormat:
23
+ type: string
24
+ oas-body-name:
25
+ type: string
26
+ allowedTargets: TypeDeclaration
27
+ types:
28
+ AbstractServiceAppointmentInputRepresentation:
29
+ description: ' Service Appointment input representation'
30
+ type: object
31
+ properties:
32
+ assignedResources:
33
+ description: Assigned Resources
34
+ type: array
35
+ required: false #TODO: hand-rolled W-8253396
36
+ items:
37
+ type: object
38
+ lead:
39
+ description: Lead
40
+ type: object
41
+ required: false #TODO: hand-rolled W-8253396
42
+ schedulingPolicyId:
43
+ description: Scheduling Policy Id
44
+ type: string
45
+ required: false #TODO: hand-rolled W-8253396
46
+ serviceAppointment:
47
+ description: Service Appointment
48
+ type: object
49
+ required: false #TODO: hand-rolled W-8253396
50
+ serviceAppointmentId:
51
+ description: Service appointment Id
52
+ type: string
53
+ required: false #TODO: hand-rolled W-8253396
54
+ AssignedResourceInputRepresentation:
55
+ description: Input representation for Assigned Resource
56
+ type: object
57
+ properties:
58
+ extendedFields:
59
+ description: Extended fields
60
+ type: array
61
+ items:
62
+ type: object
63
+ isPrimaryResource:
64
+ description: Is primary resource
65
+ type: boolean
66
+ isRequiredResource:
67
+ description: Is required resource
68
+ type: boolean
69
+ serviceResourceId:
70
+ description: Service resource ID
71
+ type: string
72
+ AssignedResourceListInputRepresentation:
73
+ description: Input representation for a list of Assigned Resources
74
+ type: object
75
+ properties:
76
+ assignedResources:
77
+ description: List of Assigned Resources
78
+ type: array
79
+ required: false #TODO: hand-rolled W-8253396
80
+ items:
81
+ type: object
82
+ CreateServiceAppointmentAttendeeInputRepresentation:
83
+ description: Create Service Appointment Attendee input representation
84
+ type: object
85
+ properties:
86
+ appointmentId:
87
+ description: Appointment Id
88
+ type: string
89
+ attendeeId:
90
+ description: Attendee Id
91
+ type: string
92
+ extendedFields:
93
+ description: Extended fields
94
+ type: array
95
+ items:
96
+ type: ExtendedFieldsOutputRepresentation
97
+ required: false
98
+ CreateServiceAppointmentInputRepresentation:
99
+ description: Create Service Appointment input representation
100
+ type: object #TODO hand-rolled, extends abstract class and has no properties
101
+ properties:
102
+ assignedResources:
103
+ description: Assigned Resources
104
+ type: array
105
+ required: false #TODO: hand-rolled W-8253396
106
+ items:
107
+ type: object
108
+ lead:
109
+ description: Lead
110
+ type: object
111
+ required: false #TODO: hand-rolled W-8253396
112
+ schedulingPolicyId:
113
+ description: Scheduling Policy Id
114
+ type: string
115
+ required: false #TODO: hand-rolled W-8253396
116
+ serviceAppointment:
117
+ description: Service Appointment
118
+ type: object
119
+ required: false #TODO: hand-rolled W-8253396
120
+ serviceAppointmentId:
121
+ description: Service appointment Id
122
+ type: string
123
+ required: false #TODO: hand-rolled W-8253396
124
+ CreateServiceAppointmentData: #TODO: hand-rolled
125
+ description: A wrapper around CreateServiceAppointmentInputRepresentation
126
+ type: object
127
+ properties:
128
+ createServiceAppointmentInput:
129
+ description: The Oas Body name for create appointment data
130
+ type: CreateServiceAppointmentInputRepresentation
131
+ CreateServiceAppointmentResult:
132
+ description: Create residential loan application results representation
133
+ type: object
134
+ properties:
135
+ assignedResourceIds:
136
+ description: Assigned resource IDs
137
+ type: array
138
+ items:
139
+ type: string
140
+ parentRecordId:
141
+ description: Parent record ID
142
+ type: string
143
+ serviceAppointmentId:
144
+ description: Service appointment ID
145
+ type: string
146
+ DayCapacity:
147
+ description: Day Capacity
148
+ type: object
149
+ properties:
150
+ capacity:
151
+ description: Capacity
152
+ type: integer
153
+ required: false #TODO: hand-rolled W-8253396
154
+ targetDate:
155
+ description: Target Date
156
+ type: string
157
+ required: false #TODO: hand-rolled W-8253396
158
+ DecryptionOutputRepresentation:
159
+ description: Output representation of Decryption
160
+ type: object
161
+ properties:
162
+ result:
163
+ description: Decryption result
164
+ type: DecryptionResult
165
+ DecryptionResult:
166
+ description: Decryption result
167
+ type: object
168
+ properties:
169
+ decryptedString:
170
+ description: Decrypted form of the given encrypted string
171
+ required: false
172
+ type: string
173
+ EncryptionOutputRepresentation:
174
+ description: Output representation of Encrypt
175
+ type: object
176
+ properties:
177
+ result:
178
+ description: Encrypt result
179
+ type: EncryptionResult
180
+ EncryptionResult:
181
+ description: Encryption result
182
+ type: object
183
+ properties:
184
+ encryptedString:
185
+ description: Encrypted form of the given input string
186
+ required: false
187
+ type: string
188
+ ExtendedFieldInputRepresentation:
189
+ description: Input representation for extended fields
190
+ type: object
191
+ properties:
192
+ name:
193
+ description: Extended Field Name
194
+ type: string
195
+ value:
196
+ description: Extended Field Value
197
+ type: string
198
+ ExtendedFieldListInputRepresentation:
199
+ description: Wraps a list of extended fields.
200
+ type: object
201
+ properties:
202
+ extendedFields:
203
+ description: List of Extended Fields
204
+ type: array
205
+ items:
206
+ type: object
207
+ GetAppointmentFromTokenOutputRepresentation:
208
+ description: Output representation of GetAppointmentFromToken API
209
+ type: object
210
+ properties:
211
+ result:
212
+ description: Get Appointment From Token result
213
+ type: GetAppointmentFromTokenResult
214
+ GetAppointmentFromTokenResult:
215
+ description: GetAppointmentFromToken result
216
+ type: object
217
+ properties:
218
+ serviceAppointment:
219
+ description: Service Appointment
220
+ type: ServiceAppointmentRepresentation
221
+ serviceResourceId:
222
+ description: Service Resource ID
223
+ type: string
224
+ workTypeGroup:
225
+ description: Work Type Group ID
226
+ type: WorkTypeGroupRepresentation
227
+ GetAppointmentPaymentDetailsOutputRepresentation:
228
+ description: Output representation of GetAppointmentPaymentDetails
229
+ type: object
230
+ properties:
231
+ result:
232
+ description: GetAppointmentPaymentDetails result
233
+ type: GetAppointmentPaymentDetailsResult
234
+ GetAppointmentPaymentDetailsResult:
235
+ description: GetAppointmentPaymentDetails result
236
+ type: object
237
+ properties:
238
+ basePrice:
239
+ description: Base Price
240
+ format: double
241
+ type: number
242
+ required: false
243
+ currencyIsoCode:
244
+ description: Currency Iso Code
245
+ type: string
246
+ required: false
247
+ discount:
248
+ description: Discount
249
+ format: double
250
+ type: number
251
+ required: false
252
+ grandTotal:
253
+ description: Grand Total
254
+ format: double
255
+ type: number
256
+ required: false
257
+ shippingAndHandlingCost:
258
+ description: Shipping and Handling cost
259
+ format: double
260
+ type: number
261
+ required: false
262
+ tax:
263
+ description: Tax
264
+ format: double
265
+ type: number
266
+ required: false
267
+ GetEngagementChannelTypeListResult:
268
+ description: Get engagement channel type list result
269
+ type: object
270
+ properties:
271
+ engagementChannelTypes:
272
+ description: List of Engagement Channel Types
273
+ type: array
274
+ items:
275
+ type: GetEngagementChannelTypeResult
276
+ GetEngagementChannelTypeOutputRepresentation:
277
+ description: Output representation of Get Engagement Channel Type (List) Representation
278
+ type: object
279
+ properties:
280
+ result:
281
+ description: Get Engagement Channel Type result
282
+ type: GetEngagementChannelTypeListResult
283
+ GetEngagementChannelTypeResult:
284
+ description: Get engagement channel type result
285
+ type: object
286
+ properties:
287
+ contactPoint:
288
+ description: Engagement Channel Type Contact Point
289
+ type: string
290
+ required: false #TODO: hand-rolled W-8253396
291
+ contactPointType:
292
+ description: Engagement Channel Type Contact Point Type
293
+ type: string
294
+ required: false #TODO: hand-rolled W-8253396
295
+ id:
296
+ description: Engagement Channel Type ID
297
+ type: string
298
+ required: false #TODO: hand-rolled W-8253396
299
+ name:
300
+ description: Engagement Channel Type name
301
+ type: string
302
+ required: false #TODO: hand-rolled W-8253396
303
+ workTypeGroupIds:
304
+ description: Engagement Channel Type Work Type Group Ids
305
+ type: array
306
+ required: false #TODO: hand-rolled W-8253396
307
+ items:
308
+ type: string
309
+ workTypeIds:
310
+ description: Engagement Channel Type Work Type Ids
311
+ type: array
312
+ required: false #TODO: hand-rolled W-8253396
313
+ items:
314
+ type: string
315
+ GetGroupAppointmentsInputRepresentation:
316
+ description: Get Group Appointments input representation
317
+ type: object
318
+ properties:
319
+ startTime:
320
+ description: Start Time
321
+ type: string
322
+ required: false
323
+ endTime:
324
+ description: End Time
325
+ type: string
326
+ required: false
327
+ limit:
328
+ description: Limit
329
+ type: integer
330
+ required: false
331
+ offset:
332
+ description: Offset
333
+ type: integer
334
+ required: false
335
+ filterByWorkTypeGroups:
336
+ description: Work Type Group IDs
337
+ type: array
338
+ required: false
339
+ items:
340
+ type: string
341
+ filterByWorkTypes:
342
+ description: Work Type IDs
343
+ type: array
344
+ required: false
345
+ items:
346
+ type: string
347
+ filterByParentRecords:
348
+ description: Parent Record IDs
349
+ type: array
350
+ required: false
351
+ items:
352
+ type: string
353
+ filterByTerritories:
354
+ description: Territory IDs
355
+ type: array
356
+ required: false
357
+ items:
358
+ type: string
359
+ filterByResources:
360
+ description: Resource IDs
361
+ type: array
362
+ required: false
363
+ items:
364
+ type: string
365
+ excludeAssociatedAppts:
366
+ description: Exclude appointments for current user.
367
+ required: false
368
+ type: boolean
369
+ extendedFieldsToQuery:
370
+ description: List of Extended Fields
371
+ type: array
372
+ required: false
373
+ items:
374
+ type: string
375
+ GroupAppointmentResult:
376
+ description: Group appointment result
377
+ type: object
378
+ properties:
379
+ appointmentChannel:
380
+ description: Appointment Channel
381
+ type: AppointmentChannelRepresentation
382
+ required: false
383
+ appointmentId:
384
+ description: Service Appointment Id
385
+ type: string
386
+ required: false
387
+ attendeeCount:
388
+ description: Attendee Count
389
+ type: integer
390
+ required: false
391
+ attendeeLimit:
392
+ description: Attendee Limit
393
+ type: integer
394
+ required: false
395
+ parentRecordId:
396
+ description: Parent Record Id
397
+ type: string
398
+ required: false
399
+ endTime:
400
+ description: End Time
401
+ type: string
402
+ required: false
403
+ resource:
404
+ description: Service Resource
405
+ type: ServiceResourceRepresentation
406
+ required: false
407
+ startTime:
408
+ description: Start Time
409
+ type: string
410
+ required: false
411
+ territoryId:
412
+ description: Service Territory Id
413
+ type: string
414
+ required: false
415
+ engagementChannelTypeId:
416
+ description: Engagement Channel Type Id
417
+ type: string
418
+ required: false
419
+ workTypeId:
420
+ description: Work Type Id
421
+ type: string
422
+ required: false
423
+ workTypeGroup:
424
+ description: Work Type Group
425
+ type: WorkTypeGroupRepresentation
426
+ required: false
427
+ extendedFields:
428
+ description: Extended Fields
429
+ type: array
430
+ required: false
431
+ items:
432
+ type: ExtendedFieldsOutputRepresentation
433
+ GetGroupAppointmentsListResult:
434
+ description: Get group appointments result
435
+ type: object
436
+ properties:
437
+ groupAppointments:
438
+ description: Get Group Appointments List
439
+ type: array
440
+ items:
441
+ type: GroupAppointmentResult
442
+ GetGroupAppointmentsOutputRepresentation:
443
+ description: Output representation of Get Group Appointments
444
+ type: object
445
+ properties:
446
+ result:
447
+ description: Get Group Appointments List result
448
+ type: GetGroupAppointmentsListResult
449
+ GetNextWaitlistParticipantOutputRepresentation:
450
+ description: Output representation of Get Next Waitlist Participant Representation
451
+ type: object
452
+ properties:
453
+ result:
454
+ description: Get Next Waitlist Participant result
455
+ type: GetNextWaitlistParticipantResult
456
+ GetNextWaitlistParticipantResult:
457
+ description: Get next waitlist participant result
458
+ type: object
459
+ properties:
460
+ waitlistParticipantId:
461
+ description: Waitlist Participant ID
462
+ required: false
463
+ type: string
464
+ waitlistServiceResource:
465
+ description: Waitlist Service Resource
466
+ type: WaitlistServiceResourceWithWorkTypes
467
+ workTypeGroups:
468
+ description: Work Type Groups
469
+ required: false
470
+ type: array
471
+ items:
472
+ type: WaitlistWorkTypeGroup
473
+ workTypeId:
474
+ description: Work Type ID
475
+ required: false
476
+ type: string
477
+ GetServiceTerritoriesResult:
478
+ description: Get service territories result
479
+ type: object
480
+ properties:
481
+ city:
482
+ description: Service territory city
483
+ type: string
484
+ country:
485
+ description: Service territory country
486
+ type: string
487
+ id:
488
+ description: Service territory ID
489
+ type: string
490
+ latitude:
491
+ description: Service territory latitude
492
+ type: string
493
+ required: false
494
+ longitude:
495
+ description: Service territory longitude
496
+ type: string
497
+ required: false
498
+ name:
499
+ description: Service territory name
500
+ type: string
501
+ operatingHoursId:
502
+ description: Service territory operating hours ID
503
+ type: string
504
+ required: false
505
+ postalCode:
506
+ description: Service territory postal code
507
+ type: string
508
+ state:
509
+ description: Service territory state
510
+ type: string
511
+ street:
512
+ description: Service territory street
513
+ type: string
514
+ GetServiceResourceCapacityOutputRepresentation:
515
+ description: Output representation of Service Resource Capacity (List) Representation
516
+ type: object
517
+ properties:
518
+ result:
519
+ description: Service Resource Capacity result
520
+ type: ServiceResourceCapacityListResult
521
+ GetServiceTerritoryCapacityOutputRepresentation:
522
+ description: Output representation of Service Territory Capacity (List) Representation
523
+ type: object
524
+ properties:
525
+ result:
526
+ description: Service Territory Capacity result
527
+ type: ServiceTerritoryCapacityListResult
528
+ GetWaitlistParticipantStatsListResult:
529
+ description: Get waitlist participant stats list result
530
+ type: object
531
+ properties:
532
+ waitlistParticipantStats:
533
+ description: List of Waitlist Participant Stats
534
+ type: array
535
+ required: false
536
+ items:
537
+ type: WaitlistParticipantStats
538
+ GetWaitlistParticipantStatsOutputRepresentation:
539
+ description: Output representation of Get Waitlist Participants Statistics (List) Representation
540
+ type: object
541
+ properties:
542
+ result:
543
+ description: Get Waitlist Participant Stats result
544
+ type: GetWaitlistParticipantStatsListResult
545
+ LeadInputRepresentation:
546
+ description: Input representation for Lead
547
+ type: object
548
+ properties:
549
+ company:
550
+ description: Company
551
+ type: string
552
+ email:
553
+ description: Email
554
+ type: string
555
+ extendedFields:
556
+ description: Extended fields
557
+ type: array
558
+ items:
559
+ type: object
560
+ firstName:
561
+ description: First name
562
+ type: string
563
+ lastName:
564
+ description: Last name
565
+ type: string
566
+ phone:
567
+ description: Phone
568
+ type: string
569
+ ParticipantRecentInteractionsOutputRepresentation:
570
+ description: Output representation of Participant Recent Interactions
571
+ type: object
572
+ properties:
573
+ result:
574
+ description: Participant Recent Interactions result
575
+ type: ParticipantRecentInteractionsResult
576
+ ParticipantRecentInteractionsResult:
577
+ description: Participant Recent Interactions
578
+ type: object
579
+ properties:
580
+ serviceResources:
581
+ description: Service Resources
582
+ type: array
583
+ items:
584
+ type: WaitlistServiceResource
585
+ SchedulerExtendedFieldsOutputRepresentation:
586
+ description: Extended fields output representation for Scheduler
587
+ type: object
588
+ properties:
589
+ name:
590
+ description: Extended Field Name
591
+ type: string
592
+ value:
593
+ description: Extended Field Value
594
+ type: string
595
+ ServiceAppointmentAttendeeInputRepresentation:
596
+ description: Service Appointment Attendee input representation
597
+ type: object
598
+ properties:
599
+ appointmentId:
600
+ description: Appointment Id
601
+ type: string
602
+ required: false
603
+ attendeeId:
604
+ description: Attendee Id
605
+ type: string
606
+ required: false
607
+ extendedFields:
608
+ description: Extended fields
609
+ type: array
610
+ items:
611
+ type: object
612
+ required: false
613
+ ServiceAppointmentAttendeeOutputRepresentation:
614
+ description: Service Appointment Attendee API output representation
615
+ type: object
616
+ properties:
617
+ result:
618
+ description: Service Appointment Attendee API result
619
+ type: ServiceAppointmentAttendeeResult
620
+ ServiceAppointmentAttendeeResult:
621
+ description: Service Appointment Attendee API Result representation
622
+ type: object
623
+ properties:
624
+ serviceAppointmentAttendeeId:
625
+ description: Service Appointment Attendee ID
626
+ type: string
627
+ ServiceAppointmentInputRepresentation:
628
+ description: Input representation for Service Appointment
629
+ type: object
630
+ properties:
631
+ additionalInformation:
632
+ description: Additional information
633
+ type: string
634
+ required: false #TODO: hand-rolled W-8253396
635
+ appointmentType:
636
+ description: Appointment type
637
+ type: string
638
+ required: false #TODO: hand-rolled W-8253396
639
+ city:
640
+ description: City
641
+ type: string
642
+ required: false #TODO: hand-rolled W-8253396
643
+ comments:
644
+ description: Comments
645
+ type: string
646
+ required: false #TODO: hand-rolled W-8253396
647
+ contactId:
648
+ description: Contact ID
649
+ type: string
650
+ required: false #TODO: hand-rolled W-8253396
651
+ country:
652
+ description: Country
653
+ type: string
654
+ required: false #TODO: hand-rolled W-8253396
655
+ description:
656
+ description: Description
657
+ type: string
658
+ required: false #TODO: hand-rolled W-8253396
659
+ engagementChannelTypeId:
660
+ description: Engagement channel type id
661
+ type: string
662
+ required: false #TODO: hand-rolled W-8253396
663
+ extendedFields:
664
+ description: Extended fields
665
+ type: array
666
+ required: false #TODO: hand-rolled W-8253396
667
+ items:
668
+ type: object
669
+ parentRecordId:
670
+ description: Parent record ID
671
+ type: string
672
+ postalCode:
673
+ description: Postal code
674
+ type: string
675
+ required: false #TODO: hand-rolled W-8253396
676
+ schedEndTime:
677
+ description: Scheduled end time
678
+ type: string
679
+ required: false #TODO: hand-rolled W-8253396
680
+ schedStartTime:
681
+ description: Scheduled start time
682
+ type: string
683
+ required: false #TODO: hand-rolled W-8253396
684
+ serviceTerritoryId:
685
+ description: Service territory ID
686
+ type: string
687
+ required: false #TODO: hand-rolled W-8253396
688
+ state:
689
+ description: State
690
+ type: string
691
+ required: false #TODO: hand-rolled W-8253396
692
+ street:
693
+ description: Street
694
+ type: string
695
+ required: false #TODO: hand-rolled W-8253396
696
+ subject:
697
+ description: Subject
698
+ type: string
699
+ required: false #TODO: hand-rolled W-8253396
700
+ workTypeId:
701
+ description: Work type ID
702
+ type: string
703
+ required: false #TODO: hand-rolled W-8253396
704
+ ServiceAppointmentOutputRepresentation:
705
+ description: Create service appointment output representation
706
+ type: object
707
+ properties:
708
+ result:
709
+ description: Result
710
+ type: ServiceAppointmentResult
711
+ ServiceAppointmentRepresentation:
712
+ description: Service Appointment representation
713
+ type: object
714
+ properties:
715
+ additionalInformation:
716
+ description: Additional Information
717
+ type: string
718
+ appointmentType:
719
+ description: Appointment Type
720
+ type: string
721
+ comments:
722
+ description: Comments
723
+ type: string
724
+ description:
725
+ description: Description
726
+ type: string
727
+ engagementChannelTypeId:
728
+ description: Engagement Channel Type ID
729
+ type: string
730
+ id:
731
+ description: ID
732
+ type: string
733
+ isAnonymousBooking:
734
+ description: Is Anonymous Booking
735
+ type: boolean
736
+ parentRecordId:
737
+ description: Parent Record ID
738
+ type: string
739
+ relatedRecordFields:
740
+ description: Service territory
741
+ type: array
742
+ items:
743
+ type: SchedulerExtendedFieldsOutputRepresentation
744
+ schedEndTime:
745
+ description: Scheduled End Time
746
+ type: string
747
+ schedStartTime:
748
+ description: Scheduled Start Time
749
+ type: string
750
+ serviceTerritory:
751
+ description: Service territory
752
+ type: GetServiceTerritoriesResult
753
+ serviceTerritoryId:
754
+ description: Service Territory ID
755
+ type: string
756
+ status:
757
+ description: Status
758
+ type: string
759
+ statusCategory:
760
+ description: Status Category
761
+ type: string
762
+ subject:
763
+ description: Subject
764
+ type: string
765
+ workTypeId:
766
+ description: Work Type ID
767
+ type: string
768
+ ServiceAppointmentResult:
769
+ description: Create Service Appointment results representation
770
+ type: object
771
+ properties:
772
+ assignedResourceIds:
773
+ description: Assigned resource IDs
774
+ type: array
775
+ items:
776
+ type: string
777
+ parentRecordId:
778
+ description: Parent record ID
779
+ type: string
780
+ required: false #TODO: hand-rolled W-8253396
781
+ serviceAppointmentId:
782
+ description: Service appointment ID
783
+ type: string
784
+ ServiceResourceCapacity:
785
+ description: Service Resource Capacity
786
+ type: object
787
+ properties:
788
+ dayCapacityList:
789
+ description: List of Service Resource Capacity
790
+ type: array
791
+ items:
792
+ type: DayCapacity
793
+ serviceTerritoryId:
794
+ description: Service Territory Id
795
+ type: string
796
+ required: false
797
+ serviceTerritoryName:
798
+ description: Service Territory Name
799
+ type: string
800
+ required: false
801
+ workTypeId:
802
+ description: Work Type Id
803
+ type: string
804
+ required: false
805
+ workTypeName:
806
+ description: Work Type Name
807
+ type: string
808
+ required: false
809
+ ServiceResourceCapacityInputRepresentation:
810
+ description: Service Resource Capacity input representation
811
+ type: object
812
+ properties:
813
+ endDate:
814
+ description: Date upto which capacity should be calculated
815
+ type: string
816
+ required: false
817
+ maxLimit:
818
+ description: Max Limit
819
+ type: integer
820
+ required: false
821
+ offset:
822
+ description: Offset
823
+ type: integer
824
+ required: false
825
+ serviceResourceId:
826
+ description: Service Resource Id
827
+ type: string
828
+ required: false
829
+ workTypeId:
830
+ description: Work Type Id
831
+ type: string
832
+ required: false
833
+ startDate:
834
+ description: Date from which capacity should be calculated
835
+ type: string
836
+ required: false
837
+ ServiceResourceCapacityListResult:
838
+ description: List of Service Resource Capacity
839
+ type: object
840
+ properties:
841
+ serviceResourceCapacityListResult:
842
+ description: List of Service Resource Capacity
843
+ type: array
844
+ items:
845
+ type: ServiceResourceCapacity
846
+ ServiceTerritoryCapacity:
847
+ description: Service Territory Capacity List for Work Type and Service Resource
848
+ type: object
849
+ properties:
850
+ dayCapacityList:
851
+ description: List of Service Territory Capacity for Work Type
852
+ type: array
853
+ items:
854
+ type: DayCapacity
855
+ serviceResourceId:
856
+ description: Service Resource Id
857
+ type: string
858
+ required: false #TODO: hand-rolled W-8253396
859
+ serviceResourceName:
860
+ description: Service Resource Name
861
+ type: string
862
+ required: false
863
+ workTypeId:
864
+ description: WorkType Id
865
+ type: string
866
+ workTypeName:
867
+ description: WorkType Name
868
+ type: string
869
+ required: false
870
+ ServiceTerritoryCapacityInputRepresentation:
871
+ description: Service Territory capacity input representation
872
+ type: object
873
+ properties:
874
+ endDate:
875
+ description: Date upto which capacity should be calculated
876
+ type: string
877
+ required: false
878
+ maxLimit:
879
+ description: Max Limit
880
+ type: integer
881
+ required: false
882
+ offset:
883
+ description: Offset
884
+ type: integer
885
+ required: false
886
+ serviceTerritoryId:
887
+ description: service territory id
888
+ type: string
889
+ required: false
890
+ startDate:
891
+ description: Date from which capacity should be calculated
892
+ type: string
893
+ required: false
894
+ workTypeId:
895
+ description: Work Type Id
896
+ type: string
897
+ required: false
898
+ ServiceTerritoryCapacityListResult:
899
+ description: List of Service Territory Capacity for Work Type and Service Resource
900
+ type: object
901
+ properties:
902
+ serviceTerritoryCapacityListResult:
903
+ description: List of Service Territory Capacity
904
+ type: array
905
+ items:
906
+ type: ServiceTerritoryCapacity
907
+ TokenInputRepresentation:
908
+ description: Token Input Representation
909
+ type: object
910
+ properties:
911
+ token:
912
+ description: Token
913
+ type: string
914
+ UpdateServiceAppointmentAttendeeInputRepresentation:
915
+ description: Update Service Appointment Attendee input representation
916
+ type: object
917
+ properties:
918
+ serviceAppointmentAttendeeId:
919
+ description: Service Apppointment Attendee Id
920
+ type: string
921
+ appointmentId:
922
+ description: Appointment Id
923
+ type: string
924
+ required: false
925
+ attendeeId:
926
+ description: Attendee Id
927
+ type: string
928
+ required: false
929
+ extendedFields:
930
+ description: Extended fields
931
+ type: array
932
+ items:
933
+ type: ExtendedFieldsOutputRepresentation
934
+ required: false
935
+ UpdateServiceAppointmentInputRepresentation:
936
+ description: Update Service Appointment input representation
937
+ type: object #TODO hand-rolled - actually extends abstract class
938
+ properties:
939
+ assignedResources:
940
+ description: Assigned Resources
941
+ type: array
942
+ required: false #TODO: hand-rolled W-8253396
943
+ items:
944
+ type: object
945
+ lead:
946
+ description: Lead
947
+ type: object
948
+ required: false #TODO: hand-rolled W-8253396
949
+ schedulingPolicyId:
950
+ description: Scheduling Policy Id
951
+ type: string
952
+ required: false #TODO: hand-rolled W-8253396
953
+ serviceAppointment:
954
+ description: Service Appointment
955
+ type: object
956
+ serviceAppointmentId:
957
+ description: Service appointment Id
958
+ type: string
959
+ UpdateServiceAppointmentData: #TODO: hand rolled
960
+ description: A wrapper around the UpdateServiceAppointmentInputRepresentation
961
+ type: object
962
+ properties:
963
+ updateServiceAppointmentInput:
964
+ description: The Oas Boday Name for update service data
965
+ type: UpdateServiceAppointmentInputRepresentation
966
+ UpdateWaitlistParticipantInputRepresentation:
967
+ description: Update Waitlist Participant input representation
968
+ type: object
969
+ properties:
970
+ serviceAppointmentStatus:
971
+ description: Service Appointment status
972
+ type: string
973
+ required: false
974
+ targetPosition:
975
+ description: Target position
976
+ type: integer
977
+ required: false
978
+ waitlistParticipantId:
979
+ description: Waitlist participant Id
980
+ type: string
981
+ WaitlistAnalytics:
982
+ description: Waitlist Analytics
983
+ type: object
984
+ properties:
985
+ avgParticipants:
986
+ description: Average Participants Per Day
987
+ required: false
988
+ type: integer
989
+ avgWaitingTime:
990
+ description: Average Waiting Time In Mins
991
+ required: false
992
+ type: integer
993
+ currentParticipant:
994
+ description: Current participants
995
+ required: false
996
+ type: integer
997
+ servedParticipant:
998
+ description: Served participants
999
+ required: false
1000
+ type: integer
1001
+ totalParticipant:
1002
+ description: Total participants
1003
+ required: false
1004
+ type: integer
1005
+ totalWaitingTime:
1006
+ description: Total waiting time in minutes
1007
+ required: false
1008
+ type: integer
1009
+ WaitlistAppointmentInputRepresentation:
1010
+ description: Waitlist Appointment Input Representation
1011
+ type: object
1012
+ properties:
1013
+ userId:
1014
+ description: User Id
1015
+ type: string
1016
+ waitlistParticipantId:
1017
+ description: Waitlist Participant Id
1018
+ type: string
1019
+ WaitlistAppointmentData: #TODO: hand-rolled
1020
+ description: A wrapper around WaitlistAppointmentInputRepresentation
1021
+ type: object
1022
+ properties:
1023
+ waitlistAppointmentInput:
1024
+ description: The Oas Body name for waitlist appointment data
1025
+ type: WaitlistAppointmentInputRepresentation
1026
+ WaitlistAppointmentOutputRepresentation:
1027
+ description: Waitlist Appointment output representation
1028
+ type: object
1029
+ properties:
1030
+ result:
1031
+ description: Waitlist Appointment result
1032
+ type: WaitlistAppointmentResult
1033
+ WaitlistAppointmentResult:
1034
+ description: Waitlist Appointment Result
1035
+ type: object
1036
+ properties:
1037
+ assignedResourceId:
1038
+ description: Assigned Resource ID
1039
+ required: false
1040
+ type: string
1041
+ serviceAppointmentId:
1042
+ description: Service Appointment ID
1043
+ type: string
1044
+ waitlistParticipantId:
1045
+ description: Waitlist Participant ID
1046
+ required: false
1047
+ type: string
1048
+ WaitlistCheckInInputRepresentation:
1049
+ description: Waitlist checkin input representation
1050
+ type: object
1051
+ properties:
1052
+ checkInPageURL:
1053
+ description: CheckIn Page URL
1054
+ required: false
1055
+ type: string
1056
+ confirmationEmailTemplate:
1057
+ description: Confirmation Email Template
1058
+ required: false
1059
+ type: string
1060
+ description:
1061
+ description: Description
1062
+ required: false
1063
+ type: string
1064
+ extendedFields:
1065
+ description: Extended fields
1066
+ type: array
1067
+ items:
1068
+ type: object
1069
+ lead:
1070
+ description: Lead
1071
+ required: false
1072
+ type: object
1073
+ participantId:
1074
+ description: Participant Id
1075
+ required: false
1076
+ type: string
1077
+ serviceResourceId:
1078
+ description: Service Resource Id
1079
+ required: false
1080
+ type: string
1081
+ waitlistId:
1082
+ description: Waitlist Id
1083
+ required: false
1084
+ type: string
1085
+ workTypeGroupId:
1086
+ description: Work Type Group Id
1087
+ required: false
1088
+ type: string
1089
+ workTypeId:
1090
+ description: WorkType Id
1091
+ required: false
1092
+ type: string
1093
+ WaitlistCheckInData: #TODO: hand-rolled
1094
+ description: A wrapper around WaitlistCheckInInputRepresentation
1095
+ type: object
1096
+ properties:
1097
+ waitlistCheckInInput:
1098
+ description: The Oas Body name for waitlist checkIn data
1099
+ type: WaitlistCheckInInputRepresentation
1100
+ WaitlistCheckInOutputRepresentation:
1101
+ description: Waitlist CheckIn output representation
1102
+ type: object
1103
+ properties:
1104
+ result:
1105
+ description: Waitlist CheckIn result
1106
+ type: WaitlistCheckInResult
1107
+ WaitlistCheckInResult:
1108
+ description: Waitlist CheckIn Result
1109
+ type: object
1110
+ properties:
1111
+ participantId:
1112
+ description: Participant ID
1113
+ required: false
1114
+ type: string
1115
+ serviceAppointmentId:
1116
+ description: Service Appointment ID
1117
+ type: string
1118
+ waitlistParticipantId:
1119
+ description: Waitlist Participant ID
1120
+ required: false
1121
+ type: string
1122
+ WaitlistInputRepresentation:
1123
+ description: Waitlist input representation
1124
+ type: object
1125
+ properties:
1126
+ isActive:
1127
+ description: IsActive
1128
+ required: false
1129
+ type: boolean
1130
+ maxLimit:
1131
+ description: Max Limit
1132
+ required: false
1133
+ type: integer
1134
+ offset:
1135
+ description: Offset
1136
+ required: false
1137
+ type: integer
1138
+ participantFields:
1139
+ description: Participant Fields
1140
+ type: array
1141
+ items:
1142
+ type: string
1143
+ requestId:
1144
+ description: Request Unique Identifier
1145
+ required: false
1146
+ type: string
1147
+ serviceTerritoryId:
1148
+ description: ServiceTerritory Id
1149
+ required: false
1150
+ type: string
1151
+ waitlistIds:
1152
+ description: Waitlist Ids
1153
+ required: false
1154
+ type: array
1155
+ items:
1156
+ type: string
1157
+ WaitlistListResult:
1158
+ description: Waitlist list result
1159
+ type: object
1160
+ properties:
1161
+ waitlists:
1162
+ description: List of Waitlists
1163
+ type: array
1164
+ items:
1165
+ type: WaitlistResult
1166
+ WaitlistOutputRepresentation:
1167
+ description: Output representation of Waitlist (List) Representation
1168
+ type: object
1169
+ properties:
1170
+ result:
1171
+ description: Waitlist result
1172
+ type: WaitlistListResult
1173
+ WaitlistParticipantOutputRepresentation:
1174
+ description: Output representation of Waitlist Participant resource
1175
+ type: object
1176
+ properties:
1177
+ message:
1178
+ description: Response message
1179
+ type: string
1180
+ required: false
1181
+ waitlistParticipantId:
1182
+ description: Waitlist Participant Id
1183
+ type: string
1184
+ status:
1185
+ description: Response status
1186
+ type: string
1187
+ required: false
1188
+ WaitlistParticipantParticipant:
1189
+ description: Waitlist Participant Participant
1190
+ type: object
1191
+ properties:
1192
+ id:
1193
+ description: Id
1194
+ required: false
1195
+ type: string
1196
+ name:
1197
+ description: Name
1198
+ required: false
1199
+ type: string
1200
+ AppointmentChannelRepresentation:
1201
+ description: Appointment Channel representation
1202
+ type: object
1203
+ properties:
1204
+ appointmentType:
1205
+ description: Appointment Type
1206
+ required: false
1207
+ type: string
1208
+ engagementChannelTypeId:
1209
+ description: EngagementChannelType Id
1210
+ required: false
1211
+ type: string
1212
+ engagementChannelTypeName:
1213
+ description: EngagementChannelType Name
1214
+ required: false
1215
+ type: string
1216
+ ServiceResourceRepresentation:
1217
+ description: Service Resource representation
1218
+ type: object
1219
+ properties:
1220
+ id:
1221
+ description: ServiceResource ID
1222
+ required: false
1223
+ type: string
1224
+ name:
1225
+ description: ServiceResource Name
1226
+ required: false
1227
+ type: string
1228
+ ExtendedFieldsOutputRepresentation:
1229
+ description: Extended fields output representation
1230
+ type: object
1231
+ properties:
1232
+ name:
1233
+ description: Extended Field Name
1234
+ type: string
1235
+ value:
1236
+ description: Extended Field Value
1237
+ type: string
1238
+ WaitlistParticipantResult:
1239
+ description: Waitlist Participant Result
1240
+ type: object
1241
+ properties:
1242
+ createdDate:
1243
+ description: Created Date
1244
+ type: string
1245
+ extendedFields:
1246
+ description: List of extended fields
1247
+ type: array
1248
+ items:
1249
+ type: ExtendedFieldsOutputRepresentation
1250
+ participant:
1251
+ description: Waitlist Participant
1252
+ type: WaitlistParticipantParticipant
1253
+ required: false
1254
+ participantIdentifier:
1255
+ description: Waitlist Participant Identifier
1256
+ type: string
1257
+ required: false
1258
+ serviceAppointmentId:
1259
+ description: Service Appointment ID
1260
+ type: string
1261
+ serviceResource:
1262
+ description: Service Resource
1263
+ type: WaitlistServiceResource
1264
+ required: false
1265
+ waitlistParticipantId:
1266
+ description: Waitlist Participant ID
1267
+ required: false
1268
+ type: string
1269
+ workTypeGroup:
1270
+ description: Work Type Group
1271
+ required: false
1272
+ type: WaitlistWorkTypeGroup
1273
+ WaitlistParticipantStats:
1274
+ description: Waitlist Participant Statistics
1275
+ type: object
1276
+ properties:
1277
+ createdDate:
1278
+ description: Waitlist Participant Created Date
1279
+ type: string
1280
+ required: false
1281
+ errorMessage:
1282
+ description: Error Message
1283
+ type: string
1284
+ required: false
1285
+ positionInWaitlist:
1286
+ description: Position In Waitlist
1287
+ type: integer
1288
+ required: false
1289
+ serviceAppointmentId:
1290
+ description: Service Appointment ID
1291
+ type: string
1292
+ required: false
1293
+ waitlist:
1294
+ description: Waitlist
1295
+ type: WaitlistResult
1296
+ required: false
1297
+ waitlistParticipantId:
1298
+ description: Waitlist Participant ID
1299
+ type: string
1300
+ required: false
1301
+ workType:
1302
+ description: Work Type
1303
+ type: WorkTypeRepresentation
1304
+ required: false
1305
+ workTypeGroup:
1306
+ description: Work Type Group
1307
+ type: WorkTypeGroupRepresentation
1308
+ required: false
1309
+ WaitlistRelationshipsOutputRepresentation:
1310
+ description: Output representation of Waitlist Relationships
1311
+ type: object
1312
+ properties:
1313
+ result:
1314
+ description: Waitlist Relationships result
1315
+ type: WaitlistRelationshipsResult
1316
+ WaitlistRelationshipsResult:
1317
+ description: Waitlist Relationships Result
1318
+ type: object
1319
+ properties:
1320
+ serviceResources:
1321
+ description: Service Resources
1322
+ required: false
1323
+ type: array
1324
+ items:
1325
+ type: WaitlistServiceResource
1326
+ workTypes:
1327
+ description: Work Types
1328
+ required: false
1329
+ type: array
1330
+ items:
1331
+ type: WaitlistWorkType
1332
+ WaitlistResult:
1333
+ description: Waitlist result
1334
+ type: object
1335
+ properties:
1336
+ description:
1337
+ description: Description
1338
+ required: false
1339
+ type: string
1340
+ isActive:
1341
+ description: Active
1342
+ required: false
1343
+ type: boolean
1344
+ name:
1345
+ description: Waitlist Name
1346
+ required: false
1347
+ type: string
1348
+ serviceResources:
1349
+ description: Service Resources
1350
+ required: false
1351
+ type: array
1352
+ items:
1353
+ type: WaitlistServiceResource
1354
+ waitlistAnalytics:
1355
+ description: Waitlist Analytics
1356
+ required: false
1357
+ type: WaitlistAnalytics
1358
+ waitlistId:
1359
+ description: Waitlist ID
1360
+ required: false
1361
+ type: string
1362
+ waitlistParticipants:
1363
+ description: Waitlist Participants
1364
+ required: false
1365
+ type: array
1366
+ items:
1367
+ type: WaitlistParticipantResult
1368
+ workTypeGroups:
1369
+ description: Work Type Groups
1370
+ required: false
1371
+ type: array
1372
+ items:
1373
+ type: WaitlistWorkTypeGroup
1374
+ WaitlistServiceResource:
1375
+ description: Waitlist Service Resource
1376
+ type: object
1377
+ properties:
1378
+ id:
1379
+ description: Id
1380
+ required: false
1381
+ type: string
1382
+ name:
1383
+ description: Name
1384
+ required: false
1385
+ type: string
1386
+ WaitlistServiceResourceWithWorkTypes:
1387
+ description: Waitlist Service Resource With Work Types
1388
+ type: object
1389
+ properties:
1390
+ id:
1391
+ description: Id
1392
+ type: string
1393
+ serviceResourceId:
1394
+ description: serviceResourceId
1395
+ type: string
1396
+ waitlistId:
1397
+ description: waitlistId
1398
+ type: string
1399
+ workTypeIds:
1400
+ description: workTypeIds
1401
+ type: array
1402
+ items:
1403
+ type: string
1404
+ WaitlistWorkType:
1405
+ description: Waitlist Work Type
1406
+ type: object
1407
+ properties:
1408
+ id:
1409
+ description: Id
1410
+ required: false
1411
+ type: string
1412
+ name:
1413
+ description: Name
1414
+ required: false
1415
+ type: string
1416
+ waitlist:
1417
+ description: Waitlist
1418
+ required: false
1419
+ type: WaitlistResult
1420
+ workTypeGroup:
1421
+ description: Work Type Group
1422
+ required: false
1423
+ type: WaitlistWorkTypeGroup
1424
+ WaitlistWorkTypeGroup:
1425
+ description: Waitlist Work Type Group
1426
+ type: object
1427
+ properties:
1428
+ id:
1429
+ description: Id
1430
+ required: false
1431
+ type: string
1432
+ name:
1433
+ description: Name
1434
+ required: false
1435
+ type: string
1436
+ WorkTypeGroupRepresentation:
1437
+ description: Work Type Group representation
1438
+ type: object
1439
+ properties:
1440
+ id:
1441
+ description: WorkTypeGroup ID
1442
+ type: string
1443
+ name:
1444
+ description: WorkTypeGroup Name
1445
+ type: string
1446
+ WorkTypeInputRepresentation:
1447
+ description: Work Type input representation
1448
+ type: object
1449
+ properties:
1450
+ blockTimeAfterAppointmentInMinutes:
1451
+ description: Block time after appointment
1452
+ type: integer
1453
+ blockTimeBeforeAppointmentInMinutes:
1454
+ description: Block time before appointment
1455
+ type: integer
1456
+ durationInMinutes:
1457
+ description: Duration in Minutes
1458
+ type: integer
1459
+ id:
1460
+ description: Id
1461
+ type: string
1462
+ operatingHoursId:
1463
+ description: Operating Hours Id
1464
+ type: string
1465
+ operatingHoursTimeZone:
1466
+ description: Operating Hours Time Zone
1467
+ type: string
1468
+ skillRequirements:
1469
+ description: Skill Requirement
1470
+ type: array
1471
+ items:
1472
+ type: object
1473
+ timeFrameEndInMinutes:
1474
+ description: Timeframe end in minutes
1475
+ type: integer
1476
+ timeFrameStartInMinutes:
1477
+ description: Timeframe start in minutes
1478
+ type: integer
1479
+ WorkTypeRepresentation:
1480
+ description: Work Type representation
1481
+ type: object
1482
+ properties:
1483
+ id:
1484
+ description: WorkType ID
1485
+ type: string
1486
+ name:
1487
+ description: WorkType Name
1488
+ type: string
1489
+
1490
+ /connect:
1491
+ /scheduling:
1492
+ /appointment-from-token:
1493
+ get:
1494
+ displayName: getGetAppointmentFromToken
1495
+ description: Resource to get service appointment from token
1496
+ responses:
1497
+ '200':
1498
+ description: Success
1499
+ body:
1500
+ application/json:
1501
+ type: GetAppointmentFromTokenOutputRepresentation
1502
+ queryParameters:
1503
+ token:
1504
+ type: string
1505
+ required: false
1506
+ /decryption:
1507
+ get:
1508
+ displayName: getDecryption
1509
+ description: Decrypts the given encrypted string
1510
+ responses:
1511
+ '200':
1512
+ description: Success
1513
+ body:
1514
+ application/json:
1515
+ type: DecryptionOutputRepresentation
1516
+ queryParameters:
1517
+ encryptedString:
1518
+ type: string
1519
+ required: false
1520
+ /encryption:
1521
+ get:
1522
+ displayName: getEncryption
1523
+ description: Encrypts the given input string
1524
+ responses:
1525
+ '200':
1526
+ description: Success
1527
+ body:
1528
+ application/json:
1529
+ type: EncryptionOutputRepresentation
1530
+ queryParameters:
1531
+ inputString:
1532
+ type: string
1533
+ required: false
1534
+ /engagement-channel-types:
1535
+ get:
1536
+ description: 'Get list of engagement channel types with specified work types or work type groups'
1537
+ responses:
1538
+ '200':
1539
+ description: Success
1540
+ body:
1541
+ application/json:
1542
+ type: GetEngagementChannelTypeOutputRepresentation
1543
+ queryParameters:
1544
+ workTypeGroupIds:
1545
+ type: array
1546
+ required: false #TODO: hand-rolled W-8253396
1547
+ items:
1548
+ type: string
1549
+ (oas-collectionFormat): csv
1550
+ workTypeIds:
1551
+ type: array
1552
+ required: false #TODO: hand-rolled W-8253396
1553
+ items:
1554
+ type: string
1555
+ (oas-collectionFormat): csv
1556
+ /group-appointments:
1557
+ post:
1558
+ displayName: postGroupAppointments
1559
+ description: Resource to get group appointments
1560
+ responses:
1561
+ '200':
1562
+ description: Success
1563
+ body:
1564
+ application/json:
1565
+ type: GetGroupAppointmentsOutputRepresentation
1566
+ body:
1567
+ application/json:
1568
+ type: GetGroupAppointmentsInputRepresentation
1569
+ (oas-body-name): getGroupAppointmentsInput
1570
+ /next-waitlist-participant:
1571
+ get:
1572
+ displayName: getGetNextWaitlistParticipant
1573
+ description: Get next waitlist participant with specified userid
1574
+ responses:
1575
+ '200':
1576
+ description: Success
1577
+ body:
1578
+ application/json:
1579
+ type: GetNextWaitlistParticipantOutputRepresentation
1580
+ queryParameters:
1581
+ userId:
1582
+ type: string
1583
+ required: false
1584
+ /participant-recent-interactions:
1585
+ get:
1586
+ displayName: getParticipantRecentInteractions
1587
+ description: Get recent interactions for given participant
1588
+ responses:
1589
+ '200':
1590
+ description: Success
1591
+ body:
1592
+ application/json:
1593
+ type: ParticipantRecentInteractionsOutputRepresentation
1594
+ queryParameters:
1595
+ filterByResourceIds:
1596
+ type: array
1597
+ required: false
1598
+ items:
1599
+ type: string
1600
+ (oas-collectionFormat): csv
1601
+ participantId:
1602
+ type: string
1603
+ required: false
1604
+ territoryId:
1605
+ type: string
1606
+ required: false
1607
+ /service-appointment-attendee:
1608
+ patch:
1609
+ displayName: patchServiceAppointmentAttendee
1610
+ description: Update service appointment attendee.
1611
+ responses:
1612
+ '200':
1613
+ description: Success
1614
+ body:
1615
+ application/json:
1616
+ type: ServiceAppointmentAttendeeOutputRepresentation
1617
+ body:
1618
+ application/json:
1619
+ type: UpdateServiceAppointmentAttendeeInputRepresentation
1620
+ (oas-body-name): updateServiceAppointmentAttendeeInput
1621
+ post:
1622
+ displayName: postServiceAppointmentAttendee
1623
+ description: Create service appointment attendee.
1624
+ responses:
1625
+ '200':
1626
+ description: Success
1627
+ body:
1628
+ application/json:
1629
+ type: ServiceAppointmentAttendeeOutputRepresentation
1630
+ body:
1631
+ application/json:
1632
+ type: CreateServiceAppointmentAttendeeInputRepresentation
1633
+ (oas-body-name): createServiceAppointmentAttendeeInput
1634
+ /service-appointments:
1635
+ patch:
1636
+ description: Updating Service Appointment
1637
+ responses:
1638
+ '200':
1639
+ description: Success
1640
+ body:
1641
+ application/json:
1642
+ type: ServiceAppointmentOutputRepresentation
1643
+ body:
1644
+ application/json:
1645
+ type: UpdateServiceAppointmentData
1646
+ (oas-body-name): updateServiceAppointmentInput
1647
+ post:
1648
+ description: Create a new Sample object. All fields are optional for this object.
1649
+ responses:
1650
+ '200':
1651
+ description: Success
1652
+ body:
1653
+ application/json:
1654
+ type: ServiceAppointmentOutputRepresentation
1655
+ body:
1656
+ application/json:
1657
+ type: CreateServiceAppointmentData
1658
+ (oas-body-name): createServiceAppointmentInput
1659
+ /service-resource-capacity:
1660
+ get:
1661
+ displayName: getGetServiceResourceCapacity
1662
+ description: Resource to get service resource's capacity
1663
+ responses:
1664
+ '200':
1665
+ description: Success
1666
+ body:
1667
+ application/json:
1668
+ type: GetServiceResourceCapacityOutputRepresentation
1669
+ queryParameters:
1670
+ endDate:
1671
+ type: string
1672
+ required: false
1673
+ maxLimit:
1674
+ type: integer
1675
+ required: false
1676
+ offset:
1677
+ type: integer
1678
+ required: false
1679
+ serviceResourceId:
1680
+ type: string
1681
+ workTypeId:
1682
+ type: string
1683
+ required: false
1684
+ startDate:
1685
+ type: string
1686
+ required: false
1687
+ /service-territory-capacity:
1688
+ get:
1689
+ displayName: getGetServiceTerritoryCapacity
1690
+ description: Resource to get service territory's capacity
1691
+ responses:
1692
+ '200':
1693
+ description: Success
1694
+ body:
1695
+ application/json:
1696
+ type: GetServiceTerritoryCapacityOutputRepresentation
1697
+ queryParameters:
1698
+ endDate:
1699
+ type: string
1700
+ required: false
1701
+ maxLimit:
1702
+ type: integer
1703
+ required: false
1704
+ offset:
1705
+ type: integer
1706
+ required: false
1707
+ serviceTerritoryId:
1708
+ type: string
1709
+ required: false
1710
+ startDate:
1711
+ type: string
1712
+ required: false
1713
+ workTypeId:
1714
+ type: string
1715
+ required: false
1716
+ /appointment-payment-details:
1717
+ get:
1718
+ displayName: getGetAppointmentPaymentDetails
1719
+ description: Resource to get appointment payment details
1720
+ responses:
1721
+ '200':
1722
+ description: Success
1723
+ body:
1724
+ application/json:
1725
+ type: GetAppointmentPaymentDetailsOutputRepresentation
1726
+ queryParameters:
1727
+ serviceAppointmentId:
1728
+ type: string
1729
+ required: false
1730
+ serviceTerritoryId:
1731
+ type: string
1732
+ required: false
1733
+ workTypeId:
1734
+ type: string
1735
+ required: false
1736
+ /waitlist-appointments:
1737
+ post:
1738
+ displayName: postWaitlistAppointment
1739
+ description: Waitlist Appointment
1740
+ responses:
1741
+ '200':
1742
+ description: Success
1743
+ body:
1744
+ application/json:
1745
+ type: WaitlistAppointmentOutputRepresentation
1746
+ body:
1747
+ application/json:
1748
+ type: WaitlistAppointmentData
1749
+ (oas-body-name): waitlistAppointmentInput
1750
+ /waitlist-checkin:
1751
+ post:
1752
+ displayName: postWaitlistCheckIn
1753
+ description: Waitlist CheckIn
1754
+ responses:
1755
+ '200':
1756
+ description: Success
1757
+ body:
1758
+ application/json:
1759
+ type: WaitlistCheckInOutputRepresentation
1760
+ body:
1761
+ application/json:
1762
+ type: WaitlistCheckInData
1763
+ (oas-body-name): waitlistCheckInInput
1764
+ /waitlist-relationships:
1765
+ get:
1766
+ displayName: getWaitlistRelationships
1767
+ description: Get work types or service resources related to a Waitlist
1768
+ responses:
1769
+ '200':
1770
+ description: Success
1771
+ body:
1772
+ application/json:
1773
+ type: WaitlistRelationshipsOutputRepresentation
1774
+ queryParameters:
1775
+ isSelfCheckin:
1776
+ type: boolean
1777
+ required: false
1778
+ serviceTerritoryId:
1779
+ type: string
1780
+ required: false
1781
+ waitlistIds:
1782
+ type: array
1783
+ required: false
1784
+ items:
1785
+ type: string
1786
+ (oas-collectionFormat): csv
1787
+ workTypeIds:
1788
+ type: array
1789
+ required: false
1790
+ items:
1791
+ type: string
1792
+ (oas-collectionFormat): csv
1793
+ /waitlists:
1794
+ get:
1795
+ displayName: getWaitlist
1796
+ description: Waitlists
1797
+ responses:
1798
+ '200':
1799
+ description: Success
1800
+ body:
1801
+ application/json:
1802
+ type: WaitlistOutputRepresentation
1803
+ queryParameters:
1804
+ isActive:
1805
+ type: boolean
1806
+ required: false
1807
+ maxLimit:
1808
+ type: integer
1809
+ required: false
1810
+ offset:
1811
+ type: integer
1812
+ required: false
1813
+ participantFields:
1814
+ type: array
1815
+ required: false
1816
+ items:
1817
+ type: string
1818
+ (oas-collectionFormat): csv
1819
+ requestId:
1820
+ type: string
1821
+ required: false
1822
+ serviceTerritoryId:
1823
+ type: string
1824
+ required: false
1825
+ waitlistIds:
1826
+ type: array
1827
+ required: false
1828
+ items:
1829
+ type: string
1830
+ (oas-collectionFormat): csv
1831
+ /waitlist:
1832
+ /participants:
1833
+ /statistics:
1834
+ get:
1835
+ displayName: getGetWaitlistParticipantStats
1836
+ description: Get list of waitlist participant statistics with specified waitlist participants.
1837
+ responses:
1838
+ '200':
1839
+ description: Success
1840
+ body:
1841
+ application/json:
1842
+ type: GetWaitlistParticipantStatsOutputRepresentation
1843
+ queryParameters:
1844
+ requestId:
1845
+ type: string
1846
+ required: false
1847
+ waitlistParticipantIds:
1848
+ type: array
1849
+ required: false
1850
+ items:
1851
+ type: string
1852
+ (oas-collectionFormat): csv
1853
+ patch:
1854
+ displayName: patchWaitlistParticipant
1855
+ description: Updating Waitlist Participant
1856
+ responses:
1857
+ '200':
1858
+ description: Succes
1859
+ body:
1860
+ application/json:
1861
+ type: WaitlistParticipantOutputRepresentation
1862
+ body:
1863
+ application/json:
1864
+ type: UpdateWaitlistParticipantInputRepresentation
1865
+ (oas-body-name): updateWaitlistParticipantInput