@constructive-sdk/cli 0.8.4 → 0.8.6
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/README.md +8 -0
- package/admin/cli/commands.js +3 -3
- package/admin/cli/executor.d.ts +5 -5
- package/admin/orm/index.d.ts +5 -5
- package/admin/orm/query/index.d.ts +9 -9
- package/admin/orm/query/index.js +16 -16
- package/auth/cli/commands/user.js +0 -20
- package/auth/orm/input-types.d.ts +0 -1
- package/esm/admin/cli/commands.js +3 -3
- package/esm/admin/cli/executor.d.ts +5 -5
- package/esm/admin/orm/index.d.ts +5 -5
- package/esm/admin/orm/query/index.d.ts +9 -9
- package/esm/admin/orm/query/index.js +16 -16
- package/esm/auth/cli/commands/user.js +0 -20
- package/esm/auth/orm/input-types.d.ts +0 -1
- package/esm/public/cli/commands/user.js +0 -20
- package/esm/public/cli/commands.js +23 -23
- package/esm/public/cli/executor.d.ts +41 -41
- package/esm/public/orm/index.d.ts +44 -44
- package/esm/public/orm/index.js +6 -6
- package/esm/public/orm/input-types.d.ts +570 -571
- package/esm/public/orm/models/index.d.ts +3 -3
- package/esm/public/orm/models/index.js +3 -3
- package/esm/public/orm/mutation/index.d.ts +46 -46
- package/esm/public/orm/mutation/index.js +66 -66
- package/esm/public/orm/query/index.d.ts +28 -28
- package/esm/public/orm/query/index.js +48 -48
- package/package.json +4 -4
- package/public/cli/commands/user.js +0 -20
- package/public/cli/commands.js +23 -23
- package/public/cli/executor.d.ts +41 -41
- package/public/orm/index.d.ts +44 -44
- package/public/orm/index.js +6 -6
- package/public/orm/input-types.d.ts +570 -571
- package/public/orm/models/index.d.ts +3 -3
- package/public/orm/models/index.js +9 -9
- package/public/orm/mutation/index.d.ts +46 -46
- package/public/orm/mutation/index.js +66 -66
- package/public/orm/query/index.d.ts +28 -28
- package/public/orm/query/index.js +48 -48
package/public/orm/index.js
CHANGED
|
@@ -25,9 +25,9 @@ const client_1 = require("./client");
|
|
|
25
25
|
const orgGetManagersRecord_1 = require("./models/orgGetManagersRecord");
|
|
26
26
|
const orgGetSubordinatesRecord_1 = require("./models/orgGetSubordinatesRecord");
|
|
27
27
|
const getAllRecord_1 = require("./models/getAllRecord");
|
|
28
|
+
const object_1 = require("./models/object");
|
|
28
29
|
const appPermission_1 = require("./models/appPermission");
|
|
29
30
|
const orgPermission_1 = require("./models/orgPermission");
|
|
30
|
-
const object_1 = require("./models/object");
|
|
31
31
|
const appLevelRequirement_1 = require("./models/appLevelRequirement");
|
|
32
32
|
const database_1 = require("./models/database");
|
|
33
33
|
const schema_1 = require("./models/schema");
|
|
@@ -113,17 +113,17 @@ const orgLimitDefault_1 = require("./models/orgLimitDefault");
|
|
|
113
113
|
const connectedAccount_1 = require("./models/connectedAccount");
|
|
114
114
|
const nodeTypeRegistry_1 = require("./models/nodeTypeRegistry");
|
|
115
115
|
const membershipType_1 = require("./models/membershipType");
|
|
116
|
+
const commit_1 = require("./models/commit");
|
|
116
117
|
const appMembershipDefault_1 = require("./models/appMembershipDefault");
|
|
117
118
|
const rlsModule_1 = require("./models/rlsModule");
|
|
118
|
-
const commit_1 = require("./models/commit");
|
|
119
119
|
const orgMembershipDefault_1 = require("./models/orgMembershipDefault");
|
|
120
120
|
const auditLog_1 = require("./models/auditLog");
|
|
121
121
|
const appLevel_1 = require("./models/appLevel");
|
|
122
122
|
const sqlMigration_1 = require("./models/sqlMigration");
|
|
123
123
|
const email_1 = require("./models/email");
|
|
124
|
+
const user_1 = require("./models/user");
|
|
124
125
|
const astMigration_1 = require("./models/astMigration");
|
|
125
126
|
const appMembership_1 = require("./models/appMembership");
|
|
126
|
-
const user_1 = require("./models/user");
|
|
127
127
|
const hierarchyModule_1 = require("./models/hierarchyModule");
|
|
128
128
|
const query_1 = require("./query");
|
|
129
129
|
const mutation_1 = require("./mutation");
|
|
@@ -168,9 +168,9 @@ function createClient(config) {
|
|
|
168
168
|
orgGetManagersRecord: new orgGetManagersRecord_1.OrgGetManagersRecordModel(client),
|
|
169
169
|
orgGetSubordinatesRecord: new orgGetSubordinatesRecord_1.OrgGetSubordinatesRecordModel(client),
|
|
170
170
|
getAllRecord: new getAllRecord_1.GetAllRecordModel(client),
|
|
171
|
+
object: new object_1.ObjectModel(client),
|
|
171
172
|
appPermission: new appPermission_1.AppPermissionModel(client),
|
|
172
173
|
orgPermission: new orgPermission_1.OrgPermissionModel(client),
|
|
173
|
-
object: new object_1.ObjectModel(client),
|
|
174
174
|
appLevelRequirement: new appLevelRequirement_1.AppLevelRequirementModel(client),
|
|
175
175
|
database: new database_1.DatabaseModel(client),
|
|
176
176
|
schema: new schema_1.SchemaModel(client),
|
|
@@ -256,17 +256,17 @@ function createClient(config) {
|
|
|
256
256
|
connectedAccount: new connectedAccount_1.ConnectedAccountModel(client),
|
|
257
257
|
nodeTypeRegistry: new nodeTypeRegistry_1.NodeTypeRegistryModel(client),
|
|
258
258
|
membershipType: new membershipType_1.MembershipTypeModel(client),
|
|
259
|
+
commit: new commit_1.CommitModel(client),
|
|
259
260
|
appMembershipDefault: new appMembershipDefault_1.AppMembershipDefaultModel(client),
|
|
260
261
|
rlsModule: new rlsModule_1.RlsModuleModel(client),
|
|
261
|
-
commit: new commit_1.CommitModel(client),
|
|
262
262
|
orgMembershipDefault: new orgMembershipDefault_1.OrgMembershipDefaultModel(client),
|
|
263
263
|
auditLog: new auditLog_1.AuditLogModel(client),
|
|
264
264
|
appLevel: new appLevel_1.AppLevelModel(client),
|
|
265
265
|
sqlMigration: new sqlMigration_1.SqlMigrationModel(client),
|
|
266
266
|
email: new email_1.EmailModel(client),
|
|
267
|
+
user: new user_1.UserModel(client),
|
|
267
268
|
astMigration: new astMigration_1.AstMigrationModel(client),
|
|
268
269
|
appMembership: new appMembership_1.AppMembershipModel(client),
|
|
269
|
-
user: new user_1.UserModel(client),
|
|
270
270
|
hierarchyModule: new hierarchyModule_1.HierarchyModuleModel(client),
|
|
271
271
|
query: (0, query_1.createQueryOperations)(client),
|
|
272
272
|
mutation: (0, mutation_1.createMutationOperations)(client),
|