@seamapi/http 1.80.0 → 1.82.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/connect.cjs +16 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -3
- package/dist/index.cjs +16 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/routes/acs/systems/systems.d.ts +13 -0
- package/lib/seam/connect/routes/acs/systems/systems.js +9 -0
- package/lib/seam/connect/routes/acs/systems/systems.js.map +1 -1
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +4 -3
- package/lib/seam/connect/routes/seam-http-endpoints.js +7 -0
- package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/acs/systems/systems.ts +32 -0
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +19 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -3156,6 +3156,15 @@ var SeamHttpAcsSystems = class _SeamHttpAcsSystems {
|
|
|
3156
3156
|
options
|
|
3157
3157
|
});
|
|
3158
3158
|
}
|
|
3159
|
+
reportDevices(parameters, options = {}) {
|
|
3160
|
+
return new SeamHttpRequest(this, {
|
|
3161
|
+
pathname: "/acs/systems/report_devices",
|
|
3162
|
+
method: "POST",
|
|
3163
|
+
body: parameters,
|
|
3164
|
+
responseKey: void 0,
|
|
3165
|
+
options
|
|
3166
|
+
});
|
|
3167
|
+
}
|
|
3159
3168
|
};
|
|
3160
3169
|
|
|
3161
3170
|
// src/lib/seam/connect/routes/acs/users/unmanaged/unmanaged.ts
|
|
@@ -9899,6 +9908,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
|
|
|
9899
9908
|
return seam.listCompatibleCredentialManagerAcsSystems(...args);
|
|
9900
9909
|
};
|
|
9901
9910
|
}
|
|
9911
|
+
get "/acs/systems/report_devices"() {
|
|
9912
|
+
const { client, defaults } = this;
|
|
9913
|
+
return function acsSystemsReportDevices(...args) {
|
|
9914
|
+
const seam = SeamHttpAcsSystems.fromClient(client, defaults);
|
|
9915
|
+
return seam.reportDevices(...args);
|
|
9916
|
+
};
|
|
9917
|
+
}
|
|
9902
9918
|
get "/acs/users/add_to_access_group"() {
|
|
9903
9919
|
const { client, defaults } = this;
|
|
9904
9920
|
return function acsUsersAddToAccessGroup(...args) {
|