@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,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 = "4fbac69ed905edc864d482f04963c3a8";
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 WaitlistCheckInResultNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
9
+ export type PartialWaitlistCheckInResultNormalizedKeyMetadata = 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): WaitlistCheckInResultNormalizedKeyMetadata;
12
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: WaitlistCheckInResult): string;
13
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: WaitlistCheckInResult): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function normalize(input: WaitlistCheckInResult, existing: WaitlistCheckInResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistCheckInResultNormalized;
15
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: WaitlistCheckInResultNormalized, incoming: WaitlistCheckInResultNormalized): 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: WaitlistCheckInResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
19
+ /**
20
+ * Waitlist CheckIn Result
21
+ *
22
+ * Keys:
23
+ * id (string): serviceAppointmentId
24
+ */
25
+ export interface WaitlistCheckInResultNormalized {
26
+ /** Participant ID */
27
+ participantId?: string;
28
+ /** Service Appointment ID */
29
+ serviceAppointmentId: string;
30
+ /** Waitlist Participant ID */
31
+ waitlistParticipantId?: string;
32
+ }
33
+ /**
34
+ * Waitlist CheckIn Result
35
+ *
36
+ * Keys:
37
+ * id (string): serviceAppointmentId
38
+ */
39
+ export interface WaitlistCheckInResult {
40
+ participantId?: string;
41
+ serviceAppointmentId: string;
42
+ waitlistParticipantId?: string;
43
+ }
@@ -0,0 +1,46 @@
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 = "0a373f0ddf83d35e9eda860db6f03448";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WaitlistInputRepresentation, existing: WaitlistInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WaitlistInputRepresentationNormalized, incoming: WaitlistInputRepresentationNormalized): 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: WaitlistInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Waitlist input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WaitlistInputRepresentationNormalized {
17
+ /** IsActive */
18
+ isActive?: boolean;
19
+ /** Max Limit */
20
+ maxLimit?: number;
21
+ /** Offset */
22
+ offset?: number;
23
+ /** Participant Fields */
24
+ participantFields: Array<string>;
25
+ /** Request Unique Identifier */
26
+ requestId?: string;
27
+ /** ServiceTerritory Id */
28
+ serviceTerritoryId?: string;
29
+ /** Waitlist Ids */
30
+ waitlistIds?: Array<string>;
31
+ }
32
+ /**
33
+ * Waitlist input representation
34
+ *
35
+ * Keys:
36
+ * (none)
37
+ */
38
+ export interface WaitlistInputRepresentation {
39
+ isActive?: boolean;
40
+ maxLimit?: number;
41
+ offset?: number;
42
+ participantFields: Array<string>;
43
+ requestId?: string;
44
+ serviceTerritoryId?: string;
45
+ waitlistIds?: Array<string>;
46
+ }
@@ -0,0 +1,29 @@
1
+ import { WaitlistResult as WaitlistResult_WaitlistResult } from './WaitlistResult';
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 = "c6f6bfbffecf936817af3b15dc257f7f";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: WaitlistListResult, existing: WaitlistListResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistListResultNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: WaitlistListResultNormalized, incoming: WaitlistListResultNormalized): 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: WaitlistListResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Waitlist list result
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface WaitlistListResultNormalized {
18
+ /** List of Waitlists */
19
+ waitlists: Array<WaitlistResult_WaitlistResult>;
20
+ }
21
+ /**
22
+ * Waitlist list result
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface WaitlistListResult {
28
+ waitlists: Array<WaitlistResult_WaitlistResult>;
29
+ }
@@ -0,0 +1,29 @@
1
+ import { WaitlistListResult as WaitlistListResult_WaitlistListResult } from './WaitlistListResult';
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 = "488cdb7cdd4ebfeca769103b193e0d94";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: WaitlistOutputRepresentation, existing: WaitlistOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: WaitlistOutputRepresentationNormalized, incoming: WaitlistOutputRepresentationNormalized): 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: WaitlistOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Waitlist (List) Representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface WaitlistOutputRepresentationNormalized {
18
+ /** Waitlist result */
19
+ result: WaitlistListResult_WaitlistListResult;
20
+ }
21
+ /**
22
+ * Output representation of Waitlist (List) Representation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface WaitlistOutputRepresentation {
28
+ result: WaitlistListResult_WaitlistListResult;
29
+ }
@@ -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 = "52b4e4fb57126c7dd77c55326ce2a18f";
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 WaitlistParticipantOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
9
+ export type PartialWaitlistParticipantOutputRepresentationNormalizedKeyMetadata = 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): WaitlistParticipantOutputRepresentationNormalizedKeyMetadata;
12
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: WaitlistParticipantOutputRepresentation): string;
13
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: WaitlistParticipantOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function normalize(input: WaitlistParticipantOutputRepresentation, existing: WaitlistParticipantOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistParticipantOutputRepresentationNormalized;
15
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: WaitlistParticipantOutputRepresentationNormalized, incoming: WaitlistParticipantOutputRepresentationNormalized): 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: WaitlistParticipantOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
19
+ /**
20
+ * Output representation of Waitlist Participant resource
21
+ *
22
+ * Keys:
23
+ * id (string): waitlistParticipantId
24
+ */
25
+ export interface WaitlistParticipantOutputRepresentationNormalized {
26
+ /** Response message */
27
+ message?: string;
28
+ /** Response status */
29
+ status?: string;
30
+ /** Waitlist Participant Id */
31
+ waitlistParticipantId: string;
32
+ }
33
+ /**
34
+ * Output representation of Waitlist Participant resource
35
+ *
36
+ * Keys:
37
+ * id (string): waitlistParticipantId
38
+ */
39
+ export interface WaitlistParticipantOutputRepresentation {
40
+ message?: string;
41
+ status?: string;
42
+ waitlistParticipantId: string;
43
+ }
@@ -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 = "d2fff3a212d202fe7105cf673cefd052";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WaitlistParticipantParticipant, existing: WaitlistParticipantParticipantNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistParticipantParticipantNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WaitlistParticipantParticipantNormalized, incoming: WaitlistParticipantParticipantNormalized): 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: WaitlistParticipantParticipant, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Waitlist Participant Participant
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WaitlistParticipantParticipantNormalized {
17
+ /** Id */
18
+ id?: string;
19
+ /** Name */
20
+ name?: string;
21
+ }
22
+ /**
23
+ * Waitlist Participant Participant
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface WaitlistParticipantParticipant {
29
+ id?: string;
30
+ name?: string;
31
+ }
@@ -0,0 +1,51 @@
1
+ import { ExtendedFieldsOutputRepresentation as ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation } from './ExtendedFieldsOutputRepresentation';
2
+ import { WaitlistParticipantParticipant as WaitlistParticipantParticipant_WaitlistParticipantParticipant } from './WaitlistParticipantParticipant';
3
+ import { WaitlistServiceResource as WaitlistServiceResource_WaitlistServiceResource } from './WaitlistServiceResource';
4
+ import { WaitlistWorkTypeGroup as WaitlistWorkTypeGroup_WaitlistWorkTypeGroup } from './WaitlistWorkTypeGroup';
5
+ 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';
6
+ export declare const VERSION = "5f3f4ae52ad3d4464a640805ada08602";
7
+ export declare function validate(obj: any, path?: string): TypeError | null;
8
+ export declare const RepresentationType: string;
9
+ export declare function normalize(input: WaitlistParticipantResult, existing: WaitlistParticipantResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistParticipantResultNormalized;
10
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
11
+ export declare function equals(existing: WaitlistParticipantResultNormalized, incoming: WaitlistParticipantResultNormalized): boolean;
12
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
13
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: WaitlistParticipantResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
14
+ /**
15
+ * Waitlist Participant Result
16
+ *
17
+ * Keys:
18
+ * (none)
19
+ */
20
+ export interface WaitlistParticipantResultNormalized {
21
+ /** Created Date */
22
+ createdDate: string;
23
+ /** List of extended fields */
24
+ extendedFields: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
25
+ /** Waitlist Participant */
26
+ participant?: WaitlistParticipantParticipant_WaitlistParticipantParticipant;
27
+ /** Waitlist Participant Identifier */
28
+ participantIdentifier?: string;
29
+ /** Service Appointment ID */
30
+ serviceAppointmentId: string;
31
+ serviceResource?: WaitlistServiceResource_WaitlistServiceResource;
32
+ /** Waitlist Participant ID */
33
+ waitlistParticipantId?: string;
34
+ workTypeGroup?: WaitlistWorkTypeGroup_WaitlistWorkTypeGroup;
35
+ }
36
+ /**
37
+ * Waitlist Participant Result
38
+ *
39
+ * Keys:
40
+ * (none)
41
+ */
42
+ export interface WaitlistParticipantResult {
43
+ createdDate: string;
44
+ extendedFields: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
45
+ participant?: WaitlistParticipantParticipant_WaitlistParticipantParticipant;
46
+ participantIdentifier?: string;
47
+ serviceAppointmentId: string;
48
+ serviceResource?: WaitlistServiceResource_WaitlistServiceResource;
49
+ waitlistParticipantId?: string;
50
+ workTypeGroup?: WaitlistWorkTypeGroup_WaitlistWorkTypeGroup;
51
+ }
@@ -0,0 +1,49 @@
1
+ import { WaitlistResult as WaitlistResult_WaitlistResult } from './WaitlistResult';
2
+ import { WorkTypeRepresentation as WorkTypeRepresentation_WorkTypeRepresentation } from './WorkTypeRepresentation';
3
+ import { WorkTypeGroupRepresentation as WorkTypeGroupRepresentation_WorkTypeGroupRepresentation } from './WorkTypeGroupRepresentation';
4
+ 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';
5
+ export declare const VERSION = "2e42a746f2c2ee291cbdf664927521c6";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export declare function normalize(input: WaitlistParticipantStats, existing: WaitlistParticipantStatsNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistParticipantStatsNormalized;
9
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
10
+ export declare function equals(existing: WaitlistParticipantStatsNormalized, incoming: WaitlistParticipantStatsNormalized): boolean;
11
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
12
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: WaitlistParticipantStats, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
13
+ /**
14
+ * Waitlist Participant Statistics
15
+ *
16
+ * Keys:
17
+ * (none)
18
+ */
19
+ export interface WaitlistParticipantStatsNormalized {
20
+ /** Waitlist Participant Created Date */
21
+ createdDate?: string;
22
+ /** Error Message */
23
+ errorMessage?: string;
24
+ /** Position In Waitlist */
25
+ positionInWaitlist?: number;
26
+ /** Service Appointment ID */
27
+ serviceAppointmentId?: string;
28
+ waitlist?: WaitlistResult_WaitlistResult;
29
+ /** Waitlist Participant ID */
30
+ waitlistParticipantId?: string;
31
+ workType?: WorkTypeRepresentation_WorkTypeRepresentation;
32
+ workTypeGroup?: WorkTypeGroupRepresentation_WorkTypeGroupRepresentation;
33
+ }
34
+ /**
35
+ * Waitlist Participant Statistics
36
+ *
37
+ * Keys:
38
+ * (none)
39
+ */
40
+ export interface WaitlistParticipantStats {
41
+ createdDate?: string;
42
+ errorMessage?: string;
43
+ positionInWaitlist?: number;
44
+ serviceAppointmentId?: string;
45
+ waitlist?: WaitlistResult_WaitlistResult;
46
+ waitlistParticipantId?: string;
47
+ workType?: WorkTypeRepresentation_WorkTypeRepresentation;
48
+ workTypeGroup?: WorkTypeGroupRepresentation_WorkTypeGroupRepresentation;
49
+ }
@@ -0,0 +1,28 @@
1
+ import { WaitlistRelationshipsResult as WaitlistRelationshipsResult_WaitlistRelationshipsResult } from './WaitlistRelationshipsResult';
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 = "29fcdb20c868bda3a922585f54290d7c";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: WaitlistRelationshipsOutputRepresentation, existing: WaitlistRelationshipsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistRelationshipsOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: WaitlistRelationshipsOutputRepresentationNormalized, incoming: WaitlistRelationshipsOutputRepresentationNormalized): 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: WaitlistRelationshipsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Waitlist Relationships
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface WaitlistRelationshipsOutputRepresentationNormalized {
18
+ result: WaitlistRelationshipsResult_WaitlistRelationshipsResult;
19
+ }
20
+ /**
21
+ * Output representation of Waitlist Relationships
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface WaitlistRelationshipsOutputRepresentation {
27
+ result: WaitlistRelationshipsResult_WaitlistRelationshipsResult;
28
+ }
@@ -0,0 +1,33 @@
1
+ import { WaitlistServiceResource as WaitlistServiceResource_WaitlistServiceResource } from './WaitlistServiceResource';
2
+ import { WaitlistWorkType as WaitlistWorkType_WaitlistWorkType } from './WaitlistWorkType';
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 = "40ccf5da52ce8c2d8c65c70c1e2b98c1";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: WaitlistRelationshipsResult, existing: WaitlistRelationshipsResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistRelationshipsResultNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: WaitlistRelationshipsResultNormalized, incoming: WaitlistRelationshipsResultNormalized): 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: WaitlistRelationshipsResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Waitlist Relationships Result
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface WaitlistRelationshipsResultNormalized {
19
+ /** Service Resources */
20
+ serviceResources?: Array<WaitlistServiceResource_WaitlistServiceResource>;
21
+ /** Work Types */
22
+ workTypes?: Array<WaitlistWorkType_WaitlistWorkType>;
23
+ }
24
+ /**
25
+ * Waitlist Relationships Result
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface WaitlistRelationshipsResult {
31
+ serviceResources?: Array<WaitlistServiceResource_WaitlistServiceResource>;
32
+ workTypes?: Array<WaitlistWorkType_WaitlistWorkType>;
33
+ }
@@ -0,0 +1,53 @@
1
+ import { WaitlistServiceResource as WaitlistServiceResource_WaitlistServiceResource } from './WaitlistServiceResource';
2
+ import { WaitlistAnalytics as WaitlistAnalytics_WaitlistAnalytics } from './WaitlistAnalytics';
3
+ import { WaitlistParticipantResult as WaitlistParticipantResult_WaitlistParticipantResult } from './WaitlistParticipantResult';
4
+ import { WaitlistWorkTypeGroup as WaitlistWorkTypeGroup_WaitlistWorkTypeGroup } from './WaitlistWorkTypeGroup';
5
+ 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';
6
+ export declare const VERSION = "fc44ef5c2e6ac55948cb0cd80e157f89";
7
+ export declare function validate(obj: any, path?: string): TypeError | null;
8
+ export declare const RepresentationType: string;
9
+ export declare function normalize(input: WaitlistResult, existing: WaitlistResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistResultNormalized;
10
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
11
+ export declare function equals(existing: WaitlistResultNormalized, incoming: WaitlistResultNormalized): boolean;
12
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
13
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: WaitlistResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
14
+ /**
15
+ * Waitlist result
16
+ *
17
+ * Keys:
18
+ * (none)
19
+ */
20
+ export interface WaitlistResultNormalized {
21
+ /** Description */
22
+ description?: string;
23
+ /** Active */
24
+ isActive?: boolean;
25
+ /** Waitlist Name */
26
+ name?: string;
27
+ /** Service Resources */
28
+ serviceResources?: Array<WaitlistServiceResource_WaitlistServiceResource>;
29
+ /** Waitlist Analytics */
30
+ waitlistAnalytics?: WaitlistAnalytics_WaitlistAnalytics;
31
+ /** Waitlist ID */
32
+ waitlistId?: string;
33
+ /** Waitlist Participants */
34
+ waitlistParticipants?: Array<WaitlistParticipantResult_WaitlistParticipantResult>;
35
+ /** Work Type Groups */
36
+ workTypeGroups?: Array<WaitlistWorkTypeGroup_WaitlistWorkTypeGroup>;
37
+ }
38
+ /**
39
+ * Waitlist result
40
+ *
41
+ * Keys:
42
+ * (none)
43
+ */
44
+ export interface WaitlistResult {
45
+ description?: string;
46
+ isActive?: boolean;
47
+ name?: string;
48
+ serviceResources?: Array<WaitlistServiceResource_WaitlistServiceResource>;
49
+ waitlistAnalytics?: WaitlistAnalytics_WaitlistAnalytics;
50
+ waitlistId?: string;
51
+ waitlistParticipants?: Array<WaitlistParticipantResult_WaitlistParticipantResult>;
52
+ workTypeGroups?: Array<WaitlistWorkTypeGroup_WaitlistWorkTypeGroup>;
53
+ }
@@ -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 = "2ef071c700b84cba91e63e981e2eede7";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WaitlistServiceResource, existing: WaitlistServiceResourceNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistServiceResourceNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WaitlistServiceResourceNormalized, incoming: WaitlistServiceResourceNormalized): 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: WaitlistServiceResource, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Waitlist Service Resource
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WaitlistServiceResourceNormalized {
17
+ /** Id */
18
+ id?: string;
19
+ /** Name */
20
+ name?: string;
21
+ }
22
+ /**
23
+ * Waitlist Service Resource
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface WaitlistServiceResource {
29
+ id?: string;
30
+ name?: string;
31
+ }
@@ -0,0 +1,37 @@
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 = "235368820a5a56f542c7f4ecb4e2141c";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WaitlistServiceResourceWithWorkTypes, existing: WaitlistServiceResourceWithWorkTypesNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistServiceResourceWithWorkTypesNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WaitlistServiceResourceWithWorkTypesNormalized, incoming: WaitlistServiceResourceWithWorkTypesNormalized): 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: WaitlistServiceResourceWithWorkTypes, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Waitlist Service Resource With Work Types
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WaitlistServiceResourceWithWorkTypesNormalized {
17
+ /** Id */
18
+ id: string;
19
+ /** serviceResourceId */
20
+ serviceResourceId: string;
21
+ /** waitlistId */
22
+ waitlistId: string;
23
+ /** workTypeIds */
24
+ workTypeIds: Array<string>;
25
+ }
26
+ /**
27
+ * Waitlist Service Resource With Work Types
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface WaitlistServiceResourceWithWorkTypes {
33
+ id: string;
34
+ serviceResourceId: string;
35
+ waitlistId: string;
36
+ workTypeIds: Array<string>;
37
+ }
@@ -0,0 +1,38 @@
1
+ import { WaitlistResult as WaitlistResult_WaitlistResult } from './WaitlistResult';
2
+ import { WaitlistWorkTypeGroup as WaitlistWorkTypeGroup_WaitlistWorkTypeGroup } from './WaitlistWorkTypeGroup';
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 = "2a2aa9be1b0b3154e15f808f918ba516";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: WaitlistWorkType, existing: WaitlistWorkTypeNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistWorkTypeNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: WaitlistWorkTypeNormalized, incoming: WaitlistWorkTypeNormalized): 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: WaitlistWorkType, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Waitlist Work Type
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface WaitlistWorkTypeNormalized {
19
+ /** Id */
20
+ id?: string;
21
+ /** Name */
22
+ name?: string;
23
+ /** Waitlist */
24
+ waitlist?: WaitlistResult_WaitlistResult;
25
+ workTypeGroup?: WaitlistWorkTypeGroup_WaitlistWorkTypeGroup;
26
+ }
27
+ /**
28
+ * Waitlist Work Type
29
+ *
30
+ * Keys:
31
+ * (none)
32
+ */
33
+ export interface WaitlistWorkType {
34
+ id?: string;
35
+ name?: string;
36
+ waitlist?: WaitlistResult_WaitlistResult;
37
+ workTypeGroup?: WaitlistWorkTypeGroup_WaitlistWorkTypeGroup;
38
+ }
@@ -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 = "9d573b064500fae0b4205231dae5af50";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WaitlistWorkTypeGroup, existing: WaitlistWorkTypeGroupNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistWorkTypeGroupNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WaitlistWorkTypeGroupNormalized, incoming: WaitlistWorkTypeGroupNormalized): 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: WaitlistWorkTypeGroup, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Waitlist Work Type Group
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WaitlistWorkTypeGroupNormalized {
17
+ /** Id */
18
+ id?: string;
19
+ /** Name */
20
+ name?: string;
21
+ }
22
+ /**
23
+ * Waitlist Work Type Group
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface WaitlistWorkTypeGroup {
29
+ id?: string;
30
+ name?: string;
31
+ }
@@ -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 = "0ebc6f397590a38f7d774c4af6fe342f";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WorkTypeGroupRepresentation, existing: WorkTypeGroupRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WorkTypeGroupRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WorkTypeGroupRepresentationNormalized, incoming: WorkTypeGroupRepresentationNormalized): 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: WorkTypeGroupRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Work Type Group representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WorkTypeGroupRepresentationNormalized {
17
+ /** WorkTypeGroup ID */
18
+ id: string;
19
+ /** WorkTypeGroup Name */
20
+ name: string;
21
+ }
22
+ /**
23
+ * Work Type Group representation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface WorkTypeGroupRepresentation {
29
+ id: string;
30
+ name: string;
31
+ }