All checks were successful
Co-authored-by: Jeffrey Smith <jasafpro@gmail.com> Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
51 lines
1.9 KiB
JavaScript
51 lines
1.9 KiB
JavaScript
/**
|
|
* SDK Test Runner — ICD Response Shapes
|
|
*
|
|
* Kernel-only shapes. Extension-specific shapes belong in package runners.
|
|
* Each shape is a map of field names to type strings. Types:
|
|
* string, number, bool, array, object, uuid
|
|
* string? / number? / object? = nullable/optional
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
var T = window.SDKR;
|
|
if (!T) return;
|
|
|
|
T.S = {};
|
|
|
|
// ── Kernel shapes ─────────────────────────────────────────
|
|
|
|
T.S.profile = {
|
|
id: 'string', username: 'string', email: 'string',
|
|
role: 'string?', settings: 'object', created_at: 'string'
|
|
};
|
|
T.S.notification = {
|
|
id: 'string', type: 'string', title: 'string',
|
|
read: 'bool', created_at: 'string'
|
|
};
|
|
T.S.surface = { id: 'string', title: 'string', source: 'string', enabled: 'bool' };
|
|
T.S.surfaceNav = { id: 'string', title: 'string', route: 'string' };
|
|
T.S.workflow = {
|
|
id: 'string', name: 'string', slug: 'string',
|
|
entry_mode: 'string', is_active: 'bool',
|
|
created_at: 'string', updated_at: 'string'
|
|
};
|
|
T.S.workflowStage = {
|
|
id: 'string', workflow_id: 'string', ordinal: 'number',
|
|
name: 'string', history_mode: 'string', created_at: 'string',
|
|
surface_pkg_id: 'string?'
|
|
};
|
|
T.S.team = { id: 'string', name: 'string', created_at: 'string?' };
|
|
T.S.teamMember = { user_id: 'string', role: 'string' };
|
|
T.S.group = { id: 'string', name: 'string' };
|
|
T.S.extension = {
|
|
id: 'string', title: 'string', type: 'string', version: 'string',
|
|
tier: 'string', enabled: 'bool', is_system: 'bool', scope: 'string',
|
|
source: 'string', installed_at: 'string', updated_at: 'string'
|
|
};
|
|
T.S.auditEntry = { id: 'string', action: 'string', created_at: 'string' };
|
|
T.S.adminUser = { id: 'string', username: 'string', role: 'string', created_at: 'string' };
|
|
T.S.loginResponse = { access_token: 'string', refresh_token: 'string' };
|
|
|
|
})();
|