@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,28 @@
1
+ import { ParticipantRecentInteractionsResult as ParticipantRecentInteractionsResult_ParticipantRecentInteractionsResult } from './ParticipantRecentInteractionsResult';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "24dc5bcc8caeafb90382a21924b4dda8";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ParticipantRecentInteractionsOutputRepresentation, existing: ParticipantRecentInteractionsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ParticipantRecentInteractionsOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ParticipantRecentInteractionsOutputRepresentationNormalized, incoming: ParticipantRecentInteractionsOutputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ParticipantRecentInteractionsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Participant Recent Interactions
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ParticipantRecentInteractionsOutputRepresentationNormalized {
18
+ result: ParticipantRecentInteractionsResult_ParticipantRecentInteractionsResult;
19
+ }
20
+ /**
21
+ * Output representation of Participant Recent Interactions
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface ParticipantRecentInteractionsOutputRepresentation {
27
+ result: ParticipantRecentInteractionsResult_ParticipantRecentInteractionsResult;
28
+ }
@@ -0,0 +1,29 @@
1
+ import { WaitlistServiceResource as WaitlistServiceResource_WaitlistServiceResource } from './WaitlistServiceResource';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "94839138e6c7630a1a31cfdb12c02cf8";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ParticipantRecentInteractionsResult, existing: ParticipantRecentInteractionsResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ParticipantRecentInteractionsResultNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ParticipantRecentInteractionsResultNormalized, incoming: ParticipantRecentInteractionsResultNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ParticipantRecentInteractionsResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Participant Recent Interactions
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ParticipantRecentInteractionsResultNormalized {
18
+ /** Service Resources */
19
+ serviceResources: Array<WaitlistServiceResource_WaitlistServiceResource>;
20
+ }
21
+ /**
22
+ * Participant Recent Interactions
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface ParticipantRecentInteractionsResult {
28
+ serviceResources: Array<WaitlistServiceResource_WaitlistServiceResource>;
29
+ }
@@ -0,0 +1,31 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "ccbd37c17b881b95fe03fe4851c55909";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: SchedulerExtendedFieldsOutputRepresentation, existing: SchedulerExtendedFieldsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SchedulerExtendedFieldsOutputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: SchedulerExtendedFieldsOutputRepresentationNormalized, incoming: SchedulerExtendedFieldsOutputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SchedulerExtendedFieldsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Extended fields output representation for Scheduler
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface SchedulerExtendedFieldsOutputRepresentationNormalized {
17
+ /** Extended Field Name */
18
+ name: string;
19
+ /** Extended Field Value */
20
+ value: string;
21
+ }
22
+ /**
23
+ * Extended fields output representation for Scheduler
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface SchedulerExtendedFieldsOutputRepresentation {
29
+ name: string;
30
+ value: string;
31
+ }
@@ -0,0 +1,34 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "afbfc9bc77fe21c8a8550798f109f270";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ServiceAppointmentAttendeeInputRepresentation, existing: ServiceAppointmentAttendeeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentAttendeeInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ServiceAppointmentAttendeeInputRepresentationNormalized, incoming: ServiceAppointmentAttendeeInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentAttendeeInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Service Appointment Attendee input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ServiceAppointmentAttendeeInputRepresentationNormalized {
17
+ /** Appointment Id */
18
+ appointmentId?: string;
19
+ /** Attendee Id */
20
+ attendeeId?: string;
21
+ /** Extended fields */
22
+ extendedFields?: Array<{}>;
23
+ }
24
+ /**
25
+ * Service Appointment Attendee input representation
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ServiceAppointmentAttendeeInputRepresentation {
31
+ appointmentId?: string;
32
+ attendeeId?: string;
33
+ extendedFields?: Array<{}>;
34
+ }
@@ -0,0 +1,46 @@
1
+ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ import { ServiceAppointmentAttendeeResult as ServiceAppointmentAttendeeResult_ServiceAppointmentAttendeeResult } from './ServiceAppointmentAttendeeResult';
3
+ export declare const VERSION = "5c5b3e37dfffc3539569033454c183b4";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
7
+ id: string;
8
+ }
9
+ export type ServiceAppointmentAttendeeOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type PartialServiceAppointmentAttendeeOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
11
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
12
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServiceAppointmentAttendeeOutputRepresentationNormalizedKeyMetadata;
13
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentAttendeeOutputRepresentation): string;
14
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentAttendeeOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function normalize(input: ServiceAppointmentAttendeeOutputRepresentation, existing: ServiceAppointmentAttendeeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentAttendeeOutputRepresentationNormalized;
16
+ export interface DynamicIngestParams {
17
+ result: $64$luvio_engine_ResourceIngest;
18
+ }
19
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ServiceAppointmentAttendeeOutputRepresentation, existing: ServiceAppointmentAttendeeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ServiceAppointmentAttendeeOutputRepresentationNormalized;
20
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
21
+ export interface DynamicSelectParams {
22
+ result?: $64$luvio_engine_LinkSelection;
23
+ }
24
+ export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
25
+ export declare function equals(existing: ServiceAppointmentAttendeeOutputRepresentationNormalized, incoming: ServiceAppointmentAttendeeOutputRepresentationNormalized): boolean;
26
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
27
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentAttendeeOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
28
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
29
+ /**
30
+ * Service Appointment Attendee API output representation
31
+ *
32
+ * Keys:
33
+ * id (string): result.serviceAppointmentAttendeeId
34
+ */
35
+ export interface ServiceAppointmentAttendeeOutputRepresentationNormalized {
36
+ result: $64$luvio_engine_StoreLink;
37
+ }
38
+ /**
39
+ * Service Appointment Attendee API output representation
40
+ *
41
+ * Keys:
42
+ * id (string): result.serviceAppointmentAttendeeId
43
+ */
44
+ export interface ServiceAppointmentAttendeeOutputRepresentation {
45
+ result: ServiceAppointmentAttendeeResult_ServiceAppointmentAttendeeResult;
46
+ }
@@ -0,0 +1,37 @@
1
+ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const VERSION = "d5db628ccd69eb00e87ff518e66c3467";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
6
+ id: string;
7
+ }
8
+ export type ServiceAppointmentAttendeeResultNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
9
+ export type PartialServiceAppointmentAttendeeResultNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
11
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServiceAppointmentAttendeeResultNormalizedKeyMetadata;
12
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentAttendeeResult): string;
13
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentAttendeeResult): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function normalize(input: ServiceAppointmentAttendeeResult, existing: ServiceAppointmentAttendeeResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentAttendeeResultNormalized;
15
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: ServiceAppointmentAttendeeResultNormalized, incoming: ServiceAppointmentAttendeeResultNormalized): boolean;
17
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
18
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentAttendeeResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
19
+ /**
20
+ * Service Appointment Attendee API Result representation
21
+ *
22
+ * Keys:
23
+ * id (string): serviceAppointmentAttendeeId
24
+ */
25
+ export interface ServiceAppointmentAttendeeResultNormalized {
26
+ /** Service Appointment Attendee ID */
27
+ serviceAppointmentAttendeeId: string;
28
+ }
29
+ /**
30
+ * Service Appointment Attendee API Result representation
31
+ *
32
+ * Keys:
33
+ * id (string): serviceAppointmentAttendeeId
34
+ */
35
+ export interface ServiceAppointmentAttendeeResult {
36
+ serviceAppointmentAttendeeId: string;
37
+ }
@@ -0,0 +1,79 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "23da434be7154761da0675ad9e64b4bd";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ServiceAppointmentInputRepresentation, existing: ServiceAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ServiceAppointmentInputRepresentationNormalized, incoming: ServiceAppointmentInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for Service Appointment
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ServiceAppointmentInputRepresentationNormalized {
17
+ /** Additional information */
18
+ additionalInformation?: string;
19
+ /** Appointment type */
20
+ appointmentType?: string;
21
+ /** City */
22
+ city?: string;
23
+ /** Comments */
24
+ comments?: string;
25
+ /** Contact ID */
26
+ contactId?: string;
27
+ /** Country */
28
+ country?: string;
29
+ /** Description */
30
+ description?: string;
31
+ /** Engagement channel type id */
32
+ engagementChannelTypeId?: string;
33
+ /** Extended fields */
34
+ extendedFields?: Array<{}>;
35
+ /** Parent record ID */
36
+ parentRecordId: string;
37
+ /** Postal code */
38
+ postalCode?: string;
39
+ /** Scheduled end time */
40
+ schedEndTime?: string;
41
+ /** Scheduled start time */
42
+ schedStartTime?: string;
43
+ /** Service territory ID */
44
+ serviceTerritoryId?: string;
45
+ /** State */
46
+ state?: string;
47
+ /** Street */
48
+ street?: string;
49
+ /** Subject */
50
+ subject?: string;
51
+ /** Work type ID */
52
+ workTypeId?: string;
53
+ }
54
+ /**
55
+ * Input representation for Service Appointment
56
+ *
57
+ * Keys:
58
+ * (none)
59
+ */
60
+ export interface ServiceAppointmentInputRepresentation {
61
+ additionalInformation?: string;
62
+ appointmentType?: string;
63
+ city?: string;
64
+ comments?: string;
65
+ contactId?: string;
66
+ country?: string;
67
+ description?: string;
68
+ engagementChannelTypeId?: string;
69
+ extendedFields?: Array<{}>;
70
+ parentRecordId: string;
71
+ postalCode?: string;
72
+ schedEndTime?: string;
73
+ schedStartTime?: string;
74
+ serviceTerritoryId?: string;
75
+ state?: string;
76
+ street?: string;
77
+ subject?: string;
78
+ workTypeId?: string;
79
+ }
@@ -0,0 +1,46 @@
1
+ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ import { ServiceAppointmentResult as ServiceAppointmentResult_ServiceAppointmentResult } from './ServiceAppointmentResult';
3
+ export declare const VERSION = "09b2befd1e1777ff063639379004b1b7";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
7
+ id: string;
8
+ }
9
+ export type ServiceAppointmentOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type PartialServiceAppointmentOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
11
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
12
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServiceAppointmentOutputRepresentationNormalizedKeyMetadata;
13
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentOutputRepresentation): string;
14
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function normalize(input: ServiceAppointmentOutputRepresentation, existing: ServiceAppointmentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentOutputRepresentationNormalized;
16
+ export interface DynamicIngestParams {
17
+ result: $64$luvio_engine_ResourceIngest;
18
+ }
19
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ServiceAppointmentOutputRepresentation, existing: ServiceAppointmentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ServiceAppointmentOutputRepresentationNormalized;
20
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
21
+ export interface DynamicSelectParams {
22
+ result?: $64$luvio_engine_LinkSelection;
23
+ }
24
+ export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
25
+ export declare function equals(existing: ServiceAppointmentOutputRepresentationNormalized, incoming: ServiceAppointmentOutputRepresentationNormalized): boolean;
26
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
27
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
28
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
29
+ /**
30
+ * Create service appointment output representation
31
+ *
32
+ * Keys:
33
+ * id (string): result.serviceAppointmentId
34
+ */
35
+ export interface ServiceAppointmentOutputRepresentationNormalized {
36
+ result: $64$luvio_engine_StoreLink;
37
+ }
38
+ /**
39
+ * Create service appointment output representation
40
+ *
41
+ * Keys:
42
+ * id (string): result.serviceAppointmentId
43
+ */
44
+ export interface ServiceAppointmentOutputRepresentation {
45
+ result: ServiceAppointmentResult_ServiceAppointmentResult;
46
+ }
@@ -0,0 +1,78 @@
1
+ import { SchedulerExtendedFieldsOutputRepresentation as SchedulerExtendedFieldsOutputRepresentation_SchedulerExtendedFieldsOutputRepresentation } from './SchedulerExtendedFieldsOutputRepresentation';
2
+ import { GetServiceTerritoriesResult as GetServiceTerritoriesResult_GetServiceTerritoriesResult } from './GetServiceTerritoriesResult';
3
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
4
+ export declare const VERSION = "8b15cce0754cf4733a7724c1628bc305";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: ServiceAppointmentRepresentation, existing: ServiceAppointmentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: ServiceAppointmentRepresentationNormalized, incoming: ServiceAppointmentRepresentationNormalized): boolean;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Service Appointment representation
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ServiceAppointmentRepresentationNormalized {
19
+ /** Additional Information */
20
+ additionalInformation: string;
21
+ /** Appointment Type */
22
+ appointmentType: string;
23
+ /** Comments */
24
+ comments: string;
25
+ /** Description */
26
+ description: string;
27
+ /** Engagement Channel Type ID */
28
+ engagementChannelTypeId: string;
29
+ /** ID */
30
+ id: string;
31
+ /** Is Anonymous Booking */
32
+ isAnonymousBooking: boolean;
33
+ /** Parent Record ID */
34
+ parentRecordId: string;
35
+ /** Service territory */
36
+ relatedRecordFields: Array<SchedulerExtendedFieldsOutputRepresentation_SchedulerExtendedFieldsOutputRepresentation>;
37
+ /** Scheduled End Time */
38
+ schedEndTime: string;
39
+ /** Scheduled Start Time */
40
+ schedStartTime: string;
41
+ /** Service territory */
42
+ serviceTerritory: GetServiceTerritoriesResult_GetServiceTerritoriesResult;
43
+ /** Service Territory ID */
44
+ serviceTerritoryId: string;
45
+ /** Status */
46
+ status: string;
47
+ /** Status Category */
48
+ statusCategory: string;
49
+ /** Subject */
50
+ subject: string;
51
+ /** Work Type ID */
52
+ workTypeId: string;
53
+ }
54
+ /**
55
+ * Service Appointment representation
56
+ *
57
+ * Keys:
58
+ * (none)
59
+ */
60
+ export interface ServiceAppointmentRepresentation {
61
+ additionalInformation: string;
62
+ appointmentType: string;
63
+ comments: string;
64
+ description: string;
65
+ engagementChannelTypeId: string;
66
+ id: string;
67
+ isAnonymousBooking: boolean;
68
+ parentRecordId: string;
69
+ relatedRecordFields: Array<SchedulerExtendedFieldsOutputRepresentation_SchedulerExtendedFieldsOutputRepresentation>;
70
+ schedEndTime: string;
71
+ schedStartTime: string;
72
+ serviceTerritory: GetServiceTerritoriesResult_GetServiceTerritoriesResult;
73
+ serviceTerritoryId: string;
74
+ status: string;
75
+ statusCategory: string;
76
+ subject: string;
77
+ workTypeId: string;
78
+ }
@@ -0,0 +1,43 @@
1
+ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const VERSION = "2f0614d98c99215427524626e17e574b";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
6
+ id: string;
7
+ }
8
+ export type ServiceAppointmentResultNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
9
+ export type PartialServiceAppointmentResultNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
11
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServiceAppointmentResultNormalizedKeyMetadata;
12
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentResult): string;
13
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentResult): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function normalize(input: ServiceAppointmentResult, existing: ServiceAppointmentResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentResultNormalized;
15
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: ServiceAppointmentResultNormalized, incoming: ServiceAppointmentResultNormalized): boolean;
17
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
18
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
19
+ /**
20
+ * Create Service Appointment results representation
21
+ *
22
+ * Keys:
23
+ * id (string): serviceAppointmentId
24
+ */
25
+ export interface ServiceAppointmentResultNormalized {
26
+ /** Assigned resource IDs */
27
+ assignedResourceIds: Array<string>;
28
+ /** Parent record ID */
29
+ parentRecordId?: string;
30
+ /** Service appointment ID */
31
+ serviceAppointmentId: string;
32
+ }
33
+ /**
34
+ * Create Service Appointment results representation
35
+ *
36
+ * Keys:
37
+ * id (string): serviceAppointmentId
38
+ */
39
+ export interface ServiceAppointmentResult {
40
+ assignedResourceIds: Array<string>;
41
+ parentRecordId?: string;
42
+ serviceAppointmentId: string;
43
+ }
@@ -0,0 +1,41 @@
1
+ import { DayCapacity as DayCapacity_DayCapacity } from './DayCapacity';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "e4fbf9648417d367eeb5e72d0cdcfeda";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ServiceResourceCapacity, existing: ServiceResourceCapacityNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceResourceCapacityNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ServiceResourceCapacityNormalized, incoming: ServiceResourceCapacityNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceResourceCapacity, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Service Resource Capacity
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ServiceResourceCapacityNormalized {
18
+ /** List of Service Resource Capacity */
19
+ dayCapacityList: Array<DayCapacity_DayCapacity>;
20
+ /** Service Territory Id */
21
+ serviceTerritoryId?: string;
22
+ /** Service Territory Name */
23
+ serviceTerritoryName?: string;
24
+ /** Work Type Id */
25
+ workTypeId?: string;
26
+ /** Work Type Name */
27
+ workTypeName?: string;
28
+ }
29
+ /**
30
+ * Service Resource Capacity
31
+ *
32
+ * Keys:
33
+ * (none)
34
+ */
35
+ export interface ServiceResourceCapacity {
36
+ dayCapacityList: Array<DayCapacity_DayCapacity>;
37
+ serviceTerritoryId?: string;
38
+ serviceTerritoryName?: string;
39
+ workTypeId?: string;
40
+ workTypeName?: string;
41
+ }
@@ -0,0 +1,43 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "afe51c938d1c875293726a8915d4fd58";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ServiceResourceCapacityInputRepresentation, existing: ServiceResourceCapacityInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceResourceCapacityInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ServiceResourceCapacityInputRepresentationNormalized, incoming: ServiceResourceCapacityInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceResourceCapacityInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Service Resource Capacity input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ServiceResourceCapacityInputRepresentationNormalized {
17
+ /** Date upto which capacity should be calculated */
18
+ endDate?: string;
19
+ /** Max Limit */
20
+ maxLimit?: number;
21
+ /** Offset */
22
+ offset?: number;
23
+ /** Service Resource Id */
24
+ serviceResourceId?: string;
25
+ /** Date from which capacity should be calculated */
26
+ startDate?: string;
27
+ /** Work Type Id */
28
+ workTypeId?: string;
29
+ }
30
+ /**
31
+ * Service Resource Capacity input representation
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface ServiceResourceCapacityInputRepresentation {
37
+ endDate?: string;
38
+ maxLimit?: number;
39
+ offset?: number;
40
+ serviceResourceId?: string;
41
+ startDate?: string;
42
+ workTypeId?: string;
43
+ }
@@ -0,0 +1,29 @@
1
+ import { ServiceResourceCapacity as ServiceResourceCapacity_ServiceResourceCapacity } from './ServiceResourceCapacity';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "f62368e507c7195fd023290021f643d4";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ServiceResourceCapacityListResult, existing: ServiceResourceCapacityListResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceResourceCapacityListResultNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ServiceResourceCapacityListResultNormalized, incoming: ServiceResourceCapacityListResultNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceResourceCapacityListResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * List of Service Resource Capacity
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ServiceResourceCapacityListResultNormalized {
18
+ /** List of Service Resource Capacity */
19
+ serviceResourceCapacityListResult: Array<ServiceResourceCapacity_ServiceResourceCapacity>;
20
+ }
21
+ /**
22
+ * List of Service Resource Capacity
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface ServiceResourceCapacityListResult {
28
+ serviceResourceCapacityListResult: Array<ServiceResourceCapacity_ServiceResourceCapacity>;
29
+ }
@@ -0,0 +1,31 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "c20b4853fc9dcf179a2b0f54d4b77be8";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ServiceResourceRepresentation, existing: ServiceResourceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceResourceRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ServiceResourceRepresentationNormalized, incoming: ServiceResourceRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceResourceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Service Resource representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ServiceResourceRepresentationNormalized {
17
+ /** ServiceResource ID */
18
+ id?: string;
19
+ /** ServiceResource Name */
20
+ name?: string;
21
+ }
22
+ /**
23
+ * Service Resource representation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ServiceResourceRepresentation {
29
+ id?: string;
30
+ name?: string;
31
+ }