@examplary/sdk 2.5.0 → 2.6.0
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.mts +33 -0
- package/dist/index.d.ts +33 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -472,6 +472,10 @@ var Org = class {
|
|
|
472
472
|
const args = arg;
|
|
473
473
|
return request(this.ctx, "DELETE", "/org", [], [], false, args, options);
|
|
474
474
|
}
|
|
475
|
+
limits(arg, options) {
|
|
476
|
+
const args = arg;
|
|
477
|
+
return request(this.ctx, "GET", "/org/limits", [], [], false, args, options);
|
|
478
|
+
}
|
|
475
479
|
};
|
|
476
480
|
var Orgs = class {
|
|
477
481
|
constructor(ctx) {
|