@@ -11,17 +11,17 @@ export type ChatSyncConnectionStatus = S.Schema.Type<typeof ChatSyncConnectionSt
1111
1212class Model extends M . Class < Model > ( "ChatSyncConnection" ) ( {
1313 id : M . Generated ( SyncConnectionId ) ,
14- organizationId : OrganizationId ,
15- integrationConnectionId : S . NullOr ( IntegrationConnectionId ) ,
16- provider : ChatSyncProvider ,
17- externalWorkspaceId : S . String ,
18- externalWorkspaceName : S . NullOr ( S . String ) ,
14+ organizationId : M . Immutable ( OrganizationId ) ,
15+ integrationConnectionId : M . Immutable ( S . NullOr ( IntegrationConnectionId ) ) ,
16+ provider : M . Immutable ( ChatSyncProvider ) ,
17+ externalWorkspaceId : M . Immutable ( S . String ) ,
18+ externalWorkspaceName : M . GeneratedByApp ( S . NullOr ( S . String ) ) ,
1919 status : ChatSyncConnectionStatus ,
2020 settings : S . NullOr ( S . Record ( S . String , S . Unknown ) ) ,
2121 metadata : S . NullOr ( S . Record ( S . String , S . Unknown ) ) ,
22- errorMessage : S . NullOr ( S . String ) ,
23- lastSyncedAt : S . NullOr ( JsonDate ) ,
24- createdBy : UserId ,
22+ errorMessage : M . GeneratedByApp ( S . NullOr ( S . String ) ) ,
23+ lastSyncedAt : M . GeneratedByApp ( S . NullOr ( JsonDate ) ) ,
24+ createdBy : M . Immutable ( UserId ) ,
2525 createdAt : M . Generated ( JsonDate ) ,
2626 updatedAt : M . Generated ( S . NullOr ( JsonDate ) ) ,
2727 deletedAt : M . GeneratedByApp ( S . NullOr ( JsonDate ) ) ,
0 commit comments