@sprucelabs/spruce-cli 14.27.0 → 14.28.3
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.
- package/CHANGELOG.md +35 -0
- package/build/.spruce/events/events.contract.d.ts +4 -621
- package/build/.spruce/events/events.contract.js +1 -35
- package/build/.spruce/events/events.contract.js.map +1 -1
- package/build/.spruce/events/heartwood/didRegisterSkillViews.v2021_02_11.contract.d.ts +0 -15
- package/build/.spruce/events/heartwood/didRegisterSkillViews.v2021_02_11.contract.js +2 -17
- package/build/.spruce/events/heartwood/didRegisterSkillViews.v2021_02_11.contract.js.map +1 -1
- package/build/.spruce/events/heartwood/generateUrl.v2021_02_11.contract.d.ts +4 -21
- package/build/.spruce/events/heartwood/generateUrl.v2021_02_11.contract.js +7 -24
- package/build/.spruce/events/heartwood/generateUrl.v2021_02_11.contract.js.map +1 -1
- package/build/.spruce/events/heartwood/getSkillViews.v2021_02_11.contract.d.ts +1 -24
- package/build/.spruce/events/heartwood/getSkillViews.v2021_02_11.contract.js +5 -28
- package/build/.spruce/events/heartwood/getSkillViews.v2021_02_11.contract.js.map +1 -1
- package/build/.spruce/events/heartwood/registerSkillViews.v2021_02_11.contract.d.ts +12 -0
- package/build/.spruce/events/heartwood/registerSkillViews.v2021_02_11.contract.js +13 -1
- package/build/.spruce/events/heartwood/registerSkillViews.v2021_02_11.contract.js.map +1 -1
- package/build/.spruce/schemas/schemas.types.d.ts +54 -1142
- package/build/.spruce/schemas/schemas.types.js.map +1 -1
- package/build/.spruce/schemas/spruceCli/v2020_07_22/listenEventOptions.schema.js +1 -1
- package/build/.spruce/schemas/spruceCli/v2020_07_22/listenEventOptions.schema.js.map +1 -1
- package/build/.spruce/settings.json +6 -0
- package/build/__tests__/behavioral/UpgradingANodeModule.test.d.ts +1 -0
- package/build/__tests__/behavioral/UpgradingANodeModule.test.js +50 -3
- package/build/__tests__/behavioral/UpgradingANodeModule.test.js.map +1 -1
- package/build/__tests__/behavioral/events/CreatingAListener.test.js +6 -6
- package/build/__tests__/behavioral/events/CreatingAListener.test.js.map +1 -1
- package/build/__tests__/behavioral/events/SkillEmitsBootEvents.test.js +2 -2
- package/build/__tests__/behavioral/events/SkillEmitsBootEvents.test.js.map +1 -1
- package/build/features/event/actions/ListenAction.js +66 -54
- package/build/features/event/actions/ListenAction.js.map +1 -1
- package/build/features/event/stores/EventStore.js +24 -13
- package/build/features/event/stores/EventStore.js.map +1 -1
- package/build/features/node/NodeFeature.d.ts +1 -0
- package/build/features/node/NodeFeature.js +83 -64
- package/build/features/node/NodeFeature.js.map +1 -1
- package/build/features/node/actions/UpgradeAction.js +20 -9
- package/build/features/node/actions/UpgradeAction.js.map +1 -1
- package/build/features/node/writers/NodeWriter.d.ts +5 -2
- package/build/features/node/writers/NodeWriter.js +37 -22
- package/build/features/node/writers/NodeWriter.js.map +1 -1
- package/build/features/sandbox/actions/SetupAction.js +1 -1
- package/build/features/sandbox/actions/SetupAction.js.map +1 -1
- package/build/features/skill/updaters/Updater.js +3 -1
- package/build/features/skill/updaters/Updater.js.map +1 -1
- package/build/schemas/v2020_07_22/listenEventOptions.builder.d.ts +1 -1
- package/build/schemas/v2020_07_22/listenEventOptions.builder.js +1 -1
- package/build/schemas/v2020_07_22/listenEventOptions.builder.js.map +1 -1
- package/build/tests/utilities/uiAssert.utility.d.ts +1 -0
- package/build/tests/utilities/uiAssert.utility.js +34 -0
- package/build/tests/utilities/uiAssert.utility.js.map +1 -1
- package/build/writers/AbstractWriter.d.ts +10 -10
- package/build/writers/AbstractWriter.js.map +1 -1
- package/package.json +30 -30
- package/src/.spruce/events/events.contract.ts +0 -102
- package/src/.spruce/events/heartwood/didRegisterSkillViews.v2021_02_11.contract.ts +0 -15
- package/src/.spruce/events/heartwood/generateUrl.v2021_02_11.contract.ts +4 -21
- package/src/.spruce/events/heartwood/getSkillViews.v2021_02_11.contract.ts +1 -24
- package/src/.spruce/events/heartwood/registerSkillViews.v2021_02_11.contract.ts +15 -0
- package/src/.spruce/schemas/schemas.types.ts +59 -1413
- package/src/.spruce/schemas/spruceCli/v2020_07_22/listenEventOptions.schema.ts +1 -1
- package/src/.spruce/settings.json +6 -0
- package/src/__tests__/behavioral/UpgradingANodeModule.test.ts +24 -0
- package/src/__tests__/behavioral/events/CreatingAListener.test.ts +6 -6
- package/src/__tests__/behavioral/events/SkillEmitsBootEvents.test.ts +2 -2
- package/src/features/event/actions/ListenAction.ts +30 -20
- package/src/features/event/stores/EventStore.ts +7 -1
- package/src/features/node/NodeFeature.ts +31 -25
- package/src/features/node/actions/UpgradeAction.ts +8 -1
- package/src/features/node/writers/NodeWriter.ts +38 -23
- package/src/features/sandbox/actions/SetupAction.ts +1 -1
- package/src/features/skill/updaters/Updater.ts +2 -1
- package/src/schemas/v2020_07_22/listenEventOptions.builder.ts +1 -1
- package/src/tests/utilities/uiAssert.utility.ts +16 -0
- package/src/writers/AbstractWriter.ts +15 -10
- package/build/.spruce/events/appointments/didBookAppointments.v2021_06_23.contract.d.ts +0 -10
- package/build/.spruce/events/appointments/didBookAppointments.v2021_06_23.contract.js +0 -24
- package/build/.spruce/events/appointments/didBookAppointments.v2021_06_23.contract.js.map +0 -1
- package/build/.spruce/events/calendar/createCalendarEventType.v2021_05_19.contract.d.ts +0 -11
- package/build/.spruce/events/calendar/createCalendarEventType.v2021_05_19.contract.js +0 -27
- package/build/.spruce/events/calendar/createCalendarEventType.v2021_05_19.contract.js.map +0 -1
- package/build/.spruce/events/calendar/listCalendarEventTypes.v2021_05_19.contract.d.ts +0 -10
- package/build/.spruce/events/calendar/listCalendarEventTypes.v2021_05_19.contract.js +0 -24
- package/build/.spruce/events/calendar/listCalendarEventTypes.v2021_05_19.contract.js.map +0 -1
- package/build/.spruce/events/forms/convertPdfToForm.v2021_07_02.contract.d.ts +0 -46
- package/build/.spruce/events/forms/convertPdfToForm.v2021_07_02.contract.js +0 -62
- package/build/.spruce/events/forms/convertPdfToForm.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/forms/convertPdfToSchemas.v2021_07_02.contract.d.ts +0 -46
- package/build/.spruce/events/forms/convertPdfToSchemas.v2021_07_02.contract.js +0 -62
- package/build/.spruce/events/forms/convertPdfToSchemas.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/forms/createForm.v2021_07_02.contract.d.ts +0 -46
- package/build/.spruce/events/forms/createForm.v2021_07_02.contract.js +0 -62
- package/build/.spruce/events/forms/createForm.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/forms/deleteCompletedForm.v2021_07_02.contract.d.ts +0 -46
- package/build/.spruce/events/forms/deleteCompletedForm.v2021_07_02.contract.js +0 -62
- package/build/.spruce/events/forms/deleteCompletedForm.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/forms/didUpdateCompletedForm.v2021_07_02.contract.d.ts +0 -10
- package/build/.spruce/events/forms/didUpdateCompletedForm.v2021_07_02.contract.js +0 -24
- package/build/.spruce/events/forms/didUpdateCompletedForm.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/forms/getCompletedForm.v2021_07_02.contract.d.ts +0 -40
- package/build/.spruce/events/forms/getCompletedForm.v2021_07_02.contract.js +0 -56
- package/build/.spruce/events/forms/getCompletedForm.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/forms/listCompletedForms.v2021_07_02.contract.d.ts +0 -45
- package/build/.spruce/events/forms/listCompletedForms.v2021_07_02.contract.js +0 -59
- package/build/.spruce/events/forms/listCompletedForms.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/forms/listForms.v2021_07_02.contract.d.ts +0 -80
- package/build/.spruce/events/forms/listForms.v2021_07_02.contract.js +0 -94
- package/build/.spruce/events/forms/listForms.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/forms/updateCompletedForm.v2021_07_02.contract.d.ts +0 -11
- package/build/.spruce/events/forms/updateCompletedForm.v2021_07_02.contract.js +0 -27
- package/build/.spruce/events/forms/updateCompletedForm.v2021_07_02.contract.js.map +0 -1
- package/build/.spruce/events/mySkill163362874854325100/myCoolEvent.v2021_01_22.contract.d.ts +0 -38
- package/build/.spruce/events/mySkill163362874854325100/myCoolEvent.v2021_01_22.contract.js +0 -48
- package/build/.spruce/events/mySkill163362874854325100/myCoolEvent.v2021_01_22.contract.js.map +0 -1
- package/build/.spruce/events/mySkill163362882591525586/myCoolEvent.v2021_01_22.contract.d.ts +0 -38
- package/build/.spruce/events/mySkill163362882591525586/myCoolEvent.v2021_01_22.contract.js +0 -48
- package/build/.spruce/events/mySkill163362882591525586/myCoolEvent.v2021_01_22.contract.js.map +0 -1
- package/build/.spruce/events/mySkill163459634973936127/myCoolEvent.v2021_01_22.contract.d.ts +0 -38
- package/build/.spruce/events/mySkill163459634973936127/myCoolEvent.v2021_01_22.contract.js +0 -48
- package/build/.spruce/events/mySkill163459634973936127/myCoolEvent.v2021_01_22.contract.js.map +0 -1
- package/build/.spruce/events/mySkill163493473102035607/myCoolEvent.v2021_01_22.contract.d.ts +0 -38
- package/build/.spruce/events/mySkill163493473102035607/myCoolEvent.v2021_01_22.contract.js +0 -48
- package/build/.spruce/events/mySkill163493473102035607/myCoolEvent.v2021_01_22.contract.js.map +0 -1
- package/build/.spruce/events/mySkill163493479880935941/myCoolEvent.v2021_01_22.contract.d.ts +0 -38
- package/build/.spruce/events/mySkill163493479880935941/myCoolEvent.v2021_01_22.contract.js +0 -48
- package/build/.spruce/events/mySkill163493479880935941/myCoolEvent.v2021_01_22.contract.js.map +0 -1
- package/build/.spruce/schemas/appointments/v2021_06_23/appointments.schema.d.ts +0 -3
- package/build/.spruce/schemas/appointments/v2021_06_23/appointments.schema.js +0 -28
- package/build/.spruce/schemas/appointments/v2021_06_23/appointments.schema.js.map +0 -1
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitPayload.schema.js +0 -36
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitTarget.schema.d.ts +0 -3
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitTarget.schema.js +0 -28
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitTarget.schema.js.map +0 -1
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitTargetAndPayload.schema.js +0 -56
- package/build/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeEmitPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeEmitPayload.schema.js +0 -36
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeEmitPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeEmitTargetAndPayload.schema.js +0 -46
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeResponsePayload.schema.js +0 -35
- package/build/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/calendar/v2021_05_19/fullCalendarEventType.schema.d.ts +0 -3
- package/build/.spruce/schemas/calendar/v2021_05_19/fullCalendarEventType.schema.js +0 -54
- package/build/.spruce/schemas/calendar/v2021_05_19/fullCalendarEventType.schema.js.map +0 -1
- package/build/.spruce/schemas/calendar/v2021_05_19/listCalendarEventTypesResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/calendar/v2021_05_19/listCalendarEventTypesResponsePayload.schema.js +0 -37
- package/build/.spruce/schemas/calendar/v2021_05_19/listCalendarEventTypesResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/builtForm.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/builtForm.schema.js +0 -66
- package/build/.spruce/schemas/forms/v2021_07_02/builtForm.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/completedFormResponse.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/completedFormResponse.schema.js +0 -50
- package/build/.spruce/schemas/forms/v2021_07_02/completedFormResponse.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/completedFormSourceForm.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/completedFormSourceForm.schema.js +0 -59
- package/build/.spruce/schemas/forms/v2021_07_02/completedFormSourceForm.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitPayload.schema.js +0 -30
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitTargetAndPayload.schema.js +0 -46
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormResponsePayload.schema.js +0 -34
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitPayload.schema.js +0 -30
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitTargetAndPayload.schema.js +0 -46
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasResponsePayload.schema.js +0 -33
- package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/createBuiltForm.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/createBuiltForm.schema.js +0 -52
- package/build/.spruce/schemas/forms/v2021_07_02/createBuiltForm.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/createFormEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/createFormEmitTargetAndPayload.schema.js +0 -46
- package/build/.spruce/schemas/forms/v2021_07_02/createFormEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/createFormResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/createFormResponsePayload.schema.js +0 -44
- package/build/.spruce/schemas/forms/v2021_07_02/createFormResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormEmitTarget.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormEmitTarget.schema.js +0 -29
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormEmitTarget.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormEmitTargetAndPayload.schema.js +0 -46
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormResponsePayload.schema.js +0 -29
- package/build/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/didSaveFormEmitPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/didSaveFormEmitPayload.schema.js +0 -29
- package/build/.spruce/schemas/forms/v2021_07_02/didSaveFormEmitPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/didUpdateCompletedFormEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/didUpdateCompletedFormEmitTargetAndPayload.schema.js +0 -46
- package/build/.spruce/schemas/forms/v2021_07_02/didUpdateCompletedFormEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEmitTarget.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEmitTarget.schema.js +0 -29
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEmitTarget.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEmitTargetAndPayload.schema.js +0 -46
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEventForm.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEventForm.schema.js +0 -78
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormEventForm.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormResponsePayload.schema.js +0 -35
- package/build/.spruce/schemas/forms/v2021_07_02/getCompletedFormResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/listCompletedFormsResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/listCompletedFormsResponsePayload.schema.js +0 -37
- package/build/.spruce/schemas/forms/v2021_07_02/listCompletedFormsResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/listFormsForm.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/listFormsForm.schema.js +0 -51
- package/build/.spruce/schemas/forms/v2021_07_02/listFormsForm.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/listFormsResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/listFormsResponsePayload.schema.js +0 -37
- package/build/.spruce/schemas/forms/v2021_07_02/listFormsResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormEmitPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormEmitPayload.schema.js +0 -38
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormEmitPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormEmitTargetAndPayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormEmitTargetAndPayload.schema.js +0 -46
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormEmitTargetAndPayload.schema.js.map +0 -1
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormResponsePayload.schema.d.ts +0 -3
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormResponsePayload.schema.js +0 -29
- package/build/.spruce/schemas/forms/v2021_07_02/updateCompletedFormResponsePayload.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/builderImportExportPage.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/builderImportExportPage.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/builderImportExportPage.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/formBuilderImportExportObject.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/formBuilderImportExportObject.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/formBuilderImportExportObject.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/formSection.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/formSection.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/formSection.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/list.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/list.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/list.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCell.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCell.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCell.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCellButton.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCellButton.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCellButton.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listRow.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listRow.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listRow.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listSelectInput.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listSelectInput.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listSelectInput.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listTextInput.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listTextInput.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listTextInput.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/selectInputChoice.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/selectInputChoice.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/selectInputChoice.schema.js.map +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/text.schema.d.ts +0 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/text.schema.js +0 -14
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/text.schema.js.map +0 -1
- package/src/.spruce/events/appointments/didBookAppointments.v2021_06_23.contract.ts +0 -15
- package/src/.spruce/events/calendar/createCalendarEventType.v2021_05_19.contract.ts +0 -17
- package/src/.spruce/events/calendar/listCalendarEventTypes.v2021_05_19.contract.ts +0 -16
- package/src/.spruce/events/forms/convertPdfToForm.v2021_07_02.contract.ts +0 -54
- package/src/.spruce/events/forms/convertPdfToSchemas.v2021_07_02.contract.ts +0 -55
- package/src/.spruce/events/forms/createForm.v2021_07_02.contract.ts +0 -54
- package/src/.spruce/events/forms/deleteCompletedForm.v2021_07_02.contract.ts +0 -55
- package/src/.spruce/events/forms/didUpdateCompletedForm.v2021_07_02.contract.ts +0 -15
- package/src/.spruce/events/forms/getCompletedForm.v2021_07_02.contract.ts +0 -48
- package/src/.spruce/events/forms/listCompletedForms.v2021_07_02.contract.ts +0 -54
- package/src/.spruce/events/forms/listForms.v2021_07_02.contract.ts +0 -90
- package/src/.spruce/events/forms/updateCompletedForm.v2021_07_02.contract.ts +0 -17
- package/src/.spruce/events/mySkill163362874854325100/myCoolEvent.v2021_01_22.contract.ts +0 -45
- package/src/.spruce/events/mySkill163362882591525586/myCoolEvent.v2021_01_22.contract.ts +0 -45
- package/src/.spruce/events/mySkill163459634973936127/myCoolEvent.v2021_01_22.contract.ts +0 -45
- package/src/.spruce/events/mySkill163493473102035607/myCoolEvent.v2021_01_22.contract.ts +0 -45
- package/src/.spruce/events/mySkill163493479880935941/myCoolEvent.v2021_01_22.contract.ts +0 -45
- package/src/.spruce/schemas/appointments/v2021_06_23/appointments.schema.ts +0 -22
- package/src/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitPayload.schema.ts +0 -24
- package/src/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitTarget.schema.ts +0 -22
- package/src/.spruce/schemas/appointments/v2021_06_23/didBookAppointmentsEmitTargetAndPayload.schema.ts +0 -36
- package/src/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeEmitPayload.schema.ts +0 -29
- package/src/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeEmitTargetAndPayload.schema.ts +0 -30
- package/src/.spruce/schemas/calendar/v2021_05_19/createCalendarEventTypeResponsePayload.schema.ts +0 -23
- package/src/.spruce/schemas/calendar/v2021_05_19/fullCalendarEventType.schema.ts +0 -39
- package/src/.spruce/schemas/calendar/v2021_05_19/listCalendarEventTypesResponsePayload.schema.ts +0 -25
- package/src/.spruce/schemas/forms/v2021_07_02/builtForm.schema.ts +0 -50
- package/src/.spruce/schemas/forms/v2021_07_02/completedFormResponse.schema.ts +0 -41
- package/src/.spruce/schemas/forms/v2021_07_02/completedFormSourceForm.schema.ts +0 -44
- package/src/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitPayload.schema.ts +0 -24
- package/src/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitTargetAndPayload.schema.ts +0 -30
- package/src/.spruce/schemas/forms/v2021_07_02/convertPdfToFormResponsePayload.schema.ts +0 -22
- package/src/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitPayload.schema.ts +0 -24
- package/src/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitTargetAndPayload.schema.ts +0 -30
- package/src/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasResponsePayload.schema.ts +0 -25
- package/src/.spruce/schemas/forms/v2021_07_02/createBuiltForm.schema.ts +0 -38
- package/src/.spruce/schemas/forms/v2021_07_02/createFormEmitTargetAndPayload.schema.ts +0 -30
- package/src/.spruce/schemas/forms/v2021_07_02/createFormResponsePayload.schema.ts +0 -29
- package/src/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormEmitTarget.schema.ts +0 -23
- package/src/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormEmitTargetAndPayload.schema.ts +0 -30
- package/src/.spruce/schemas/forms/v2021_07_02/deleteCompletedFormResponsePayload.schema.ts +0 -23
- package/src/.spruce/schemas/forms/v2021_07_02/didSaveFormEmitPayload.schema.ts +0 -23
- package/src/.spruce/schemas/forms/v2021_07_02/didUpdateCompletedFormEmitTargetAndPayload.schema.ts +0 -30
- package/src/.spruce/schemas/forms/v2021_07_02/getCompletedFormEmitTarget.schema.ts +0 -23
- package/src/.spruce/schemas/forms/v2021_07_02/getCompletedFormEmitTargetAndPayload.schema.ts +0 -30
- package/src/.spruce/schemas/forms/v2021_07_02/getCompletedFormEventForm.schema.ts +0 -58
- package/src/.spruce/schemas/forms/v2021_07_02/getCompletedFormResponsePayload.schema.ts +0 -23
- package/src/.spruce/schemas/forms/v2021_07_02/listCompletedFormsResponsePayload.schema.ts +0 -25
- package/src/.spruce/schemas/forms/v2021_07_02/listFormsForm.schema.ts +0 -42
- package/src/.spruce/schemas/forms/v2021_07_02/listFormsResponsePayload.schema.ts +0 -25
- package/src/.spruce/schemas/forms/v2021_07_02/updateCompletedFormEmitPayload.schema.ts +0 -29
- package/src/.spruce/schemas/forms/v2021_07_02/updateCompletedFormEmitTargetAndPayload.schema.ts +0 -30
- package/src/.spruce/schemas/forms/v2021_07_02/updateCompletedFormResponsePayload.schema.ts +0 -23
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/builderImportExportPage.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/formBuilderImportExportObject.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/formSection.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/list.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCell.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCellButton.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listRow.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listSelectInput.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listTextInput.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/selectInputChoice.schema.ts +0 -1
- package/src/.spruce/schemas/heartwoodViewControllers/v2021_02_11/text.schema.ts +0 -1
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _schema = require("@sprucelabs/schema");
|
|
11
|
-
|
|
12
|
-
var _eventSource = _interopRequireDefault(require("../../spruceEventUtils/v2021_09_13/eventSource.schema"));
|
|
13
|
-
|
|
14
|
-
var fullCalendarEventTypeSchema = {
|
|
15
|
-
id: 'fullCalendarEventType',
|
|
16
|
-
version: 'v2021_05_19',
|
|
17
|
-
namespace: 'Calendar',
|
|
18
|
-
name: '',
|
|
19
|
-
fields: {
|
|
20
|
-
/** . */
|
|
21
|
-
'id': {
|
|
22
|
-
type: 'id',
|
|
23
|
-
options: undefined
|
|
24
|
-
},
|
|
25
|
-
|
|
26
|
-
/** . */
|
|
27
|
-
'name': {
|
|
28
|
-
type: 'text',
|
|
29
|
-
isRequired: true,
|
|
30
|
-
options: undefined
|
|
31
|
-
},
|
|
32
|
-
|
|
33
|
-
/** . */
|
|
34
|
-
'slug': {
|
|
35
|
-
type: 'text',
|
|
36
|
-
isRequired: true,
|
|
37
|
-
options: undefined
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
/** . */
|
|
41
|
-
'source': {
|
|
42
|
-
type: 'schema',
|
|
43
|
-
options: {
|
|
44
|
-
schema: _eventSource["default"]
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
_schema.SchemaRegistry.getInstance().trackSchema(fullCalendarEventTypeSchema);
|
|
51
|
-
|
|
52
|
-
var _default = fullCalendarEventTypeSchema;
|
|
53
|
-
exports["default"] = _default;
|
|
54
|
-
//# sourceMappingURL=fullCalendarEventType.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/calendar/v2021_05_19/fullCalendarEventType.schema.ts"],"names":["fullCalendarEventTypeSchema","id","version","namespace","name","fields","type","options","undefined","isRequired","schema","eventSourceSchema_v2021_09_13","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;;;AAAA;;AAGA;;AAEA,IAAMA,2BAA2F,GAAI;AACpGC,EAAAA,EAAE,EAAE,uBADgG;AAEpGC,EAAAA,OAAO,EAAE,aAF2F;AAGpGC,EAAAA,SAAS,EAAE,UAHyF;AAIpGC,EAAAA,IAAI,EAAE,EAJ8F;AAKhGC,EAAAA,MAAM,EAAE;AACA;AACA,UAAM;AACFC,MAAAA,IAAI,EAAE,IADJ;AAEFC,MAAAA,OAAO,EAAEC;AAFP,KAFN;;AAMA;AACA,YAAQ;AACJF,MAAAA,IAAI,EAAE,MADF;AAEJG,MAAAA,UAAU,EAAE,IAFR;AAGJF,MAAAA,OAAO,EAAEC;AAHL,KAPR;;AAYA;AACA,YAAQ;AACJF,MAAAA,IAAI,EAAE,MADF;AAEJG,MAAAA,UAAU,EAAE,IAFR;AAGJF,MAAAA,OAAO,EAAEC;AAHL,KAbR;;AAkBA;AACA,cAAU;AACNF,MAAAA,IAAI,EAAE,QADA;AAENC,MAAAA,OAAO,EAAE;AAACG,QAAAA,MAAM,EAAEC;AAAT;AAFH;AAnBV;AALwF,CAArG;;AA+BAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCd,2BAAzC;;eAEeA,2B","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\nimport eventSourceSchema_v2021_09_13 from '#spruce/schemas/spruceEventUtils/v2021_09_13/eventSource.schema'\n\nconst fullCalendarEventTypeSchema: SpruceSchemas.Calendar.v2021_05_19.FullCalendarEventTypeSchema = {\n\tid: 'fullCalendarEventType',\n\tversion: 'v2021_05_19',\n\tnamespace: 'Calendar',\n\tname: '',\n\t fields: {\n\t /** . */\n\t 'id': {\n\t type: 'id',\n\t options: undefined\n\t },\n\t /** . */\n\t 'name': {\n\t type: 'text',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** . */\n\t 'slug': {\n\t type: 'text',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** . */\n\t 'source': {\n\t type: 'schema',\n\t options: {schema: eventSourceSchema_v2021_09_13,}\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(fullCalendarEventTypeSchema)\n\nexport default fullCalendarEventTypeSchema\n"],"file":"fullCalendarEventType.schema.js"}
|
package/build/.spruce/schemas/calendar/v2021_05_19/listCalendarEventTypesResponsePayload.schema.js
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _schema = require("@sprucelabs/schema");
|
|
11
|
-
|
|
12
|
-
var _fullCalendarEventType = _interopRequireDefault(require("./fullCalendarEventType.schema"));
|
|
13
|
-
|
|
14
|
-
var listCalendarEventTypesResponsePayloadSchema = {
|
|
15
|
-
id: 'listCalendarEventTypesResponsePayload',
|
|
16
|
-
version: 'v2021_05_19',
|
|
17
|
-
namespace: 'Calendar',
|
|
18
|
-
name: '',
|
|
19
|
-
fields: {
|
|
20
|
-
/** . */
|
|
21
|
-
'calendarEventTypes': {
|
|
22
|
-
type: 'schema',
|
|
23
|
-
isRequired: true,
|
|
24
|
-
isArray: true,
|
|
25
|
-
minArrayLength: 0,
|
|
26
|
-
options: {
|
|
27
|
-
schema: _fullCalendarEventType["default"]
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
_schema.SchemaRegistry.getInstance().trackSchema(listCalendarEventTypesResponsePayloadSchema);
|
|
34
|
-
|
|
35
|
-
var _default = listCalendarEventTypesResponsePayloadSchema;
|
|
36
|
-
exports["default"] = _default;
|
|
37
|
-
//# sourceMappingURL=listCalendarEventTypesResponsePayload.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/calendar/v2021_05_19/listCalendarEventTypesResponsePayload.schema.ts"],"names":["listCalendarEventTypesResponsePayloadSchema","id","version","namespace","name","fields","type","isRequired","isArray","minArrayLength","options","schema","fullCalendarEventTypeSchema_v2021_05_19","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;;;AAAA;;AAGA;;AAEA,IAAMA,2CAA2H,GAAI;AACpIC,EAAAA,EAAE,EAAE,uCADgI;AAEpIC,EAAAA,OAAO,EAAE,aAF2H;AAGpIC,EAAAA,SAAS,EAAE,UAHyH;AAIpIC,EAAAA,IAAI,EAAE,EAJ8H;AAKhIC,EAAAA,MAAM,EAAE;AACA;AACA,0BAAsB;AAClBC,MAAAA,IAAI,EAAE,QADY;AAElBC,MAAAA,UAAU,EAAE,IAFM;AAGlBC,MAAAA,OAAO,EAAE,IAHS;AAIlBC,MAAAA,cAAc,EAAE,CAJE;AAKlBC,MAAAA,OAAO,EAAE;AAACC,QAAAA,MAAM,EAAEC;AAAT;AALS;AAFtB;AALwH,CAArI;;AAiBAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCf,2CAAzC;;eAEeA,2C","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\nimport fullCalendarEventTypeSchema_v2021_05_19 from '#spruce/schemas/calendar/v2021_05_19/fullCalendarEventType.schema'\n\nconst listCalendarEventTypesResponsePayloadSchema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventTypesResponsePayloadSchema = {\n\tid: 'listCalendarEventTypesResponsePayload',\n\tversion: 'v2021_05_19',\n\tnamespace: 'Calendar',\n\tname: '',\n\t fields: {\n\t /** . */\n\t 'calendarEventTypes': {\n\t type: 'schema',\n\t isRequired: true,\n\t isArray: true,\n\t minArrayLength: 0,\n\t options: {schema: fullCalendarEventTypeSchema_v2021_05_19,}\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(listCalendarEventTypesResponsePayloadSchema)\n\nexport default listCalendarEventTypesResponsePayloadSchema\n"],"file":"listCalendarEventTypesResponsePayload.schema.js"}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _schema = require("@sprucelabs/schema");
|
|
11
|
-
|
|
12
|
-
var _builderImportExportPage = _interopRequireDefault(require("../../heartwoodViewControllers/v2021_02_11/builderImportExportPage.schema"));
|
|
13
|
-
|
|
14
|
-
var builtFormSchema = {
|
|
15
|
-
id: 'builtForm',
|
|
16
|
-
version: 'v2021_07_02',
|
|
17
|
-
namespace: 'Forms',
|
|
18
|
-
name: '',
|
|
19
|
-
fields: {
|
|
20
|
-
/** . */
|
|
21
|
-
'id': {
|
|
22
|
-
type: 'id',
|
|
23
|
-
isRequired: true,
|
|
24
|
-
options: undefined
|
|
25
|
-
},
|
|
26
|
-
|
|
27
|
-
/** . */
|
|
28
|
-
'dateDeleted': {
|
|
29
|
-
type: 'number',
|
|
30
|
-
isPrivate: true,
|
|
31
|
-
options: undefined
|
|
32
|
-
},
|
|
33
|
-
|
|
34
|
-
/** Title. */
|
|
35
|
-
'title': {
|
|
36
|
-
label: 'Title',
|
|
37
|
-
type: 'text',
|
|
38
|
-
isRequired: true,
|
|
39
|
-
options: undefined
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
/** Subtitle. */
|
|
43
|
-
'subtitle': {
|
|
44
|
-
label: 'Subtitle',
|
|
45
|
-
type: 'text',
|
|
46
|
-
options: undefined
|
|
47
|
-
},
|
|
48
|
-
|
|
49
|
-
/** Pages. */
|
|
50
|
-
'pages': {
|
|
51
|
-
label: 'Pages',
|
|
52
|
-
type: 'schema',
|
|
53
|
-
isRequired: true,
|
|
54
|
-
isArray: true,
|
|
55
|
-
options: {
|
|
56
|
-
schema: _builderImportExportPage["default"]
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
_schema.SchemaRegistry.getInstance().trackSchema(builtFormSchema);
|
|
63
|
-
|
|
64
|
-
var _default = builtFormSchema;
|
|
65
|
-
exports["default"] = _default;
|
|
66
|
-
//# sourceMappingURL=builtForm.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/builtForm.schema.ts"],"names":["builtFormSchema","id","version","namespace","name","fields","type","isRequired","options","undefined","isPrivate","label","isArray","schema","builderImportExportPageSchema_v2021_02_11","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;;;AAAA;;AAGA;;AAEA,IAAMA,eAAgE,GAAI;AACzEC,EAAAA,EAAE,EAAE,WADqE;AAEzEC,EAAAA,OAAO,EAAE,aAFgE;AAGzEC,EAAAA,SAAS,EAAE,OAH8D;AAIzEC,EAAAA,IAAI,EAAE,EAJmE;AAKrEC,EAAAA,MAAM,EAAE;AACA;AACA,UAAM;AACFC,MAAAA,IAAI,EAAE,IADJ;AAEFC,MAAAA,UAAU,EAAE,IAFV;AAGFC,MAAAA,OAAO,EAAEC;AAHP,KAFN;;AAOA;AACA,mBAAe;AACXH,MAAAA,IAAI,EAAE,QADK;AAEXI,MAAAA,SAAS,EAAE,IAFA;AAGXF,MAAAA,OAAO,EAAEC;AAHE,KARf;;AAaA;AACA,aAAS;AACLE,MAAAA,KAAK,EAAE,OADF;AAELL,MAAAA,IAAI,EAAE,MAFD;AAGLC,MAAAA,UAAU,EAAE,IAHP;AAILC,MAAAA,OAAO,EAAEC;AAJJ,KAdT;;AAoBA;AACA,gBAAY;AACRE,MAAAA,KAAK,EAAE,UADC;AAERL,MAAAA,IAAI,EAAE,MAFE;AAGRE,MAAAA,OAAO,EAAEC;AAHD,KArBZ;;AA0BA;AACA,aAAS;AACLE,MAAAA,KAAK,EAAE,OADF;AAELL,MAAAA,IAAI,EAAE,QAFD;AAGLC,MAAAA,UAAU,EAAE,IAHP;AAILK,MAAAA,OAAO,EAAE,IAJJ;AAKLJ,MAAAA,OAAO,EAAE;AAACK,QAAAA,MAAM,EAAEC;AAAT;AALJ;AA3BT;AAL6D,CAA1E;;AA0CAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCjB,eAAzC;;eAEeA,e","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\nimport builderImportExportPageSchema_v2021_02_11 from '#spruce/schemas/heartwoodViewControllers/v2021_02_11/builderImportExportPage.schema'\n\nconst builtFormSchema: SpruceSchemas.Forms.v2021_07_02.BuiltFormSchema = {\n\tid: 'builtForm',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** . */\n\t 'id': {\n\t type: 'id',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** . */\n\t 'dateDeleted': {\n\t type: 'number',\n\t isPrivate: true,\n\t options: undefined\n\t },\n\t /** Title. */\n\t 'title': {\n\t label: 'Title',\n\t type: 'text',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** Subtitle. */\n\t 'subtitle': {\n\t label: 'Subtitle',\n\t type: 'text',\n\t options: undefined\n\t },\n\t /** Pages. */\n\t 'pages': {\n\t label: 'Pages',\n\t type: 'schema',\n\t isRequired: true,\n\t isArray: true,\n\t options: {schema: builderImportExportPageSchema_v2021_02_11,}\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(builtFormSchema)\n\nexport default builtFormSchema\n"],"file":"builtForm.schema.js"}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports["default"] = void 0;
|
|
7
|
-
|
|
8
|
-
var _schema = require("@sprucelabs/schema");
|
|
9
|
-
|
|
10
|
-
var completedFormResponseSchema = {
|
|
11
|
-
id: 'completedFormResponse',
|
|
12
|
-
version: 'v2021_07_02',
|
|
13
|
-
namespace: 'Forms',
|
|
14
|
-
name: '',
|
|
15
|
-
fields: {
|
|
16
|
-
/** . */
|
|
17
|
-
'personName': {
|
|
18
|
-
type: 'text',
|
|
19
|
-
isRequired: true,
|
|
20
|
-
options: undefined
|
|
21
|
-
},
|
|
22
|
-
|
|
23
|
-
/** . */
|
|
24
|
-
'formTitle': {
|
|
25
|
-
type: 'text',
|
|
26
|
-
isRequired: true,
|
|
27
|
-
options: undefined
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
/** . */
|
|
31
|
-
'completedFormBuilderId': {
|
|
32
|
-
type: 'id',
|
|
33
|
-
isRequired: true,
|
|
34
|
-
options: undefined
|
|
35
|
-
},
|
|
36
|
-
|
|
37
|
-
/** . */
|
|
38
|
-
'percentComplete': {
|
|
39
|
-
type: 'number',
|
|
40
|
-
isRequired: true,
|
|
41
|
-
options: undefined
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
_schema.SchemaRegistry.getInstance().trackSchema(completedFormResponseSchema);
|
|
47
|
-
|
|
48
|
-
var _default = completedFormResponseSchema;
|
|
49
|
-
exports["default"] = _default;
|
|
50
|
-
//# sourceMappingURL=completedFormResponse.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/completedFormResponse.schema.ts"],"names":["completedFormResponseSchema","id","version","namespace","name","fields","type","isRequired","options","undefined","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;AAAA;;AAKA,IAAMA,2BAAwF,GAAI;AACjGC,EAAAA,EAAE,EAAE,uBAD6F;AAEjGC,EAAAA,OAAO,EAAE,aAFwF;AAGjGC,EAAAA,SAAS,EAAE,OAHsF;AAIjGC,EAAAA,IAAI,EAAE,EAJ2F;AAK7FC,EAAAA,MAAM,EAAE;AACA;AACA,kBAAc;AACVC,MAAAA,IAAI,EAAE,MADI;AAEVC,MAAAA,UAAU,EAAE,IAFF;AAGVC,MAAAA,OAAO,EAAEC;AAHC,KAFd;;AAOA;AACA,iBAAa;AACTH,MAAAA,IAAI,EAAE,MADG;AAETC,MAAAA,UAAU,EAAE,IAFH;AAGTC,MAAAA,OAAO,EAAEC;AAHA,KARb;;AAaA;AACA,8BAA0B;AACtBH,MAAAA,IAAI,EAAE,IADgB;AAEtBC,MAAAA,UAAU,EAAE,IAFU;AAGtBC,MAAAA,OAAO,EAAEC;AAHa,KAd1B;;AAmBA;AACA,uBAAmB;AACfH,MAAAA,IAAI,EAAE,QADS;AAEfC,MAAAA,UAAU,EAAE,IAFG;AAGfC,MAAAA,OAAO,EAAEC;AAHM;AApBnB;AALqF,CAAlG;;AAiCAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCZ,2BAAzC;;eAEeA,2B","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\n\n\nconst completedFormResponseSchema: SpruceSchemas.Forms.v2021_07_02.CompletedFormResponseSchema = {\n\tid: 'completedFormResponse',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** . */\n\t 'personName': {\n\t type: 'text',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** . */\n\t 'formTitle': {\n\t type: 'text',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** . */\n\t 'completedFormBuilderId': {\n\t type: 'id',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** . */\n\t 'percentComplete': {\n\t type: 'number',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(completedFormResponseSchema)\n\nexport default completedFormResponseSchema\n"],"file":"completedFormResponse.schema.js"}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _schema = require("@sprucelabs/schema");
|
|
11
|
-
|
|
12
|
-
var _builderImportExportPage = _interopRequireDefault(require("../../heartwoodViewControllers/v2021_02_11/builderImportExportPage.schema"));
|
|
13
|
-
|
|
14
|
-
var completedFormSourceFormSchema = {
|
|
15
|
-
id: 'completedFormSourceForm',
|
|
16
|
-
version: 'v2021_07_02',
|
|
17
|
-
namespace: 'Forms',
|
|
18
|
-
name: '',
|
|
19
|
-
fields: {
|
|
20
|
-
/** . */
|
|
21
|
-
'id': {
|
|
22
|
-
type: 'id',
|
|
23
|
-
isRequired: true,
|
|
24
|
-
options: undefined
|
|
25
|
-
},
|
|
26
|
-
|
|
27
|
-
/** Title. */
|
|
28
|
-
'title': {
|
|
29
|
-
label: 'Title',
|
|
30
|
-
type: 'text',
|
|
31
|
-
isRequired: true,
|
|
32
|
-
options: undefined
|
|
33
|
-
},
|
|
34
|
-
|
|
35
|
-
/** Subtitle. */
|
|
36
|
-
'subtitle': {
|
|
37
|
-
label: 'Subtitle',
|
|
38
|
-
type: 'text',
|
|
39
|
-
options: undefined
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
/** Pages. */
|
|
43
|
-
'pages': {
|
|
44
|
-
label: 'Pages',
|
|
45
|
-
type: 'schema',
|
|
46
|
-
isRequired: true,
|
|
47
|
-
isArray: true,
|
|
48
|
-
options: {
|
|
49
|
-
schema: _builderImportExportPage["default"]
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
};
|
|
54
|
-
|
|
55
|
-
_schema.SchemaRegistry.getInstance().trackSchema(completedFormSourceFormSchema);
|
|
56
|
-
|
|
57
|
-
var _default = completedFormSourceFormSchema;
|
|
58
|
-
exports["default"] = _default;
|
|
59
|
-
//# sourceMappingURL=completedFormSourceForm.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/completedFormSourceForm.schema.ts"],"names":["completedFormSourceFormSchema","id","version","namespace","name","fields","type","isRequired","options","undefined","label","isArray","schema","builderImportExportPageSchema_v2021_02_11","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;;;AAAA;;AAGA;;AAEA,IAAMA,6BAA4F,GAAI;AACrGC,EAAAA,EAAE,EAAE,yBADiG;AAErGC,EAAAA,OAAO,EAAE,aAF4F;AAGrGC,EAAAA,SAAS,EAAE,OAH0F;AAIrGC,EAAAA,IAAI,EAAE,EAJ+F;AAKjGC,EAAAA,MAAM,EAAE;AACA;AACA,UAAM;AACFC,MAAAA,IAAI,EAAE,IADJ;AAEFC,MAAAA,UAAU,EAAE,IAFV;AAGFC,MAAAA,OAAO,EAAEC;AAHP,KAFN;;AAOA;AACA,aAAS;AACLC,MAAAA,KAAK,EAAE,OADF;AAELJ,MAAAA,IAAI,EAAE,MAFD;AAGLC,MAAAA,UAAU,EAAE,IAHP;AAILC,MAAAA,OAAO,EAAEC;AAJJ,KART;;AAcA;AACA,gBAAY;AACRC,MAAAA,KAAK,EAAE,UADC;AAERJ,MAAAA,IAAI,EAAE,MAFE;AAGRE,MAAAA,OAAO,EAAEC;AAHD,KAfZ;;AAoBA;AACA,aAAS;AACLC,MAAAA,KAAK,EAAE,OADF;AAELJ,MAAAA,IAAI,EAAE,QAFD;AAGLC,MAAAA,UAAU,EAAE,IAHP;AAILI,MAAAA,OAAO,EAAE,IAJJ;AAKLH,MAAAA,OAAO,EAAE;AAACI,QAAAA,MAAM,EAAEC;AAAT;AALJ;AArBT;AALyF,CAAtG;;AAoCAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyChB,6BAAzC;;eAEeA,6B","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\nimport builderImportExportPageSchema_v2021_02_11 from '#spruce/schemas/heartwoodViewControllers/v2021_02_11/builderImportExportPage.schema'\n\nconst completedFormSourceFormSchema: SpruceSchemas.Forms.v2021_07_02.CompletedFormSourceFormSchema = {\n\tid: 'completedFormSourceForm',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** . */\n\t 'id': {\n\t type: 'id',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** Title. */\n\t 'title': {\n\t label: 'Title',\n\t type: 'text',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t /** Subtitle. */\n\t 'subtitle': {\n\t label: 'Subtitle',\n\t type: 'text',\n\t options: undefined\n\t },\n\t /** Pages. */\n\t 'pages': {\n\t label: 'Pages',\n\t type: 'schema',\n\t isRequired: true,\n\t isArray: true,\n\t options: {schema: builderImportExportPageSchema_v2021_02_11,}\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(completedFormSourceFormSchema)\n\nexport default completedFormSourceFormSchema\n"],"file":"completedFormSourceForm.schema.js"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports["default"] = void 0;
|
|
7
|
-
|
|
8
|
-
var _schema = require("@sprucelabs/schema");
|
|
9
|
-
|
|
10
|
-
var convertPdfToFormEmitPayloadSchema = {
|
|
11
|
-
id: 'convertPdfToFormEmitPayload',
|
|
12
|
-
version: 'v2021_07_02',
|
|
13
|
-
namespace: 'Forms',
|
|
14
|
-
name: '',
|
|
15
|
-
fields: {
|
|
16
|
-
/** Contents of PDF to convert to form. */
|
|
17
|
-
'pdfContents': {
|
|
18
|
-
label: 'Contents of PDF to convert to form',
|
|
19
|
-
type: 'text',
|
|
20
|
-
isRequired: true,
|
|
21
|
-
options: undefined
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
_schema.SchemaRegistry.getInstance().trackSchema(convertPdfToFormEmitPayloadSchema);
|
|
27
|
-
|
|
28
|
-
var _default = convertPdfToFormEmitPayloadSchema;
|
|
29
|
-
exports["default"] = _default;
|
|
30
|
-
//# sourceMappingURL=convertPdfToFormEmitPayload.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitPayload.schema.ts"],"names":["convertPdfToFormEmitPayloadSchema","id","version","namespace","name","fields","label","type","isRequired","options","undefined","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;AAAA;;AAKA,IAAMA,iCAAoG,GAAI;AAC7GC,EAAAA,EAAE,EAAE,6BADyG;AAE7GC,EAAAA,OAAO,EAAE,aAFoG;AAG7GC,EAAAA,SAAS,EAAE,OAHkG;AAI7GC,EAAAA,IAAI,EAAE,EAJuG;AAKzGC,EAAAA,MAAM,EAAE;AACA;AACA,mBAAe;AACXC,MAAAA,KAAK,EAAE,oCADI;AAEXC,MAAAA,IAAI,EAAE,MAFK;AAGXC,MAAAA,UAAU,EAAE,IAHD;AAIXC,MAAAA,OAAO,EAAEC;AAJE;AAFf;AALiG,CAA9G;;AAgBAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCb,iCAAzC;;eAEeA,iC","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\n\n\nconst convertPdfToFormEmitPayloadSchema: SpruceSchemas.Forms.v2021_07_02.ConvertPdfToFormEmitPayloadSchema = {\n\tid: 'convertPdfToFormEmitPayload',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** Contents of PDF to convert to form. */\n\t 'pdfContents': {\n\t label: 'Contents of PDF to convert to form',\n\t type: 'text',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(convertPdfToFormEmitPayloadSchema)\n\nexport default convertPdfToFormEmitPayloadSchema\n"],"file":"convertPdfToFormEmitPayload.schema.js"}
|
package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitTargetAndPayload.schema.js
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _schema = require("@sprucelabs/schema");
|
|
11
|
-
|
|
12
|
-
var _eventSource = _interopRequireDefault(require("../../spruceEventUtils/v2021_09_13/eventSource.schema"));
|
|
13
|
-
|
|
14
|
-
var _convertPdfToFormEmitPayload = _interopRequireDefault(require("./convertPdfToFormEmitPayload.schema"));
|
|
15
|
-
|
|
16
|
-
var convertPdfToFormEmitTargetAndPayloadSchema = {
|
|
17
|
-
id: 'convertPdfToFormEmitTargetAndPayload',
|
|
18
|
-
version: 'v2021_07_02',
|
|
19
|
-
namespace: 'Forms',
|
|
20
|
-
name: '',
|
|
21
|
-
fields: {
|
|
22
|
-
/** Source. */
|
|
23
|
-
'source': {
|
|
24
|
-
label: 'Source',
|
|
25
|
-
type: 'schema',
|
|
26
|
-
options: {
|
|
27
|
-
schema: _eventSource["default"]
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
/** . */
|
|
32
|
-
'payload': {
|
|
33
|
-
type: 'schema',
|
|
34
|
-
isRequired: true,
|
|
35
|
-
options: {
|
|
36
|
-
schema: _convertPdfToFormEmitPayload["default"]
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
_schema.SchemaRegistry.getInstance().trackSchema(convertPdfToFormEmitTargetAndPayloadSchema);
|
|
43
|
-
|
|
44
|
-
var _default = convertPdfToFormEmitTargetAndPayloadSchema;
|
|
45
|
-
exports["default"] = _default;
|
|
46
|
-
//# sourceMappingURL=convertPdfToFormEmitTargetAndPayload.schema.js.map
|
package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitTargetAndPayload.schema.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitTargetAndPayload.schema.ts"],"names":["convertPdfToFormEmitTargetAndPayloadSchema","id","version","namespace","name","fields","label","type","options","schema","eventSourceSchema_v2021_09_13","isRequired","convertPdfToFormEmitPayloadSchema_v2021_07_02","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;;;AAAA;;AAGA;;AACA;;AAEA,IAAMA,0CAAsH,GAAI;AAC/HC,EAAAA,EAAE,EAAE,sCAD2H;AAE/HC,EAAAA,OAAO,EAAE,aAFsH;AAG/HC,EAAAA,SAAS,EAAE,OAHoH;AAI/HC,EAAAA,IAAI,EAAE,EAJyH;AAK3HC,EAAAA,MAAM,EAAE;AACA;AACA,cAAU;AACNC,MAAAA,KAAK,EAAE,QADD;AAENC,MAAAA,IAAI,EAAE,QAFA;AAGNC,MAAAA,OAAO,EAAE;AAACC,QAAAA,MAAM,EAAEC;AAAT;AAHH,KAFV;;AAOA;AACA,eAAW;AACPH,MAAAA,IAAI,EAAE,QADC;AAEPI,MAAAA,UAAU,EAAE,IAFL;AAGPH,MAAAA,OAAO,EAAE;AAACC,QAAAA,MAAM,EAAEG;AAAT;AAHF;AARX;AALmH,CAAhI;;AAqBAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCf,0CAAzC;;eAEeA,0C","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\nimport eventSourceSchema_v2021_09_13 from '#spruce/schemas/spruceEventUtils/v2021_09_13/eventSource.schema'\nimport convertPdfToFormEmitPayloadSchema_v2021_07_02 from '#spruce/schemas/forms/v2021_07_02/convertPdfToFormEmitPayload.schema'\n\nconst convertPdfToFormEmitTargetAndPayloadSchema: SpruceSchemas.Forms.v2021_07_02.ConvertPdfToFormEmitTargetAndPayloadSchema = {\n\tid: 'convertPdfToFormEmitTargetAndPayload',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** Source. */\n\t 'source': {\n\t label: 'Source',\n\t type: 'schema',\n\t options: {schema: eventSourceSchema_v2021_09_13,}\n\t },\n\t /** . */\n\t 'payload': {\n\t type: 'schema',\n\t isRequired: true,\n\t options: {schema: convertPdfToFormEmitPayloadSchema_v2021_07_02,}\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(convertPdfToFormEmitTargetAndPayloadSchema)\n\nexport default convertPdfToFormEmitTargetAndPayloadSchema\n"],"file":"convertPdfToFormEmitTargetAndPayload.schema.js"}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _schema = require("@sprucelabs/schema");
|
|
11
|
-
|
|
12
|
-
var _formBuilderImportExportObject = _interopRequireDefault(require("../../heartwoodViewControllers/v2021_02_11/formBuilderImportExportObject.schema"));
|
|
13
|
-
|
|
14
|
-
var convertPdfToFormResponsePayloadSchema = {
|
|
15
|
-
id: 'convertPdfToFormResponsePayload',
|
|
16
|
-
version: 'v2021_07_02',
|
|
17
|
-
namespace: 'Forms',
|
|
18
|
-
name: '',
|
|
19
|
-
fields: {
|
|
20
|
-
/** . */
|
|
21
|
-
'form': {
|
|
22
|
-
type: 'schema',
|
|
23
|
-
options: {
|
|
24
|
-
schema: _formBuilderImportExportObject["default"]
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
_schema.SchemaRegistry.getInstance().trackSchema(convertPdfToFormResponsePayloadSchema);
|
|
31
|
-
|
|
32
|
-
var _default = convertPdfToFormResponsePayloadSchema;
|
|
33
|
-
exports["default"] = _default;
|
|
34
|
-
//# sourceMappingURL=convertPdfToFormResponsePayload.schema.js.map
|
package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToFormResponsePayload.schema.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/convertPdfToFormResponsePayload.schema.ts"],"names":["convertPdfToFormResponsePayloadSchema","id","version","namespace","name","fields","type","options","schema","formBuilderImportExportObjectSchema_v2021_02_11","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;;;AAAA;;AAGA;;AAEA,IAAMA,qCAA4G,GAAI;AACrHC,EAAAA,EAAE,EAAE,iCADiH;AAErHC,EAAAA,OAAO,EAAE,aAF4G;AAGrHC,EAAAA,SAAS,EAAE,OAH0G;AAIrHC,EAAAA,IAAI,EAAE,EAJ+G;AAKjHC,EAAAA,MAAM,EAAE;AACA;AACA,YAAQ;AACJC,MAAAA,IAAI,EAAE,QADF;AAEJC,MAAAA,OAAO,EAAE;AAACC,QAAAA,MAAM,EAAEC;AAAT;AAFL;AAFR;AALyG,CAAtH;;AAcAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCZ,qCAAzC;;eAEeA,qC","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\nimport formBuilderImportExportObjectSchema_v2021_02_11 from '#spruce/schemas/heartwoodViewControllers/v2021_02_11/formBuilderImportExportObject.schema'\n\nconst convertPdfToFormResponsePayloadSchema: SpruceSchemas.Forms.v2021_07_02.ConvertPdfToFormResponsePayloadSchema = {\n\tid: 'convertPdfToFormResponsePayload',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** . */\n\t 'form': {\n\t type: 'schema',\n\t options: {schema: formBuilderImportExportObjectSchema_v2021_02_11,}\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(convertPdfToFormResponsePayloadSchema)\n\nexport default convertPdfToFormResponsePayloadSchema\n"],"file":"convertPdfToFormResponsePayload.schema.js"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports["default"] = void 0;
|
|
7
|
-
|
|
8
|
-
var _schema = require("@sprucelabs/schema");
|
|
9
|
-
|
|
10
|
-
var convertPdfToSchemasEmitPayloadSchema = {
|
|
11
|
-
id: 'convertPdfToSchemasEmitPayload',
|
|
12
|
-
version: 'v2021_07_02',
|
|
13
|
-
namespace: 'Forms',
|
|
14
|
-
name: '',
|
|
15
|
-
fields: {
|
|
16
|
-
/** Contents of PDF to convert to schemas. */
|
|
17
|
-
'pdfContents': {
|
|
18
|
-
label: 'Contents of PDF to convert to schemas',
|
|
19
|
-
type: 'text',
|
|
20
|
-
isRequired: true,
|
|
21
|
-
options: undefined
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
_schema.SchemaRegistry.getInstance().trackSchema(convertPdfToSchemasEmitPayloadSchema);
|
|
27
|
-
|
|
28
|
-
var _default = convertPdfToSchemasEmitPayloadSchema;
|
|
29
|
-
exports["default"] = _default;
|
|
30
|
-
//# sourceMappingURL=convertPdfToSchemasEmitPayload.schema.js.map
|
package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitPayload.schema.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitPayload.schema.ts"],"names":["convertPdfToSchemasEmitPayloadSchema","id","version","namespace","name","fields","label","type","isRequired","options","undefined","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;AAAA;;AAKA,IAAMA,oCAA0G,GAAI;AACnHC,EAAAA,EAAE,EAAE,gCAD+G;AAEnHC,EAAAA,OAAO,EAAE,aAF0G;AAGnHC,EAAAA,SAAS,EAAE,OAHwG;AAInHC,EAAAA,IAAI,EAAE,EAJ6G;AAK/GC,EAAAA,MAAM,EAAE;AACA;AACA,mBAAe;AACXC,MAAAA,KAAK,EAAE,uCADI;AAEXC,MAAAA,IAAI,EAAE,MAFK;AAGXC,MAAAA,UAAU,EAAE,IAHD;AAIXC,MAAAA,OAAO,EAAEC;AAJE;AAFf;AALuG,CAApH;;AAgBAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCb,oCAAzC;;eAEeA,oC","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\n\n\nconst convertPdfToSchemasEmitPayloadSchema: SpruceSchemas.Forms.v2021_07_02.ConvertPdfToSchemasEmitPayloadSchema = {\n\tid: 'convertPdfToSchemasEmitPayload',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** Contents of PDF to convert to schemas. */\n\t 'pdfContents': {\n\t label: 'Contents of PDF to convert to schemas',\n\t type: 'text',\n\t isRequired: true,\n\t options: undefined\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(convertPdfToSchemasEmitPayloadSchema)\n\nexport default convertPdfToSchemasEmitPayloadSchema\n"],"file":"convertPdfToSchemasEmitPayload.schema.js"}
|
package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitTargetAndPayload.schema.js
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _schema = require("@sprucelabs/schema");
|
|
11
|
-
|
|
12
|
-
var _eventSource = _interopRequireDefault(require("../../spruceEventUtils/v2021_09_13/eventSource.schema"));
|
|
13
|
-
|
|
14
|
-
var _convertPdfToSchemasEmitPayload = _interopRequireDefault(require("./convertPdfToSchemasEmitPayload.schema"));
|
|
15
|
-
|
|
16
|
-
var convertPdfToSchemasEmitTargetAndPayloadSchema = {
|
|
17
|
-
id: 'convertPdfToSchemasEmitTargetAndPayload',
|
|
18
|
-
version: 'v2021_07_02',
|
|
19
|
-
namespace: 'Forms',
|
|
20
|
-
name: '',
|
|
21
|
-
fields: {
|
|
22
|
-
/** Source. */
|
|
23
|
-
'source': {
|
|
24
|
-
label: 'Source',
|
|
25
|
-
type: 'schema',
|
|
26
|
-
options: {
|
|
27
|
-
schema: _eventSource["default"]
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
/** . */
|
|
32
|
-
'payload': {
|
|
33
|
-
type: 'schema',
|
|
34
|
-
isRequired: true,
|
|
35
|
-
options: {
|
|
36
|
-
schema: _convertPdfToSchemasEmitPayload["default"]
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
_schema.SchemaRegistry.getInstance().trackSchema(convertPdfToSchemasEmitTargetAndPayloadSchema);
|
|
43
|
-
|
|
44
|
-
var _default = convertPdfToSchemasEmitTargetAndPayloadSchema;
|
|
45
|
-
exports["default"] = _default;
|
|
46
|
-
//# sourceMappingURL=convertPdfToSchemasEmitTargetAndPayload.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitTargetAndPayload.schema.ts"],"names":["convertPdfToSchemasEmitTargetAndPayloadSchema","id","version","namespace","name","fields","label","type","options","schema","eventSourceSchema_v2021_09_13","isRequired","convertPdfToSchemasEmitPayloadSchema_v2021_07_02","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;;;AAAA;;AAGA;;AACA;;AAEA,IAAMA,6CAA4H,GAAI;AACrIC,EAAAA,EAAE,EAAE,yCADiI;AAErIC,EAAAA,OAAO,EAAE,aAF4H;AAGrIC,EAAAA,SAAS,EAAE,OAH0H;AAIrIC,EAAAA,IAAI,EAAE,EAJ+H;AAKjIC,EAAAA,MAAM,EAAE;AACA;AACA,cAAU;AACNC,MAAAA,KAAK,EAAE,QADD;AAENC,MAAAA,IAAI,EAAE,QAFA;AAGNC,MAAAA,OAAO,EAAE;AAACC,QAAAA,MAAM,EAAEC;AAAT;AAHH,KAFV;;AAOA;AACA,eAAW;AACPH,MAAAA,IAAI,EAAE,QADC;AAEPI,MAAAA,UAAU,EAAE,IAFL;AAGPH,MAAAA,OAAO,EAAE;AAACC,QAAAA,MAAM,EAAEG;AAAT;AAHF;AARX;AALyH,CAAtI;;AAqBAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCf,6CAAzC;;eAEeA,6C","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\nimport eventSourceSchema_v2021_09_13 from '#spruce/schemas/spruceEventUtils/v2021_09_13/eventSource.schema'\nimport convertPdfToSchemasEmitPayloadSchema_v2021_07_02 from '#spruce/schemas/forms/v2021_07_02/convertPdfToSchemasEmitPayload.schema'\n\nconst convertPdfToSchemasEmitTargetAndPayloadSchema: SpruceSchemas.Forms.v2021_07_02.ConvertPdfToSchemasEmitTargetAndPayloadSchema = {\n\tid: 'convertPdfToSchemasEmitTargetAndPayload',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** Source. */\n\t 'source': {\n\t label: 'Source',\n\t type: 'schema',\n\t options: {schema: eventSourceSchema_v2021_09_13,}\n\t },\n\t /** . */\n\t 'payload': {\n\t type: 'schema',\n\t isRequired: true,\n\t options: {schema: convertPdfToSchemasEmitPayloadSchema_v2021_07_02,}\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(convertPdfToSchemasEmitTargetAndPayloadSchema)\n\nexport default convertPdfToSchemasEmitTargetAndPayloadSchema\n"],"file":"convertPdfToSchemasEmitTargetAndPayload.schema.js"}
|
package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasResponsePayload.schema.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports["default"] = void 0;
|
|
7
|
-
|
|
8
|
-
var _schema = require("@sprucelabs/schema");
|
|
9
|
-
|
|
10
|
-
var convertPdfToSchemasResponsePayloadSchema = {
|
|
11
|
-
id: 'convertPdfToSchemasResponsePayload',
|
|
12
|
-
version: 'v2021_07_02',
|
|
13
|
-
namespace: 'Forms',
|
|
14
|
-
name: '',
|
|
15
|
-
fields: {
|
|
16
|
-
/** Schemas genenerated for PDF. */
|
|
17
|
-
'schemas': {
|
|
18
|
-
label: 'Schemas genenerated for PDF',
|
|
19
|
-
type: 'raw',
|
|
20
|
-
isRequired: true,
|
|
21
|
-
isArray: true,
|
|
22
|
-
options: {
|
|
23
|
-
valueType: "SpruceSchema.Schema"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
_schema.SchemaRegistry.getInstance().trackSchema(convertPdfToSchemasResponsePayloadSchema);
|
|
30
|
-
|
|
31
|
-
var _default = convertPdfToSchemasResponsePayloadSchema;
|
|
32
|
-
exports["default"] = _default;
|
|
33
|
-
//# sourceMappingURL=convertPdfToSchemasResponsePayload.schema.js.map
|
package/build/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasResponsePayload.schema.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/.spruce/schemas/forms/v2021_07_02/convertPdfToSchemasResponsePayload.schema.ts"],"names":["convertPdfToSchemasResponsePayloadSchema","id","version","namespace","name","fields","label","type","isRequired","isArray","options","valueType","SchemaRegistry","getInstance","trackSchema"],"mappings":";;;;;;;AAAA;;AAKA,IAAMA,wCAAkH,GAAI;AAC3HC,EAAAA,EAAE,EAAE,oCADuH;AAE3HC,EAAAA,OAAO,EAAE,aAFkH;AAG3HC,EAAAA,SAAS,EAAE,OAHgH;AAI3HC,EAAAA,IAAI,EAAE,EAJqH;AAKvHC,EAAAA,MAAM,EAAE;AACA;AACA,eAAW;AACPC,MAAAA,KAAK,EAAE,6BADA;AAEPC,MAAAA,IAAI,EAAE,KAFC;AAGPC,MAAAA,UAAU,EAAE,IAHL;AAIPC,MAAAA,OAAO,EAAE,IAJF;AAKPC,MAAAA,OAAO,EAAE;AAACC,QAAAA,SAAS;AAAV;AALF;AAFX;AAL+G,CAA5H;;AAiBAC,uBAAeC,WAAf,GAA6BC,WAA7B,CAAyCd,wCAAzC;;eAEeA,wC","sourcesContent":["import { SchemaRegistry } from '@sprucelabs/schema'\nimport { SpruceSchemas } from '../../schemas.types'\n\n\n\nconst convertPdfToSchemasResponsePayloadSchema: SpruceSchemas.Forms.v2021_07_02.ConvertPdfToSchemasResponsePayloadSchema = {\n\tid: 'convertPdfToSchemasResponsePayload',\n\tversion: 'v2021_07_02',\n\tnamespace: 'Forms',\n\tname: '',\n\t fields: {\n\t /** Schemas genenerated for PDF. */\n\t 'schemas': {\n\t label: 'Schemas genenerated for PDF',\n\t type: 'raw',\n\t isRequired: true,\n\t isArray: true,\n\t options: {valueType: `SpruceSchema.Schema`,}\n\t },\n\t }\n}\n\nSchemaRegistry.getInstance().trackSchema(convertPdfToSchemasResponsePayloadSchema)\n\nexport default convertPdfToSchemasResponsePayloadSchema\n"],"file":"convertPdfToSchemasResponsePayload.schema.js"}
|