@salesforce/lds-adapters-industries-education 0.131.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.
Files changed (46) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/industries-education.js +2285 -0
  3. package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +66 -0
  4. package/dist/es/es2018/types/src/generated/adapters/createCarePlans.d.ts +15 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getAvailableTimeSlots.d.ts +27 -0
  6. package/dist/es/es2018/types/src/generated/adapters/getAvailableTopics.d.ts +25 -0
  7. package/dist/es/es2018/types/src/generated/adapters/getSuccessTeam.d.ts +26 -0
  8. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +4 -0
  9. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +8 -0
  10. package/dist/es/es2018/types/src/generated/resources/getConnectEducationAppointmentBookingAvailableTopics.d.ts +12 -0
  11. package/dist/es/es2018/types/src/generated/resources/getConnectEducationSuccessTeamByAccountId.d.ts +15 -0
  12. package/dist/es/es2018/types/src/generated/resources/postConnectEducationAppointmentBookingAvailableTimeSlots.d.ts +16 -0
  13. package/dist/es/es2018/types/src/generated/resources/postConnectEducationCareplanBulk.d.ts +13 -0
  14. package/dist/es/es2018/types/src/generated/types/AvailableStaff.d.ts +60 -0
  15. package/dist/es/es2018/types/src/generated/types/AvailableTeam.d.ts +48 -0
  16. package/dist/es/es2018/types/src/generated/types/AvailableTimeSlotsInputRepresentation.d.ts +44 -0
  17. package/dist/es/es2018/types/src/generated/types/AvailableTimeSlotsInputRepresentationData.d.ts +30 -0
  18. package/dist/es/es2018/types/src/generated/types/AvailableTimeSlotsOuputRepresentation.d.ts +30 -0
  19. package/dist/es/es2018/types/src/generated/types/AvailableTopic.d.ts +42 -0
  20. package/dist/es/es2018/types/src/generated/types/AvailableTopicsOutputRepresentation.d.ts +30 -0
  21. package/dist/es/es2018/types/src/generated/types/BenefitAssignmentInputRepresentation.d.ts +72 -0
  22. package/dist/es/es2018/types/src/generated/types/BenefitAssignmentListInputRepresentation.d.ts +30 -0
  23. package/dist/es/es2018/types/src/generated/types/BenefitDisbursementForBenefitSessionInputRepresentation.d.ts +47 -0
  24. package/dist/es/es2018/types/src/generated/types/BenefitDisbursementListInputRepresentation.d.ts +30 -0
  25. package/dist/es/es2018/types/src/generated/types/CarePlanBulkInputRepresentation.d.ts +29 -0
  26. package/dist/es/es2018/types/src/generated/types/CarePlanBulkInputWrapperRepresentation.d.ts +29 -0
  27. package/dist/es/es2018/types/src/generated/types/CarePlanBulkOutputRepresentation.d.ts +45 -0
  28. package/dist/es/es2018/types/src/generated/types/CarePlanInputRepresentation.d.ts +68 -0
  29. package/dist/es/es2018/types/src/generated/types/CarePlanListInputRepresentation.d.ts +30 -0
  30. package/dist/es/es2018/types/src/generated/types/CarePlanTaskInputRepresentation.d.ts +50 -0
  31. package/dist/es/es2018/types/src/generated/types/CustomFieldInputRepresentation.d.ts +35 -0
  32. package/dist/es/es2018/types/src/generated/types/CustomFieldListInputRepresentation.d.ts +30 -0
  33. package/dist/es/es2018/types/src/generated/types/GetSuccessTeamResult.d.ts +40 -0
  34. package/dist/es/es2018/types/src/generated/types/GoalAssignmentInputRepresentation.d.ts +68 -0
  35. package/dist/es/es2018/types/src/generated/types/GoalAssignmentListInputRepresentation.d.ts +30 -0
  36. package/dist/es/es2018/types/src/generated/types/ServiceAppointment.d.ts +38 -0
  37. package/dist/es/es2018/types/src/generated/types/ServiceLocation.d.ts +32 -0
  38. package/dist/es/es2018/types/src/generated/types/SuccessTeamOutputRepresentation.d.ts +30 -0
  39. package/dist/es/es2018/types/src/generated/types/TimeSlot.d.ts +38 -0
  40. package/dist/es/es2018/types/src/generated/types/WorkType.d.ts +35 -0
  41. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +39 -0
  42. package/package.json +69 -0
  43. package/sfdc/index.d.ts +1 -0
  44. package/sfdc/index.js +2339 -0
  45. package/src/raml/api.raml +703 -0
  46. package/src/raml/luvio.raml +35 -0
@@ -0,0 +1,35 @@
1
+ #%RAML 1.0 Overlay
2
+ extends: ./api.raml
3
+
4
+ uses:
5
+ luvio: luvio://annotations.raml
6
+
7
+ (luvio.keyPrefix): 'education'
8
+ (luvio.ttl): 360000
9
+
10
+ types:
11
+ CarePlanBulkOutputRepresentation:
12
+ (luvio.opaque): true
13
+ (luvio.ttl): 100
14
+ (luvio.key):
15
+ id: statusCode
16
+
17
+ /connect/education:
18
+ /appointment-booking:
19
+ /available-time-slots:
20
+ post:
21
+ (luvio.adapter):
22
+ name: getAvailableTimeSlots
23
+ (luvio.method): get
24
+ /available-topics:
25
+ get:
26
+ (luvio.adapter):
27
+ name: getAvailableTopics
28
+ /{accountId}/success-team:
29
+ get:
30
+ (luvio.adapter):
31
+ name: getSuccessTeam
32
+ /careplan/bulk:
33
+ post:
34
+ (luvio.adapter):
35
+ name: createCarePlans