@overmap-ai/core 1.0.78-bulk-identifier-value-support.0 → 1.0.78-bulk-issue-links.0
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/dist/constants/index.d.ts +1 -0
- package/dist/constants/workflows.d.ts +4 -0
- package/dist/enums/index.d.ts +1 -0
- package/dist/enums/workflows.d.ts +18 -0
- package/dist/overmap-core.js +9084 -6512
- package/dist/overmap-core.umd.cjs +7 -7
- package/dist/sdk/services/BaseOfflineFileModelApiService.d.ts +4 -4
- package/dist/sdk/services/DocumentAttachmentService.d.ts +2 -2
- package/dist/sdk/services/FormService.d.ts +4 -2
- package/dist/sdk/services/IssueAssociationService.d.ts +2 -1
- package/dist/sdk/services/IssueUpdateService.d.ts +32 -0
- package/dist/sdk/services/WorkflowIssueLinkService.d.ts +27 -0
- package/dist/sdk/services/WorkflowService.d.ts +28 -0
- package/dist/sdk/services/WorkflowStepAssigneeService.d.ts +29 -0
- package/dist/sdk/services/WorkflowStepCommentService.d.ts +28 -0
- package/dist/sdk/services/WorkflowStepDefaultAssigneeService.d.ts +27 -0
- package/dist/sdk/services/WorkflowStepDefaultReviewerService.d.ts +27 -0
- package/dist/sdk/services/WorkflowStepEventService.d.ts +24 -0
- package/dist/sdk/services/WorkflowStepFieldValuesAttachmentService.d.ts +31 -0
- package/dist/sdk/services/WorkflowStepFieldValuesReviewRequestService.d.ts +27 -0
- package/dist/sdk/services/WorkflowStepFieldValuesReviewService.d.ts +28 -0
- package/dist/sdk/services/WorkflowStepFieldValuesService.d.ts +28 -0
- package/dist/sdk/services/WorkflowStepFieldsAttachmentService.d.ts +30 -0
- package/dist/sdk/services/WorkflowStepFieldsService.d.ts +27 -0
- package/dist/sdk/services/WorkflowStepReviewerService.d.ts +29 -0
- package/dist/sdk/services/WorkflowStepService.d.ts +28 -0
- package/dist/sdk/services/WorkflowTypeService.d.ts +28 -0
- package/dist/sdk/services/index.d.ts +16 -0
- package/dist/sdk/typings.d.ts +3 -3
- package/dist/store/reducers.d.ts +48 -0
- package/dist/store/slices/assetProcedureSlice.d.ts +16 -0
- package/dist/store/slices/assetProcedureStepFieldValuesAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/assetProcedureStepFieldValuesSlice.d.ts +16 -0
- package/dist/store/slices/assetProcedureStepFieldsAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/assetProcedureStepFieldsSlice.d.ts +32 -0
- package/dist/store/slices/assetProcedureStepSlice.d.ts +16 -0
- package/dist/store/slices/assetProcedureTypeAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/assetProcedureTypeFieldValuesAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/assetProcedureTypeFieldValuesSlice.d.ts +16 -0
- package/dist/store/slices/assetProcedureTypeFieldsAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/assetSlice.d.ts +16 -0
- package/dist/store/slices/assetStageCompletionSlice.d.ts +16 -0
- package/dist/store/slices/assetStageSlice.d.ts +16 -0
- package/dist/store/slices/assetTypeFieldValuesAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/assetTypeFieldValuesSlice.d.ts +16 -0
- package/dist/store/slices/assetTypeFieldsAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/assetTypeFieldsSlice.d.ts +16 -0
- package/dist/store/slices/assetTypeStatusSlice.d.ts +16 -0
- package/dist/store/slices/emailDomainsSlice.d.ts +16 -0
- package/dist/store/slices/formRevisionAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/formRevisionSlice.d.ts +16 -0
- package/dist/store/slices/formSlice.d.ts +16 -0
- package/dist/store/slices/geoImageSlice.d.ts +16 -0
- package/dist/store/slices/index.d.ts +16 -0
- package/dist/store/slices/issueAssociationSlice.d.ts +16 -0
- package/dist/store/slices/issueTypeFieldValuesAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/issueTypeFieldValuesSlice.d.ts +16 -0
- package/dist/store/slices/issueTypeFieldsAttachmentSlice.d.ts +16 -0
- package/dist/store/slices/issueTypeFieldsSlice.d.ts +16 -0
- package/dist/store/slices/issueTypeStatusSlice.d.ts +16 -0
- package/dist/store/slices/issueUpdateSlice.d.ts +48 -0
- package/dist/store/slices/organizationSlice.d.ts +16 -0
- package/dist/store/slices/projectFileSlice.d.ts +16 -0
- package/dist/store/slices/projectSlice.d.ts +16 -0
- package/dist/store/slices/userSlice.d.ts +16 -0
- package/dist/store/slices/workflowIssueLinkSlice.d.ts +130 -0
- package/dist/store/slices/workflowSlice.d.ts +23 -0
- package/dist/store/slices/workflowStepAssigneeSlice.d.ts +129 -0
- package/dist/store/slices/workflowStepCommentSlice.d.ts +129 -0
- package/dist/store/slices/workflowStepDefaultAssigneeSlice.d.ts +127 -0
- package/dist/store/slices/workflowStepDefaultReviewerSlice.d.ts +127 -0
- package/dist/store/slices/workflowStepEventSlice.d.ts +129 -0
- package/dist/store/slices/workflowStepFieldValuesAttachmentSlice.d.ts +127 -0
- package/dist/store/slices/workflowStepFieldValuesReviewRequestSlice.d.ts +129 -0
- package/dist/store/slices/workflowStepFieldValuesReviewSlice.d.ts +130 -0
- package/dist/store/slices/workflowStepFieldValuesSlice.d.ts +130 -0
- package/dist/store/slices/workflowStepFieldsAttachmentSlice.d.ts +127 -0
- package/dist/store/slices/workflowStepFieldsSlice.d.ts +128 -0
- package/dist/store/slices/workflowStepReviewerSlice.d.ts +129 -0
- package/dist/store/slices/workflowStepSlice.d.ts +22 -0
- package/dist/store/slices/workflowTypeSlice.d.ts +22 -0
- package/dist/typings/files.d.ts +2 -6
- package/dist/typings/models/assets.d.ts +4 -4
- package/dist/typings/models/documents.d.ts +2 -2
- package/dist/typings/models/fields.d.ts +3 -3
- package/dist/typings/models/forms.d.ts +3 -2
- package/dist/typings/models/geoImages.d.ts +2 -2
- package/dist/typings/models/index.d.ts +1 -0
- package/dist/typings/models/issues.d.ts +4 -4
- package/dist/typings/models/projects.d.ts +3 -3
- package/dist/typings/models/workflows.d.ts +91 -0
- package/package.json +1 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.