@seamapi/types 1.644.0 → 1.645.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 +50 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +79 -0
- package/dist/index.cjs +50 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +65 -0
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
package/dist/connect.cjs
CHANGED
|
@@ -58089,6 +58089,56 @@ var openapi_default = {
|
|
|
58089
58089
|
"x-undocumented": "Mobile SDK only."
|
|
58090
58090
|
}
|
|
58091
58091
|
},
|
|
58092
|
+
"/seam/mobile_sdk/v1/report_salto_space_audit_trail": {
|
|
58093
|
+
post: {
|
|
58094
|
+
description: "Reports audit trail data from Salto Space mobile SDK.",
|
|
58095
|
+
operationId: "seamMobileSdkV1ReportSaltoSpaceAuditTrailPost",
|
|
58096
|
+
requestBody: {
|
|
58097
|
+
content: {
|
|
58098
|
+
"application/json": {
|
|
58099
|
+
schema: {
|
|
58100
|
+
properties: {
|
|
58101
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
58102
|
+
salto_space_metadata: {
|
|
58103
|
+
properties: {
|
|
58104
|
+
justin_mobile_sdk_audit_trail_data: { type: "string" }
|
|
58105
|
+
},
|
|
58106
|
+
required: ["justin_mobile_sdk_audit_trail_data"],
|
|
58107
|
+
type: "object"
|
|
58108
|
+
}
|
|
58109
|
+
},
|
|
58110
|
+
required: ["acs_system_id", "salto_space_metadata"],
|
|
58111
|
+
type: "object"
|
|
58112
|
+
}
|
|
58113
|
+
}
|
|
58114
|
+
}
|
|
58115
|
+
},
|
|
58116
|
+
responses: {
|
|
58117
|
+
200: {
|
|
58118
|
+
content: {
|
|
58119
|
+
"application/json": {
|
|
58120
|
+
schema: {
|
|
58121
|
+
properties: { ok: { type: "boolean" } },
|
|
58122
|
+
required: ["ok"],
|
|
58123
|
+
type: "object"
|
|
58124
|
+
}
|
|
58125
|
+
}
|
|
58126
|
+
},
|
|
58127
|
+
description: "OK"
|
|
58128
|
+
},
|
|
58129
|
+
400: { description: "Bad Request" },
|
|
58130
|
+
401: { description: "Unauthorized" }
|
|
58131
|
+
},
|
|
58132
|
+
security: [{ client_session: [] }],
|
|
58133
|
+
summary: "/seam/mobile_sdk/v1/report_salto_space_audit_trail",
|
|
58134
|
+
tags: [],
|
|
58135
|
+
"x-fern-sdk-group-name": ["seam", "mobile_sdk", "v1"],
|
|
58136
|
+
"x-fern-sdk-method-name": "report_salto_space_audit_trail",
|
|
58137
|
+
"x-response-key": null,
|
|
58138
|
+
"x-title": "Report Salto Space Audit Trail",
|
|
58139
|
+
"x-undocumented": "Mobile SDK only."
|
|
58140
|
+
}
|
|
58141
|
+
},
|
|
58092
58142
|
"/seam/partner/v1/building_blocks/spaces/auto_map": {
|
|
58093
58143
|
get: {
|
|
58094
58144
|
description: "Auto-maps partner resources that have been pushed to Seam.",
|