@constructive-io/sdk 0.10.0 → 0.10.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.
Files changed (57) hide show
  1. package/README.md +0 -8
  2. package/admin/orm/input-types.d.ts +19 -95
  3. package/auth/orm/index.d.ts +6 -6
  4. package/auth/orm/index.js +6 -6
  5. package/auth/orm/input-types.d.ts +276 -311
  6. package/auth/orm/input-types.js +9 -1
  7. package/auth/orm/models/index.d.ts +3 -3
  8. package/auth/orm/models/index.js +7 -7
  9. package/esm/admin/orm/input-types.d.ts +19 -95
  10. package/esm/auth/orm/index.d.ts +6 -6
  11. package/esm/auth/orm/index.js +6 -6
  12. package/esm/auth/orm/input-types.d.ts +276 -311
  13. package/esm/auth/orm/input-types.js +9 -1
  14. package/esm/auth/orm/models/index.d.ts +3 -3
  15. package/esm/auth/orm/models/index.js +3 -3
  16. package/esm/objects/orm/input-types.d.ts +3 -27
  17. package/esm/public/orm/index.d.ts +81 -48
  18. package/esm/public/orm/index.js +26 -18
  19. package/esm/public/orm/input-types.d.ts +2318 -2557
  20. package/esm/public/orm/input-types.js +26 -1
  21. package/esm/public/orm/models/blueprint.d.ts +56 -0
  22. package/esm/public/orm/models/blueprint.js +94 -0
  23. package/esm/public/orm/models/blueprintTemplate.d.ts +56 -0
  24. package/esm/public/orm/models/blueprintTemplate.js +94 -0
  25. package/esm/public/orm/models/databaseTransfer.d.ts +56 -0
  26. package/esm/public/orm/models/databaseTransfer.js +94 -0
  27. package/esm/public/orm/models/embeddingChunk.d.ts +56 -0
  28. package/esm/public/orm/models/embeddingChunk.js +94 -0
  29. package/esm/public/orm/models/enum.d.ts +56 -0
  30. package/esm/public/orm/models/{uuidModule.js → enum.js} +23 -23
  31. package/esm/public/orm/models/index.d.ts +13 -9
  32. package/esm/public/orm/models/index.js +13 -9
  33. package/esm/public/orm/mutation/index.d.ts +98 -50
  34. package/esm/public/orm/mutation/index.js +126 -66
  35. package/index.js +8 -8
  36. package/objects/orm/input-types.d.ts +3 -27
  37. package/package.json +2 -2
  38. package/public/orm/index.d.ts +81 -48
  39. package/public/orm/index.js +26 -18
  40. package/public/orm/input-types.d.ts +2318 -2557
  41. package/public/orm/input-types.js +26 -1
  42. package/public/orm/models/blueprint.d.ts +56 -0
  43. package/public/orm/models/blueprint.js +98 -0
  44. package/public/orm/models/blueprintTemplate.d.ts +56 -0
  45. package/public/orm/models/blueprintTemplate.js +98 -0
  46. package/public/orm/models/databaseTransfer.d.ts +56 -0
  47. package/public/orm/models/databaseTransfer.js +98 -0
  48. package/public/orm/models/embeddingChunk.d.ts +56 -0
  49. package/public/orm/models/embeddingChunk.js +98 -0
  50. package/public/orm/models/enum.d.ts +56 -0
  51. package/public/orm/models/{uuidModule.js → enum.js} +25 -25
  52. package/public/orm/models/index.d.ts +13 -9
  53. package/public/orm/models/index.js +29 -21
  54. package/public/orm/mutation/index.d.ts +98 -50
  55. package/public/orm/mutation/index.js +126 -66
  56. package/esm/public/orm/models/uuidModule.d.ts +0 -56
  57. package/public/orm/models/uuidModule.d.ts +0 -56
@@ -252,10 +252,6 @@ export interface Ref {
252
252
  databaseId?: string | null;
253
253
  storeId?: string | null;
254
254
  commitId?: string | null;
255
- /** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
256
- nameTrgmSimilarity?: number | null;
257
- /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
258
- searchScore?: number | null;
259
255
  }
260
256
  /** A store represents an isolated object repository within a database. */
261
257
  export interface Store {
@@ -268,10 +264,6 @@ export interface Store {
268
264
  /** The current head tree_id for this store. */
269
265
  hash?: string | null;
270
266
  createdAt?: string | null;
271
- /** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
272
- nameTrgmSimilarity?: number | null;
273
- /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
274
- searchScore?: number | null;
275
267
  }
276
268
  /** A commit records changes to the repository. */
277
269
  export interface Commit {
@@ -291,10 +283,6 @@ export interface Commit {
291
283
  /** The root of the tree */
292
284
  treeId?: string | null;
293
285
  date?: string | null;
294
- /** TRGM similarity when searching `message`. Returns null when no trgm search filter is active. */
295
- messageTrgmSimilarity?: number | null;
296
- /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
297
- searchScore?: number | null;
298
286
  }
299
287
  export interface ConnectionResult<T> {
300
288
  nodes: T[];
@@ -342,8 +330,6 @@ export type RefSelect = {
342
330
  databaseId?: boolean;
343
331
  storeId?: boolean;
344
332
  commitId?: boolean;
345
- nameTrgmSimilarity?: boolean;
346
- searchScore?: boolean;
347
333
  };
348
334
  export type StoreSelect = {
349
335
  id?: boolean;
@@ -351,8 +337,6 @@ export type StoreSelect = {
351
337
  databaseId?: boolean;
352
338
  hash?: boolean;
353
339
  createdAt?: boolean;
354
- nameTrgmSimilarity?: boolean;
355
- searchScore?: boolean;
356
340
  };
357
341
  export type CommitSelect = {
358
342
  id?: boolean;
@@ -364,8 +348,6 @@ export type CommitSelect = {
364
348
  committerId?: boolean;
365
349
  treeId?: boolean;
366
350
  date?: boolean;
367
- messageTrgmSimilarity?: boolean;
368
- searchScore?: boolean;
369
351
  };
370
352
  export interface GetAllRecordFilter {
371
353
  path?: StringListFilter;
@@ -393,8 +375,6 @@ export interface RefFilter {
393
375
  databaseId?: UUIDFilter;
394
376
  storeId?: UUIDFilter;
395
377
  commitId?: UUIDFilter;
396
- nameTrgmSimilarity?: FloatFilter;
397
- searchScore?: FloatFilter;
398
378
  and?: RefFilter[];
399
379
  or?: RefFilter[];
400
380
  not?: RefFilter;
@@ -405,8 +385,6 @@ export interface StoreFilter {
405
385
  databaseId?: UUIDFilter;
406
386
  hash?: UUIDFilter;
407
387
  createdAt?: DatetimeFilter;
408
- nameTrgmSimilarity?: FloatFilter;
409
- searchScore?: FloatFilter;
410
388
  and?: StoreFilter[];
411
389
  or?: StoreFilter[];
412
390
  not?: StoreFilter;
@@ -421,17 +399,15 @@ export interface CommitFilter {
421
399
  committerId?: UUIDFilter;
422
400
  treeId?: UUIDFilter;
423
401
  date?: DatetimeFilter;
424
- messageTrgmSimilarity?: FloatFilter;
425
- searchScore?: FloatFilter;
426
402
  and?: CommitFilter[];
427
403
  or?: CommitFilter[];
428
404
  not?: CommitFilter;
429
405
  }
430
406
  export type GetAllRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'DATA_ASC' | 'DATA_DESC';
431
407
  export type ObjectOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FRZN_ASC' | 'FRZN_DESC';
432
- export type RefOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
433
- export type StoreOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
434
- export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'MESSAGE_TRGM_SIMILARITY_ASC' | 'MESSAGE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
408
+ export type RefOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC';
409
+ export type StoreOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
410
+ export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
435
411
  export interface CreateGetAllRecordInput {
436
412
  clientMutationId?: string;
437
413
  getAllRecord: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructive-io/sdk",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Constructive SDK - Auto-generated GraphQL types and ORM client",
6
6
  "main": "index.js",
@@ -53,5 +53,5 @@
53
53
  "tsx": "^4.19.0",
54
54
  "typescript": "^5.9.3"
55
55
  },
56
- "gitHead": "9bd7e1bb2eb2e66ac18dce50cc29b84ef667649e"
56
+ "gitHead": "72acea4e4aac3d026604e37ee90fc71c49c5cb4c"
57
57
  }
@@ -1,7 +1,7 @@
1
1
  import type { OrmClientConfig } from './client';
2
+ import { GetAllRecordModel } from './models/getAllRecord';
2
3
  import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
3
4
  import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
4
- import { GetAllRecordModel } from './models/getAllRecord';
5
5
  import { ObjectModel } from './models/object';
6
6
  import { AppPermissionModel } from './models/appPermission';
7
7
  import { OrgPermissionModel } from './models/orgPermission';
@@ -23,11 +23,13 @@ import { ViewModel } from './models/view';
23
23
  import { ViewTableModel } from './models/viewTable';
24
24
  import { ViewGrantModel } from './models/viewGrant';
25
25
  import { ViewRuleModel } from './models/viewRule';
26
+ import { EmbeddingChunkModel } from './models/embeddingChunk';
26
27
  import { TableTemplateModuleModel } from './models/tableTemplateModule';
27
28
  import { SecureTableProvisionModel } from './models/secureTableProvision';
28
29
  import { RelationProvisionModel } from './models/relationProvision';
29
30
  import { SchemaGrantModel } from './models/schemaGrant';
30
31
  import { DefaultPrivilegeModel } from './models/defaultPrivilege';
32
+ import { EnumModel } from './models/enum';
31
33
  import { ApiSchemaModel } from './models/apiSchema';
32
34
  import { ApiModuleModel } from './models/apiModule';
33
35
  import { DomainModel } from './models/domain';
@@ -35,6 +37,7 @@ import { SiteMetadatumModel } from './models/siteMetadatum';
35
37
  import { SiteModuleModel } from './models/siteModule';
36
38
  import { SiteThemeModel } from './models/siteTheme';
37
39
  import { TriggerFunctionModel } from './models/triggerFunction';
40
+ import { DatabaseTransferModel } from './models/databaseTransfer';
38
41
  import { ApiModel } from './models/api';
39
42
  import { SiteModel } from './models/site';
40
43
  import { AppModel } from './models/app';
@@ -58,7 +61,8 @@ import { SecretsModuleModel } from './models/secretsModule';
58
61
  import { SessionsModuleModel } from './models/sessionsModule';
59
62
  import { UserAuthModuleModel } from './models/userAuthModule';
60
63
  import { UsersModuleModel } from './models/usersModule';
61
- import { UuidModuleModel } from './models/uuidModule';
64
+ import { BlueprintModel } from './models/blueprint';
65
+ import { BlueprintTemplateModel } from './models/blueprintTemplate';
62
66
  import { DatabaseProvisionModuleModel } from './models/databaseProvisionModule';
63
67
  import { AppAdminGrantModel } from './models/appAdminGrant';
64
68
  import { AppOwnerGrantModel } from './models/appOwnerGrant';
@@ -70,34 +74,34 @@ import { OrgOwnerGrantModel } from './models/orgOwnerGrant';
70
74
  import { OrgGrantModel } from './models/orgGrant';
71
75
  import { OrgChartEdgeModel } from './models/orgChartEdge';
72
76
  import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
77
+ import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
73
78
  import { AppLimitModel } from './models/appLimit';
74
79
  import { OrgLimitModel } from './models/orgLimit';
75
80
  import { AppStepModel } from './models/appStep';
76
81
  import { AppAchievementModel } from './models/appAchievement';
82
+ import { AppLevelModel } from './models/appLevel';
83
+ import { EmailModel } from './models/email';
84
+ import { PhoneNumberModel } from './models/phoneNumber';
85
+ import { CryptoAddressModel } from './models/cryptoAddress';
86
+ import { ConnectedAccountModel } from './models/connectedAccount';
77
87
  import { InviteModel } from './models/invite';
78
88
  import { ClaimedInviteModel } from './models/claimedInvite';
79
89
  import { OrgInviteModel } from './models/orgInvite';
80
90
  import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
91
+ import { AuditLogModel } from './models/auditLog';
81
92
  import { RefModel } from './models/ref';
82
93
  import { StoreModel } from './models/store';
83
94
  import { AppPermissionDefaultModel } from './models/appPermissionDefault';
84
- import { CryptoAddressModel } from './models/cryptoAddress';
85
95
  import { RoleTypeModel } from './models/roleType';
86
- import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
87
- import { PhoneNumberModel } from './models/phoneNumber';
88
96
  import { AppLimitDefaultModel } from './models/appLimitDefault';
89
97
  import { OrgLimitDefaultModel } from './models/orgLimitDefault';
90
- import { ConnectedAccountModel } from './models/connectedAccount';
91
98
  import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
92
99
  import { MembershipTypeModel } from './models/membershipType';
93
100
  import { CommitModel } from './models/commit';
94
101
  import { AppMembershipDefaultModel } from './models/appMembershipDefault';
95
102
  import { RlsModuleModel } from './models/rlsModule';
96
103
  import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
97
- import { AuditLogModel } from './models/auditLog';
98
- import { AppLevelModel } from './models/appLevel';
99
104
  import { SqlMigrationModel } from './models/sqlMigration';
100
- import { EmailModel } from './models/email';
101
105
  import { UserModel } from './models/user';
102
106
  import { AstMigrationModel } from './models/astMigration';
103
107
  import { AppMembershipModel } from './models/appMembership';
@@ -133,9 +137,9 @@ export { createMutationOperations } from './mutation';
133
137
  * ```
134
138
  */
135
139
  export declare function createClient(config: OrmClientConfig): {
140
+ getAllRecord: GetAllRecordModel;
136
141
  orgGetManagersRecord: OrgGetManagersRecordModel;
137
142
  orgGetSubordinatesRecord: OrgGetSubordinatesRecordModel;
138
- getAllRecord: GetAllRecordModel;
139
143
  object: ObjectModel;
140
144
  appPermission: AppPermissionModel;
141
145
  orgPermission: OrgPermissionModel;
@@ -157,11 +161,13 @@ export declare function createClient(config: OrmClientConfig): {
157
161
  viewTable: ViewTableModel;
158
162
  viewGrant: ViewGrantModel;
159
163
  viewRule: ViewRuleModel;
164
+ embeddingChunk: EmbeddingChunkModel;
160
165
  tableTemplateModule: TableTemplateModuleModel;
161
166
  secureTableProvision: SecureTableProvisionModel;
162
167
  relationProvision: RelationProvisionModel;
163
168
  schemaGrant: SchemaGrantModel;
164
169
  defaultPrivilege: DefaultPrivilegeModel;
170
+ enum: EnumModel;
165
171
  apiSchema: ApiSchemaModel;
166
172
  apiModule: ApiModuleModel;
167
173
  domain: DomainModel;
@@ -169,6 +175,7 @@ export declare function createClient(config: OrmClientConfig): {
169
175
  siteModule: SiteModuleModel;
170
176
  siteTheme: SiteThemeModel;
171
177
  triggerFunction: TriggerFunctionModel;
178
+ databaseTransfer: DatabaseTransferModel;
172
179
  api: ApiModel;
173
180
  site: SiteModel;
174
181
  app: AppModel;
@@ -192,7 +199,8 @@ export declare function createClient(config: OrmClientConfig): {
192
199
  sessionsModule: SessionsModuleModel;
193
200
  userAuthModule: UserAuthModuleModel;
194
201
  usersModule: UsersModuleModel;
195
- uuidModule: UuidModuleModel;
202
+ blueprint: BlueprintModel;
203
+ blueprintTemplate: BlueprintTemplateModel;
196
204
  databaseProvisionModule: DatabaseProvisionModuleModel;
197
205
  appAdminGrant: AppAdminGrantModel;
198
206
  appOwnerGrant: AppOwnerGrantModel;
@@ -204,34 +212,34 @@ export declare function createClient(config: OrmClientConfig): {
204
212
  orgGrant: OrgGrantModel;
205
213
  orgChartEdge: OrgChartEdgeModel;
206
214
  orgChartEdgeGrant: OrgChartEdgeGrantModel;
215
+ orgPermissionDefault: OrgPermissionDefaultModel;
207
216
  appLimit: AppLimitModel;
208
217
  orgLimit: OrgLimitModel;
209
218
  appStep: AppStepModel;
210
219
  appAchievement: AppAchievementModel;
220
+ appLevel: AppLevelModel;
221
+ email: EmailModel;
222
+ phoneNumber: PhoneNumberModel;
223
+ cryptoAddress: CryptoAddressModel;
224
+ connectedAccount: ConnectedAccountModel;
211
225
  invite: InviteModel;
212
226
  claimedInvite: ClaimedInviteModel;
213
227
  orgInvite: OrgInviteModel;
214
228
  orgClaimedInvite: OrgClaimedInviteModel;
229
+ auditLog: AuditLogModel;
215
230
  ref: RefModel;
216
231
  store: StoreModel;
217
232
  appPermissionDefault: AppPermissionDefaultModel;
218
- cryptoAddress: CryptoAddressModel;
219
233
  roleType: RoleTypeModel;
220
- orgPermissionDefault: OrgPermissionDefaultModel;
221
- phoneNumber: PhoneNumberModel;
222
234
  appLimitDefault: AppLimitDefaultModel;
223
235
  orgLimitDefault: OrgLimitDefaultModel;
224
- connectedAccount: ConnectedAccountModel;
225
236
  nodeTypeRegistry: NodeTypeRegistryModel;
226
237
  membershipType: MembershipTypeModel;
227
238
  commit: CommitModel;
228
239
  appMembershipDefault: AppMembershipDefaultModel;
229
240
  rlsModule: RlsModuleModel;
230
241
  orgMembershipDefault: OrgMembershipDefaultModel;
231
- auditLog: AuditLogModel;
232
- appLevel: AppLevelModel;
233
242
  sqlMigration: SqlMigrationModel;
234
- email: EmailModel;
235
243
  user: UserModel;
236
244
  astMigration: AstMigrationModel;
237
245
  appMembership: AppMembershipModel;
@@ -334,20 +342,30 @@ export declare function createClient(config: OrmClientConfig): {
334
342
  }>;
335
343
  };
336
344
  mutation: {
345
+ sendAccountDeletionEmail: <S extends import("./input-types").SendAccountDeletionEmailPayloadSelect>(args: import("./mutation").SendAccountDeletionEmailVariables, options: {
346
+ select: S;
347
+ } & import("./select-types").StrictSelect<S, import("./input-types").SendAccountDeletionEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
348
+ sendAccountDeletionEmail: import("./select-types").InferSelectResult<import("./input-types").SendAccountDeletionEmailPayload, S> | null;
349
+ }>;
337
350
  signOut: <S extends import("./input-types").SignOutPayloadSelect>(args: import("./mutation").SignOutVariables, options: {
338
351
  select: S;
339
352
  } & import("./select-types").StrictSelect<S, import("./input-types").SignOutPayloadSelect>) => import("./query-builder").QueryBuilder<{
340
353
  signOut: import("./select-types").InferSelectResult<import("./input-types").SignOutPayload, S> | null;
341
354
  }>;
342
- sendAccountDeletionEmail: <S extends import("./input-types").SendAccountDeletionEmailPayloadSelect>(args: import("./mutation").SendAccountDeletionEmailVariables, options: {
355
+ acceptDatabaseTransfer: <S extends import("./input-types").AcceptDatabaseTransferPayloadSelect>(args: import("./mutation").AcceptDatabaseTransferVariables, options: {
343
356
  select: S;
344
- } & import("./select-types").StrictSelect<S, import("./input-types").SendAccountDeletionEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
345
- sendAccountDeletionEmail: import("./select-types").InferSelectResult<import("./input-types").SendAccountDeletionEmailPayload, S> | null;
357
+ } & import("./select-types").StrictSelect<S, import("./input-types").AcceptDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
358
+ acceptDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").AcceptDatabaseTransferPayload, S> | null;
346
359
  }>;
347
- checkPassword: <S extends import("./input-types").CheckPasswordPayloadSelect>(args: import("./mutation").CheckPasswordVariables, options: {
360
+ cancelDatabaseTransfer: <S extends import("./input-types").CancelDatabaseTransferPayloadSelect>(args: import("./mutation").CancelDatabaseTransferVariables, options: {
348
361
  select: S;
349
- } & import("./select-types").StrictSelect<S, import("./input-types").CheckPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
350
- checkPassword: import("./select-types").InferSelectResult<import("./input-types").CheckPasswordPayload, S> | null;
362
+ } & import("./select-types").StrictSelect<S, import("./input-types").CancelDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
363
+ cancelDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").CancelDatabaseTransferPayload, S> | null;
364
+ }>;
365
+ rejectDatabaseTransfer: <S extends import("./input-types").RejectDatabaseTransferPayloadSelect>(args: import("./mutation").RejectDatabaseTransferVariables, options: {
366
+ select: S;
367
+ } & import("./select-types").StrictSelect<S, import("./input-types").RejectDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
368
+ rejectDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").RejectDatabaseTransferPayload, S> | null;
351
369
  }>;
352
370
  submitInviteCode: <S extends import("./input-types").SubmitInviteCodePayloadSelect>(args: import("./mutation").SubmitInviteCodeVariables, options: {
353
371
  select: S;
@@ -359,15 +377,10 @@ export declare function createClient(config: OrmClientConfig): {
359
377
  } & import("./select-types").StrictSelect<S, import("./input-types").SubmitOrgInviteCodePayloadSelect>) => import("./query-builder").QueryBuilder<{
360
378
  submitOrgInviteCode: import("./select-types").InferSelectResult<import("./input-types").SubmitOrgInviteCodePayload, S> | null;
361
379
  }>;
362
- freezeObjects: <S extends import("./input-types").FreezeObjectsPayloadSelect>(args: import("./mutation").FreezeObjectsVariables, options: {
363
- select: S;
364
- } & import("./select-types").StrictSelect<S, import("./input-types").FreezeObjectsPayloadSelect>) => import("./query-builder").QueryBuilder<{
365
- freezeObjects: import("./select-types").InferSelectResult<import("./input-types").FreezeObjectsPayload, S> | null;
366
- }>;
367
- initEmptyRepo: <S extends import("./input-types").InitEmptyRepoPayloadSelect>(args: import("./mutation").InitEmptyRepoVariables, options: {
380
+ checkPassword: <S extends import("./input-types").CheckPasswordPayloadSelect>(args: import("./mutation").CheckPasswordVariables, options: {
368
381
  select: S;
369
- } & import("./select-types").StrictSelect<S, import("./input-types").InitEmptyRepoPayloadSelect>) => import("./query-builder").QueryBuilder<{
370
- initEmptyRepo: import("./select-types").InferSelectResult<import("./input-types").InitEmptyRepoPayload, S> | null;
382
+ } & import("./select-types").StrictSelect<S, import("./input-types").CheckPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
383
+ checkPassword: import("./select-types").InferSelectResult<import("./input-types").CheckPasswordPayload, S> | null;
371
384
  }>;
372
385
  confirmDeleteAccount: <S extends import("./input-types").ConfirmDeleteAccountPayloadSelect>(args: import("./mutation").ConfirmDeleteAccountVariables, options: {
373
386
  select: S;
@@ -384,25 +397,30 @@ export declare function createClient(config: OrmClientConfig): {
384
397
  } & import("./select-types").StrictSelect<S, import("./input-types").VerifyEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
385
398
  verifyEmail: import("./select-types").InferSelectResult<import("./input-types").VerifyEmailPayload, S> | null;
386
399
  }>;
387
- removeNodeAtPath: <S extends import("./input-types").RemoveNodeAtPathPayloadSelect>(args: import("./mutation").RemoveNodeAtPathVariables, options: {
400
+ freezeObjects: <S extends import("./input-types").FreezeObjectsPayloadSelect>(args: import("./mutation").FreezeObjectsVariables, options: {
388
401
  select: S;
389
- } & import("./select-types").StrictSelect<S, import("./input-types").RemoveNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
390
- removeNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").RemoveNodeAtPathPayload, S> | null;
402
+ } & import("./select-types").StrictSelect<S, import("./input-types").FreezeObjectsPayloadSelect>) => import("./query-builder").QueryBuilder<{
403
+ freezeObjects: import("./select-types").InferSelectResult<import("./input-types").FreezeObjectsPayload, S> | null;
404
+ }>;
405
+ initEmptyRepo: <S extends import("./input-types").InitEmptyRepoPayloadSelect>(args: import("./mutation").InitEmptyRepoVariables, options: {
406
+ select: S;
407
+ } & import("./select-types").StrictSelect<S, import("./input-types").InitEmptyRepoPayloadSelect>) => import("./query-builder").QueryBuilder<{
408
+ initEmptyRepo: import("./select-types").InferSelectResult<import("./input-types").InitEmptyRepoPayload, S> | null;
409
+ }>;
410
+ constructBlueprint: <S extends import("./input-types").ConstructBlueprintPayloadSelect>(args: import("./mutation").ConstructBlueprintVariables, options: {
411
+ select: S;
412
+ } & import("./select-types").StrictSelect<S, import("./input-types").ConstructBlueprintPayloadSelect>) => import("./query-builder").QueryBuilder<{
413
+ constructBlueprint: import("./select-types").InferSelectResult<import("./input-types").ConstructBlueprintPayload, S> | null;
391
414
  }>;
392
415
  resetPassword: <S extends import("./input-types").ResetPasswordPayloadSelect>(args: import("./mutation").ResetPasswordVariables, options: {
393
416
  select: S;
394
417
  } & import("./select-types").StrictSelect<S, import("./input-types").ResetPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
395
418
  resetPassword: import("./select-types").InferSelectResult<import("./input-types").ResetPasswordPayload, S> | null;
396
419
  }>;
397
- bootstrapUser: <S extends import("./input-types").BootstrapUserPayloadSelect>(args: import("./mutation").BootstrapUserVariables, options: {
398
- select: S;
399
- } & import("./select-types").StrictSelect<S, import("./input-types").BootstrapUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
400
- bootstrapUser: import("./select-types").InferSelectResult<import("./input-types").BootstrapUserPayload, S> | null;
401
- }>;
402
- setFieldOrder: <S extends import("./input-types").SetFieldOrderPayloadSelect>(args: import("./mutation").SetFieldOrderVariables, options: {
420
+ removeNodeAtPath: <S extends import("./input-types").RemoveNodeAtPathPayloadSelect>(args: import("./mutation").RemoveNodeAtPathVariables, options: {
403
421
  select: S;
404
- } & import("./select-types").StrictSelect<S, import("./input-types").SetFieldOrderPayloadSelect>) => import("./query-builder").QueryBuilder<{
405
- setFieldOrder: import("./select-types").InferSelectResult<import("./input-types").SetFieldOrderPayload, S> | null;
422
+ } & import("./select-types").StrictSelect<S, import("./input-types").RemoveNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
423
+ removeNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").RemoveNodeAtPathPayload, S> | null;
406
424
  }>;
407
425
  setDataAtPath: <S extends import("./input-types").SetDataAtPathPayloadSelect>(args: import("./mutation").SetDataAtPathVariables, options: {
408
426
  select: S;
@@ -414,11 +432,26 @@ export declare function createClient(config: OrmClientConfig): {
414
432
  } & import("./select-types").StrictSelect<S, import("./input-types").SetPropsAndCommitPayloadSelect>) => import("./query-builder").QueryBuilder<{
415
433
  setPropsAndCommit: import("./select-types").InferSelectResult<import("./input-types").SetPropsAndCommitPayload, S> | null;
416
434
  }>;
435
+ copyTemplateToBlueprint: <S extends import("./input-types").CopyTemplateToBlueprintPayloadSelect>(args: import("./mutation").CopyTemplateToBlueprintVariables, options: {
436
+ select: S;
437
+ } & import("./select-types").StrictSelect<S, import("./input-types").CopyTemplateToBlueprintPayloadSelect>) => import("./query-builder").QueryBuilder<{
438
+ copyTemplateToBlueprint: import("./select-types").InferSelectResult<import("./input-types").CopyTemplateToBlueprintPayload, S> | null;
439
+ }>;
417
440
  provisionDatabaseWithUser: <S extends import("./input-types").ProvisionDatabaseWithUserPayloadSelect>(args: import("./mutation").ProvisionDatabaseWithUserVariables, options: {
418
441
  select: S;
419
442
  } & import("./select-types").StrictSelect<S, import("./input-types").ProvisionDatabaseWithUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
420
443
  provisionDatabaseWithUser: import("./select-types").InferSelectResult<import("./input-types").ProvisionDatabaseWithUserPayload, S> | null;
421
444
  }>;
445
+ bootstrapUser: <S extends import("./input-types").BootstrapUserPayloadSelect>(args: import("./mutation").BootstrapUserVariables, options: {
446
+ select: S;
447
+ } & import("./select-types").StrictSelect<S, import("./input-types").BootstrapUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
448
+ bootstrapUser: import("./select-types").InferSelectResult<import("./input-types").BootstrapUserPayload, S> | null;
449
+ }>;
450
+ setFieldOrder: <S extends import("./input-types").SetFieldOrderPayloadSelect>(args: import("./mutation").SetFieldOrderVariables, options: {
451
+ select: S;
452
+ } & import("./select-types").StrictSelect<S, import("./input-types").SetFieldOrderPayloadSelect>) => import("./query-builder").QueryBuilder<{
453
+ setFieldOrder: import("./select-types").InferSelectResult<import("./input-types").SetFieldOrderPayload, S> | null;
454
+ }>;
422
455
  insertNodeAtPath: <S extends import("./input-types").InsertNodeAtPathPayloadSelect>(args: import("./mutation").InsertNodeAtPathVariables, options: {
423
456
  select: S;
424
457
  } & import("./select-types").StrictSelect<S, import("./input-types").InsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
@@ -469,16 +502,16 @@ export declare function createClient(config: OrmClientConfig): {
469
502
  } & import("./select-types").StrictSelect<S, import("./input-types").OneTimeTokenPayloadSelect>) => import("./query-builder").QueryBuilder<{
470
503
  oneTimeToken: import("./select-types").InferSelectResult<import("./input-types").OneTimeTokenPayload, S> | null;
471
504
  }>;
472
- forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
473
- select: S;
474
- } & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
475
- forgotPassword: import("./select-types").InferSelectResult<import("./input-types").ForgotPasswordPayload, S> | null;
476
- }>;
477
505
  sendVerificationEmail: <S extends import("./input-types").SendVerificationEmailPayloadSelect>(args: import("./mutation").SendVerificationEmailVariables, options: {
478
506
  select: S;
479
507
  } & import("./select-types").StrictSelect<S, import("./input-types").SendVerificationEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
480
508
  sendVerificationEmail: import("./select-types").InferSelectResult<import("./input-types").SendVerificationEmailPayload, S> | null;
481
509
  }>;
510
+ forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
511
+ select: S;
512
+ } & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
513
+ forgotPassword: import("./select-types").InferSelectResult<import("./input-types").ForgotPasswordPayload, S> | null;
514
+ }>;
482
515
  verifyPassword: <S extends import("./input-types").VerifyPasswordPayloadSelect>(args: import("./mutation").VerifyPasswordVariables, options: {
483
516
  select: S;
484
517
  } & import("./select-types").StrictSelect<S, import("./input-types").VerifyPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
@@ -22,9 +22,9 @@ exports.createClient = createClient;
22
22
  * DO NOT EDIT - changes will be overwritten
23
23
  */
24
24
  const client_1 = require("./client");
25
+ const getAllRecord_1 = require("./models/getAllRecord");
25
26
  const orgGetManagersRecord_1 = require("./models/orgGetManagersRecord");
26
27
  const orgGetSubordinatesRecord_1 = require("./models/orgGetSubordinatesRecord");
27
- const getAllRecord_1 = require("./models/getAllRecord");
28
28
  const object_1 = require("./models/object");
29
29
  const appPermission_1 = require("./models/appPermission");
30
30
  const orgPermission_1 = require("./models/orgPermission");
@@ -46,11 +46,13 @@ const view_1 = require("./models/view");
46
46
  const viewTable_1 = require("./models/viewTable");
47
47
  const viewGrant_1 = require("./models/viewGrant");
48
48
  const viewRule_1 = require("./models/viewRule");
49
+ const embeddingChunk_1 = require("./models/embeddingChunk");
49
50
  const tableTemplateModule_1 = require("./models/tableTemplateModule");
50
51
  const secureTableProvision_1 = require("./models/secureTableProvision");
51
52
  const relationProvision_1 = require("./models/relationProvision");
52
53
  const schemaGrant_1 = require("./models/schemaGrant");
53
54
  const defaultPrivilege_1 = require("./models/defaultPrivilege");
55
+ const enum_1 = require("./models/enum");
54
56
  const apiSchema_1 = require("./models/apiSchema");
55
57
  const apiModule_1 = require("./models/apiModule");
56
58
  const domain_1 = require("./models/domain");
@@ -58,6 +60,7 @@ const siteMetadatum_1 = require("./models/siteMetadatum");
58
60
  const siteModule_1 = require("./models/siteModule");
59
61
  const siteTheme_1 = require("./models/siteTheme");
60
62
  const triggerFunction_1 = require("./models/triggerFunction");
63
+ const databaseTransfer_1 = require("./models/databaseTransfer");
61
64
  const api_1 = require("./models/api");
62
65
  const site_1 = require("./models/site");
63
66
  const app_1 = require("./models/app");
@@ -81,7 +84,8 @@ const secretsModule_1 = require("./models/secretsModule");
81
84
  const sessionsModule_1 = require("./models/sessionsModule");
82
85
  const userAuthModule_1 = require("./models/userAuthModule");
83
86
  const usersModule_1 = require("./models/usersModule");
84
- const uuidModule_1 = require("./models/uuidModule");
87
+ const blueprint_1 = require("./models/blueprint");
88
+ const blueprintTemplate_1 = require("./models/blueprintTemplate");
85
89
  const databaseProvisionModule_1 = require("./models/databaseProvisionModule");
86
90
  const appAdminGrant_1 = require("./models/appAdminGrant");
87
91
  const appOwnerGrant_1 = require("./models/appOwnerGrant");
@@ -93,34 +97,34 @@ const orgOwnerGrant_1 = require("./models/orgOwnerGrant");
93
97
  const orgGrant_1 = require("./models/orgGrant");
94
98
  const orgChartEdge_1 = require("./models/orgChartEdge");
95
99
  const orgChartEdgeGrant_1 = require("./models/orgChartEdgeGrant");
100
+ const orgPermissionDefault_1 = require("./models/orgPermissionDefault");
96
101
  const appLimit_1 = require("./models/appLimit");
97
102
  const orgLimit_1 = require("./models/orgLimit");
98
103
  const appStep_1 = require("./models/appStep");
99
104
  const appAchievement_1 = require("./models/appAchievement");
105
+ const appLevel_1 = require("./models/appLevel");
106
+ const email_1 = require("./models/email");
107
+ const phoneNumber_1 = require("./models/phoneNumber");
108
+ const cryptoAddress_1 = require("./models/cryptoAddress");
109
+ const connectedAccount_1 = require("./models/connectedAccount");
100
110
  const invite_1 = require("./models/invite");
101
111
  const claimedInvite_1 = require("./models/claimedInvite");
102
112
  const orgInvite_1 = require("./models/orgInvite");
103
113
  const orgClaimedInvite_1 = require("./models/orgClaimedInvite");
114
+ const auditLog_1 = require("./models/auditLog");
104
115
  const ref_1 = require("./models/ref");
105
116
  const store_1 = require("./models/store");
106
117
  const appPermissionDefault_1 = require("./models/appPermissionDefault");
107
- const cryptoAddress_1 = require("./models/cryptoAddress");
108
118
  const roleType_1 = require("./models/roleType");
109
- const orgPermissionDefault_1 = require("./models/orgPermissionDefault");
110
- const phoneNumber_1 = require("./models/phoneNumber");
111
119
  const appLimitDefault_1 = require("./models/appLimitDefault");
112
120
  const orgLimitDefault_1 = require("./models/orgLimitDefault");
113
- const connectedAccount_1 = require("./models/connectedAccount");
114
121
  const nodeTypeRegistry_1 = require("./models/nodeTypeRegistry");
115
122
  const membershipType_1 = require("./models/membershipType");
116
123
  const commit_1 = require("./models/commit");
117
124
  const appMembershipDefault_1 = require("./models/appMembershipDefault");
118
125
  const rlsModule_1 = require("./models/rlsModule");
119
126
  const orgMembershipDefault_1 = require("./models/orgMembershipDefault");
120
- const auditLog_1 = require("./models/auditLog");
121
- const appLevel_1 = require("./models/appLevel");
122
127
  const sqlMigration_1 = require("./models/sqlMigration");
123
- const email_1 = require("./models/email");
124
128
  const user_1 = require("./models/user");
125
129
  const astMigration_1 = require("./models/astMigration");
126
130
  const appMembership_1 = require("./models/appMembership");
@@ -163,9 +167,9 @@ Object.defineProperty(exports, "createMutationOperations", { enumerable: true, g
163
167
  function createClient(config) {
164
168
  const client = new client_1.OrmClient(config);
165
169
  return {
170
+ getAllRecord: new getAllRecord_1.GetAllRecordModel(client),
166
171
  orgGetManagersRecord: new orgGetManagersRecord_1.OrgGetManagersRecordModel(client),
167
172
  orgGetSubordinatesRecord: new orgGetSubordinatesRecord_1.OrgGetSubordinatesRecordModel(client),
168
- getAllRecord: new getAllRecord_1.GetAllRecordModel(client),
169
173
  object: new object_1.ObjectModel(client),
170
174
  appPermission: new appPermission_1.AppPermissionModel(client),
171
175
  orgPermission: new orgPermission_1.OrgPermissionModel(client),
@@ -187,11 +191,13 @@ function createClient(config) {
187
191
  viewTable: new viewTable_1.ViewTableModel(client),
188
192
  viewGrant: new viewGrant_1.ViewGrantModel(client),
189
193
  viewRule: new viewRule_1.ViewRuleModel(client),
194
+ embeddingChunk: new embeddingChunk_1.EmbeddingChunkModel(client),
190
195
  tableTemplateModule: new tableTemplateModule_1.TableTemplateModuleModel(client),
191
196
  secureTableProvision: new secureTableProvision_1.SecureTableProvisionModel(client),
192
197
  relationProvision: new relationProvision_1.RelationProvisionModel(client),
193
198
  schemaGrant: new schemaGrant_1.SchemaGrantModel(client),
194
199
  defaultPrivilege: new defaultPrivilege_1.DefaultPrivilegeModel(client),
200
+ enum: new enum_1.EnumModel(client),
195
201
  apiSchema: new apiSchema_1.ApiSchemaModel(client),
196
202
  apiModule: new apiModule_1.ApiModuleModel(client),
197
203
  domain: new domain_1.DomainModel(client),
@@ -199,6 +205,7 @@ function createClient(config) {
199
205
  siteModule: new siteModule_1.SiteModuleModel(client),
200
206
  siteTheme: new siteTheme_1.SiteThemeModel(client),
201
207
  triggerFunction: new triggerFunction_1.TriggerFunctionModel(client),
208
+ databaseTransfer: new databaseTransfer_1.DatabaseTransferModel(client),
202
209
  api: new api_1.ApiModel(client),
203
210
  site: new site_1.SiteModel(client),
204
211
  app: new app_1.AppModel(client),
@@ -222,7 +229,8 @@ function createClient(config) {
222
229
  sessionsModule: new sessionsModule_1.SessionsModuleModel(client),
223
230
  userAuthModule: new userAuthModule_1.UserAuthModuleModel(client),
224
231
  usersModule: new usersModule_1.UsersModuleModel(client),
225
- uuidModule: new uuidModule_1.UuidModuleModel(client),
232
+ blueprint: new blueprint_1.BlueprintModel(client),
233
+ blueprintTemplate: new blueprintTemplate_1.BlueprintTemplateModel(client),
226
234
  databaseProvisionModule: new databaseProvisionModule_1.DatabaseProvisionModuleModel(client),
227
235
  appAdminGrant: new appAdminGrant_1.AppAdminGrantModel(client),
228
236
  appOwnerGrant: new appOwnerGrant_1.AppOwnerGrantModel(client),
@@ -234,34 +242,34 @@ function createClient(config) {
234
242
  orgGrant: new orgGrant_1.OrgGrantModel(client),
235
243
  orgChartEdge: new orgChartEdge_1.OrgChartEdgeModel(client),
236
244
  orgChartEdgeGrant: new orgChartEdgeGrant_1.OrgChartEdgeGrantModel(client),
245
+ orgPermissionDefault: new orgPermissionDefault_1.OrgPermissionDefaultModel(client),
237
246
  appLimit: new appLimit_1.AppLimitModel(client),
238
247
  orgLimit: new orgLimit_1.OrgLimitModel(client),
239
248
  appStep: new appStep_1.AppStepModel(client),
240
249
  appAchievement: new appAchievement_1.AppAchievementModel(client),
250
+ appLevel: new appLevel_1.AppLevelModel(client),
251
+ email: new email_1.EmailModel(client),
252
+ phoneNumber: new phoneNumber_1.PhoneNumberModel(client),
253
+ cryptoAddress: new cryptoAddress_1.CryptoAddressModel(client),
254
+ connectedAccount: new connectedAccount_1.ConnectedAccountModel(client),
241
255
  invite: new invite_1.InviteModel(client),
242
256
  claimedInvite: new claimedInvite_1.ClaimedInviteModel(client),
243
257
  orgInvite: new orgInvite_1.OrgInviteModel(client),
244
258
  orgClaimedInvite: new orgClaimedInvite_1.OrgClaimedInviteModel(client),
259
+ auditLog: new auditLog_1.AuditLogModel(client),
245
260
  ref: new ref_1.RefModel(client),
246
261
  store: new store_1.StoreModel(client),
247
262
  appPermissionDefault: new appPermissionDefault_1.AppPermissionDefaultModel(client),
248
- cryptoAddress: new cryptoAddress_1.CryptoAddressModel(client),
249
263
  roleType: new roleType_1.RoleTypeModel(client),
250
- orgPermissionDefault: new orgPermissionDefault_1.OrgPermissionDefaultModel(client),
251
- phoneNumber: new phoneNumber_1.PhoneNumberModel(client),
252
264
  appLimitDefault: new appLimitDefault_1.AppLimitDefaultModel(client),
253
265
  orgLimitDefault: new orgLimitDefault_1.OrgLimitDefaultModel(client),
254
- connectedAccount: new connectedAccount_1.ConnectedAccountModel(client),
255
266
  nodeTypeRegistry: new nodeTypeRegistry_1.NodeTypeRegistryModel(client),
256
267
  membershipType: new membershipType_1.MembershipTypeModel(client),
257
268
  commit: new commit_1.CommitModel(client),
258
269
  appMembershipDefault: new appMembershipDefault_1.AppMembershipDefaultModel(client),
259
270
  rlsModule: new rlsModule_1.RlsModuleModel(client),
260
271
  orgMembershipDefault: new orgMembershipDefault_1.OrgMembershipDefaultModel(client),
261
- auditLog: new auditLog_1.AuditLogModel(client),
262
- appLevel: new appLevel_1.AppLevelModel(client),
263
272
  sqlMigration: new sqlMigration_1.SqlMigrationModel(client),
264
- email: new email_1.EmailModel(client),
265
273
  user: new user_1.UserModel(client),
266
274
  astMigration: new astMigration_1.AstMigrationModel(client),
267
275
  appMembership: new appMembership_1.AppMembershipModel(client),