@constructive-io/sdk 0.14.7 → 0.14.8
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/orm/index.d.ts +4 -2
- package/admin/orm/index.js +4 -2
- package/admin/orm/input-types.d.ts +303 -142
- package/admin/orm/models/index.d.ts +2 -1
- package/admin/orm/models/index.js +5 -3
- package/admin/orm/models/orgMembershipSetting.d.ts +56 -0
- package/admin/orm/models/orgMembershipSetting.js +100 -0
- package/auth/orm/index.d.ts +9 -5
- package/auth/orm/index.js +4 -0
- package/auth/orm/input-types.d.ts +525 -81
- package/auth/orm/input-types.js +1 -0
- package/auth/orm/models/identityProvider.d.ts +32 -0
- package/auth/orm/models/identityProvider.js +55 -0
- package/auth/orm/models/index.d.ts +2 -0
- package/auth/orm/models/index.js +5 -1
- package/auth/orm/models/webauthnCredential.d.ts +56 -0
- package/auth/orm/models/webauthnCredential.js +100 -0
- package/auth/orm/mutation/index.d.ts +9 -9
- package/auth/orm/mutation/index.js +12 -12
- package/esm/admin/orm/index.d.ts +4 -2
- package/esm/admin/orm/index.js +4 -2
- package/esm/admin/orm/input-types.d.ts +303 -142
- package/esm/admin/orm/models/index.d.ts +2 -1
- package/esm/admin/orm/models/index.js +2 -1
- package/esm/admin/orm/models/orgMembershipSetting.d.ts +56 -0
- package/esm/admin/orm/models/orgMembershipSetting.js +96 -0
- package/esm/auth/orm/index.d.ts +9 -5
- package/esm/auth/orm/index.js +4 -0
- package/esm/auth/orm/input-types.d.ts +525 -81
- package/esm/auth/orm/input-types.js +1 -0
- package/esm/auth/orm/models/identityProvider.d.ts +32 -0
- package/esm/auth/orm/models/identityProvider.js +51 -0
- package/esm/auth/orm/models/index.d.ts +2 -0
- package/esm/auth/orm/models/index.js +2 -0
- package/esm/auth/orm/models/webauthnCredential.d.ts +56 -0
- package/esm/auth/orm/models/webauthnCredential.js +96 -0
- package/esm/auth/orm/mutation/index.d.ts +9 -9
- package/esm/auth/orm/mutation/index.js +12 -12
- package/esm/objects/orm/input-types.d.ts +12 -0
- package/esm/public/orm/index.d.ts +19 -7
- package/esm/public/orm/index.js +14 -2
- package/esm/public/orm/input-types.d.ts +1827 -366
- package/esm/public/orm/input-types.js +7 -0
- package/esm/public/orm/models/identityProvider.d.ts +32 -0
- package/esm/public/orm/models/identityProvider.js +51 -0
- package/esm/public/orm/models/identityProvidersModule.d.ts +56 -0
- package/esm/public/orm/models/identityProvidersModule.js +96 -0
- package/esm/public/orm/models/index.d.ts +7 -1
- package/esm/public/orm/models/index.js +7 -1
- package/esm/public/orm/models/notificationsModule.d.ts +56 -0
- package/esm/public/orm/models/notificationsModule.js +96 -0
- package/esm/public/orm/models/orgMembershipSetting.d.ts +56 -0
- package/esm/public/orm/models/orgMembershipSetting.js +96 -0
- package/esm/public/orm/models/webauthnAuthModule.d.ts +56 -0
- package/esm/public/orm/models/webauthnAuthModule.js +96 -0
- package/esm/public/orm/models/webauthnCredential.d.ts +56 -0
- package/esm/public/orm/models/webauthnCredential.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +9 -9
- package/esm/public/orm/mutation/index.js +12 -12
- package/objects/orm/input-types.d.ts +12 -0
- package/package.json +3 -3
- package/public/orm/index.d.ts +19 -7
- package/public/orm/index.js +14 -2
- package/public/orm/input-types.d.ts +1827 -366
- package/public/orm/input-types.js +7 -0
- package/public/orm/models/identityProvider.d.ts +32 -0
- package/public/orm/models/identityProvider.js +55 -0
- package/public/orm/models/identityProvidersModule.d.ts +56 -0
- package/public/orm/models/identityProvidersModule.js +100 -0
- package/public/orm/models/index.d.ts +7 -1
- package/public/orm/models/index.js +17 -5
- package/public/orm/models/notificationsModule.d.ts +56 -0
- package/public/orm/models/notificationsModule.js +100 -0
- package/public/orm/models/orgMembershipSetting.d.ts +56 -0
- package/public/orm/models/orgMembershipSetting.js +100 -0
- package/public/orm/models/webauthnAuthModule.d.ts +56 -0
- package/public/orm/models/webauthnAuthModule.js +100 -0
- package/public/orm/models/webauthnCredential.d.ts +56 -0
- package/public/orm/models/webauthnCredential.js +100 -0
- package/public/orm/mutation/index.d.ts +9 -9
- package/public/orm/mutation/index.js +12 -12
package/public/orm/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ import { EmbeddingChunkModel } from './models/embeddingChunk';
|
|
|
28
28
|
import { SecureTableProvisionModel } from './models/secureTableProvision';
|
|
29
29
|
import { RelationProvisionModel } from './models/relationProvision';
|
|
30
30
|
import { SessionSecretsModuleModel } from './models/sessionSecretsModule';
|
|
31
|
+
import { IdentityProvidersModuleModel } from './models/identityProvidersModule';
|
|
31
32
|
import { SchemaGrantModel } from './models/schemaGrant';
|
|
32
33
|
import { DefaultPrivilegeModel } from './models/defaultPrivilege';
|
|
33
34
|
import { EnumModel } from './models/enum';
|
|
@@ -67,6 +68,8 @@ import { BlueprintConstructionModel } from './models/blueprintConstruction';
|
|
|
67
68
|
import { StorageModuleModel } from './models/storageModule';
|
|
68
69
|
import { EntityTypeProvisionModel } from './models/entityTypeProvision';
|
|
69
70
|
import { WebauthnCredentialsModuleModel } from './models/webauthnCredentialsModule';
|
|
71
|
+
import { WebauthnAuthModuleModel } from './models/webauthnAuthModule';
|
|
72
|
+
import { NotificationsModuleModel } from './models/notificationsModule';
|
|
70
73
|
import { DatabaseProvisionModuleModel } from './models/databaseProvisionModule';
|
|
71
74
|
import { AppAdminGrantModel } from './models/appAdminGrant';
|
|
72
75
|
import { AppOwnerGrantModel } from './models/appOwnerGrant';
|
|
@@ -88,12 +91,14 @@ import { AppLevelModel } from './models/appLevel';
|
|
|
88
91
|
import { EmailModel } from './models/email';
|
|
89
92
|
import { PhoneNumberModel } from './models/phoneNumber';
|
|
90
93
|
import { CryptoAddressModel } from './models/cryptoAddress';
|
|
94
|
+
import { WebauthnCredentialModel } from './models/webauthnCredential';
|
|
91
95
|
import { AppInviteModel } from './models/appInvite';
|
|
92
96
|
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
93
97
|
import { OrgInviteModel } from './models/orgInvite';
|
|
94
98
|
import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
|
|
95
99
|
import { AuditLogModel } from './models/auditLog';
|
|
96
100
|
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
101
|
+
import { IdentityProviderModel } from './models/identityProvider';
|
|
97
102
|
import { RefModel } from './models/ref';
|
|
98
103
|
import { StoreModel } from './models/store';
|
|
99
104
|
import { RoleTypeModel } from './models/roleType';
|
|
@@ -103,12 +108,13 @@ import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
|
103
108
|
import { DevicesModuleModel } from './models/devicesModule';
|
|
104
109
|
import { UserConnectedAccountModel } from './models/userConnectedAccount';
|
|
105
110
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
111
|
+
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
106
112
|
import { CommitModel } from './models/commit';
|
|
107
113
|
import { RateLimitsModuleModel } from './models/rateLimitsModule';
|
|
108
114
|
import { MembershipTypeModel } from './models/membershipType';
|
|
109
|
-
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
110
115
|
import { RlsModuleModel } from './models/rlsModule';
|
|
111
116
|
import { SqlActionModel } from './models/sqlAction';
|
|
117
|
+
import { OrgMembershipSettingModel } from './models/orgMembershipSetting';
|
|
112
118
|
import { UserModel } from './models/user';
|
|
113
119
|
import { AstMigrationModel } from './models/astMigration';
|
|
114
120
|
import { AppMembershipModel } from './models/appMembership';
|
|
@@ -173,6 +179,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
173
179
|
secureTableProvision: SecureTableProvisionModel;
|
|
174
180
|
relationProvision: RelationProvisionModel;
|
|
175
181
|
sessionSecretsModule: SessionSecretsModuleModel;
|
|
182
|
+
identityProvidersModule: IdentityProvidersModuleModel;
|
|
176
183
|
schemaGrant: SchemaGrantModel;
|
|
177
184
|
defaultPrivilege: DefaultPrivilegeModel;
|
|
178
185
|
enum: EnumModel;
|
|
@@ -212,6 +219,8 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
212
219
|
storageModule: StorageModuleModel;
|
|
213
220
|
entityTypeProvision: EntityTypeProvisionModel;
|
|
214
221
|
webauthnCredentialsModule: WebauthnCredentialsModuleModel;
|
|
222
|
+
webauthnAuthModule: WebauthnAuthModuleModel;
|
|
223
|
+
notificationsModule: NotificationsModuleModel;
|
|
215
224
|
databaseProvisionModule: DatabaseProvisionModuleModel;
|
|
216
225
|
appAdminGrant: AppAdminGrantModel;
|
|
217
226
|
appOwnerGrant: AppOwnerGrantModel;
|
|
@@ -233,12 +242,14 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
233
242
|
email: EmailModel;
|
|
234
243
|
phoneNumber: PhoneNumberModel;
|
|
235
244
|
cryptoAddress: CryptoAddressModel;
|
|
245
|
+
webauthnCredential: WebauthnCredentialModel;
|
|
236
246
|
appInvite: AppInviteModel;
|
|
237
247
|
appClaimedInvite: AppClaimedInviteModel;
|
|
238
248
|
orgInvite: OrgInviteModel;
|
|
239
249
|
orgClaimedInvite: OrgClaimedInviteModel;
|
|
240
250
|
auditLog: AuditLogModel;
|
|
241
251
|
appPermissionDefault: AppPermissionDefaultModel;
|
|
252
|
+
identityProvider: IdentityProviderModel;
|
|
242
253
|
ref: RefModel;
|
|
243
254
|
store: StoreModel;
|
|
244
255
|
roleType: RoleTypeModel;
|
|
@@ -248,12 +259,13 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
248
259
|
devicesModule: DevicesModuleModel;
|
|
249
260
|
userConnectedAccount: UserConnectedAccountModel;
|
|
250
261
|
appMembershipDefault: AppMembershipDefaultModel;
|
|
262
|
+
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
251
263
|
commit: CommitModel;
|
|
252
264
|
rateLimitsModule: RateLimitsModuleModel;
|
|
253
265
|
membershipType: MembershipTypeModel;
|
|
254
|
-
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
255
266
|
rlsModule: RlsModuleModel;
|
|
256
267
|
sqlAction: SqlActionModel;
|
|
268
|
+
orgMembershipSetting: OrgMembershipSettingModel;
|
|
257
269
|
user: UserModel;
|
|
258
270
|
astMigration: AstMigrationModel;
|
|
259
271
|
appMembership: AppMembershipModel;
|
|
@@ -486,11 +498,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
486
498
|
} & import("./select-types").StrictSelect<S, import("./input-types").CopyTemplateToBlueprintPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
487
499
|
copyTemplateToBlueprint: import("./select-types").InferSelectResult<import("./input-types").CopyTemplateToBlueprintPayload, S> | null;
|
|
488
500
|
}>;
|
|
489
|
-
createApiKey: <S extends import("./input-types").CreateApiKeyPayloadSelect>(args: import("./mutation").CreateApiKeyVariables, options: {
|
|
490
|
-
select: S;
|
|
491
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").CreateApiKeyPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
492
|
-
createApiKey: import("./select-types").InferSelectResult<import("./input-types").CreateApiKeyPayload, S> | null;
|
|
493
|
-
}>;
|
|
494
501
|
provisionSpatialRelation: <S extends import("./input-types").ProvisionSpatialRelationPayloadSelect>(args: import("./mutation").ProvisionSpatialRelationVariables, options: {
|
|
495
502
|
select: S;
|
|
496
503
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionSpatialRelationPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -576,6 +583,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
576
583
|
} & import("./select-types").StrictSelect<S, import("./input-types").ExtendTokenExpiresPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
577
584
|
extendTokenExpires: import("./select-types").InferSelectResult<import("./input-types").ExtendTokenExpiresPayload, S> | null;
|
|
578
585
|
}>;
|
|
586
|
+
createApiKey: <S extends import("./input-types").CreateApiKeyPayloadSelect>(args: import("./mutation").CreateApiKeyVariables, options: {
|
|
587
|
+
select: S;
|
|
588
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").CreateApiKeyPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
589
|
+
createApiKey: import("./select-types").InferSelectResult<import("./input-types").CreateApiKeyPayload, S> | null;
|
|
590
|
+
}>;
|
|
579
591
|
signUp: <S extends import("./input-types").SignUpPayloadSelect>(args: import("./mutation").SignUpVariables, options: {
|
|
580
592
|
select: S;
|
|
581
593
|
} & import("./select-types").StrictSelect<S, import("./input-types").SignUpPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
package/public/orm/index.js
CHANGED
|
@@ -51,6 +51,7 @@ const embeddingChunk_1 = require("./models/embeddingChunk");
|
|
|
51
51
|
const secureTableProvision_1 = require("./models/secureTableProvision");
|
|
52
52
|
const relationProvision_1 = require("./models/relationProvision");
|
|
53
53
|
const sessionSecretsModule_1 = require("./models/sessionSecretsModule");
|
|
54
|
+
const identityProvidersModule_1 = require("./models/identityProvidersModule");
|
|
54
55
|
const schemaGrant_1 = require("./models/schemaGrant");
|
|
55
56
|
const defaultPrivilege_1 = require("./models/defaultPrivilege");
|
|
56
57
|
const enum_1 = require("./models/enum");
|
|
@@ -90,6 +91,8 @@ const blueprintConstruction_1 = require("./models/blueprintConstruction");
|
|
|
90
91
|
const storageModule_1 = require("./models/storageModule");
|
|
91
92
|
const entityTypeProvision_1 = require("./models/entityTypeProvision");
|
|
92
93
|
const webauthnCredentialsModule_1 = require("./models/webauthnCredentialsModule");
|
|
94
|
+
const webauthnAuthModule_1 = require("./models/webauthnAuthModule");
|
|
95
|
+
const notificationsModule_1 = require("./models/notificationsModule");
|
|
93
96
|
const databaseProvisionModule_1 = require("./models/databaseProvisionModule");
|
|
94
97
|
const appAdminGrant_1 = require("./models/appAdminGrant");
|
|
95
98
|
const appOwnerGrant_1 = require("./models/appOwnerGrant");
|
|
@@ -111,12 +114,14 @@ const appLevel_1 = require("./models/appLevel");
|
|
|
111
114
|
const email_1 = require("./models/email");
|
|
112
115
|
const phoneNumber_1 = require("./models/phoneNumber");
|
|
113
116
|
const cryptoAddress_1 = require("./models/cryptoAddress");
|
|
117
|
+
const webauthnCredential_1 = require("./models/webauthnCredential");
|
|
114
118
|
const appInvite_1 = require("./models/appInvite");
|
|
115
119
|
const appClaimedInvite_1 = require("./models/appClaimedInvite");
|
|
116
120
|
const orgInvite_1 = require("./models/orgInvite");
|
|
117
121
|
const orgClaimedInvite_1 = require("./models/orgClaimedInvite");
|
|
118
122
|
const auditLog_1 = require("./models/auditLog");
|
|
119
123
|
const appPermissionDefault_1 = require("./models/appPermissionDefault");
|
|
124
|
+
const identityProvider_1 = require("./models/identityProvider");
|
|
120
125
|
const ref_1 = require("./models/ref");
|
|
121
126
|
const store_1 = require("./models/store");
|
|
122
127
|
const roleType_1 = require("./models/roleType");
|
|
@@ -126,12 +131,13 @@ const orgLimitDefault_1 = require("./models/orgLimitDefault");
|
|
|
126
131
|
const devicesModule_1 = require("./models/devicesModule");
|
|
127
132
|
const userConnectedAccount_1 = require("./models/userConnectedAccount");
|
|
128
133
|
const appMembershipDefault_1 = require("./models/appMembershipDefault");
|
|
134
|
+
const orgMembershipDefault_1 = require("./models/orgMembershipDefault");
|
|
129
135
|
const commit_1 = require("./models/commit");
|
|
130
136
|
const rateLimitsModule_1 = require("./models/rateLimitsModule");
|
|
131
137
|
const membershipType_1 = require("./models/membershipType");
|
|
132
|
-
const orgMembershipDefault_1 = require("./models/orgMembershipDefault");
|
|
133
138
|
const rlsModule_1 = require("./models/rlsModule");
|
|
134
139
|
const sqlAction_1 = require("./models/sqlAction");
|
|
140
|
+
const orgMembershipSetting_1 = require("./models/orgMembershipSetting");
|
|
135
141
|
const user_1 = require("./models/user");
|
|
136
142
|
const astMigration_1 = require("./models/astMigration");
|
|
137
143
|
const appMembership_1 = require("./models/appMembership");
|
|
@@ -203,6 +209,7 @@ function createClient(config) {
|
|
|
203
209
|
secureTableProvision: new secureTableProvision_1.SecureTableProvisionModel(client),
|
|
204
210
|
relationProvision: new relationProvision_1.RelationProvisionModel(client),
|
|
205
211
|
sessionSecretsModule: new sessionSecretsModule_1.SessionSecretsModuleModel(client),
|
|
212
|
+
identityProvidersModule: new identityProvidersModule_1.IdentityProvidersModuleModel(client),
|
|
206
213
|
schemaGrant: new schemaGrant_1.SchemaGrantModel(client),
|
|
207
214
|
defaultPrivilege: new defaultPrivilege_1.DefaultPrivilegeModel(client),
|
|
208
215
|
enum: new enum_1.EnumModel(client),
|
|
@@ -242,6 +249,8 @@ function createClient(config) {
|
|
|
242
249
|
storageModule: new storageModule_1.StorageModuleModel(client),
|
|
243
250
|
entityTypeProvision: new entityTypeProvision_1.EntityTypeProvisionModel(client),
|
|
244
251
|
webauthnCredentialsModule: new webauthnCredentialsModule_1.WebauthnCredentialsModuleModel(client),
|
|
252
|
+
webauthnAuthModule: new webauthnAuthModule_1.WebauthnAuthModuleModel(client),
|
|
253
|
+
notificationsModule: new notificationsModule_1.NotificationsModuleModel(client),
|
|
245
254
|
databaseProvisionModule: new databaseProvisionModule_1.DatabaseProvisionModuleModel(client),
|
|
246
255
|
appAdminGrant: new appAdminGrant_1.AppAdminGrantModel(client),
|
|
247
256
|
appOwnerGrant: new appOwnerGrant_1.AppOwnerGrantModel(client),
|
|
@@ -263,12 +272,14 @@ function createClient(config) {
|
|
|
263
272
|
email: new email_1.EmailModel(client),
|
|
264
273
|
phoneNumber: new phoneNumber_1.PhoneNumberModel(client),
|
|
265
274
|
cryptoAddress: new cryptoAddress_1.CryptoAddressModel(client),
|
|
275
|
+
webauthnCredential: new webauthnCredential_1.WebauthnCredentialModel(client),
|
|
266
276
|
appInvite: new appInvite_1.AppInviteModel(client),
|
|
267
277
|
appClaimedInvite: new appClaimedInvite_1.AppClaimedInviteModel(client),
|
|
268
278
|
orgInvite: new orgInvite_1.OrgInviteModel(client),
|
|
269
279
|
orgClaimedInvite: new orgClaimedInvite_1.OrgClaimedInviteModel(client),
|
|
270
280
|
auditLog: new auditLog_1.AuditLogModel(client),
|
|
271
281
|
appPermissionDefault: new appPermissionDefault_1.AppPermissionDefaultModel(client),
|
|
282
|
+
identityProvider: new identityProvider_1.IdentityProviderModel(client),
|
|
272
283
|
ref: new ref_1.RefModel(client),
|
|
273
284
|
store: new store_1.StoreModel(client),
|
|
274
285
|
roleType: new roleType_1.RoleTypeModel(client),
|
|
@@ -278,12 +289,13 @@ function createClient(config) {
|
|
|
278
289
|
devicesModule: new devicesModule_1.DevicesModuleModel(client),
|
|
279
290
|
userConnectedAccount: new userConnectedAccount_1.UserConnectedAccountModel(client),
|
|
280
291
|
appMembershipDefault: new appMembershipDefault_1.AppMembershipDefaultModel(client),
|
|
292
|
+
orgMembershipDefault: new orgMembershipDefault_1.OrgMembershipDefaultModel(client),
|
|
281
293
|
commit: new commit_1.CommitModel(client),
|
|
282
294
|
rateLimitsModule: new rateLimitsModule_1.RateLimitsModuleModel(client),
|
|
283
295
|
membershipType: new membershipType_1.MembershipTypeModel(client),
|
|
284
|
-
orgMembershipDefault: new orgMembershipDefault_1.OrgMembershipDefaultModel(client),
|
|
285
296
|
rlsModule: new rlsModule_1.RlsModuleModel(client),
|
|
286
297
|
sqlAction: new sqlAction_1.SqlActionModel(client),
|
|
298
|
+
orgMembershipSetting: new orgMembershipSetting_1.OrgMembershipSettingModel(client),
|
|
287
299
|
user: new user_1.UserModel(client),
|
|
288
300
|
astMigration: new astMigration_1.AstMigrationModel(client),
|
|
289
301
|
appMembership: new appMembership_1.AppMembershipModel(client),
|