@szjy/workflow 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@ export type UserJSON = {
3
3
  userIdType: string;
4
4
  userId: string;
5
5
  outputTaskDefKey: string;
6
+ formFieldId?: string;
6
7
  };
7
8
  export type JobTitleJSON = {
8
9
  titleListType: string;
@@ -1,6 +1,7 @@
1
1
  export declare const SLOT_NAMES: {
2
2
  readonly TOOLBAR_PREFIX: "TOOLBAR_PREFIX";
3
3
  readonly USER_CHOOSER_SUFFIX: "USER_CHOOSER_SUFFIX";
4
+ readonly FORMID_CHOOSER_SUFFIX: "FORMID_CHOOSER_SUFFIX";
4
5
  };
5
6
  type SlotNames = keyof typeof SLOT_NAMES;
6
7
  export declare const slotKeyName: (name: SlotNames) => string;
@@ -1,3 +1,4 @@
1
1
  export declare function isUndefined(value: any): value is undefined;
2
2
  export declare function isJsonString(str?: string): str is string;
3
3
  export declare function tryNormalizeJsonString(str?: string): string;
4
+ export declare function generateRandomId(min: number, max: number): number;