@orchestrator-ui/orchestrator-ui-components 5.7.1 → 5.8.1
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/.turbo/turbo-build.log +7 -7
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +12 -12
- package/CHANGELOG.md +13 -0
- package/dist/index.d.ts +14 -5
- package/dist/index.js +463 -401
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/WfoBadges/WfoWorkflowTargetBadge/WfoWorkflowTargetBadge.tsx +7 -0
- package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +3 -1
- package/src/components/WfoPydanticForm/fields/WfoDropdown.tsx +2 -2
- package/src/components/WfoPydanticForm/fields/WfoInteger.tsx +11 -1
- package/src/components/WfoPydanticForm/fields/WfoMultiCheckboxField.tsx +2 -2
- package/src/components/WfoPydanticForm/fields/WfoRadio.tsx +2 -2
- package/src/components/WfoPydanticForm/fields/WfoReactSelect/WfoReactSelect.tsx +16 -14
- package/src/components/WfoPydanticForm/fields/WfoText.tsx +10 -2
- package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +109 -110
- package/src/components/WfoSubscription/utils/utils.ts +4 -0
- package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +12 -0
- package/src/configuration/policy-resources.ts +1 -0
- package/src/configuration/version.ts +1 -1
- package/src/messages/en-GB.json +5 -0
- package/src/messages/nl-NL.json +5 -0
- package/src/rtk/endpoints/metadata/workflows.ts +1 -1
- package/src/types/types.ts +2 -0
package/src/types/types.ts
CHANGED
|
@@ -145,6 +145,7 @@ export enum WorkflowTarget {
|
|
|
145
145
|
TERMINATE = 'terminate',
|
|
146
146
|
SYSTEM = 'system',
|
|
147
147
|
VALIDATE = 'validate',
|
|
148
|
+
RECONCILE = 'reconcile',
|
|
148
149
|
}
|
|
149
150
|
|
|
150
151
|
export type Process = {
|
|
@@ -621,6 +622,7 @@ export type SubscriptionActions = {
|
|
|
621
622
|
terminate: SubscriptionAction[];
|
|
622
623
|
system: SubscriptionAction[];
|
|
623
624
|
validate: SubscriptionAction[];
|
|
625
|
+
reconcile: SubscriptionAction[];
|
|
624
626
|
};
|
|
625
627
|
|
|
626
628
|
export enum CacheTagType {
|