@nuffieldtechnologies/rugged-schema-types 2.1.22 → 2.1.25
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/.eslintrc.js +18 -18
- package/README.md +0 -0
- package/dist/index.js +34 -34
- package/dist/index.js.map +1 -1
- package/dist/schemas/events.js +48 -48
- package/dist/schemas/events.js.map +0 -0
- package/dist/schemas/form.js +49 -49
- package/dist/schemas/form.js.map +0 -0
- package/dist/schemas/organisation.js +18 -18
- package/dist/schemas/organisation.js.map +0 -0
- package/dist/schemas/roles.js +21 -21
- package/dist/schemas/roles.js.map +0 -0
- package/dist/schemas/task-identifiers.js +15 -15
- package/dist/schemas/task-identifiers.js.map +0 -0
- package/dist/schemas/task-old.js +23 -23
- package/dist/schemas/task-old.js.map +0 -0
- package/dist/schemas/task.js +91 -75
- package/dist/schemas/task.js.map +1 -1
- package/dist/schemas/template-info.js +21 -21
- package/dist/schemas/template-info.js.map +0 -0
- package/dist/schemas/timestamps.js +23 -23
- package/dist/schemas/timestamps.js.map +0 -0
- package/dist/schemas/user.js +26 -26
- package/dist/schemas/user.js.map +0 -0
- package/index.ts +36 -36
- package/package.json +30 -30
- package/schemas/events.ts +48 -48
- package/schemas/form.ts +48 -48
- package/schemas/organisation.ts +16 -16
- package/schemas/roles.ts +19 -19
- package/schemas/task-identifiers.ts +12 -12
- package/schemas/task-old.ts +19 -19
- package/schemas/task.ts +93 -78
- package/schemas/template-info.ts +18 -18
- package/schemas/timestamps.ts +19 -19
- package/schemas/user.ts +25 -25
- package/tsconfig.json +11 -11
package/.eslintrc.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
parser: '@typescript-eslint/parser',
|
|
3
|
-
extends: [
|
|
4
|
-
'plugin:@typescript-eslint/recommended',
|
|
5
|
-
],
|
|
6
|
-
parserOptions: {
|
|
7
|
-
ecmaVersion: 2018,
|
|
8
|
-
sourceType: 'module',
|
|
9
|
-
},
|
|
10
|
-
rules: {
|
|
11
|
-
"@typescript-eslint/no-this-alias": 0,
|
|
12
|
-
"@typescript-eslint/no-explicit-any": 0,
|
|
13
|
-
"@typescript-eslint/explicit-function-return-type": 0,
|
|
14
|
-
'@typescript-eslint/array-type': [
|
|
15
|
-
'error',
|
|
16
|
-
{ default: 'generic' }
|
|
17
|
-
],
|
|
18
|
-
},
|
|
1
|
+
module.exports = {
|
|
2
|
+
parser: '@typescript-eslint/parser',
|
|
3
|
+
extends: [
|
|
4
|
+
'plugin:@typescript-eslint/recommended',
|
|
5
|
+
],
|
|
6
|
+
parserOptions: {
|
|
7
|
+
ecmaVersion: 2018,
|
|
8
|
+
sourceType: 'module',
|
|
9
|
+
},
|
|
10
|
+
rules: {
|
|
11
|
+
"@typescript-eslint/no-this-alias": 0,
|
|
12
|
+
"@typescript-eslint/no-explicit-any": 0,
|
|
13
|
+
"@typescript-eslint/explicit-function-return-type": 0,
|
|
14
|
+
'@typescript-eslint/array-type': [
|
|
15
|
+
'error',
|
|
16
|
+
{ default: 'generic' }
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
19
|
}
|
package/README.md
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.All = exports.AllOrganisationFields = exports.Organisations = exports.OrganisationInput = exports.Organisation = exports.AllFormFields = exports.Forms = exports.FormFilter = exports.FormInput = exports.Form = exports.AllRolesFields = exports.AllUserFields = exports.Users = exports.UserInput = exports.User = exports.AllTaskFields = exports.Tasks = exports.TaskFilter = exports.TaskInput = exports.Task = void 0;
|
|
4
|
-
const TimeStamps = require("./schemas/timestamps");
|
|
5
|
-
const Events = require("./schemas/events");
|
|
6
|
-
const TemplateInfo = require("./schemas/template-info");
|
|
7
|
-
const UserSchemas = require("./schemas/user");
|
|
8
|
-
const Roles = require("./schemas/roles");
|
|
9
|
-
const
|
|
10
|
-
const OrganisationSchemas = require("./schemas/organisation");
|
|
11
|
-
const TaskIdentifiers = require("./schemas/task-identifiers");
|
|
12
|
-
const TaskOldSchemas = require("./schemas/task-old");
|
|
13
|
-
const TaskSchemas = require("./schemas/task");
|
|
14
|
-
exports.Task = TimeStamps._TimeStamps + Events._Event + Events._Events + TemplateInfo._TemplateInfo + TaskSchemas._TaskInfo + TaskSchemas._Task + TaskIdentifiers._TaskIdentifiers;
|
|
15
|
-
exports.TaskInput = TimeStamps._TimeStampsInput + Events._EventInput + Events._EventsInput + TemplateInfo._TemplateInfoInput + TaskSchemas._TaskInfoInput + TaskSchemas._TaskInput + TaskIdentifiers._TaskIdentifiersInput;
|
|
16
|
-
exports.TaskFilter = TaskSchemas._TaskFilter;
|
|
17
|
-
exports.Tasks = exports.Task + exports.TaskInput + exports.TaskFilter + TaskOldSchemas._TaskOld;
|
|
18
|
-
exports.AllTaskFields = TaskSchemas._AllTaskFields;
|
|
19
|
-
exports.User = Roles._Roles + UserSchemas._User;
|
|
20
|
-
exports.UserInput = Roles._RolesInput + UserSchemas._UserInput;
|
|
21
|
-
exports.Users = exports.User + exports.UserInput;
|
|
22
|
-
exports.AllUserFields = UserSchemas._AllUserFields;
|
|
23
|
-
exports.AllRolesFields = Roles._AllRolesFields;
|
|
24
|
-
exports.Form =
|
|
25
|
-
exports.FormInput =
|
|
26
|
-
exports.FormFilter =
|
|
27
|
-
exports.Forms = exports.Form + exports.FormInput + exports.FormFilter;
|
|
28
|
-
exports.AllFormFields =
|
|
29
|
-
exports.Organisation = OrganisationSchemas._Organisation;
|
|
30
|
-
exports.OrganisationInput = OrganisationSchemas._OrganisationInput;
|
|
31
|
-
exports.Organisations = exports.Organisation + exports.OrganisationInput;
|
|
32
|
-
exports.AllOrganisationFields = OrganisationSchemas._AllOrganisationFields;
|
|
33
|
-
exports.All = exports.Tasks + exports.Users + exports.Forms + exports.Organisations;
|
|
34
|
-
exports.default = exports.All;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.All = exports.AllOrganisationFields = exports.Organisations = exports.OrganisationInput = exports.Organisation = exports.AllFormFields = exports.Forms = exports.FormFilter = exports.FormInput = exports.Form = exports.AllRolesFields = exports.AllUserFields = exports.Users = exports.UserInput = exports.User = exports.AllTaskFields = exports.Tasks = exports.TaskFilter = exports.TaskInput = exports.Task = void 0;
|
|
4
|
+
const TimeStamps = require("./schemas/timestamps");
|
|
5
|
+
const Events = require("./schemas/events");
|
|
6
|
+
const TemplateInfo = require("./schemas/template-info");
|
|
7
|
+
const UserSchemas = require("./schemas/user");
|
|
8
|
+
const Roles = require("./schemas/roles");
|
|
9
|
+
const FormSchemas = require("./schemas/form");
|
|
10
|
+
const OrganisationSchemas = require("./schemas/organisation");
|
|
11
|
+
const TaskIdentifiers = require("./schemas/task-identifiers");
|
|
12
|
+
const TaskOldSchemas = require("./schemas/task-old");
|
|
13
|
+
const TaskSchemas = require("./schemas/task");
|
|
14
|
+
exports.Task = TimeStamps._TimeStamps + Events._Event + Events._Events + TemplateInfo._TemplateInfo + TaskSchemas._TaskInfo + TaskSchemas._WorkflowInfo + TaskSchemas._Task + TaskIdentifiers._TaskIdentifiers;
|
|
15
|
+
exports.TaskInput = TimeStamps._TimeStampsInput + Events._EventInput + Events._EventsInput + TemplateInfo._TemplateInfoInput + TaskSchemas._TaskInfoInput + TaskSchemas._WorkflowInfoInput + TaskSchemas._TaskInput + TaskIdentifiers._TaskIdentifiersInput;
|
|
16
|
+
exports.TaskFilter = TaskSchemas._TaskFilter;
|
|
17
|
+
exports.Tasks = exports.Task + exports.TaskInput + exports.TaskFilter + TaskOldSchemas._TaskOld;
|
|
18
|
+
exports.AllTaskFields = TaskSchemas._AllTaskFields;
|
|
19
|
+
exports.User = Roles._Roles + UserSchemas._User;
|
|
20
|
+
exports.UserInput = Roles._RolesInput + UserSchemas._UserInput;
|
|
21
|
+
exports.Users = exports.User + exports.UserInput;
|
|
22
|
+
exports.AllUserFields = UserSchemas._AllUserFields;
|
|
23
|
+
exports.AllRolesFields = Roles._AllRolesFields;
|
|
24
|
+
exports.Form = FormSchemas._Form;
|
|
25
|
+
exports.FormInput = FormSchemas._FormInput;
|
|
26
|
+
exports.FormFilter = FormSchemas._FormFilter;
|
|
27
|
+
exports.Forms = exports.Form + exports.FormInput + exports.FormFilter;
|
|
28
|
+
exports.AllFormFields = FormSchemas._AllFormFields;
|
|
29
|
+
exports.Organisation = OrganisationSchemas._Organisation;
|
|
30
|
+
exports.OrganisationInput = OrganisationSchemas._OrganisationInput;
|
|
31
|
+
exports.Organisations = exports.Organisation + exports.OrganisationInput;
|
|
32
|
+
exports.AllOrganisationFields = OrganisationSchemas._AllOrganisationFields;
|
|
33
|
+
exports.All = exports.Tasks + exports.Users + exports.Forms + exports.Organisations;
|
|
34
|
+
exports.default = exports.All;
|
|
35
35
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,mDAAkD;AAClD,2CAA0C;AAC1C,wDAAuD;AACvD,8CAA6C;AAC7C,yCAAwC;AACxC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,mDAAkD;AAClD,2CAA0C;AAC1C,wDAAuD;AACvD,8CAA6C;AAC7C,yCAAwC;AACxC,8CAA6C;AAC7C,8DAA6D;AAC7D,8DAA6D;AAC7D,qDAAoD;AACpD,8CAA6C;AAEhC,QAAA,IAAI,GAAG,UAAU,CAAC,WAAW,GAAI,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,OAAO,GAAG,YAAY,CAAC,aAAa,GAAG,WAAW,CAAC,SAAS,GAAG,WAAW,CAAC,aAAa,GAAG,WAAW,CAAC,KAAK,GAAG,eAAe,CAAC,gBAAgB,CAAC;AACxM,QAAA,SAAS,GAAG,UAAU,CAAC,gBAAgB,GAAG,MAAM,CAAC,WAAW,GAAG,MAAM,CAAC,YAAY,GAAG,YAAY,CAAC,kBAAkB,GAAG,WAAW,CAAC,cAAc,GAAG,WAAW,CAAC,kBAAkB,GAAG,WAAW,CAAC,UAAU,GAAG,eAAe,CAAC,qBAAqB,CAAC;AACpP,QAAA,UAAU,GAAG,WAAW,CAAC,WAAW,CAAC;AACrC,QAAA,KAAK,GAAG,YAAI,GAAG,iBAAS,GAAG,kBAAU,GAAG,cAAc,CAAC,QAAQ,CAAC;AAChE,QAAA,aAAa,GAAG,WAAW,CAAC,cAAc,CAAC;AAE3C,QAAA,IAAI,GAAG,KAAK,CAAC,MAAM,GAAG,WAAW,CAAC,KAAK,CAAC;AACxC,QAAA,SAAS,GAAG,KAAK,CAAC,WAAW,GAAG,WAAW,CAAC,UAAU,CAAC;AACvD,QAAA,KAAK,GAAG,YAAI,GAAG,iBAAS,CAAC;AACzB,QAAA,aAAa,GAAG,WAAW,CAAC,cAAc,CAAC;AAC3C,QAAA,cAAc,GAAG,KAAK,CAAC,eAAe,CAAC;AAEvC,QAAA,IAAI,GAAG,WAAW,CAAC,KAAK,CAAC;AACzB,QAAA,SAAS,GAAG,WAAW,CAAC,UAAU,CAAC;AACnC,QAAA,UAAU,GAAG,WAAW,CAAC,WAAW,CAAC;AACrC,QAAA,KAAK,GAAG,YAAI,GAAG,iBAAS,GAAG,kBAAU,CAAC;AACtC,QAAA,aAAa,GAAG,WAAW,CAAC,cAAc,CAAC;AAE3C,QAAA,YAAY,GAAG,mBAAmB,CAAC,aAAa,CAAC;AACjD,QAAA,iBAAiB,GAAG,mBAAmB,CAAC,kBAAkB,CAAC;AAC3D,QAAA,aAAa,GAAG,oBAAY,GAAG,yBAAiB,CAAC;AACjD,QAAA,qBAAqB,GAAG,mBAAmB,CAAC,sBAAsB,CAAC;AAEnE,QAAA,GAAG,GAAG,aAAK,GAAG,aAAK,GAAG,aAAK,GAAG,qBAAa,CAAC;AACzD,kBAAe,WAAG,CAAC"}
|
package/dist/schemas/events.js
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports._AllEventFields = exports._EventsInput = exports._Events = exports._EventInput = exports._Event = void 0;
|
|
4
|
-
exports._Event = `
|
|
5
|
-
type Event {
|
|
6
|
-
appVersion: String,
|
|
7
|
-
at: Float,
|
|
8
|
-
atForHumans: String,
|
|
9
|
-
device: String,
|
|
10
|
-
deviceModel: String,
|
|
11
|
-
osVersion: String,
|
|
12
|
-
user: String,
|
|
13
|
-
userEmail: String
|
|
14
|
-
}
|
|
15
|
-
`;
|
|
16
|
-
exports._EventInput = `
|
|
17
|
-
input EventInput {
|
|
18
|
-
appVersion: String,
|
|
19
|
-
at: Float,
|
|
20
|
-
atForHumans: String,
|
|
21
|
-
device: String,
|
|
22
|
-
deviceModel: String,
|
|
23
|
-
osVersion: String,
|
|
24
|
-
user: String,
|
|
25
|
-
userEmail: String
|
|
26
|
-
}
|
|
27
|
-
`;
|
|
28
|
-
exports._Events = `
|
|
29
|
-
type Events {
|
|
30
|
-
started: Event,
|
|
31
|
-
updated: Event,
|
|
32
|
-
upgraded: Event,
|
|
33
|
-
processed: Event,
|
|
34
|
-
submitted: Event,
|
|
35
|
-
discarded: Event,
|
|
36
|
-
}
|
|
37
|
-
`;
|
|
38
|
-
exports._EventsInput = `
|
|
39
|
-
input EventsInput {
|
|
40
|
-
started: EventInput,
|
|
41
|
-
updated: EventInput,
|
|
42
|
-
upgraded: EventInput,
|
|
43
|
-
processed: EventInput,
|
|
44
|
-
submitted: EventInput,
|
|
45
|
-
discarded: EventInput,
|
|
46
|
-
}
|
|
47
|
-
`;
|
|
48
|
-
exports._AllEventFields = `{appVersion, at, atForHumans, device, deviceModel, osVersion, user, userEmail}`;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports._AllEventFields = exports._EventsInput = exports._Events = exports._EventInput = exports._Event = void 0;
|
|
4
|
+
exports._Event = `
|
|
5
|
+
type Event {
|
|
6
|
+
appVersion: String,
|
|
7
|
+
at: Float,
|
|
8
|
+
atForHumans: String,
|
|
9
|
+
device: String,
|
|
10
|
+
deviceModel: String,
|
|
11
|
+
osVersion: String,
|
|
12
|
+
user: String,
|
|
13
|
+
userEmail: String
|
|
14
|
+
}
|
|
15
|
+
`;
|
|
16
|
+
exports._EventInput = `
|
|
17
|
+
input EventInput {
|
|
18
|
+
appVersion: String,
|
|
19
|
+
at: Float,
|
|
20
|
+
atForHumans: String,
|
|
21
|
+
device: String,
|
|
22
|
+
deviceModel: String,
|
|
23
|
+
osVersion: String,
|
|
24
|
+
user: String,
|
|
25
|
+
userEmail: String
|
|
26
|
+
}
|
|
27
|
+
`;
|
|
28
|
+
exports._Events = `
|
|
29
|
+
type Events {
|
|
30
|
+
started: Event,
|
|
31
|
+
updated: Event,
|
|
32
|
+
upgraded: Event,
|
|
33
|
+
processed: Event,
|
|
34
|
+
submitted: Event,
|
|
35
|
+
discarded: Event,
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
38
|
+
exports._EventsInput = `
|
|
39
|
+
input EventsInput {
|
|
40
|
+
started: EventInput,
|
|
41
|
+
updated: EventInput,
|
|
42
|
+
upgraded: EventInput,
|
|
43
|
+
processed: EventInput,
|
|
44
|
+
submitted: EventInput,
|
|
45
|
+
discarded: EventInput,
|
|
46
|
+
}
|
|
47
|
+
`;
|
|
48
|
+
exports._AllEventFields = `{appVersion, at, atForHumans, device, deviceModel, osVersion, user, userEmail}`;
|
|
49
49
|
//# sourceMappingURL=events.js.map
|
|
File without changes
|
package/dist/schemas/form.js
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports._AllFormFields = exports._FormFilter = exports._Form = exports._FormInput = void 0;
|
|
4
|
-
exports._FormInput = `
|
|
5
|
-
|
|
6
|
-
input ParamInput {
|
|
7
|
-
name: String
|
|
8
|
-
value: String
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
input FormInput {
|
|
12
|
-
id: ID
|
|
13
|
-
name: String
|
|
14
|
-
key: String
|
|
15
|
-
definition: String
|
|
16
|
-
version: String
|
|
17
|
-
status: String
|
|
18
|
-
updated: String
|
|
19
|
-
params: [ParamInput]
|
|
20
|
-
resources: String
|
|
21
|
-
body: String
|
|
22
|
-
}
|
|
23
|
-
`;
|
|
24
|
-
exports._Form = `
|
|
25
|
-
|
|
26
|
-
type Param {
|
|
27
|
-
name: String
|
|
28
|
-
value: String
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
type Form {
|
|
32
|
-
id: ID
|
|
33
|
-
name: String
|
|
34
|
-
key: String
|
|
35
|
-
definition: String
|
|
36
|
-
version: String
|
|
37
|
-
status: String
|
|
38
|
-
updated: String
|
|
39
|
-
params: [Param]
|
|
40
|
-
resources: String
|
|
41
|
-
body: String
|
|
42
|
-
}
|
|
43
|
-
`;
|
|
44
|
-
exports._FormFilter = `
|
|
45
|
-
input FormFilter {
|
|
46
|
-
status: String
|
|
47
|
-
}
|
|
48
|
-
`;
|
|
49
|
-
exports._AllFormFields = `{id, name, key, definition, status, updated, params {name, value}, resources, body}`;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports._AllFormFields = exports._FormFilter = exports._Form = exports._FormInput = void 0;
|
|
4
|
+
exports._FormInput = `
|
|
5
|
+
|
|
6
|
+
input ParamInput {
|
|
7
|
+
name: String
|
|
8
|
+
value: String
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
input FormInput {
|
|
12
|
+
id: ID
|
|
13
|
+
name: String
|
|
14
|
+
key: String
|
|
15
|
+
definition: String
|
|
16
|
+
version: String
|
|
17
|
+
status: String
|
|
18
|
+
updated: String
|
|
19
|
+
params: [ParamInput]
|
|
20
|
+
resources: String
|
|
21
|
+
body: String
|
|
22
|
+
}
|
|
23
|
+
`;
|
|
24
|
+
exports._Form = `
|
|
25
|
+
|
|
26
|
+
type Param {
|
|
27
|
+
name: String
|
|
28
|
+
value: String
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
type Form {
|
|
32
|
+
id: ID
|
|
33
|
+
name: String
|
|
34
|
+
key: String
|
|
35
|
+
definition: String
|
|
36
|
+
version: String
|
|
37
|
+
status: String
|
|
38
|
+
updated: String
|
|
39
|
+
params: [Param]
|
|
40
|
+
resources: String
|
|
41
|
+
body: String
|
|
42
|
+
}
|
|
43
|
+
`;
|
|
44
|
+
exports._FormFilter = `
|
|
45
|
+
input FormFilter {
|
|
46
|
+
status: String
|
|
47
|
+
}
|
|
48
|
+
`;
|
|
49
|
+
exports._AllFormFields = `{id, name, key, definition, status, updated, params {name, value}, resources, body}`;
|
|
50
50
|
//# sourceMappingURL=form.js.map
|
package/dist/schemas/form.js.map
CHANGED
|
File without changes
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports._AllOrganisationFields = exports._Organisation = exports._OrganisationInput = void 0;
|
|
4
|
-
exports._OrganisationInput = `
|
|
5
|
-
input OrganisationInput {
|
|
6
|
-
id: ID
|
|
7
|
-
name: String
|
|
8
|
-
logoUrl: String
|
|
9
|
-
}
|
|
10
|
-
`;
|
|
11
|
-
exports._Organisation = `
|
|
12
|
-
type Organisation {
|
|
13
|
-
id: ID
|
|
14
|
-
name: String
|
|
15
|
-
logoUrl: String
|
|
16
|
-
}
|
|
17
|
-
`;
|
|
18
|
-
exports._AllOrganisationFields = `{id, name, logoUrl}`;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports._AllOrganisationFields = exports._Organisation = exports._OrganisationInput = void 0;
|
|
4
|
+
exports._OrganisationInput = `
|
|
5
|
+
input OrganisationInput {
|
|
6
|
+
id: ID
|
|
7
|
+
name: String
|
|
8
|
+
logoUrl: String
|
|
9
|
+
}
|
|
10
|
+
`;
|
|
11
|
+
exports._Organisation = `
|
|
12
|
+
type Organisation {
|
|
13
|
+
id: ID
|
|
14
|
+
name: String
|
|
15
|
+
logoUrl: String
|
|
16
|
+
}
|
|
17
|
+
`;
|
|
18
|
+
exports._AllOrganisationFields = `{id, name, logoUrl}`;
|
|
19
19
|
//# sourceMappingURL=organisation.js.map
|
|
File without changes
|
package/dist/schemas/roles.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports._AllRolesFields = exports._RolesInput = exports._Roles = void 0;
|
|
4
|
-
exports._Roles = `
|
|
5
|
-
type Roles {
|
|
6
|
-
user: Boolean
|
|
7
|
-
admin: Boolean
|
|
8
|
-
api: Boolean
|
|
9
|
-
uber: Boolean
|
|
10
|
-
super: Boolean
|
|
11
|
-
legacyPush: Boolean
|
|
12
|
-
}
|
|
13
|
-
`;
|
|
14
|
-
exports._RolesInput = `
|
|
15
|
-
input RolesInput {
|
|
16
|
-
user: Boolean
|
|
17
|
-
admin: Boolean
|
|
18
|
-
api: Boolean
|
|
19
|
-
}
|
|
20
|
-
`;
|
|
21
|
-
exports._AllRolesFields = `{user, admin, api, uber, super, legacyPush}`;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports._AllRolesFields = exports._RolesInput = exports._Roles = void 0;
|
|
4
|
+
exports._Roles = `
|
|
5
|
+
type Roles {
|
|
6
|
+
user: Boolean
|
|
7
|
+
admin: Boolean
|
|
8
|
+
api: Boolean
|
|
9
|
+
uber: Boolean
|
|
10
|
+
super: Boolean
|
|
11
|
+
legacyPush: Boolean
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
exports._RolesInput = `
|
|
15
|
+
input RolesInput {
|
|
16
|
+
user: Boolean
|
|
17
|
+
admin: Boolean
|
|
18
|
+
api: Boolean
|
|
19
|
+
}
|
|
20
|
+
`;
|
|
21
|
+
exports._AllRolesFields = `{user, admin, api, uber, super, legacyPush}`;
|
|
22
22
|
//# sourceMappingURL=roles.js.map
|
|
File without changes
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports._TaskIdentifiersInput = exports._TaskIdentifiers = void 0;
|
|
4
|
-
exports._TaskIdentifiers = `
|
|
5
|
-
type TaskIdentifiers {
|
|
6
|
-
primary: String
|
|
7
|
-
secondary: String
|
|
8
|
-
}
|
|
9
|
-
`;
|
|
10
|
-
exports._TaskIdentifiersInput = `
|
|
11
|
-
input TaskIdentifiersInput {
|
|
12
|
-
primary: String
|
|
13
|
-
secondary: String
|
|
14
|
-
}
|
|
15
|
-
`;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports._TaskIdentifiersInput = exports._TaskIdentifiers = void 0;
|
|
4
|
+
exports._TaskIdentifiers = `
|
|
5
|
+
type TaskIdentifiers {
|
|
6
|
+
primary: String
|
|
7
|
+
secondary: String
|
|
8
|
+
}
|
|
9
|
+
`;
|
|
10
|
+
exports._TaskIdentifiersInput = `
|
|
11
|
+
input TaskIdentifiersInput {
|
|
12
|
+
primary: String
|
|
13
|
+
secondary: String
|
|
14
|
+
}
|
|
15
|
+
`;
|
|
16
16
|
//# sourceMappingURL=task-identifiers.js.map
|
|
File without changes
|
package/dist/schemas/task-old.js
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports._TaskOld = void 0;
|
|
4
|
-
exports._TaskOld = `
|
|
5
|
-
type TaskOld {
|
|
6
|
-
id: ID,
|
|
7
|
-
name: String
|
|
8
|
-
definition: String
|
|
9
|
-
user: ID
|
|
10
|
-
userEmail: String
|
|
11
|
-
form: ID
|
|
12
|
-
organisation: ID
|
|
13
|
-
timestamps: TimeStamps
|
|
14
|
-
events: Events
|
|
15
|
-
template: TemplateInfo
|
|
16
|
-
identifiers: TaskIdentifiers
|
|
17
|
-
status: String
|
|
18
|
-
fails: [String]
|
|
19
|
-
reportUrl: String
|
|
20
|
-
data: String
|
|
21
|
-
refNo: String
|
|
22
|
-
}
|
|
23
|
-
`;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports._TaskOld = void 0;
|
|
4
|
+
exports._TaskOld = `
|
|
5
|
+
type TaskOld {
|
|
6
|
+
id: ID,
|
|
7
|
+
name: String
|
|
8
|
+
definition: String
|
|
9
|
+
user: ID
|
|
10
|
+
userEmail: String
|
|
11
|
+
form: ID
|
|
12
|
+
organisation: ID
|
|
13
|
+
timestamps: TimeStamps
|
|
14
|
+
events: Events
|
|
15
|
+
template: TemplateInfo
|
|
16
|
+
identifiers: TaskIdentifiers
|
|
17
|
+
status: String
|
|
18
|
+
fails: [String]
|
|
19
|
+
reportUrl: String
|
|
20
|
+
data: String
|
|
21
|
+
refNo: String
|
|
22
|
+
}
|
|
23
|
+
`;
|
|
24
24
|
//# sourceMappingURL=task-old.js.map
|
|
File without changes
|