@elliemae/pui-scripting-object 1.31.2 → 1.31.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.
@@ -75,24 +75,69 @@ export type OpenOptions = {
75
75
  * size of the modal
76
76
  */
77
77
  export declare enum ModalSize {
78
+ /**
79
+ * small modal
80
+ */
78
81
  SMALL = "sm",
82
+ /**
83
+ * medium modal
84
+ */
79
85
  MEDIUM = "md",
86
+ /**
87
+ * large modal
88
+ */
80
89
  LARGE = "lg"
81
90
  }
91
+ /**
92
+ * modal options
93
+ */
82
94
  export type OpenModalOptions = {
95
+ /**
96
+ * target item
97
+ */
83
98
  target: string;
99
+ /**
100
+ * name
101
+ */
84
102
  name: string;
103
+ /**
104
+ * type of the modal
105
+ */
85
106
  type?: string;
107
+ /**
108
+ * size of the modal
109
+ */
86
110
  size: ModalSize;
87
111
  };
112
+ /**
113
+ * capabilities exposed by the application
114
+ */
88
115
  export type Capabilities = {
116
+ /**
117
+ * supported actions
118
+ */
89
119
  supportedActions: Array<string>;
120
+ /**
121
+ * supported features
122
+ */
90
123
  supportedFeatures: Array<string>;
91
124
  };
92
125
  export type Route = {
126
+ /**
127
+ * url of the route
128
+ */
93
129
  url: string;
130
+ /**
131
+ * route type
132
+ */
94
133
  type: NavigationType;
134
+ /**
135
+ * name of the route
136
+ */
95
137
  name: string;
138
+ /**
139
+ * id of the route
140
+ */
96
141
  id: string;
97
142
  };
98
143
  export type Environment = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-scripting-object",
3
- "version": "1.31.2",
3
+ "version": "1.31.3",
4
4
  "description": "Typescript defintions for Scripting Objects",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/cjs/index.js",