@base-framework/base 3.7.58 → 3.7.59

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.
@@ -144,6 +144,16 @@ export class ModelService {
144
144
  * @returns {XMLHttpRequest}
145
145
  */
146
146
  delete(instanceParams?: string, callBack?: Function): XMLHttpRequest;
147
+ /**
148
+ * This will get all parameters for the model.
149
+ *
150
+ * @param {number|null} offset
151
+ * @param {number|null} limit
152
+ * @param {string|null} lastCursor
153
+ * @param {string|null} since
154
+ * @returns {string}
155
+ */
156
+ getAllParams(offset: number | null, limit: number | null, lastCursor: string | null, since: string | null): string;
147
157
  /**
148
158
  * This will list rows of the model.
149
159
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.7.58",
3
+ "version": "3.7.59",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",