@constructive-sdk/cli 0.14.0 → 0.14.1
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/admin/cli/commands/app-membership.js +22 -0
- package/admin/cli/commands/membership-type.js +44 -0
- package/{auth/cli/commands/connected-account.d.ts → admin/cli/commands/org-member-profile.d.ts} +1 -1
- package/admin/cli/commands/org-member-profile.js +392 -0
- package/admin/cli/commands/org-membership.js +44 -0
- package/admin/cli/commands.js +7 -5
- package/admin/cli/executor.d.ts +3 -2
- package/admin/orm/index.d.ts +6 -4
- package/admin/orm/index.js +6 -4
- package/admin/orm/input-types.d.ts +503 -295
- package/admin/orm/models/index.d.ts +3 -2
- package/admin/orm/models/index.js +7 -5
- package/admin/orm/models/orgMemberProfile.d.ts +56 -0
- package/{auth/orm/models/connectedAccount.js → admin/orm/models/orgMemberProfile.js} +26 -26
- package/{esm/auth/cli/commands/one-time-token.d.ts → auth/cli/commands/create-api-key.d.ts} +1 -1
- package/{public/cli/commands/one-time-token.js → auth/cli/commands/create-api-key.js} +3 -3
- package/auth/cli/commands/disconnect-account.d.ts +8 -0
- package/auth/cli/commands/{sign-in-one-time-token.js → disconnect-account.js} +3 -3
- package/auth/cli/commands/provision-new-user.d.ts +8 -0
- package/{public/cli/commands/sign-in-one-time-token.js → auth/cli/commands/provision-new-user.js} +3 -3
- package/auth/cli/commands/request-cross-origin-token.d.ts +8 -0
- package/auth/cli/commands/request-cross-origin-token.js +36 -0
- package/auth/cli/commands/require-step-up.d.ts +8 -0
- package/auth/cli/commands/require-step-up.js +30 -0
- package/auth/cli/commands/{one-time-token.d.ts → revoke-api-key.d.ts} +1 -1
- package/auth/cli/commands/{one-time-token.js → revoke-api-key.js} +3 -3
- package/auth/cli/commands/revoke-session.d.ts +8 -0
- package/auth/cli/commands/revoke-session.js +36 -0
- package/auth/cli/commands/sign-in-cross-origin.d.ts +8 -0
- package/auth/cli/commands/sign-in-cross-origin.js +36 -0
- package/auth/cli/commands/user-connected-account.d.ts +8 -0
- package/auth/cli/commands/user-connected-account.js +176 -0
- package/auth/cli/commands.js +23 -11
- package/auth/cli/executor.d.ts +44 -14
- package/auth/orm/index.d.ts +45 -15
- package/auth/orm/index.js +2 -2
- package/auth/orm/input-types.d.ts +186 -251
- package/auth/orm/input-types.js +0 -1
- package/auth/orm/models/index.d.ts +1 -1
- package/auth/orm/models/index.js +3 -3
- package/auth/orm/models/userConnectedAccount.d.ts +38 -0
- package/auth/orm/models/userConnectedAccount.js +76 -0
- package/auth/orm/mutation/index.d.ts +56 -16
- package/auth/orm/mutation/index.js +78 -18
- package/auth/orm/query/index.d.ts +12 -4
- package/auth/orm/query/index.js +19 -7
- package/esm/admin/cli/commands/app-membership.js +22 -0
- package/esm/admin/cli/commands/membership-type.js +44 -0
- package/esm/{public/cli/commands/connected-account.d.ts → admin/cli/commands/org-member-profile.d.ts} +1 -1
- package/esm/admin/cli/commands/org-member-profile.js +390 -0
- package/esm/admin/cli/commands/org-membership.js +44 -0
- package/esm/admin/cli/commands.js +7 -5
- package/esm/admin/cli/executor.d.ts +3 -2
- package/esm/admin/orm/index.d.ts +6 -4
- package/esm/admin/orm/index.js +6 -4
- package/esm/admin/orm/input-types.d.ts +503 -295
- package/esm/admin/orm/models/index.d.ts +3 -2
- package/esm/admin/orm/models/index.js +3 -2
- package/esm/admin/orm/models/orgMemberProfile.d.ts +56 -0
- package/esm/{public/orm/models/connectedAccount.js → admin/orm/models/orgMemberProfile.js} +24 -24
- package/esm/auth/cli/commands/create-api-key.d.ts +8 -0
- package/esm/{public/cli/commands/one-time-token.js → auth/cli/commands/create-api-key.js} +3 -3
- package/esm/auth/cli/commands/disconnect-account.d.ts +8 -0
- package/esm/auth/cli/commands/{sign-in-one-time-token.js → disconnect-account.js} +3 -3
- package/esm/auth/cli/commands/provision-new-user.d.ts +8 -0
- package/esm/{public/cli/commands/sign-in-one-time-token.js → auth/cli/commands/provision-new-user.js} +3 -3
- package/esm/auth/cli/commands/request-cross-origin-token.d.ts +8 -0
- package/esm/auth/cli/commands/request-cross-origin-token.js +34 -0
- package/esm/auth/cli/commands/require-step-up.d.ts +8 -0
- package/esm/auth/cli/commands/require-step-up.js +28 -0
- package/esm/auth/cli/commands/revoke-api-key.d.ts +8 -0
- package/esm/auth/cli/commands/{one-time-token.js → revoke-api-key.js} +3 -3
- package/esm/auth/cli/commands/revoke-session.d.ts +8 -0
- package/esm/auth/cli/commands/revoke-session.js +34 -0
- package/esm/auth/cli/commands/sign-in-cross-origin.d.ts +8 -0
- package/esm/auth/cli/commands/sign-in-cross-origin.js +34 -0
- package/esm/auth/cli/commands/user-connected-account.d.ts +8 -0
- package/esm/auth/cli/commands/user-connected-account.js +174 -0
- package/esm/auth/cli/commands.js +23 -11
- package/esm/auth/cli/executor.d.ts +44 -14
- package/esm/auth/orm/index.d.ts +45 -15
- package/esm/auth/orm/index.js +2 -2
- package/esm/auth/orm/input-types.d.ts +186 -251
- package/esm/auth/orm/input-types.js +0 -1
- package/esm/auth/orm/models/index.d.ts +1 -1
- package/esm/auth/orm/models/index.js +1 -1
- package/esm/auth/orm/models/userConnectedAccount.d.ts +38 -0
- package/esm/auth/orm/models/userConnectedAccount.js +72 -0
- package/esm/auth/orm/mutation/index.d.ts +56 -16
- package/esm/auth/orm/mutation/index.js +78 -18
- package/esm/auth/orm/query/index.d.ts +12 -4
- package/esm/auth/orm/query/index.js +19 -7
- package/esm/public/cli/commands/app-membership.js +22 -0
- package/esm/public/cli/commands/construct-blueprint.js +1 -1
- package/esm/public/cli/commands/create-api-key.d.ts +8 -0
- package/esm/public/cli/commands/create-api-key.js +34 -0
- package/{public/cli/commands/connected-account.d.ts → esm/public/cli/commands/devices-module.d.ts} +1 -1
- package/esm/public/cli/commands/{connected-account.js → devices-module.js} +101 -87
- package/esm/public/cli/commands/disconnect-account.d.ts +8 -0
- package/esm/public/cli/commands/disconnect-account.js +34 -0
- package/esm/public/cli/commands/{table-template-module.d.ts → entity-type-provision.d.ts} +1 -1
- package/esm/public/cli/commands/entity-type-provision.js +554 -0
- package/esm/public/cli/commands/membership-type.js +44 -0
- package/esm/public/cli/commands/memberships-module.js +22 -0
- package/esm/{auth/cli/commands/connected-account.d.ts → public/cli/commands/org-member-profile.d.ts} +1 -1
- package/esm/public/cli/commands/org-member-profile.js +390 -0
- package/esm/public/cli/commands/org-membership.js +44 -0
- package/esm/public/cli/commands/provision-new-user.d.ts +8 -0
- package/esm/public/cli/commands/provision-new-user.js +34 -0
- package/esm/public/cli/commands/provision-spatial-relation.d.ts +8 -0
- package/esm/public/cli/commands/provision-spatial-relation.js +34 -0
- package/esm/public/cli/commands/request-cross-origin-token.d.ts +8 -0
- package/esm/public/cli/commands/request-cross-origin-token.js +34 -0
- package/esm/public/cli/commands/require-step-up.d.ts +8 -0
- package/esm/public/cli/commands/require-step-up.js +28 -0
- package/{auth/cli/commands/sign-in-one-time-token.d.ts → esm/public/cli/commands/resolve-blueprint-field.d.ts} +1 -1
- package/esm/public/cli/commands/resolve-blueprint-field.js +38 -0
- package/esm/public/cli/commands/revoke-api-key.d.ts +8 -0
- package/esm/public/cli/commands/revoke-api-key.js +34 -0
- package/esm/public/cli/commands/revoke-session.d.ts +8 -0
- package/esm/public/cli/commands/revoke-session.js +34 -0
- package/esm/public/cli/commands/session-secrets-module.d.ts +8 -0
- package/esm/{auth/cli/commands/connected-account.js → public/cli/commands/session-secrets-module.js} +82 -90
- package/esm/public/cli/commands/sign-in-cross-origin.d.ts +8 -0
- package/esm/public/cli/commands/sign-in-cross-origin.js +34 -0
- package/esm/public/cli/commands/spatial-relation.d.ts +8 -0
- package/esm/public/cli/commands/spatial-relation.js +472 -0
- package/esm/public/cli/commands/user-auth-module.js +24 -24
- package/esm/public/cli/commands/user-connected-account.d.ts +8 -0
- package/esm/public/cli/commands/user-connected-account.js +174 -0
- package/esm/public/cli/commands/webauthn-credentials-module.d.ts +8 -0
- package/esm/public/cli/commands/{table-template-module.js → webauthn-credentials-module.js} +8 -48
- package/esm/public/cli/commands.js +41 -15
- package/esm/public/cli/executor.d.ts +61 -16
- package/esm/public/orm/index.d.ts +69 -19
- package/esm/public/orm/index.js +16 -6
- package/esm/public/orm/input-types.d.ts +2047 -640
- package/esm/public/orm/input-types.js +15 -6
- package/esm/public/orm/models/devicesModule.d.ts +56 -0
- package/esm/public/orm/models/devicesModule.js +96 -0
- package/esm/public/orm/models/entityTypeProvision.d.ts +56 -0
- package/esm/public/orm/models/{tableTemplateModule.js → entityTypeProvision.js} +24 -24
- package/esm/public/orm/models/index.d.ts +8 -3
- package/esm/public/orm/models/index.js +8 -3
- package/esm/public/orm/models/orgMemberProfile.d.ts +56 -0
- package/esm/{auth/orm/models/connectedAccount.js → public/orm/models/orgMemberProfile.js} +24 -24
- package/esm/public/orm/models/sessionSecretsModule.d.ts +56 -0
- package/esm/public/orm/models/sessionSecretsModule.js +96 -0
- package/esm/public/orm/models/spatialRelation.d.ts +56 -0
- package/esm/public/orm/models/spatialRelation.js +96 -0
- package/esm/public/orm/models/userConnectedAccount.d.ts +38 -0
- package/esm/public/orm/models/userConnectedAccount.js +72 -0
- package/esm/public/orm/models/webauthnCredentialsModule.d.ts +56 -0
- package/esm/public/orm/models/webauthnCredentialsModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +72 -20
- package/esm/public/orm/mutation/index.js +96 -24
- package/esm/public/orm/query/index.d.ts +24 -2
- package/esm/public/orm/query/index.js +36 -4
- package/package.json +2 -2
- package/public/cli/commands/app-membership.js +22 -0
- package/public/cli/commands/construct-blueprint.js +1 -1
- package/public/cli/commands/create-api-key.d.ts +8 -0
- package/public/cli/commands/create-api-key.js +36 -0
- package/public/cli/commands/devices-module.d.ts +8 -0
- package/{auth/cli/commands/connected-account.js → public/cli/commands/devices-module.js} +101 -87
- package/public/cli/commands/disconnect-account.d.ts +8 -0
- package/public/cli/commands/disconnect-account.js +36 -0
- package/public/cli/commands/entity-type-provision.d.ts +8 -0
- package/public/cli/commands/entity-type-provision.js +556 -0
- package/public/cli/commands/membership-type.js +44 -0
- package/public/cli/commands/memberships-module.js +22 -0
- package/public/cli/commands/org-member-profile.d.ts +8 -0
- package/public/cli/commands/org-member-profile.js +392 -0
- package/public/cli/commands/org-membership.js +44 -0
- package/public/cli/commands/provision-new-user.d.ts +8 -0
- package/public/cli/commands/provision-new-user.js +36 -0
- package/public/cli/commands/provision-spatial-relation.d.ts +8 -0
- package/public/cli/commands/provision-spatial-relation.js +36 -0
- package/public/cli/commands/request-cross-origin-token.d.ts +8 -0
- package/public/cli/commands/request-cross-origin-token.js +36 -0
- package/public/cli/commands/require-step-up.d.ts +8 -0
- package/public/cli/commands/require-step-up.js +30 -0
- package/public/cli/commands/resolve-blueprint-field.d.ts +8 -0
- package/public/cli/commands/resolve-blueprint-field.js +40 -0
- package/public/cli/commands/revoke-api-key.d.ts +8 -0
- package/public/cli/commands/revoke-api-key.js +36 -0
- package/public/cli/commands/revoke-session.d.ts +8 -0
- package/public/cli/commands/revoke-session.js +36 -0
- package/public/cli/commands/session-secrets-module.d.ts +8 -0
- package/public/cli/commands/{connected-account.js → session-secrets-module.js} +82 -90
- package/public/cli/commands/sign-in-cross-origin.d.ts +8 -0
- package/public/cli/commands/sign-in-cross-origin.js +36 -0
- package/public/cli/commands/spatial-relation.d.ts +8 -0
- package/public/cli/commands/spatial-relation.js +474 -0
- package/public/cli/commands/user-auth-module.js +24 -24
- package/public/cli/commands/user-connected-account.d.ts +8 -0
- package/public/cli/commands/user-connected-account.js +176 -0
- package/public/cli/commands/webauthn-credentials-module.d.ts +8 -0
- package/public/cli/commands/{table-template-module.js → webauthn-credentials-module.js} +8 -48
- package/public/cli/commands.js +41 -15
- package/public/cli/executor.d.ts +61 -16
- package/public/orm/index.d.ts +69 -19
- package/public/orm/index.js +16 -6
- package/public/orm/input-types.d.ts +2047 -640
- package/public/orm/input-types.js +15 -6
- package/public/orm/models/devicesModule.d.ts +56 -0
- package/public/orm/models/devicesModule.js +100 -0
- package/public/orm/models/entityTypeProvision.d.ts +56 -0
- package/public/orm/models/{tableTemplateModule.js → entityTypeProvision.js} +26 -26
- package/public/orm/models/index.d.ts +8 -3
- package/public/orm/models/index.js +19 -9
- package/public/orm/models/orgMemberProfile.d.ts +56 -0
- package/public/orm/models/{connectedAccount.js → orgMemberProfile.js} +26 -26
- package/public/orm/models/sessionSecretsModule.d.ts +56 -0
- package/public/orm/models/sessionSecretsModule.js +100 -0
- package/public/orm/models/spatialRelation.d.ts +56 -0
- package/public/orm/models/spatialRelation.js +100 -0
- package/public/orm/models/userConnectedAccount.d.ts +38 -0
- package/public/orm/models/userConnectedAccount.js +76 -0
- package/public/orm/models/webauthnCredentialsModule.d.ts +56 -0
- package/public/orm/models/webauthnCredentialsModule.js +100 -0
- package/public/orm/mutation/index.d.ts +72 -20
- package/public/orm/mutation/index.js +96 -24
- package/public/orm/query/index.d.ts +24 -2
- package/public/orm/query/index.js +36 -4
- package/auth/orm/models/connectedAccount.d.ts +0 -56
- package/esm/auth/cli/commands/sign-in-one-time-token.d.ts +0 -8
- package/esm/auth/orm/models/connectedAccount.d.ts +0 -56
- package/esm/public/cli/commands/one-time-token.d.ts +0 -8
- package/esm/public/cli/commands/sign-in-one-time-token.d.ts +0 -8
- package/esm/public/orm/models/connectedAccount.d.ts +0 -56
- package/esm/public/orm/models/tableTemplateModule.d.ts +0 -56
- package/public/cli/commands/one-time-token.d.ts +0 -8
- package/public/cli/commands/sign-in-one-time-token.d.ts +0 -8
- package/public/cli/commands/table-template-module.d.ts +0 -8
- package/public/orm/models/connectedAccount.d.ts +0 -56
- package/public/orm/models/tableTemplateModule.d.ts +0 -56
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* CLI commands for
|
|
2
|
+
* CLI commands for DevicesModule
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
@@ -8,15 +8,14 @@ import { getClient } from '../executor';
|
|
|
8
8
|
import { coerceAnswers, parseFindFirstArgs, parseFindManyArgs, stripUndefined } from '../utils';
|
|
9
9
|
const fieldSchema = {
|
|
10
10
|
id: 'uuid',
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
updatedAt: 'string',
|
|
11
|
+
databaseId: 'uuid',
|
|
12
|
+
schemaId: 'uuid',
|
|
13
|
+
userDevicesTableId: 'uuid',
|
|
14
|
+
deviceSettingsTableId: 'uuid',
|
|
15
|
+
userDevicesTable: 'string',
|
|
16
|
+
deviceSettingsTable: 'string',
|
|
18
17
|
};
|
|
19
|
-
const usage = '\
|
|
18
|
+
const usage = '\ndevices-module <command>\n\nCommands:\n list List devicesModule records\n find-first Find first matching devicesModule record\n get Get a devicesModule by ID\n create Create a new devicesModule\n update Update an existing devicesModule\n delete Delete a devicesModule\n\nList Options:\n --limit <n> Max number of records to return (forward pagination)\n --last <n> Number of records from the end (backward pagination)\n --after <cursor> Cursor for forward pagination\n --before <cursor> Cursor for backward pagination\n --offset <n> Number of records to skip\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.name.equalTo foo)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\nFind-First Options:\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.status.equalTo active)\n --condition.<f>.<op> Condition filter (dot-notation)\n\n --help, -h Show this help message\n';
|
|
20
19
|
export default async (argv, prompter, _options) => {
|
|
21
20
|
if (argv.help || argv.h) {
|
|
22
21
|
console.log(usage);
|
|
@@ -59,17 +58,16 @@ async function handleList(argv, _prompter) {
|
|
|
59
58
|
try {
|
|
60
59
|
const defaultSelect = {
|
|
61
60
|
id: true,
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
updatedAt: true,
|
|
61
|
+
databaseId: true,
|
|
62
|
+
schemaId: true,
|
|
63
|
+
userDevicesTableId: true,
|
|
64
|
+
deviceSettingsTableId: true,
|
|
65
|
+
userDevicesTable: true,
|
|
66
|
+
deviceSettingsTable: true,
|
|
69
67
|
};
|
|
70
68
|
const findManyArgs = parseFindManyArgs(argv, defaultSelect);
|
|
71
69
|
const client = getClient();
|
|
72
|
-
const result = await client.
|
|
70
|
+
const result = await client.devicesModule.findMany(findManyArgs).execute();
|
|
73
71
|
console.log(JSON.stringify(result, null, 2));
|
|
74
72
|
}
|
|
75
73
|
catch (error) {
|
|
@@ -84,17 +82,16 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
84
82
|
try {
|
|
85
83
|
const defaultSelect = {
|
|
86
84
|
id: true,
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
updatedAt: true,
|
|
85
|
+
databaseId: true,
|
|
86
|
+
schemaId: true,
|
|
87
|
+
userDevicesTableId: true,
|
|
88
|
+
deviceSettingsTableId: true,
|
|
89
|
+
userDevicesTable: true,
|
|
90
|
+
deviceSettingsTable: true,
|
|
94
91
|
};
|
|
95
92
|
const findFirstArgs = parseFindFirstArgs(argv, defaultSelect);
|
|
96
93
|
const client = getClient();
|
|
97
|
-
const result = await client.
|
|
94
|
+
const result = await client.devicesModule.findFirst(findFirstArgs).execute();
|
|
98
95
|
console.log(JSON.stringify(result, null, 2));
|
|
99
96
|
}
|
|
100
97
|
catch (error) {
|
|
@@ -116,18 +113,17 @@ async function handleGet(argv, prompter) {
|
|
|
116
113
|
},
|
|
117
114
|
]);
|
|
118
115
|
const client = getClient();
|
|
119
|
-
const result = await client.
|
|
116
|
+
const result = await client.devicesModule
|
|
120
117
|
.findOne({
|
|
121
118
|
id: answers.id,
|
|
122
119
|
select: {
|
|
123
120
|
id: true,
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
updatedAt: true,
|
|
121
|
+
databaseId: true,
|
|
122
|
+
schemaId: true,
|
|
123
|
+
userDevicesTableId: true,
|
|
124
|
+
deviceSettingsTableId: true,
|
|
125
|
+
userDevicesTable: true,
|
|
126
|
+
deviceSettingsTable: true,
|
|
131
127
|
},
|
|
132
128
|
})
|
|
133
129
|
.execute();
|
|
@@ -146,33 +142,42 @@ async function handleCreate(argv, prompter) {
|
|
|
146
142
|
const rawAnswers = await prompter.prompt(argv, [
|
|
147
143
|
{
|
|
148
144
|
type: 'text',
|
|
149
|
-
name: '
|
|
150
|
-
message: '
|
|
145
|
+
name: 'databaseId',
|
|
146
|
+
message: 'databaseId',
|
|
147
|
+
required: true,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'text',
|
|
151
|
+
name: 'schemaId',
|
|
152
|
+
message: 'schemaId',
|
|
151
153
|
required: false,
|
|
152
154
|
skipPrompt: true,
|
|
153
155
|
},
|
|
154
156
|
{
|
|
155
157
|
type: 'text',
|
|
156
|
-
name: '
|
|
157
|
-
message: '
|
|
158
|
-
required:
|
|
158
|
+
name: 'userDevicesTableId',
|
|
159
|
+
message: 'userDevicesTableId',
|
|
160
|
+
required: false,
|
|
161
|
+
skipPrompt: true,
|
|
159
162
|
},
|
|
160
163
|
{
|
|
161
164
|
type: 'text',
|
|
162
|
-
name: '
|
|
163
|
-
message: '
|
|
164
|
-
required:
|
|
165
|
+
name: 'deviceSettingsTableId',
|
|
166
|
+
message: 'deviceSettingsTableId',
|
|
167
|
+
required: false,
|
|
168
|
+
skipPrompt: true,
|
|
165
169
|
},
|
|
166
170
|
{
|
|
167
|
-
type: '
|
|
168
|
-
name: '
|
|
169
|
-
message: '
|
|
170
|
-
required:
|
|
171
|
+
type: 'text',
|
|
172
|
+
name: 'userDevicesTable',
|
|
173
|
+
message: 'userDevicesTable',
|
|
174
|
+
required: false,
|
|
175
|
+
skipPrompt: true,
|
|
171
176
|
},
|
|
172
177
|
{
|
|
173
|
-
type: '
|
|
174
|
-
name: '
|
|
175
|
-
message: '
|
|
178
|
+
type: 'text',
|
|
179
|
+
name: 'deviceSettingsTable',
|
|
180
|
+
message: 'deviceSettingsTable',
|
|
176
181
|
required: false,
|
|
177
182
|
skipPrompt: true,
|
|
178
183
|
},
|
|
@@ -180,24 +185,24 @@ async function handleCreate(argv, prompter) {
|
|
|
180
185
|
const answers = coerceAnswers(rawAnswers, fieldSchema);
|
|
181
186
|
const cleanedData = stripUndefined(answers, fieldSchema);
|
|
182
187
|
const client = getClient();
|
|
183
|
-
const result = await client.
|
|
188
|
+
const result = await client.devicesModule
|
|
184
189
|
.create({
|
|
185
190
|
data: {
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
+
databaseId: cleanedData.databaseId,
|
|
192
|
+
schemaId: cleanedData.schemaId,
|
|
193
|
+
userDevicesTableId: cleanedData.userDevicesTableId,
|
|
194
|
+
deviceSettingsTableId: cleanedData.deviceSettingsTableId,
|
|
195
|
+
userDevicesTable: cleanedData.userDevicesTable,
|
|
196
|
+
deviceSettingsTable: cleanedData.deviceSettingsTable,
|
|
191
197
|
},
|
|
192
198
|
select: {
|
|
193
199
|
id: true,
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
updatedAt: true,
|
|
200
|
+
databaseId: true,
|
|
201
|
+
schemaId: true,
|
|
202
|
+
userDevicesTableId: true,
|
|
203
|
+
deviceSettingsTableId: true,
|
|
204
|
+
userDevicesTable: true,
|
|
205
|
+
deviceSettingsTable: true,
|
|
201
206
|
},
|
|
202
207
|
})
|
|
203
208
|
.execute();
|
|
@@ -222,33 +227,42 @@ async function handleUpdate(argv, prompter) {
|
|
|
222
227
|
},
|
|
223
228
|
{
|
|
224
229
|
type: 'text',
|
|
225
|
-
name: '
|
|
226
|
-
message: '
|
|
230
|
+
name: 'databaseId',
|
|
231
|
+
message: 'databaseId',
|
|
232
|
+
required: false,
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
type: 'text',
|
|
236
|
+
name: 'schemaId',
|
|
237
|
+
message: 'schemaId',
|
|
227
238
|
required: false,
|
|
228
239
|
skipPrompt: true,
|
|
229
240
|
},
|
|
230
241
|
{
|
|
231
242
|
type: 'text',
|
|
232
|
-
name: '
|
|
233
|
-
message: '
|
|
243
|
+
name: 'userDevicesTableId',
|
|
244
|
+
message: 'userDevicesTableId',
|
|
234
245
|
required: false,
|
|
246
|
+
skipPrompt: true,
|
|
235
247
|
},
|
|
236
248
|
{
|
|
237
249
|
type: 'text',
|
|
238
|
-
name: '
|
|
239
|
-
message: '
|
|
250
|
+
name: 'deviceSettingsTableId',
|
|
251
|
+
message: 'deviceSettingsTableId',
|
|
240
252
|
required: false,
|
|
253
|
+
skipPrompt: true,
|
|
241
254
|
},
|
|
242
255
|
{
|
|
243
|
-
type: '
|
|
244
|
-
name: '
|
|
245
|
-
message: '
|
|
256
|
+
type: 'text',
|
|
257
|
+
name: 'userDevicesTable',
|
|
258
|
+
message: 'userDevicesTable',
|
|
246
259
|
required: false,
|
|
260
|
+
skipPrompt: true,
|
|
247
261
|
},
|
|
248
262
|
{
|
|
249
|
-
type: '
|
|
250
|
-
name: '
|
|
251
|
-
message: '
|
|
263
|
+
type: 'text',
|
|
264
|
+
name: 'deviceSettingsTable',
|
|
265
|
+
message: 'deviceSettingsTable',
|
|
252
266
|
required: false,
|
|
253
267
|
skipPrompt: true,
|
|
254
268
|
},
|
|
@@ -256,27 +270,27 @@ async function handleUpdate(argv, prompter) {
|
|
|
256
270
|
const answers = coerceAnswers(rawAnswers, fieldSchema);
|
|
257
271
|
const cleanedData = stripUndefined(answers, fieldSchema);
|
|
258
272
|
const client = getClient();
|
|
259
|
-
const result = await client.
|
|
273
|
+
const result = await client.devicesModule
|
|
260
274
|
.update({
|
|
261
275
|
where: {
|
|
262
276
|
id: answers.id,
|
|
263
277
|
},
|
|
264
278
|
data: {
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
279
|
+
databaseId: cleanedData.databaseId,
|
|
280
|
+
schemaId: cleanedData.schemaId,
|
|
281
|
+
userDevicesTableId: cleanedData.userDevicesTableId,
|
|
282
|
+
deviceSettingsTableId: cleanedData.deviceSettingsTableId,
|
|
283
|
+
userDevicesTable: cleanedData.userDevicesTable,
|
|
284
|
+
deviceSettingsTable: cleanedData.deviceSettingsTable,
|
|
270
285
|
},
|
|
271
286
|
select: {
|
|
272
287
|
id: true,
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
updatedAt: true,
|
|
288
|
+
databaseId: true,
|
|
289
|
+
schemaId: true,
|
|
290
|
+
userDevicesTableId: true,
|
|
291
|
+
deviceSettingsTableId: true,
|
|
292
|
+
userDevicesTable: true,
|
|
293
|
+
deviceSettingsTable: true,
|
|
280
294
|
},
|
|
281
295
|
})
|
|
282
296
|
.execute();
|
|
@@ -302,7 +316,7 @@ async function handleDelete(argv, prompter) {
|
|
|
302
316
|
]);
|
|
303
317
|
const answers = coerceAnswers(rawAnswers, fieldSchema);
|
|
304
318
|
const client = getClient();
|
|
305
|
-
const result = await client.
|
|
319
|
+
const result = await client.devicesModule
|
|
306
320
|
.delete({
|
|
307
321
|
where: {
|
|
308
322
|
id: answers.id,
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI command for mutation disconnectAccount
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { CLIOptions, Inquirerer } from 'inquirerer';
|
|
7
|
+
declare const _default: (argv: Partial<Record<string, unknown>>, prompter: Inquirerer, _options: CLIOptions) => Promise<void>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { getClient } from '../executor';
|
|
2
|
+
import { unflattenDotNotation, buildSelectFromPaths } from '../utils';
|
|
3
|
+
export default async (argv, prompter, _options) => {
|
|
4
|
+
try {
|
|
5
|
+
if (argv.help || argv.h) {
|
|
6
|
+
console.log('disconnect-account - disconnectAccount\n\nUsage: disconnect-account [OPTIONS]\n');
|
|
7
|
+
process.exit(0);
|
|
8
|
+
}
|
|
9
|
+
const answers = await prompter.prompt(argv, [
|
|
10
|
+
{
|
|
11
|
+
type: 'text',
|
|
12
|
+
name: 'input',
|
|
13
|
+
message: 'The exclusive input argument for this mutation. An object type, make sure to see documentation for this object\u2019s fields.',
|
|
14
|
+
required: true,
|
|
15
|
+
},
|
|
16
|
+
]);
|
|
17
|
+
const client = getClient();
|
|
18
|
+
const parsedAnswers = unflattenDotNotation(answers);
|
|
19
|
+
const selectFields = buildSelectFromPaths(argv.select ?? 'clientMutationId');
|
|
20
|
+
const result = await client.mutation
|
|
21
|
+
.disconnectAccount(parsedAnswers, {
|
|
22
|
+
select: selectFields,
|
|
23
|
+
})
|
|
24
|
+
.execute();
|
|
25
|
+
console.log(JSON.stringify(result, null, 2));
|
|
26
|
+
}
|
|
27
|
+
catch (error) {
|
|
28
|
+
console.error('Failed: disconnectAccount');
|
|
29
|
+
if (error instanceof Error) {
|
|
30
|
+
console.error(error.message);
|
|
31
|
+
}
|
|
32
|
+
process.exit(1);
|
|
33
|
+
}
|
|
34
|
+
};
|