braid-ui 1.0.150 → 1.0.151

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/index.d.cts CHANGED
@@ -291,10 +291,10 @@ interface CreateVelocityLimitFormData {
291
291
  associatedEntityType: string;
292
292
  associatedEntityId: string;
293
293
  transactionFilterType: string;
294
- transactionType: string;
295
- transactionGroup: string;
294
+ transactionTypes: string[];
295
+ transactionGroups: string[];
296
296
  aggregationLevel: string;
297
- [key: string]: string;
297
+ [key: string]: any;
298
298
  }
299
299
  interface CreateVelocityLimitViewProps {
300
300
  limitType: LimitType;
@@ -302,6 +302,7 @@ interface CreateVelocityLimitViewProps {
302
302
  isLoading?: boolean;
303
303
  onLimitTypeChange: (value: LimitType) => void;
304
304
  onFieldChange: (field: string, value: string) => void;
305
+ onMultiFieldChange: (field: string, value: string[]) => void;
305
306
  onSubmit: (e: React.FormEvent) => void;
306
307
  onCancel: () => void;
307
308
  limitTypeOptions: SelectOption$7[];
@@ -319,7 +320,7 @@ interface CreateVelocityLimitViewProps {
319
320
  onRemoveRestrictedEntity: (index: number) => void;
320
321
  onRestrictedEntityChange: (index: number, field: keyof RestrictedEntity, value: string) => void;
321
322
  }
322
- declare function CreateVelocityLimitView({ limitType, formData, isLoading, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, productIdOptions, programIdOptions, restrictedEntities, onAddRestrictedEntity, onRemoveRestrictedEntity, onRestrictedEntityChange, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
323
+ declare function CreateVelocityLimitView({ limitType, formData, isLoading, onLimitTypeChange, onFieldChange, onMultiFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, productIdOptions, programIdOptions, restrictedEntities, onAddRestrictedEntity, onRemoveRestrictedEntity, onRestrictedEntityChange, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
323
324
 
324
325
  interface BusinessFilters$1 {
325
326
  businessId: string;
package/dist/index.d.ts CHANGED
@@ -291,10 +291,10 @@ interface CreateVelocityLimitFormData {
291
291
  associatedEntityType: string;
292
292
  associatedEntityId: string;
293
293
  transactionFilterType: string;
294
- transactionType: string;
295
- transactionGroup: string;
294
+ transactionTypes: string[];
295
+ transactionGroups: string[];
296
296
  aggregationLevel: string;
297
- [key: string]: string;
297
+ [key: string]: any;
298
298
  }
299
299
  interface CreateVelocityLimitViewProps {
300
300
  limitType: LimitType;
@@ -302,6 +302,7 @@ interface CreateVelocityLimitViewProps {
302
302
  isLoading?: boolean;
303
303
  onLimitTypeChange: (value: LimitType) => void;
304
304
  onFieldChange: (field: string, value: string) => void;
305
+ onMultiFieldChange: (field: string, value: string[]) => void;
305
306
  onSubmit: (e: React.FormEvent) => void;
306
307
  onCancel: () => void;
307
308
  limitTypeOptions: SelectOption$7[];
@@ -319,7 +320,7 @@ interface CreateVelocityLimitViewProps {
319
320
  onRemoveRestrictedEntity: (index: number) => void;
320
321
  onRestrictedEntityChange: (index: number, field: keyof RestrictedEntity, value: string) => void;
321
322
  }
322
- declare function CreateVelocityLimitView({ limitType, formData, isLoading, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, productIdOptions, programIdOptions, restrictedEntities, onAddRestrictedEntity, onRemoveRestrictedEntity, onRestrictedEntityChange, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
323
+ declare function CreateVelocityLimitView({ limitType, formData, isLoading, onLimitTypeChange, onFieldChange, onMultiFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, productIdOptions, programIdOptions, restrictedEntities, onAddRestrictedEntity, onRemoveRestrictedEntity, onRestrictedEntityChange, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
323
324
 
324
325
  interface BusinessFilters$1 {
325
326
  businessId: string;