@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,52 @@
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 = "4edf407fce3a3c5f105871a21950b788";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WorkTypeInputRepresentation, existing: WorkTypeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WorkTypeInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WorkTypeInputRepresentationNormalized, incoming: WorkTypeInputRepresentationNormalized): 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: WorkTypeInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Work Type input representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WorkTypeInputRepresentationNormalized {
17
+ /** Block time after appointment */
18
+ blockTimeAfterAppointmentInMinutes: number;
19
+ /** Block time before appointment */
20
+ blockTimeBeforeAppointmentInMinutes: number;
21
+ /** Duration in Minutes */
22
+ durationInMinutes: number;
23
+ /** Id */
24
+ id: string;
25
+ /** Operating Hours Id */
26
+ operatingHoursId: string;
27
+ /** Operating Hours Time Zone */
28
+ operatingHoursTimeZone: string;
29
+ /** Skill Requirement */
30
+ skillRequirements: Array<{}>;
31
+ /** Timeframe end in minutes */
32
+ timeFrameEndInMinutes: number;
33
+ /** Timeframe start in minutes */
34
+ timeFrameStartInMinutes: number;
35
+ }
36
+ /**
37
+ * Work Type input representation
38
+ *
39
+ * Keys:
40
+ * (none)
41
+ */
42
+ export interface WorkTypeInputRepresentation {
43
+ blockTimeAfterAppointmentInMinutes: number;
44
+ blockTimeBeforeAppointmentInMinutes: number;
45
+ durationInMinutes: number;
46
+ id: string;
47
+ operatingHoursId: string;
48
+ operatingHoursTimeZone: string;
49
+ skillRequirements: Array<{}>;
50
+ timeFrameEndInMinutes: number;
51
+ timeFrameStartInMinutes: number;
52
+ }
@@ -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 = "b152ceabfff68c6d02a2a99598149e75";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WorkTypeRepresentation, existing: WorkTypeRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WorkTypeRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WorkTypeRepresentationNormalized, incoming: WorkTypeRepresentationNormalized): 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: WorkTypeRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Work Type representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WorkTypeRepresentationNormalized {
17
+ /** WorkType ID */
18
+ id: string;
19
+ /** WorkType Name */
20
+ name: string;
21
+ }
22
+ /**
23
+ * Work Type representation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface WorkTypeRepresentation {
29
+ id: string;
30
+ name: string;
31
+ }
@@ -0,0 +1,32 @@
1
+ import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const ObjectKeys: {
3
+ (o: object): string[];
4
+ (o: {}): string[];
5
+ }, ObjectCreate: {
6
+ (o: object | null): any;
7
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
8
+ }, ObjectAssign: {
9
+ <T extends {}, U>(target: T, source: U): T & U;
10
+ <T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
11
+ <T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
12
+ (target: object, ...sources: any[]): any;
13
+ };
14
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
15
+ export declare const JSONStringify: {
16
+ (value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
17
+ (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
18
+ };
19
+ type AllowedPrimitives = boolean | string | number | Date | null;
20
+ type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
21
+ export type RecursivePartial<T> = null | {
22
+ [P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
23
+ };
24
+ export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
25
+ export declare function equalsObject<U, V extends {
26
+ [key: string]: U;
27
+ }>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
28
+ export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
29
+ __ref: string;
30
+ };
31
+ export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
32
+ export {};
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@salesforce/lds-adapters-industries-scheduler",
3
+ "version": "0.1.0-dev1",
4
+ "description": "Wire adapters for Lightning Scheduler resources",
5
+ "license": "SEE LICENSE IN LICENSE.txt",
6
+ "main": "dist/es/es2018/industries-scheduler.js",
7
+ "module": "dist/es/es2018/industries-scheduler.js",
8
+ "types": "dist/es/es2018/types/src/generated/artifacts/main.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "sfdc",
12
+ "src/raml/*"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/es/es2018/types/src/generated/artifacts/main.d.ts",
17
+ "import": "./dist/es/es2018/industries-scheduler.js",
18
+ "require": "./dist/es/es2018/industries-scheduler.js"
19
+ },
20
+ "./sfdc": {
21
+ "types": "./sfdc/index.d.ts",
22
+ "import": "./sfdc/index.js",
23
+ "default": "./sfdc/index.js"
24
+ }
25
+ },
26
+ "sfdc": {
27
+ "namespace": "lightning",
28
+ "module": "industriesSchedulerApi"
29
+ },
30
+ "contributors": [
31
+ "pavan.puvvada@salesforce.com",
32
+ "kgoncalves@salesforce.com"
33
+ ],
34
+ "scripts": {
35
+ "build": "yarn build:services",
36
+ "build:karma": "rollup --bundleConfigAsCjs --config rollup.config.karma.js",
37
+ "build:raml": "luvio generate src/raml/luvio.raml src/generated -p '../lds-compiler-plugins'",
38
+ "build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
39
+ "clean": "rm -rf dist sfdc src/generated karma/dist",
40
+ "release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-scheduler",
41
+ "release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-industries-scheduler",
42
+ "start": "nx build:karma && karma start",
43
+ "test": "nx build:karma && karma start --single-run",
44
+ "test:unit": "jest"
45
+ },
46
+ "dependencies": {
47
+ "@salesforce/lds-bindings": "^0.1.0-dev1"
48
+ },
49
+ "devDependencies": {
50
+ "@salesforce/lds-compiler-plugins": "^0.1.0-dev1",
51
+ "@salesforce/lds-karma": "^0.1.0-dev1"
52
+ },
53
+ "nx": {
54
+ "targets": {
55
+ "build": {
56
+ "outputs": [
57
+ "{projectRoot}/dist",
58
+ "{projectRoot}/sfdc"
59
+ ]
60
+ },
61
+ "build:raml": {
62
+ "outputs": [
63
+ "{projectRoot}/src/generated"
64
+ ]
65
+ },
66
+ "build:karma": {
67
+ "outputs": [
68
+ "{projectRoot}/karma/dist"
69
+ ]
70
+ }
71
+ }
72
+ },
73
+ "volta": {
74
+ "extends": "../../package.json"
75
+ }
76
+ }
@@ -0,0 +1 @@
1
+ export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';