@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,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 = "8d8bed0fbaceac6569e184680455671e";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: AbstractServiceAppointmentInputRepresentation, existing: AbstractServiceAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AbstractServiceAppointmentInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: AbstractServiceAppointmentInputRepresentationNormalized, incoming: AbstractServiceAppointmentInputRepresentationNormalized): 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: AbstractServiceAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Service Appointment input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface AbstractServiceAppointmentInputRepresentationNormalized {
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
+ * Service Appointment input representation
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface AbstractServiceAppointmentInputRepresentation {
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 = "d7e0cb4e89f9dd3842fa2a5bdd0a27d0";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: AppointmentChannelRepresentation, existing: AppointmentChannelRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppointmentChannelRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: AppointmentChannelRepresentationNormalized, incoming: AppointmentChannelRepresentationNormalized): 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: AppointmentChannelRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Appointment Channel representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface AppointmentChannelRepresentationNormalized {
17
+ /** Appointment Type */
18
+ appointmentType?: string;
19
+ /** EngagementChannelType Id */
20
+ engagementChannelTypeId?: string;
21
+ /** EngagementChannelType Name */
22
+ engagementChannelTypeName?: string;
23
+ }
24
+ /**
25
+ * Appointment Channel representation
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface AppointmentChannelRepresentation {
31
+ appointmentType?: string;
32
+ engagementChannelTypeId?: string;
33
+ engagementChannelTypeName?: string;
34
+ }
@@ -0,0 +1,37 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "f8fd123f1fe6c4554e083cd1a284eb2e";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: AssignedResourceInputRepresentation, existing: AssignedResourceInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AssignedResourceInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: AssignedResourceInputRepresentationNormalized, incoming: AssignedResourceInputRepresentationNormalized): 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: AssignedResourceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for Assigned Resource
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface AssignedResourceInputRepresentationNormalized {
17
+ /** Extended fields */
18
+ extendedFields: Array<{}>;
19
+ /** Is primary resource */
20
+ isPrimaryResource: boolean;
21
+ /** Is required resource */
22
+ isRequiredResource: boolean;
23
+ /** Service resource ID */
24
+ serviceResourceId: string;
25
+ }
26
+ /**
27
+ * Input representation for Assigned Resource
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface AssignedResourceInputRepresentation {
33
+ extendedFields: Array<{}>;
34
+ isPrimaryResource: boolean;
35
+ isRequiredResource: boolean;
36
+ serviceResourceId: string;
37
+ }
@@ -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 = "b17bb0b50a0f4e82a9ea3c7a252f5954";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: AssignedResourceListInputRepresentation, existing: AssignedResourceListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AssignedResourceListInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: AssignedResourceListInputRepresentationNormalized, incoming: AssignedResourceListInputRepresentationNormalized): 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: AssignedResourceListInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for a list of Assigned Resources
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface AssignedResourceListInputRepresentationNormalized {
17
+ /** List of Assigned Resources */
18
+ assignedResources?: Array<{}>;
19
+ }
20
+ /**
21
+ * Input representation for a list of Assigned Resources
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface AssignedResourceListInputRepresentation {
27
+ assignedResources?: Array<{}>;
28
+ }
@@ -0,0 +1,35 @@
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 = "5a6bffbb9f7716befd5998c24bc8901b";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: CreateServiceAppointmentAttendeeInputRepresentation, existing: CreateServiceAppointmentAttendeeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CreateServiceAppointmentAttendeeInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: CreateServiceAppointmentAttendeeInputRepresentationNormalized, incoming: CreateServiceAppointmentAttendeeInputRepresentationNormalized): 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: CreateServiceAppointmentAttendeeInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Create Service Appointment Attendee input representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface CreateServiceAppointmentAttendeeInputRepresentationNormalized {
18
+ /** Appointment Id */
19
+ appointmentId: string;
20
+ /** Attendee Id */
21
+ attendeeId: string;
22
+ /** Extended fields */
23
+ extendedFields?: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
24
+ }
25
+ /**
26
+ * Create Service Appointment Attendee input representation
27
+ *
28
+ * Keys:
29
+ * (none)
30
+ */
31
+ export interface CreateServiceAppointmentAttendeeInputRepresentation {
32
+ appointmentId: string;
33
+ attendeeId: string;
34
+ extendedFields?: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
35
+ }
@@ -0,0 +1,29 @@
1
+ import { CreateServiceAppointmentInputRepresentation as CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation } from './CreateServiceAppointmentInputRepresentation';
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 = "d9826bd87a56079d83b24eb3d4113555";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: CreateServiceAppointmentData, existing: CreateServiceAppointmentDataNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CreateServiceAppointmentDataNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: CreateServiceAppointmentDataNormalized, incoming: CreateServiceAppointmentDataNormalized): 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: CreateServiceAppointmentData, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * A wrapper around CreateServiceAppointmentInputRepresentation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface CreateServiceAppointmentDataNormalized {
18
+ /** The Oas Body name for create appointment data */
19
+ createServiceAppointmentInput: CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation;
20
+ }
21
+ /**
22
+ * A wrapper around CreateServiceAppointmentInputRepresentation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface CreateServiceAppointmentData {
28
+ createServiceAppointmentInput: CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation;
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 = "81ff0b21d80660656febc99a21322913";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: CreateServiceAppointmentInputRepresentation, existing: CreateServiceAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CreateServiceAppointmentInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: CreateServiceAppointmentInputRepresentationNormalized, incoming: CreateServiceAppointmentInputRepresentationNormalized): 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: CreateServiceAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Create Service Appointment input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface CreateServiceAppointmentInputRepresentationNormalized {
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
+ * Create Service Appointment input representation
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface CreateServiceAppointmentInputRepresentation {
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 = "6c447dd9f12ec79e364aa7cab0e3884f";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: CreateServiceAppointmentResult, existing: CreateServiceAppointmentResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CreateServiceAppointmentResultNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: CreateServiceAppointmentResultNormalized, incoming: CreateServiceAppointmentResultNormalized): 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: CreateServiceAppointmentResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Create residential loan application results representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface CreateServiceAppointmentResultNormalized {
17
+ /** Assigned resource IDs */
18
+ assignedResourceIds: Array<string>;
19
+ /** Parent record ID */
20
+ parentRecordId: string;
21
+ /** Service appointment ID */
22
+ serviceAppointmentId: string;
23
+ }
24
+ /**
25
+ * Create residential loan application results representation
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface CreateServiceAppointmentResult {
31
+ assignedResourceIds: Array<string>;
32
+ parentRecordId: string;
33
+ serviceAppointmentId: string;
34
+ }
@@ -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 = "8314adcc205d8101123ce276fb7d933f";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DayCapacity, existing: DayCapacityNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DayCapacityNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DayCapacityNormalized, incoming: DayCapacityNormalized): 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: DayCapacity, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Day Capacity
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DayCapacityNormalized {
17
+ /** Capacity */
18
+ capacity?: number;
19
+ /** Target Date */
20
+ targetDate?: string;
21
+ }
22
+ /**
23
+ * Day Capacity
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface DayCapacity {
29
+ capacity?: number;
30
+ targetDate?: string;
31
+ }
@@ -0,0 +1,28 @@
1
+ import { DecryptionResult as DecryptionResult_DecryptionResult } from './DecryptionResult';
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 = "5858461c4350d865afadd4d3ceea3be7";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: DecryptionOutputRepresentation, existing: DecryptionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecryptionOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: DecryptionOutputRepresentationNormalized, incoming: DecryptionOutputRepresentationNormalized): 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: DecryptionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Decryption
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface DecryptionOutputRepresentationNormalized {
18
+ result: DecryptionResult_DecryptionResult;
19
+ }
20
+ /**
21
+ * Output representation of Decryption
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface DecryptionOutputRepresentation {
27
+ result: DecryptionResult_DecryptionResult;
28
+ }
@@ -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 = "e59fa9697db603c279574c903444729d";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DecryptionResult, existing: DecryptionResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecryptionResultNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DecryptionResultNormalized, incoming: DecryptionResultNormalized): 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: DecryptionResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Decryption result
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DecryptionResultNormalized {
17
+ /** Decrypted form of the given encrypted string */
18
+ decryptedString?: string;
19
+ }
20
+ /**
21
+ * Decryption result
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface DecryptionResult {
27
+ decryptedString?: string;
28
+ }
@@ -0,0 +1,28 @@
1
+ import { EncryptionResult as EncryptionResult_EncryptionResult } from './EncryptionResult';
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 = "3aa6403cc7aa2cc26c20b41a76c71b49";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: EncryptionOutputRepresentation, existing: EncryptionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EncryptionOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: EncryptionOutputRepresentationNormalized, incoming: EncryptionOutputRepresentationNormalized): 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: EncryptionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of Encrypt
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface EncryptionOutputRepresentationNormalized {
18
+ result: EncryptionResult_EncryptionResult;
19
+ }
20
+ /**
21
+ * Output representation of Encrypt
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface EncryptionOutputRepresentation {
27
+ result: EncryptionResult_EncryptionResult;
28
+ }
@@ -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 = "741cde13e31186122ba311835e66856d";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EncryptionResult, existing: EncryptionResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EncryptionResultNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EncryptionResultNormalized, incoming: EncryptionResultNormalized): 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: EncryptionResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Encryption result
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EncryptionResultNormalized {
17
+ /** Encrypted form of the given input string */
18
+ encryptedString?: string;
19
+ }
20
+ /**
21
+ * Encryption result
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface EncryptionResult {
27
+ encryptedString?: string;
28
+ }
@@ -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 = "5bedaf67da36e976a7dde6da513ca484";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExtendedFieldInputRepresentation, existing: ExtendedFieldInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExtendedFieldInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExtendedFieldInputRepresentationNormalized, incoming: ExtendedFieldInputRepresentationNormalized): 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: ExtendedFieldInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for extended fields
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExtendedFieldInputRepresentationNormalized {
17
+ /** Extended Field Name */
18
+ name: string;
19
+ /** Extended Field Value */
20
+ value: string;
21
+ }
22
+ /**
23
+ * Input representation for extended fields
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ExtendedFieldInputRepresentation {
29
+ name: string;
30
+ value: string;
31
+ }
@@ -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 = "cb0cf7cf023f41688caab71465722462";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExtendedFieldListInputRepresentation, existing: ExtendedFieldListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExtendedFieldListInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExtendedFieldListInputRepresentationNormalized, incoming: ExtendedFieldListInputRepresentationNormalized): 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: ExtendedFieldListInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Wraps a list of extended fields.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExtendedFieldListInputRepresentationNormalized {
17
+ /** List of Extended Fields */
18
+ extendedFields: Array<{}>;
19
+ }
20
+ /**
21
+ * Wraps a list of extended fields.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface ExtendedFieldListInputRepresentation {
27
+ extendedFields: Array<{}>;
28
+ }
@@ -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 = "c53d2d7c54f3f7e132ff8f6059f30726";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExtendedFieldsOutputRepresentation, existing: ExtendedFieldsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExtendedFieldsOutputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExtendedFieldsOutputRepresentationNormalized, incoming: ExtendedFieldsOutputRepresentationNormalized): 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: ExtendedFieldsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Extended fields output representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExtendedFieldsOutputRepresentationNormalized {
17
+ /** Extended Field Name */
18
+ name: string;
19
+ /** Extended Field Value */
20
+ value: string;
21
+ }
22
+ /**
23
+ * Extended fields output representation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ExtendedFieldsOutputRepresentation {
29
+ name: string;
30
+ value: string;
31
+ }
@@ -0,0 +1,28 @@
1
+ import { GetAppointmentFromTokenResult as GetAppointmentFromTokenResult_GetAppointmentFromTokenResult } from './GetAppointmentFromTokenResult';
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 = "083f2aef413359729868ac5e60c9cc70";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetAppointmentFromTokenOutputRepresentation, existing: GetAppointmentFromTokenOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetAppointmentFromTokenOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetAppointmentFromTokenOutputRepresentationNormalized, incoming: GetAppointmentFromTokenOutputRepresentationNormalized): 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: GetAppointmentFromTokenOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of GetAppointmentFromToken API
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetAppointmentFromTokenOutputRepresentationNormalized {
18
+ result: GetAppointmentFromTokenResult_GetAppointmentFromTokenResult;
19
+ }
20
+ /**
21
+ * Output representation of GetAppointmentFromToken API
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface GetAppointmentFromTokenOutputRepresentation {
27
+ result: GetAppointmentFromTokenResult_GetAppointmentFromTokenResult;
28
+ }
@@ -0,0 +1,34 @@
1
+ import { ServiceAppointmentRepresentation as ServiceAppointmentRepresentation_ServiceAppointmentRepresentation } from './ServiceAppointmentRepresentation';
2
+ import { WorkTypeGroupRepresentation as WorkTypeGroupRepresentation_WorkTypeGroupRepresentation } from './WorkTypeGroupRepresentation';
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 = "26d9d68e403f1fc11715c68781ebef23";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: GetAppointmentFromTokenResult, existing: GetAppointmentFromTokenResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetAppointmentFromTokenResultNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: GetAppointmentFromTokenResultNormalized, incoming: GetAppointmentFromTokenResultNormalized): 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: GetAppointmentFromTokenResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * GetAppointmentFromToken result
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface GetAppointmentFromTokenResultNormalized {
19
+ serviceAppointment: ServiceAppointmentRepresentation_ServiceAppointmentRepresentation;
20
+ /** Service Resource ID */
21
+ serviceResourceId: string;
22
+ workTypeGroup: WorkTypeGroupRepresentation_WorkTypeGroupRepresentation;
23
+ }
24
+ /**
25
+ * GetAppointmentFromToken result
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface GetAppointmentFromTokenResult {
31
+ serviceAppointment: ServiceAppointmentRepresentation_ServiceAppointmentRepresentation;
32
+ serviceResourceId: string;
33
+ workTypeGroup: WorkTypeGroupRepresentation_WorkTypeGroupRepresentation;
34
+ }
@@ -0,0 +1,28 @@
1
+ import { GetAppointmentPaymentDetailsResult as GetAppointmentPaymentDetailsResult_GetAppointmentPaymentDetailsResult } from './GetAppointmentPaymentDetailsResult';
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 = "ffe78d8d42deca107de46bf34b02d6ed";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: GetAppointmentPaymentDetailsOutputRepresentation, existing: GetAppointmentPaymentDetailsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetAppointmentPaymentDetailsOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: GetAppointmentPaymentDetailsOutputRepresentationNormalized, incoming: GetAppointmentPaymentDetailsOutputRepresentationNormalized): 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: GetAppointmentPaymentDetailsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output representation of GetAppointmentPaymentDetails
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GetAppointmentPaymentDetailsOutputRepresentationNormalized {
18
+ result: GetAppointmentPaymentDetailsResult_GetAppointmentPaymentDetailsResult;
19
+ }
20
+ /**
21
+ * Output representation of GetAppointmentPaymentDetails
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface GetAppointmentPaymentDetailsOutputRepresentation {
27
+ result: GetAppointmentPaymentDetailsResult_GetAppointmentPaymentDetailsResult;
28
+ }