@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
|
@@ -60557,6 +60557,20 @@ export type Routes = {
|
|
|
60557
60557
|
};
|
|
60558
60558
|
};
|
|
60559
60559
|
};
|
|
60560
|
+
'/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
|
|
60561
|
+
route: '/seam/mobile_sdk/v1/report_salto_space_audit_trail';
|
|
60562
|
+
method: 'POST';
|
|
60563
|
+
queryParams: {};
|
|
60564
|
+
jsonBody: {
|
|
60565
|
+
acs_system_id: string;
|
|
60566
|
+
salto_space_metadata: {
|
|
60567
|
+
justin_mobile_sdk_audit_trail_data: string;
|
|
60568
|
+
};
|
|
60569
|
+
};
|
|
60570
|
+
commonParams: {};
|
|
60571
|
+
formData: {};
|
|
60572
|
+
jsonResponse: {};
|
|
60573
|
+
};
|
|
60560
60574
|
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
60561
60575
|
route: '/seam/partner/v1/building_blocks/spaces/auto_map';
|
|
60562
60576
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -56515,6 +56515,56 @@ export default {
|
|
|
56515
56515
|
'x-undocumented': 'Mobile SDK only.',
|
|
56516
56516
|
},
|
|
56517
56517
|
},
|
|
56518
|
+
'/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
|
|
56519
|
+
post: {
|
|
56520
|
+
description: 'Reports audit trail data from Salto Space mobile SDK.',
|
|
56521
|
+
operationId: 'seamMobileSdkV1ReportSaltoSpaceAuditTrailPost',
|
|
56522
|
+
requestBody: {
|
|
56523
|
+
content: {
|
|
56524
|
+
'application/json': {
|
|
56525
|
+
schema: {
|
|
56526
|
+
properties: {
|
|
56527
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
56528
|
+
salto_space_metadata: {
|
|
56529
|
+
properties: {
|
|
56530
|
+
justin_mobile_sdk_audit_trail_data: { type: 'string' },
|
|
56531
|
+
},
|
|
56532
|
+
required: ['justin_mobile_sdk_audit_trail_data'],
|
|
56533
|
+
type: 'object',
|
|
56534
|
+
},
|
|
56535
|
+
},
|
|
56536
|
+
required: ['acs_system_id', 'salto_space_metadata'],
|
|
56537
|
+
type: 'object',
|
|
56538
|
+
},
|
|
56539
|
+
},
|
|
56540
|
+
},
|
|
56541
|
+
},
|
|
56542
|
+
responses: {
|
|
56543
|
+
200: {
|
|
56544
|
+
content: {
|
|
56545
|
+
'application/json': {
|
|
56546
|
+
schema: {
|
|
56547
|
+
properties: { ok: { type: 'boolean' } },
|
|
56548
|
+
required: ['ok'],
|
|
56549
|
+
type: 'object',
|
|
56550
|
+
},
|
|
56551
|
+
},
|
|
56552
|
+
},
|
|
56553
|
+
description: 'OK',
|
|
56554
|
+
},
|
|
56555
|
+
400: { description: 'Bad Request' },
|
|
56556
|
+
401: { description: 'Unauthorized' },
|
|
56557
|
+
},
|
|
56558
|
+
security: [{ client_session: [] }],
|
|
56559
|
+
summary: '/seam/mobile_sdk/v1/report_salto_space_audit_trail',
|
|
56560
|
+
tags: [],
|
|
56561
|
+
'x-fern-sdk-group-name': ['seam', 'mobile_sdk', 'v1'],
|
|
56562
|
+
'x-fern-sdk-method-name': 'report_salto_space_audit_trail',
|
|
56563
|
+
'x-response-key': null,
|
|
56564
|
+
'x-title': 'Report Salto Space Audit Trail',
|
|
56565
|
+
'x-undocumented': 'Mobile SDK only.',
|
|
56566
|
+
},
|
|
56567
|
+
},
|
|
56518
56568
|
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
56519
56569
|
get: {
|
|
56520
56570
|
description:
|
|
@@ -72048,6 +72048,20 @@ export type Routes = {
|
|
|
72048
72048
|
}
|
|
72049
72049
|
}
|
|
72050
72050
|
}
|
|
72051
|
+
'/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
|
|
72052
|
+
route: '/seam/mobile_sdk/v1/report_salto_space_audit_trail'
|
|
72053
|
+
method: 'POST'
|
|
72054
|
+
queryParams: {}
|
|
72055
|
+
jsonBody: {
|
|
72056
|
+
acs_system_id: string
|
|
72057
|
+
salto_space_metadata: {
|
|
72058
|
+
justin_mobile_sdk_audit_trail_data: string
|
|
72059
|
+
}
|
|
72060
|
+
}
|
|
72061
|
+
commonParams: {}
|
|
72062
|
+
formData: {}
|
|
72063
|
+
jsonResponse: {}
|
|
72064
|
+
}
|
|
72051
72065
|
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
72052
72066
|
route: '/seam/partner/v1/building_blocks/spaces/auto_map'
|
|
72053
72067
|
method: 'GET' | 'POST'
|