@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,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 = "900609b1219b6cec21dd620bcf43c7a9";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ServiceTerritoryCapacity, existing: ServiceTerritoryCapacityNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceTerritoryCapacityNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ServiceTerritoryCapacityNormalized, incoming: ServiceTerritoryCapacityNormalized): 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: ServiceTerritoryCapacity, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Service Territory Capacity List for Work Type and Service Resource
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ServiceTerritoryCapacityNormalized {
18
+ /** List of Service Territory Capacity for Work Type */
19
+ dayCapacityList: Array<DayCapacity_DayCapacity>;
20
+ /** Service Resource Id */
21
+ serviceResourceId?: string;
22
+ /** Service Resource Name */
23
+ serviceResourceName?: string;
24
+ /** WorkType Id */
25
+ workTypeId: string;
26
+ /** WorkType Name */
27
+ workTypeName?: string;
28
+ }
29
+ /**
30
+ * Service Territory Capacity List for Work Type and Service Resource
31
+ *
32
+ * Keys:
33
+ * (none)
34
+ */
35
+ export interface ServiceTerritoryCapacity {
36
+ dayCapacityList: Array<DayCapacity_DayCapacity>;
37
+ serviceResourceId?: string;
38
+ serviceResourceName?: 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 = "621f0ea4b61d23857b3f5a2529c422d5";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ServiceTerritoryCapacityInputRepresentation, existing: ServiceTerritoryCapacityInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceTerritoryCapacityInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ServiceTerritoryCapacityInputRepresentationNormalized, incoming: ServiceTerritoryCapacityInputRepresentationNormalized): 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: ServiceTerritoryCapacityInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Service Territory capacity input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ServiceTerritoryCapacityInputRepresentationNormalized {
17
+ /** Date upto which capacity should be calculated */
18
+ endDate?: string;
19
+ /** Max Limit */
20
+ maxLimit?: number;
21
+ /** Offset */
22
+ offset?: number;
23
+ /** service territory id */
24
+ serviceTerritoryId?: string;
25
+ /** Date from which capacity should be calculated */
26
+ startDate?: string;
27
+ /** Work Type Id */
28
+ workTypeId?: string;
29
+ }
30
+ /**
31
+ * Service Territory capacity input representation
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface ServiceTerritoryCapacityInputRepresentation {
37
+ endDate?: string;
38
+ maxLimit?: number;
39
+ offset?: number;
40
+ serviceTerritoryId?: string;
41
+ startDate?: string;
42
+ workTypeId?: string;
43
+ }
@@ -0,0 +1,29 @@
1
+ import { ServiceTerritoryCapacity as ServiceTerritoryCapacity_ServiceTerritoryCapacity } from './ServiceTerritoryCapacity';
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 = "5353d99f8ce3adff9e38549b9db4f6b5";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ServiceTerritoryCapacityListResult, existing: ServiceTerritoryCapacityListResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceTerritoryCapacityListResultNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ServiceTerritoryCapacityListResultNormalized, incoming: ServiceTerritoryCapacityListResultNormalized): 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: ServiceTerritoryCapacityListResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * List of Service Territory Capacity for Work Type and Service Resource
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ServiceTerritoryCapacityListResultNormalized {
18
+ /** List of Service Territory Capacity */
19
+ serviceTerritoryCapacityListResult: Array<ServiceTerritoryCapacity_ServiceTerritoryCapacity>;
20
+ }
21
+ /**
22
+ * List of Service Territory Capacity for Work Type and Service Resource
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface ServiceTerritoryCapacityListResult {
28
+ serviceTerritoryCapacityListResult: Array<ServiceTerritoryCapacity_ServiceTerritoryCapacity>;
29
+ }
@@ -0,0 +1,28 @@
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 = "0d3fe893321a26340095c64b8d476d19";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: TokenInputRepresentation, existing: TokenInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TokenInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: TokenInputRepresentationNormalized, incoming: TokenInputRepresentationNormalized): 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: TokenInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Token Input Representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface TokenInputRepresentationNormalized {
17
+ /** Token */
18
+ token: string;
19
+ }
20
+ /**
21
+ * Token Input Representation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface TokenInputRepresentation {
27
+ token: string;
28
+ }
@@ -0,0 +1,38 @@
1
+ import { ExtendedFieldsOutputRepresentation as ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation } from './ExtendedFieldsOutputRepresentation';
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 = "eb7d77d89e4b81662b7534e6847bd1a5";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: UpdateServiceAppointmentAttendeeInputRepresentation, existing: UpdateServiceAppointmentAttendeeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UpdateServiceAppointmentAttendeeInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: UpdateServiceAppointmentAttendeeInputRepresentationNormalized, incoming: UpdateServiceAppointmentAttendeeInputRepresentationNormalized): 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: UpdateServiceAppointmentAttendeeInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Update Service Appointment Attendee input representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface UpdateServiceAppointmentAttendeeInputRepresentationNormalized {
18
+ /** Appointment Id */
19
+ appointmentId?: string;
20
+ /** Attendee Id */
21
+ attendeeId?: string;
22
+ /** Extended fields */
23
+ extendedFields?: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
24
+ /** Service Apppointment Attendee Id */
25
+ serviceAppointmentAttendeeId: string;
26
+ }
27
+ /**
28
+ * Update Service Appointment Attendee input representation
29
+ *
30
+ * Keys:
31
+ * (none)
32
+ */
33
+ export interface UpdateServiceAppointmentAttendeeInputRepresentation {
34
+ appointmentId?: string;
35
+ attendeeId?: string;
36
+ extendedFields?: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
37
+ serviceAppointmentAttendeeId: string;
38
+ }
@@ -0,0 +1,29 @@
1
+ import { UpdateServiceAppointmentInputRepresentation as UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation } from './UpdateServiceAppointmentInputRepresentation';
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 = "612c4dc0271a37240ce46bd52022eb94";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: UpdateServiceAppointmentData, existing: UpdateServiceAppointmentDataNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UpdateServiceAppointmentDataNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: UpdateServiceAppointmentDataNormalized, incoming: UpdateServiceAppointmentDataNormalized): 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: UpdateServiceAppointmentData, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * A wrapper around the UpdateServiceAppointmentInputRepresentation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface UpdateServiceAppointmentDataNormalized {
18
+ /** The Oas Boday Name for update service data */
19
+ updateServiceAppointmentInput: UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation;
20
+ }
21
+ /**
22
+ * A wrapper around the UpdateServiceAppointmentInputRepresentation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface UpdateServiceAppointmentData {
28
+ updateServiceAppointmentInput: UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation;
29
+ }
@@ -0,0 +1,40 @@
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 = "59413d740bd7e0b005b0dfdbaa263932";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: UpdateServiceAppointmentInputRepresentation, existing: UpdateServiceAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UpdateServiceAppointmentInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: UpdateServiceAppointmentInputRepresentationNormalized, incoming: UpdateServiceAppointmentInputRepresentationNormalized): 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: UpdateServiceAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Update Service Appointment input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface UpdateServiceAppointmentInputRepresentationNormalized {
17
+ /** Assigned Resources */
18
+ assignedResources?: Array<{}>;
19
+ /** Lead */
20
+ lead?: {};
21
+ /** Scheduling Policy Id */
22
+ schedulingPolicyId?: string;
23
+ /** Service Appointment */
24
+ serviceAppointment: {};
25
+ /** Service appointment Id */
26
+ serviceAppointmentId: string;
27
+ }
28
+ /**
29
+ * Update Service Appointment input representation
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface UpdateServiceAppointmentInputRepresentation {
35
+ assignedResources?: Array<{}>;
36
+ lead?: {};
37
+ schedulingPolicyId?: string;
38
+ serviceAppointment: {};
39
+ serviceAppointmentId: string;
40
+ }
@@ -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 = "155d32837cd408d2fcd4a86ac9faaf29";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: UpdateWaitlistParticipantInputRepresentation, existing: UpdateWaitlistParticipantInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UpdateWaitlistParticipantInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: UpdateWaitlistParticipantInputRepresentationNormalized, incoming: UpdateWaitlistParticipantInputRepresentationNormalized): 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: UpdateWaitlistParticipantInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Update Waitlist Participant input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface UpdateWaitlistParticipantInputRepresentationNormalized {
17
+ /** Service Appointment status */
18
+ serviceAppointmentStatus?: string;
19
+ /** Target position */
20
+ targetPosition?: number;
21
+ /** Waitlist participant Id */
22
+ waitlistParticipantId: string;
23
+ }
24
+ /**
25
+ * Update Waitlist Participant input representation
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface UpdateWaitlistParticipantInputRepresentation {
31
+ serviceAppointmentStatus?: string;
32
+ targetPosition?: number;
33
+ waitlistParticipantId: string;
34
+ }
@@ -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 = "8a6fc23392b1eba4a13187c571276d28";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WaitlistAnalytics, existing: WaitlistAnalyticsNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistAnalyticsNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WaitlistAnalyticsNormalized, incoming: WaitlistAnalyticsNormalized): 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: WaitlistAnalytics, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Waitlist Analytics
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WaitlistAnalyticsNormalized {
17
+ /** Average Participants Per Day */
18
+ avgParticipants?: number;
19
+ /** Average Waiting Time In Mins */
20
+ avgWaitingTime?: number;
21
+ /** Current participants */
22
+ currentParticipant?: number;
23
+ /** Served participants */
24
+ servedParticipant?: number;
25
+ /** Total participants */
26
+ totalParticipant?: number;
27
+ /** Total waiting time in minutes */
28
+ totalWaitingTime?: number;
29
+ }
30
+ /**
31
+ * Waitlist Analytics
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface WaitlistAnalytics {
37
+ avgParticipants?: number;
38
+ avgWaitingTime?: number;
39
+ currentParticipant?: number;
40
+ servedParticipant?: number;
41
+ totalParticipant?: number;
42
+ totalWaitingTime?: number;
43
+ }
@@ -0,0 +1,29 @@
1
+ import { WaitlistAppointmentInputRepresentation as WaitlistAppointmentInputRepresentation_WaitlistAppointmentInputRepresentation } from './WaitlistAppointmentInputRepresentation';
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 = "ca2683c44cedc75b2493cc8394538a15";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: WaitlistAppointmentData, existing: WaitlistAppointmentDataNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistAppointmentDataNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: WaitlistAppointmentDataNormalized, incoming: WaitlistAppointmentDataNormalized): 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: WaitlistAppointmentData, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * A wrapper around WaitlistAppointmentInputRepresentation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface WaitlistAppointmentDataNormalized {
18
+ /** The Oas Body name for waitlist appointment data */
19
+ waitlistAppointmentInput: WaitlistAppointmentInputRepresentation_WaitlistAppointmentInputRepresentation;
20
+ }
21
+ /**
22
+ * A wrapper around WaitlistAppointmentInputRepresentation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface WaitlistAppointmentData {
28
+ waitlistAppointmentInput: WaitlistAppointmentInputRepresentation_WaitlistAppointmentInputRepresentation;
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 = "01a98fd47361551ae250f7ea6caf3eb2";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WaitlistAppointmentInputRepresentation, existing: WaitlistAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistAppointmentInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WaitlistAppointmentInputRepresentationNormalized, incoming: WaitlistAppointmentInputRepresentationNormalized): 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: WaitlistAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Waitlist Appointment Input Representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WaitlistAppointmentInputRepresentationNormalized {
17
+ /** User Id */
18
+ userId: string;
19
+ /** Waitlist Participant Id */
20
+ waitlistParticipantId: string;
21
+ }
22
+ /**
23
+ * Waitlist Appointment Input Representation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface WaitlistAppointmentInputRepresentation {
29
+ userId: string;
30
+ waitlistParticipantId: string;
31
+ }
@@ -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 { WaitlistAppointmentResult as WaitlistAppointmentResult_WaitlistAppointmentResult } from './WaitlistAppointmentResult';
3
+ export declare const VERSION = "5799b00165759bd7affc50aeb97a1898";
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 WaitlistAppointmentOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type PartialWaitlistAppointmentOutputRepresentationNormalizedKeyMetadata = 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): WaitlistAppointmentOutputRepresentationNormalizedKeyMetadata;
13
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: WaitlistAppointmentOutputRepresentation): string;
14
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: WaitlistAppointmentOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function normalize(input: WaitlistAppointmentOutputRepresentation, existing: WaitlistAppointmentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistAppointmentOutputRepresentationNormalized;
16
+ export interface DynamicIngestParams {
17
+ result: $64$luvio_engine_ResourceIngest;
18
+ }
19
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: WaitlistAppointmentOutputRepresentation, existing: WaitlistAppointmentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => WaitlistAppointmentOutputRepresentationNormalized;
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: WaitlistAppointmentOutputRepresentationNormalized, incoming: WaitlistAppointmentOutputRepresentationNormalized): 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: WaitlistAppointmentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
28
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
29
+ /**
30
+ * Waitlist Appointment output representation
31
+ *
32
+ * Keys:
33
+ * id (string): result.serviceAppointmentId
34
+ */
35
+ export interface WaitlistAppointmentOutputRepresentationNormalized {
36
+ result: $64$luvio_engine_StoreLink;
37
+ }
38
+ /**
39
+ * Waitlist Appointment output representation
40
+ *
41
+ * Keys:
42
+ * id (string): result.serviceAppointmentId
43
+ */
44
+ export interface WaitlistAppointmentOutputRepresentation {
45
+ result: WaitlistAppointmentResult_WaitlistAppointmentResult;
46
+ }
@@ -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 = "2388e3a226fc68c6f2df6f2089af2eb9";
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 WaitlistAppointmentResultNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
9
+ export type PartialWaitlistAppointmentResultNormalizedKeyMetadata = 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): WaitlistAppointmentResultNormalizedKeyMetadata;
12
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: WaitlistAppointmentResult): string;
13
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: WaitlistAppointmentResult): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function normalize(input: WaitlistAppointmentResult, existing: WaitlistAppointmentResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistAppointmentResultNormalized;
15
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: WaitlistAppointmentResultNormalized, incoming: WaitlistAppointmentResultNormalized): 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: WaitlistAppointmentResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
19
+ /**
20
+ * Waitlist Appointment Result
21
+ *
22
+ * Keys:
23
+ * id (string): serviceAppointmentId
24
+ */
25
+ export interface WaitlistAppointmentResultNormalized {
26
+ /** Assigned Resource ID */
27
+ assignedResourceId?: string;
28
+ /** Service Appointment ID */
29
+ serviceAppointmentId: string;
30
+ /** Waitlist Participant ID */
31
+ waitlistParticipantId?: string;
32
+ }
33
+ /**
34
+ * Waitlist Appointment Result
35
+ *
36
+ * Keys:
37
+ * id (string): serviceAppointmentId
38
+ */
39
+ export interface WaitlistAppointmentResult {
40
+ assignedResourceId?: string;
41
+ serviceAppointmentId: string;
42
+ waitlistParticipantId?: string;
43
+ }
@@ -0,0 +1,29 @@
1
+ import { WaitlistCheckInInputRepresentation as WaitlistCheckInInputRepresentation_WaitlistCheckInInputRepresentation } from './WaitlistCheckInInputRepresentation';
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 = "7aff9eebdddabdde0cb06cb6db6d6494";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: WaitlistCheckInData, existing: WaitlistCheckInDataNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistCheckInDataNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: WaitlistCheckInDataNormalized, incoming: WaitlistCheckInDataNormalized): 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: WaitlistCheckInData, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * A wrapper around WaitlistCheckInInputRepresentation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface WaitlistCheckInDataNormalized {
18
+ /** The Oas Body name for waitlist checkIn data */
19
+ waitlistCheckInInput: WaitlistCheckInInputRepresentation_WaitlistCheckInInputRepresentation;
20
+ }
21
+ /**
22
+ * A wrapper around WaitlistCheckInInputRepresentation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface WaitlistCheckInData {
28
+ waitlistCheckInInput: WaitlistCheckInInputRepresentation_WaitlistCheckInInputRepresentation;
29
+ }
@@ -0,0 +1,55 @@
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 = "5e02e3bac59df3c2739c67635c3604e4";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WaitlistCheckInInputRepresentation, existing: WaitlistCheckInInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistCheckInInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WaitlistCheckInInputRepresentationNormalized, incoming: WaitlistCheckInInputRepresentationNormalized): 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: WaitlistCheckInInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Waitlist checkin input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WaitlistCheckInInputRepresentationNormalized {
17
+ /** CheckIn Page URL */
18
+ checkInPageURL?: string;
19
+ /** Confirmation Email Template */
20
+ confirmationEmailTemplate?: string;
21
+ /** Description */
22
+ description?: string;
23
+ /** Extended fields */
24
+ extendedFields: Array<{}>;
25
+ /** Lead */
26
+ lead?: {};
27
+ /** Participant Id */
28
+ participantId?: string;
29
+ /** Service Resource Id */
30
+ serviceResourceId?: string;
31
+ /** Waitlist Id */
32
+ waitlistId?: string;
33
+ /** Work Type Group Id */
34
+ workTypeGroupId?: string;
35
+ /** WorkType Id */
36
+ workTypeId?: string;
37
+ }
38
+ /**
39
+ * Waitlist checkin input representation
40
+ *
41
+ * Keys:
42
+ * (none)
43
+ */
44
+ export interface WaitlistCheckInInputRepresentation {
45
+ checkInPageURL?: string;
46
+ confirmationEmailTemplate?: string;
47
+ description?: string;
48
+ extendedFields: Array<{}>;
49
+ lead?: {};
50
+ participantId?: string;
51
+ serviceResourceId?: string;
52
+ waitlistId?: string;
53
+ workTypeGroupId?: string;
54
+ workTypeId?: string;
55
+ }
@@ -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 { WaitlistCheckInResult as WaitlistCheckInResult_WaitlistCheckInResult } from './WaitlistCheckInResult';
3
+ export declare const VERSION = "6e5688bfa73cabc430625d75ccf54af9";
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 WaitlistCheckInOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type PartialWaitlistCheckInOutputRepresentationNormalizedKeyMetadata = 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): WaitlistCheckInOutputRepresentationNormalizedKeyMetadata;
13
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: WaitlistCheckInOutputRepresentation): string;
14
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: WaitlistCheckInOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function normalize(input: WaitlistCheckInOutputRepresentation, existing: WaitlistCheckInOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WaitlistCheckInOutputRepresentationNormalized;
16
+ export interface DynamicIngestParams {
17
+ result: $64$luvio_engine_ResourceIngest;
18
+ }
19
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: WaitlistCheckInOutputRepresentation, existing: WaitlistCheckInOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => WaitlistCheckInOutputRepresentationNormalized;
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: WaitlistCheckInOutputRepresentationNormalized, incoming: WaitlistCheckInOutputRepresentationNormalized): 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: WaitlistCheckInOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
28
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
29
+ /**
30
+ * Waitlist CheckIn output representation
31
+ *
32
+ * Keys:
33
+ * id (string): result.serviceAppointmentId
34
+ */
35
+ export interface WaitlistCheckInOutputRepresentationNormalized {
36
+ result: $64$luvio_engine_StoreLink;
37
+ }
38
+ /**
39
+ * Waitlist CheckIn output representation
40
+ *
41
+ * Keys:
42
+ * id (string): result.serviceAppointmentId
43
+ */
44
+ export interface WaitlistCheckInOutputRepresentation {
45
+ result: WaitlistCheckInResult_WaitlistCheckInResult;
46
+ }