@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 { 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 = "17d94bce23a09e2123d21039a67a83d8";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: GetAppointmentPaymentDetailsResult, existing: GetAppointmentPaymentDetailsResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetAppointmentPaymentDetailsResultNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: GetAppointmentPaymentDetailsResultNormalized, incoming: GetAppointmentPaymentDetailsResultNormalized): 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: GetAppointmentPaymentDetailsResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * GetAppointmentPaymentDetails result
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface GetAppointmentPaymentDetailsResultNormalized {
17
+ /** Base Price */
18
+ basePrice?: number;
19
+ /** Currency Iso Code */
20
+ currencyIsoCode?: string;
21
+ /** Discount */
22
+ discount?: number;
23
+ /** Grand Total */
24
+ grandTotal?: number;
25
+ /** Shipping and Handling cost */
26
+ shippingAndHandlingCost?: number;
27
+ /** Tax */
28
+ tax?: number;
29
+ }
30
+ /**
31
+ * GetAppointmentPaymentDetails result
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface GetAppointmentPaymentDetailsResult {
37
+ basePrice?: number;
38
+ currencyIsoCode?: string;
39
+ discount?: number;
40
+ grandTotal?: number;
41
+ shippingAndHandlingCost?: number;
42
+ tax?: number;
43
+ }
@@ -0,0 +1,29 @@
1
+ import { GetEngagementChannelTypeResult as GetEngagementChannelTypeResult_GetEngagementChannelTypeResult } from './GetEngagementChannelTypeResult';
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 = "129c53d5f8fb579d31c255a020838251";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetEngagementChannelTypeListResult, existing: GetEngagementChannelTypeListResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetEngagementChannelTypeListResultNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetEngagementChannelTypeListResultNormalized, incoming: GetEngagementChannelTypeListResultNormalized): 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: GetEngagementChannelTypeListResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Get engagement channel type list result
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetEngagementChannelTypeListResultNormalized {
18
+ /** List of Engagement Channel Types */
19
+ engagementChannelTypes: Array<GetEngagementChannelTypeResult_GetEngagementChannelTypeResult>;
20
+ }
21
+ /**
22
+ * Get engagement channel type list result
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface GetEngagementChannelTypeListResult {
28
+ engagementChannelTypes: Array<GetEngagementChannelTypeResult_GetEngagementChannelTypeResult>;
29
+ }
@@ -0,0 +1,29 @@
1
+ import { GetEngagementChannelTypeListResult as GetEngagementChannelTypeListResult_GetEngagementChannelTypeListResult } from './GetEngagementChannelTypeListResult';
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 = "622654426aa18b7c8846e6d863a5f446";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetEngagementChannelTypeOutputRepresentation, existing: GetEngagementChannelTypeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetEngagementChannelTypeOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetEngagementChannelTypeOutputRepresentationNormalized, incoming: GetEngagementChannelTypeOutputRepresentationNormalized): 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: GetEngagementChannelTypeOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Get Engagement Channel Type (List) Representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetEngagementChannelTypeOutputRepresentationNormalized {
18
+ /** Get Engagement Channel Type result */
19
+ result: GetEngagementChannelTypeListResult_GetEngagementChannelTypeListResult;
20
+ }
21
+ /**
22
+ * Output representation of Get Engagement Channel Type (List) Representation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface GetEngagementChannelTypeOutputRepresentation {
28
+ result: GetEngagementChannelTypeListResult_GetEngagementChannelTypeListResult;
29
+ }
@@ -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 = "745ed19773bc6307c6816a6d100b0cbe";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: GetEngagementChannelTypeResult, existing: GetEngagementChannelTypeResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetEngagementChannelTypeResultNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: GetEngagementChannelTypeResultNormalized, incoming: GetEngagementChannelTypeResultNormalized): 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: GetEngagementChannelTypeResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Get engagement channel type result
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface GetEngagementChannelTypeResultNormalized {
17
+ /** Engagement Channel Type Contact Point */
18
+ contactPoint?: string;
19
+ /** Engagement Channel Type Contact Point Type */
20
+ contactPointType?: string;
21
+ /** Engagement Channel Type ID */
22
+ id?: string;
23
+ /** Engagement Channel Type name */
24
+ name?: string;
25
+ /** Engagement Channel Type Work Type Group Ids */
26
+ workTypeGroupIds?: Array<string>;
27
+ /** Engagement Channel Type Work Type Ids */
28
+ workTypeIds?: Array<string>;
29
+ }
30
+ /**
31
+ * Get engagement channel type result
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface GetEngagementChannelTypeResult {
37
+ contactPoint?: string;
38
+ contactPointType?: string;
39
+ id?: string;
40
+ name?: string;
41
+ workTypeGroupIds?: Array<string>;
42
+ workTypeIds?: Array<string>;
43
+ }
@@ -0,0 +1,58 @@
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 = "6b968aae73dc4e095197a2ee161685a7";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: GetGroupAppointmentsInputRepresentation, existing: GetGroupAppointmentsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetGroupAppointmentsInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: GetGroupAppointmentsInputRepresentationNormalized, incoming: GetGroupAppointmentsInputRepresentationNormalized): 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: GetGroupAppointmentsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Get Group Appointments input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface GetGroupAppointmentsInputRepresentationNormalized {
17
+ /** End Time */
18
+ endTime?: string;
19
+ /** Exclude appointments for current user. */
20
+ excludeAssociatedAppts?: boolean;
21
+ /** List of Extended Fields */
22
+ extendedFieldsToQuery?: Array<string>;
23
+ /** Parent Record IDs */
24
+ filterByParentRecords?: Array<string>;
25
+ /** Resource IDs */
26
+ filterByResources?: Array<string>;
27
+ /** Territory IDs */
28
+ filterByTerritories?: Array<string>;
29
+ /** Work Type Group IDs */
30
+ filterByWorkTypeGroups?: Array<string>;
31
+ /** Work Type IDs */
32
+ filterByWorkTypes?: Array<string>;
33
+ /** Limit */
34
+ limit?: number;
35
+ /** Offset */
36
+ offset?: number;
37
+ /** Start Time */
38
+ startTime?: string;
39
+ }
40
+ /**
41
+ * Get Group Appointments input representation
42
+ *
43
+ * Keys:
44
+ * (none)
45
+ */
46
+ export interface GetGroupAppointmentsInputRepresentation {
47
+ endTime?: string;
48
+ excludeAssociatedAppts?: boolean;
49
+ extendedFieldsToQuery?: Array<string>;
50
+ filterByParentRecords?: Array<string>;
51
+ filterByResources?: Array<string>;
52
+ filterByTerritories?: Array<string>;
53
+ filterByWorkTypeGroups?: Array<string>;
54
+ filterByWorkTypes?: Array<string>;
55
+ limit?: number;
56
+ offset?: number;
57
+ startTime?: string;
58
+ }
@@ -0,0 +1,29 @@
1
+ import { GroupAppointmentResult as GroupAppointmentResult_GroupAppointmentResult } from './GroupAppointmentResult';
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 = "285a28be083bf65a61201b367253b128";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetGroupAppointmentsListResult, existing: GetGroupAppointmentsListResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetGroupAppointmentsListResultNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetGroupAppointmentsListResultNormalized, incoming: GetGroupAppointmentsListResultNormalized): 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: GetGroupAppointmentsListResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Get group appointments result
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetGroupAppointmentsListResultNormalized {
18
+ /** Get Group Appointments List */
19
+ groupAppointments: Array<GroupAppointmentResult_GroupAppointmentResult>;
20
+ }
21
+ /**
22
+ * Get group appointments result
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface GetGroupAppointmentsListResult {
28
+ groupAppointments: Array<GroupAppointmentResult_GroupAppointmentResult>;
29
+ }
@@ -0,0 +1,29 @@
1
+ import { GetGroupAppointmentsListResult as GetGroupAppointmentsListResult_GetGroupAppointmentsListResult } from './GetGroupAppointmentsListResult';
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 = "dd808b5c4d7acc763844a203f7558772";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetGroupAppointmentsOutputRepresentation, existing: GetGroupAppointmentsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetGroupAppointmentsOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetGroupAppointmentsOutputRepresentationNormalized, incoming: GetGroupAppointmentsOutputRepresentationNormalized): 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: GetGroupAppointmentsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Get Group Appointments
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetGroupAppointmentsOutputRepresentationNormalized {
18
+ /** Get Group Appointments List result */
19
+ result: GetGroupAppointmentsListResult_GetGroupAppointmentsListResult;
20
+ }
21
+ /**
22
+ * Output representation of Get Group Appointments
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface GetGroupAppointmentsOutputRepresentation {
28
+ result: GetGroupAppointmentsListResult_GetGroupAppointmentsListResult;
29
+ }
@@ -0,0 +1,28 @@
1
+ import { GetNextWaitlistParticipantResult as GetNextWaitlistParticipantResult_GetNextWaitlistParticipantResult } from './GetNextWaitlistParticipantResult';
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 = "fdb3c9715f03c84992830bbcea4fb245";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetNextWaitlistParticipantOutputRepresentation, existing: GetNextWaitlistParticipantOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetNextWaitlistParticipantOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetNextWaitlistParticipantOutputRepresentationNormalized, incoming: GetNextWaitlistParticipantOutputRepresentationNormalized): 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: GetNextWaitlistParticipantOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Get Next Waitlist Participant Representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetNextWaitlistParticipantOutputRepresentationNormalized {
18
+ result: GetNextWaitlistParticipantResult_GetNextWaitlistParticipantResult;
19
+ }
20
+ /**
21
+ * Output representation of Get Next Waitlist Participant Representation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface GetNextWaitlistParticipantOutputRepresentation {
27
+ result: GetNextWaitlistParticipantResult_GetNextWaitlistParticipantResult;
28
+ }
@@ -0,0 +1,38 @@
1
+ import { WaitlistServiceResourceWithWorkTypes as WaitlistServiceResourceWithWorkTypes_WaitlistServiceResourceWithWorkTypes } from './WaitlistServiceResourceWithWorkTypes';
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 = "30392f4c9c348c3e9081046d48f7bd4b";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: GetNextWaitlistParticipantResult, existing: GetNextWaitlistParticipantResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetNextWaitlistParticipantResultNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: GetNextWaitlistParticipantResultNormalized, incoming: GetNextWaitlistParticipantResultNormalized): 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: GetNextWaitlistParticipantResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Get next waitlist participant result
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface GetNextWaitlistParticipantResultNormalized {
19
+ /** Waitlist Participant ID */
20
+ waitlistParticipantId?: string;
21
+ waitlistServiceResource: WaitlistServiceResourceWithWorkTypes_WaitlistServiceResourceWithWorkTypes;
22
+ /** Work Type Groups */
23
+ workTypeGroups?: Array<WaitlistWorkTypeGroup_WaitlistWorkTypeGroup>;
24
+ /** Work Type ID */
25
+ workTypeId?: string;
26
+ }
27
+ /**
28
+ * Get next waitlist participant result
29
+ *
30
+ * Keys:
31
+ * (none)
32
+ */
33
+ export interface GetNextWaitlistParticipantResult {
34
+ waitlistParticipantId?: string;
35
+ waitlistServiceResource: WaitlistServiceResourceWithWorkTypes_WaitlistServiceResourceWithWorkTypes;
36
+ workTypeGroups?: Array<WaitlistWorkTypeGroup_WaitlistWorkTypeGroup>;
37
+ workTypeId?: string;
38
+ }
@@ -0,0 +1,28 @@
1
+ import { ServiceResourceCapacityListResult as ServiceResourceCapacityListResult_ServiceResourceCapacityListResult } from './ServiceResourceCapacityListResult';
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 = "1ce9e9ce7bea9c1fa346dadeffdca36d";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetServiceResourceCapacityOutputRepresentation, existing: GetServiceResourceCapacityOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetServiceResourceCapacityOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetServiceResourceCapacityOutputRepresentationNormalized, incoming: GetServiceResourceCapacityOutputRepresentationNormalized): 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: GetServiceResourceCapacityOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Service Resource Capacity (List) Representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetServiceResourceCapacityOutputRepresentationNormalized {
18
+ result: ServiceResourceCapacityListResult_ServiceResourceCapacityListResult;
19
+ }
20
+ /**
21
+ * Output representation of Service Resource Capacity (List) Representation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface GetServiceResourceCapacityOutputRepresentation {
27
+ result: ServiceResourceCapacityListResult_ServiceResourceCapacityListResult;
28
+ }
@@ -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 = "e1942247bd0b4b845f6e33cb6ef21a75";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: GetServiceTerritoriesResult, existing: GetServiceTerritoriesResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetServiceTerritoriesResultNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: GetServiceTerritoriesResultNormalized, incoming: GetServiceTerritoriesResultNormalized): 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: GetServiceTerritoriesResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Get service territories result
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface GetServiceTerritoriesResultNormalized {
17
+ /** Service territory city */
18
+ city: string;
19
+ /** Service territory country */
20
+ country: string;
21
+ /** Service territory ID */
22
+ id: string;
23
+ /** Service territory latitude */
24
+ latitude?: string;
25
+ /** Service territory longitude */
26
+ longitude?: string;
27
+ /** Service territory name */
28
+ name: string;
29
+ /** Service territory operating hours ID */
30
+ operatingHoursId?: string;
31
+ /** Service territory postal code */
32
+ postalCode: string;
33
+ /** Service territory state */
34
+ state: string;
35
+ /** Service territory street */
36
+ street: string;
37
+ }
38
+ /**
39
+ * Get service territories result
40
+ *
41
+ * Keys:
42
+ * (none)
43
+ */
44
+ export interface GetServiceTerritoriesResult {
45
+ city: string;
46
+ country: string;
47
+ id: string;
48
+ latitude?: string;
49
+ longitude?: string;
50
+ name: string;
51
+ operatingHoursId?: string;
52
+ postalCode: string;
53
+ state: string;
54
+ street: string;
55
+ }
@@ -0,0 +1,28 @@
1
+ import { ServiceTerritoryCapacityListResult as ServiceTerritoryCapacityListResult_ServiceTerritoryCapacityListResult } from './ServiceTerritoryCapacityListResult';
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 = "c8a47ebb5152e07a366cce6e68023760";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetServiceTerritoryCapacityOutputRepresentation, existing: GetServiceTerritoryCapacityOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetServiceTerritoryCapacityOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetServiceTerritoryCapacityOutputRepresentationNormalized, incoming: GetServiceTerritoryCapacityOutputRepresentationNormalized): 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: GetServiceTerritoryCapacityOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Service Territory Capacity (List) Representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetServiceTerritoryCapacityOutputRepresentationNormalized {
18
+ result: ServiceTerritoryCapacityListResult_ServiceTerritoryCapacityListResult;
19
+ }
20
+ /**
21
+ * Output representation of Service Territory Capacity (List) Representation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface GetServiceTerritoryCapacityOutputRepresentation {
27
+ result: ServiceTerritoryCapacityListResult_ServiceTerritoryCapacityListResult;
28
+ }
@@ -0,0 +1,29 @@
1
+ import { WaitlistParticipantStats as WaitlistParticipantStats_WaitlistParticipantStats } from './WaitlistParticipantStats';
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 = "0228e33bb0f935a6191dedb668f1e41d";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetWaitlistParticipantStatsListResult, existing: GetWaitlistParticipantStatsListResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetWaitlistParticipantStatsListResultNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetWaitlistParticipantStatsListResultNormalized, incoming: GetWaitlistParticipantStatsListResultNormalized): 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: GetWaitlistParticipantStatsListResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Get waitlist participant stats list result
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetWaitlistParticipantStatsListResultNormalized {
18
+ /** List of Waitlist Participant Stats */
19
+ waitlistParticipantStats?: Array<WaitlistParticipantStats_WaitlistParticipantStats>;
20
+ }
21
+ /**
22
+ * Get waitlist participant stats list result
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface GetWaitlistParticipantStatsListResult {
28
+ waitlistParticipantStats?: Array<WaitlistParticipantStats_WaitlistParticipantStats>;
29
+ }
@@ -0,0 +1,29 @@
1
+ import { GetWaitlistParticipantStatsListResult as GetWaitlistParticipantStatsListResult_GetWaitlistParticipantStatsListResult } from './GetWaitlistParticipantStatsListResult';
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 = "f400749226c154d115ae7deca9d7db97";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetWaitlistParticipantStatsOutputRepresentation, existing: GetWaitlistParticipantStatsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetWaitlistParticipantStatsOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetWaitlistParticipantStatsOutputRepresentationNormalized, incoming: GetWaitlistParticipantStatsOutputRepresentationNormalized): 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: GetWaitlistParticipantStatsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Get Waitlist Participants Statistics (List) Representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetWaitlistParticipantStatsOutputRepresentationNormalized {
18
+ /** Get Waitlist Participant Stats result */
19
+ result: GetWaitlistParticipantStatsListResult_GetWaitlistParticipantStatsListResult;
20
+ }
21
+ /**
22
+ * Output representation of Get Waitlist Participants Statistics (List) Representation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface GetWaitlistParticipantStatsOutputRepresentation {
28
+ result: GetWaitlistParticipantStatsListResult_GetWaitlistParticipantStatsListResult;
29
+ }
@@ -0,0 +1,65 @@
1
+ import { AppointmentChannelRepresentation as AppointmentChannelRepresentation_AppointmentChannelRepresentation } from './AppointmentChannelRepresentation';
2
+ import { ExtendedFieldsOutputRepresentation as ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation } from './ExtendedFieldsOutputRepresentation';
3
+ import { ServiceResourceRepresentation as ServiceResourceRepresentation_ServiceResourceRepresentation } from './ServiceResourceRepresentation';
4
+ import { WorkTypeGroupRepresentation as WorkTypeGroupRepresentation_WorkTypeGroupRepresentation } from './WorkTypeGroupRepresentation';
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 = "ab6792274f598551855e829fe9222cd6";
7
+ export declare function validate(obj: any, path?: string): TypeError | null;
8
+ export declare const RepresentationType: string;
9
+ export declare function normalize(input: GroupAppointmentResult, existing: GroupAppointmentResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GroupAppointmentResultNormalized;
10
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
11
+ export declare function equals(existing: GroupAppointmentResultNormalized, incoming: GroupAppointmentResultNormalized): 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: GroupAppointmentResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
14
+ /**
15
+ * Group appointment result
16
+ *
17
+ * Keys:
18
+ * (none)
19
+ */
20
+ export interface GroupAppointmentResultNormalized {
21
+ appointmentChannel?: AppointmentChannelRepresentation_AppointmentChannelRepresentation;
22
+ /** Service Appointment Id */
23
+ appointmentId?: string;
24
+ /** Attendee Count */
25
+ attendeeCount?: number;
26
+ /** Attendee Limit */
27
+ attendeeLimit?: number;
28
+ /** End Time */
29
+ endTime?: string;
30
+ /** Engagement Channel Type Id */
31
+ engagementChannelTypeId?: string;
32
+ /** Extended Fields */
33
+ extendedFields?: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
34
+ /** Parent Record Id */
35
+ parentRecordId?: string;
36
+ resource?: ServiceResourceRepresentation_ServiceResourceRepresentation;
37
+ /** Start Time */
38
+ startTime?: string;
39
+ /** Service Territory Id */
40
+ territoryId?: string;
41
+ workTypeGroup?: WorkTypeGroupRepresentation_WorkTypeGroupRepresentation;
42
+ /** Work Type Id */
43
+ workTypeId?: string;
44
+ }
45
+ /**
46
+ * Group appointment result
47
+ *
48
+ * Keys:
49
+ * (none)
50
+ */
51
+ export interface GroupAppointmentResult {
52
+ appointmentChannel?: AppointmentChannelRepresentation_AppointmentChannelRepresentation;
53
+ appointmentId?: string;
54
+ attendeeCount?: number;
55
+ attendeeLimit?: number;
56
+ endTime?: string;
57
+ engagementChannelTypeId?: string;
58
+ extendedFields?: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
59
+ parentRecordId?: string;
60
+ resource?: ServiceResourceRepresentation_ServiceResourceRepresentation;
61
+ startTime?: string;
62
+ territoryId?: string;
63
+ workTypeGroup?: WorkTypeGroupRepresentation_WorkTypeGroupRepresentation;
64
+ workTypeId?: string;
65
+ }
@@ -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 = "66fa7e0a4fe8081155341d72de0eb1ed";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: LeadInputRepresentation, existing: LeadInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): LeadInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: LeadInputRepresentationNormalized, incoming: LeadInputRepresentationNormalized): 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: LeadInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for Lead
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface LeadInputRepresentationNormalized {
17
+ /** Company */
18
+ company: string;
19
+ /** Email */
20
+ email: string;
21
+ /** Extended fields */
22
+ extendedFields: Array<{}>;
23
+ /** First name */
24
+ firstName: string;
25
+ /** Last name */
26
+ lastName: string;
27
+ /** Phone */
28
+ phone: string;
29
+ }
30
+ /**
31
+ * Input representation for Lead
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface LeadInputRepresentation {
37
+ company: string;
38
+ email: string;
39
+ extendedFields: Array<{}>;
40
+ firstName: string;
41
+ lastName: string;
42
+ phone: string;
43
+ }