@rocket.chat/core-typings 8.6.1 → 9.0.0-rc.0

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/dist/Ajv.d.ts CHANGED
@@ -15,6 +15,7 @@ import type { IMessage } from './IMessage';
15
15
  import type { IModerationAudit, IModerationReport } from './IModerationReport';
16
16
  import type { IOAuthApps } from './IOAuthApps';
17
17
  import type { IPermission } from './IPermission';
18
+ import type { IReadReceiptWithUser } from './IReadReceipt';
18
19
  import type { IRole } from './IRole';
19
20
  import type { IRoom, IDirectoryChannelResult, IRoomAdmin } from './IRoom';
20
21
  import type { ISubscription } from './ISubscription';
@@ -24,4 +25,4 @@ import type { SlashCommand } from './SlashCommands';
24
25
  import type { VideoConferenceCapabilities } from './VideoConferenceCapabilities';
25
26
  import type { IImport } from './import/IImport';
26
27
  import type { IMediaCall } from './mediaCalls/IMediaCall';
27
- export declare const schemas: typia.IJsonSchemaCollection.IV3_0<[IRole | IUser | IDirectoryUserResult | IBanner | IMessage | IRoom | IDirectoryChannelResult | IRoomAdmin | ISubscription | IInvite | IPermission | IIntegration | IIntegrationHistory | ICustomSound | CloudRegistrationStatus | CloudRegistrationIntentData | CloudConfirmationPollData | IMeApiUser | IImport | ICalendarEvent | IEmojiCustom | IEmailInbox | IOAuthApps | VideoConference | VideoConferenceInstructions | VideoConferenceCapabilities | IModerationReport | IModerationAudit | IMediaCall, CallHistoryItem, ICustomUserStatus, SlashCommand]>;
28
+ export declare const schemas: typia.IJsonSchemaCollection.IV3_0<[IRole | IUser | IDirectoryUserResult | IBanner | IMessage | IRoom | IDirectoryChannelResult | IRoomAdmin | ISubscription | IInvite | IPermission | IIntegration | IIntegrationHistory | ICustomSound | CloudRegistrationStatus | CloudRegistrationIntentData | CloudConfirmationPollData | IMeApiUser | IImport | ICalendarEvent | IEmojiCustom | IReadReceiptWithUser | IEmailInbox | IOAuthApps | VideoConference | VideoConferenceInstructions | VideoConferenceCapabilities | IModerationReport | IModerationAudit | IMediaCall, CallHistoryItem, ICustomUserStatus, SlashCommand]>;
package/dist/Ajv.js CHANGED
@@ -344,6 +344,9 @@ exports.schemas = {
344
344
  "idle_too_long"
345
345
  ]
346
346
  },
347
+ providerId: {
348
+ type: "string"
349
+ },
347
350
  abacAttributes: {
348
351
  type: "array",
349
352
  items: {
@@ -2746,6 +2749,12 @@ exports.schemas = {
2746
2749
  },
2747
2750
  {
2748
2751
  $ref: "#/components/schemas/KaTeX"
2752
+ },
2753
+ {
2754
+ $ref: "#/components/schemas/HorizontalRule"
2755
+ },
2756
+ {
2757
+ $ref: "#/components/schemas/Table"
2749
2758
  }
2750
2759
  ]
2751
2760
  }
@@ -4089,7 +4098,14 @@ exports.schemas = {
4089
4098
  ]
4090
4099
  },
4091
4100
  fallback: {
4092
- $ref: "#/components/schemas/Plain"
4101
+ oneOf: [
4102
+ {
4103
+ $ref: "#/components/schemas/Plain"
4104
+ },
4105
+ {
4106
+ $ref: "#/components/schemas/SourceRange"
4107
+ }
4108
+ ]
4093
4109
  }
4094
4110
  },
4095
4111
  required: [
@@ -4097,6 +4113,21 @@ exports.schemas = {
4097
4113
  "value"
4098
4114
  ]
4099
4115
  },
4116
+ SourceRange: {
4117
+ type: "array",
4118
+ items: {
4119
+ oneOf: [
4120
+ {
4121
+ type: "number"
4122
+ },
4123
+ {
4124
+ type: "number"
4125
+ }
4126
+ ]
4127
+ },
4128
+ minItems: 2,
4129
+ maxItems: 2
4130
+ },
4100
4131
  Bold: {
4101
4132
  type: "object",
4102
4133
  properties: {
@@ -4920,6 +4951,130 @@ exports.schemas = {
4920
4951
  "value"
4921
4952
  ]
4922
4953
  },
4954
+ HorizontalRule: {
4955
+ type: "object",
4956
+ properties: {
4957
+ type: {
4958
+ type: "string",
4959
+ "enum": [
4960
+ "HORIZONTAL_RULE"
4961
+ ]
4962
+ },
4963
+ fallback: {
4964
+ oneOf: [
4965
+ {
4966
+ $ref: "#/components/schemas/Plain"
4967
+ },
4968
+ {
4969
+ $ref: "#/components/schemas/SourceRange"
4970
+ }
4971
+ ]
4972
+ }
4973
+ },
4974
+ required: [
4975
+ "type"
4976
+ ]
4977
+ },
4978
+ Table: {
4979
+ type: "object",
4980
+ properties: {
4981
+ type: {
4982
+ type: "string",
4983
+ "enum": [
4984
+ "TABLE"
4985
+ ]
4986
+ },
4987
+ value: {
4988
+ type: "object",
4989
+ properties: {
4990
+ header: {
4991
+ type: "array",
4992
+ items: {
4993
+ $ref: "#/components/schemas/TableCell"
4994
+ }
4995
+ },
4996
+ rows: {
4997
+ type: "array",
4998
+ items: {
4999
+ $ref: "#/components/schemas/TableRow"
5000
+ }
5001
+ }
5002
+ },
5003
+ required: [
5004
+ "header",
5005
+ "rows"
5006
+ ]
5007
+ },
5008
+ fallback: {
5009
+ oneOf: [
5010
+ {
5011
+ $ref: "#/components/schemas/Plain"
5012
+ },
5013
+ {
5014
+ $ref: "#/components/schemas/SourceRange"
5015
+ }
5016
+ ]
5017
+ }
5018
+ },
5019
+ required: [
5020
+ "type",
5021
+ "value"
5022
+ ]
5023
+ },
5024
+ TableCell: {
5025
+ type: "object",
5026
+ properties: {
5027
+ type: {
5028
+ type: "string",
5029
+ "enum": [
5030
+ "TABLE_CELL"
5031
+ ]
5032
+ },
5033
+ align: {
5034
+ $ref: "#/components/schemas/TableCellAlignment"
5035
+ },
5036
+ value: {
5037
+ type: "array",
5038
+ items: {
5039
+ $ref: "#/components/schemas/Inlines"
5040
+ }
5041
+ }
5042
+ },
5043
+ required: [
5044
+ "type",
5045
+ "align",
5046
+ "value"
5047
+ ]
5048
+ },
5049
+ TableCellAlignment: {
5050
+ type: "string",
5051
+ "enum": [
5052
+ "left",
5053
+ "center",
5054
+ "right"
5055
+ ]
5056
+ },
5057
+ TableRow: {
5058
+ type: "object",
5059
+ properties: {
5060
+ type: {
5061
+ type: "string",
5062
+ "enum": [
5063
+ "TABLE_ROW"
5064
+ ]
5065
+ },
5066
+ value: {
5067
+ type: "array",
5068
+ items: {
5069
+ $ref: "#/components/schemas/TableCell"
5070
+ }
5071
+ }
5072
+ },
5073
+ required: [
5074
+ "type",
5075
+ "value"
5076
+ ]
5077
+ },
4923
5078
  "BigEmoji.o1": {
4924
5079
  type: "object",
4925
5080
  properties: {
@@ -5264,6 +5419,12 @@ exports.schemas = {
5264
5419
  },
5265
5420
  {
5266
5421
  $ref: "#/components/schemas/KaTeX"
5422
+ },
5423
+ {
5424
+ $ref: "#/components/schemas/HorizontalRule"
5425
+ },
5426
+ {
5427
+ $ref: "#/components/schemas/Table"
5267
5428
  }
5268
5429
  ]
5269
5430
  }
@@ -5323,6 +5484,12 @@ exports.schemas = {
5323
5484
  },
5324
5485
  {
5325
5486
  $ref: "#/components/schemas/KaTeX"
5487
+ },
5488
+ {
5489
+ $ref: "#/components/schemas/HorizontalRule"
5490
+ },
5491
+ {
5492
+ $ref: "#/components/schemas/Table"
5326
5493
  }
5327
5494
  ]
5328
5495
  }
@@ -5569,6 +5736,12 @@ exports.schemas = {
5569
5736
  },
5570
5737
  {
5571
5738
  $ref: "#/components/schemas/KaTeX"
5739
+ },
5740
+ {
5741
+ $ref: "#/components/schemas/HorizontalRule"
5742
+ },
5743
+ {
5744
+ $ref: "#/components/schemas/Table"
5572
5745
  }
5573
5746
  ]
5574
5747
  }
@@ -5628,6 +5801,12 @@ exports.schemas = {
5628
5801
  },
5629
5802
  {
5630
5803
  $ref: "#/components/schemas/KaTeX"
5804
+ },
5805
+ {
5806
+ $ref: "#/components/schemas/HorizontalRule"
5807
+ },
5808
+ {
5809
+ $ref: "#/components/schemas/Table"
5631
5810
  }
5632
5811
  ]
5633
5812
  }
@@ -5769,6 +5948,12 @@ exports.schemas = {
5769
5948
  },
5770
5949
  {
5771
5950
  $ref: "#/components/schemas/KaTeX"
5951
+ },
5952
+ {
5953
+ $ref: "#/components/schemas/HorizontalRule"
5954
+ },
5955
+ {
5956
+ $ref: "#/components/schemas/Table"
5772
5957
  }
5773
5958
  ]
5774
5959
  }
@@ -5828,6 +6013,12 @@ exports.schemas = {
5828
6013
  },
5829
6014
  {
5830
6015
  $ref: "#/components/schemas/KaTeX"
6016
+ },
6017
+ {
6018
+ $ref: "#/components/schemas/HorizontalRule"
6019
+ },
6020
+ {
6021
+ $ref: "#/components/schemas/Table"
5831
6022
  }
5832
6023
  ]
5833
6024
  }
@@ -5958,6 +6149,12 @@ exports.schemas = {
5958
6149
  },
5959
6150
  {
5960
6151
  $ref: "#/components/schemas/KaTeX"
6152
+ },
6153
+ {
6154
+ $ref: "#/components/schemas/HorizontalRule"
6155
+ },
6156
+ {
6157
+ $ref: "#/components/schemas/Table"
5961
6158
  }
5962
6159
  ]
5963
6160
  }
@@ -6017,6 +6214,12 @@ exports.schemas = {
6017
6214
  },
6018
6215
  {
6019
6216
  $ref: "#/components/schemas/KaTeX"
6217
+ },
6218
+ {
6219
+ $ref: "#/components/schemas/HorizontalRule"
6220
+ },
6221
+ {
6222
+ $ref: "#/components/schemas/Table"
6020
6223
  }
6021
6224
  ]
6022
6225
  }
@@ -6136,6 +6339,12 @@ exports.schemas = {
6136
6339
  },
6137
6340
  {
6138
6341
  $ref: "#/components/schemas/KaTeX"
6342
+ },
6343
+ {
6344
+ $ref: "#/components/schemas/HorizontalRule"
6345
+ },
6346
+ {
6347
+ $ref: "#/components/schemas/Table"
6139
6348
  }
6140
6349
  ]
6141
6350
  }
@@ -6195,6 +6404,12 @@ exports.schemas = {
6195
6404
  },
6196
6405
  {
6197
6406
  $ref: "#/components/schemas/KaTeX"
6407
+ },
6408
+ {
6409
+ $ref: "#/components/schemas/HorizontalRule"
6410
+ },
6411
+ {
6412
+ $ref: "#/components/schemas/Table"
6198
6413
  }
6199
6414
  ]
6200
6415
  }
@@ -6336,6 +6551,12 @@ exports.schemas = {
6336
6551
  },
6337
6552
  {
6338
6553
  $ref: "#/components/schemas/KaTeX"
6554
+ },
6555
+ {
6556
+ $ref: "#/components/schemas/HorizontalRule"
6557
+ },
6558
+ {
6559
+ $ref: "#/components/schemas/Table"
6339
6560
  }
6340
6561
  ]
6341
6562
  }
@@ -6395,6 +6616,12 @@ exports.schemas = {
6395
6616
  },
6396
6617
  {
6397
6618
  $ref: "#/components/schemas/KaTeX"
6619
+ },
6620
+ {
6621
+ $ref: "#/components/schemas/HorizontalRule"
6622
+ },
6623
+ {
6624
+ $ref: "#/components/schemas/Table"
6398
6625
  }
6399
6626
  ]
6400
6627
  }
@@ -6509,6 +6736,12 @@ exports.schemas = {
6509
6736
  },
6510
6737
  {
6511
6738
  $ref: "#/components/schemas/KaTeX"
6739
+ },
6740
+ {
6741
+ $ref: "#/components/schemas/HorizontalRule"
6742
+ },
6743
+ {
6744
+ $ref: "#/components/schemas/Table"
6512
6745
  }
6513
6746
  ]
6514
6747
  }
@@ -6677,6 +6910,12 @@ exports.schemas = {
6677
6910
  },
6678
6911
  {
6679
6912
  $ref: "#/components/schemas/KaTeX"
6913
+ },
6914
+ {
6915
+ $ref: "#/components/schemas/HorizontalRule"
6916
+ },
6917
+ {
6918
+ $ref: "#/components/schemas/Table"
6680
6919
  }
6681
6920
  ]
6682
6921
  }
@@ -6766,6 +7005,12 @@ exports.schemas = {
6766
7005
  },
6767
7006
  {
6768
7007
  $ref: "#/components/schemas/KaTeX"
7008
+ },
7009
+ {
7010
+ $ref: "#/components/schemas/HorizontalRule"
7011
+ },
7012
+ {
7013
+ $ref: "#/components/schemas/Table"
6769
7014
  }
6770
7015
  ]
6771
7016
  }
@@ -6894,6 +7139,12 @@ exports.schemas = {
6894
7139
  },
6895
7140
  {
6896
7141
  $ref: "#/components/schemas/KaTeX"
7142
+ },
7143
+ {
7144
+ $ref: "#/components/schemas/HorizontalRule"
7145
+ },
7146
+ {
7147
+ $ref: "#/components/schemas/Table"
6897
7148
  }
6898
7149
  ]
6899
7150
  }
@@ -6973,6 +7224,12 @@ exports.schemas = {
6973
7224
  },
6974
7225
  {
6975
7226
  $ref: "#/components/schemas/KaTeX"
7227
+ },
7228
+ {
7229
+ $ref: "#/components/schemas/HorizontalRule"
7230
+ },
7231
+ {
7232
+ $ref: "#/components/schemas/Table"
6976
7233
  }
6977
7234
  ]
6978
7235
  }
@@ -8361,6 +8618,12 @@ exports.schemas = {
8361
8618
  },
8362
8619
  {
8363
8620
  $ref: "#/components/schemas/KaTeX"
8621
+ },
8622
+ {
8623
+ $ref: "#/components/schemas/HorizontalRule"
8624
+ },
8625
+ {
8626
+ $ref: "#/components/schemas/Table"
8364
8627
  }
8365
8628
  ]
8366
8629
  }
@@ -9304,6 +9567,45 @@ exports.schemas = {
9304
9567
  "_updatedAt"
9305
9568
  ]
9306
9569
  },
9570
+ IReadReceiptWithUser: {
9571
+ type: "object",
9572
+ properties: {
9573
+ user: {
9574
+ $ref: "#/components/schemas/PickIUser_idusernamename"
9575
+ },
9576
+ token: {
9577
+ type: "string"
9578
+ },
9579
+ messageId: {
9580
+ type: "string"
9581
+ },
9582
+ roomId: {
9583
+ type: "string"
9584
+ },
9585
+ userId: {
9586
+ type: "string"
9587
+ },
9588
+ ts: {
9589
+ type: "string",
9590
+ format: "date-time"
9591
+ },
9592
+ _id: {
9593
+ type: "string"
9594
+ },
9595
+ _updatedAt: {
9596
+ type: "string",
9597
+ format: "date-time"
9598
+ }
9599
+ },
9600
+ required: [
9601
+ "messageId",
9602
+ "roomId",
9603
+ "userId",
9604
+ "ts",
9605
+ "_id",
9606
+ "_updatedAt"
9607
+ ]
9608
+ },
9307
9609
  IEmailInbox: {
9308
9610
  type: "object",
9309
9611
  properties: {
@@ -9459,6 +9761,21 @@ exports.schemas = {
9459
9761
  "username"
9460
9762
  ]
9461
9763
  },
9764
+ _updatedBy: {
9765
+ type: "object",
9766
+ properties: {
9767
+ _id: {
9768
+ type: "string"
9769
+ },
9770
+ username: {
9771
+ type: "string"
9772
+ }
9773
+ },
9774
+ required: [
9775
+ "_id"
9776
+ ],
9777
+ nullable: true
9778
+ },
9462
9779
  appId: {
9463
9780
  type: "string"
9464
9781
  },
@@ -10507,6 +10824,9 @@ exports.schemas = {
10507
10824
  avatarETag: {
10508
10825
  type: "string"
10509
10826
  },
10827
+ customFields: {
10828
+ $ref: "#/components/schemas/Recordstringany"
10829
+ },
10510
10830
  abacAttributes: {
10511
10831
  type: "array",
10512
10832
  items: {
@@ -11505,6 +11825,9 @@ exports.schemas = {
11505
11825
  {
11506
11826
  $ref: "#/components/schemas/IEmojiCustom"
11507
11827
  },
11828
+ {
11829
+ $ref: "#/components/schemas/IReadReceiptWithUser"
11830
+ },
11508
11831
  {
11509
11832
  $ref: "#/components/schemas/IEmailInbox"
11510
11833
  },
package/dist/Ajv.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Ajv.js","sourceRoot":"","sources":["../src/Ajv.ts"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AA4Bb,QAAA,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsChB"}
1
+ {"version":3,"file":"Ajv.js","sourceRoot":"","sources":["../src/Ajv.ts"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AA6Bb,QAAA,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuChB"}
@@ -0,0 +1,6 @@
1
+ export interface ILoginCode {
2
+ _id: string;
3
+ userId: string;
4
+ createdAt: Date;
5
+ expireAt: Date;
6
+ }
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=IMediaCallChannel.js.map
3
+ //# sourceMappingURL=ILoginCode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ILoginCode.js","sourceRoot":"","sources":["../src/ILoginCode.ts"],"names":[],"mappings":""}
@@ -33,6 +33,11 @@ export type OAuthConfiguration = {
33
33
  mergeRoles: boolean;
34
34
  rolesToSync: string;
35
35
  showButton: boolean;
36
+ addAutopublishFields?: {
37
+ forLoggedInUser: string[];
38
+ forOtherUsers: string[];
39
+ };
40
+ pkce?: boolean;
36
41
  };
37
42
  export type FacebookOAuthConfiguration = Omit<Partial<OAuthConfiguration>, 'clientId'> & {
38
43
  appId: OAuthConfiguration['clientId'];
@@ -10,5 +10,9 @@ export interface IOAuthApps extends IRocketChatRecord {
10
10
  _id: string;
11
11
  username: string;
12
12
  };
13
+ _updatedBy?: {
14
+ _id: string;
15
+ username?: string;
16
+ } | null;
13
17
  appId?: string;
14
18
  }
package/dist/IRoom.d.ts CHANGED
@@ -253,7 +253,7 @@ export type IOmnichannelRoomExtraData = Pick<Partial<IOmnichannelRoom>, 'customF
253
253
  export type IOmnichannelInquiryExtraData = IOmnichannelRoomExtraData & {
254
254
  priority?: string;
255
255
  };
256
- export type RoomAdminFieldsType = '_id' | 'prid' | 'fname' | 'name' | 't' | 'cl' | 'u' | 'usernames' | 'ts' | 'usersCount' | 'muted' | 'unmuted' | 'ro' | 'default' | 'favorite' | 'featured' | 'reactWhenReadOnly' | 'topic' | 'msgs' | 'archived' | 'teamId' | 'teamMain' | 'announcement' | 'description' | 'broadcast' | 'uids' | 'avatarETag' | 'abacAttributes';
256
+ export type RoomAdminFieldsType = '_id' | 'prid' | 'fname' | 'name' | 't' | 'cl' | 'u' | 'usernames' | 'ts' | 'usersCount' | 'muted' | 'unmuted' | 'ro' | 'default' | 'favorite' | 'featured' | 'reactWhenReadOnly' | 'topic' | 'msgs' | 'archived' | 'teamId' | 'teamMain' | 'announcement' | 'description' | 'customFields' | 'broadcast' | 'uids' | 'avatarETag' | 'abacAttributes';
257
257
  export type IRoomAdmin = Pick<IRoom, RoomAdminFieldsType>;
258
258
  export type IRoomAbacRedaction = {
259
259
  abacAttributesRedacted?: boolean;
package/dist/IRoom.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"IRoom.js","sourceRoot":"","sources":["../src/IRoom.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"IRoom.js","sourceRoot":"","sources":["../src/IRoom.ts"],"names":[],"mappings":";;;AA6GO,MAAM,kBAAkB,GAAG,CAAC,IAAoB,EAA6B,EAAE,CACrF,kBAAkB,IAAI,IAAI,IAAK,IAAY,CAAC,gBAAgB,KAAK,IAAI,CAAC;AAD1D,QAAA,kBAAkB,sBACwC;AAqBhE,MAAM,eAAe,GAAG,CAAC,IAAoB,EAA0B,EAAE,CAAC,WAAW,IAAI,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI,CAAC;AAAnH,QAAA,eAAe,mBAAoG;AAEzH,MAAM,qBAAqB,GAAG,CAAC,IAAoB,EAAgC,EAAE,CAC3F,IAAA,uBAAe,EAAC,IAAI,CAAC,IAAI,YAAY,IAAI,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC;AADnE,QAAA,qBAAqB,yBAC8C;AAYzE,MAAM,UAAU,GAAG,CAAC,IAAoB,EAAqB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;AAA1E,QAAA,UAAU,cAAgE;AAChF,MAAM,iBAAiB,GAAG,CAAC,IAAoB,EAAqB,EAAE,CAAC,IAAA,kBAAU,EAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC;AAApG,QAAA,iBAAiB,qBAAmF;AAC1G,MAAM,gBAAgB,GAAG,CAAC,IAAoB,EAAqB,EAAE,CAAC,IAAA,kBAAU,EAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC;AAAnG,QAAA,gBAAgB,oBAAmF;AAEzG,MAAM,YAAY,GAAG,CAAC,IAAoB,EAAiB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;AAApE,QAAA,YAAY,gBAAwD;AAC1E,MAAM,mBAAmB,GAAG,CAAC,IAAoB,EAAiB,EAAE,CAAC,IAAA,oBAAY,EAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC;AAApG,QAAA,mBAAmB,uBAAiF;AAC1G,MAAM,kBAAkB,GAAG,CAAC,IAAoB,EAAiB,EAAE,CAAC,IAAA,oBAAY,EAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC;AAAnG,QAAA,kBAAkB,sBAAiF;AAEzG,MAAM,YAAY,GAAG,CAAC,IAAoB,EAAiB,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC;AAAvE,QAAA,YAAY,gBAA2D;AAC7E,MAAM,aAAa,GAAG,CAAC,IAAoB,EAAiB,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC;AAAxE,QAAA,aAAa,iBAA2D;AAE9E,MAAM,iBAAiB,GAAG,CAAC,IAAoB,EAAkE,EAAE,CACzH,IAAI,EAAE,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,cAAc,CAAC,IAAI,IAAI,CAAC,cAAc,CAAC,MAAM,GAAG,CAAC,CAAC;AAD7E,QAAA,iBAAiB,qBAC4D;AAQnF,MAAM,mBAAmB,GAAG,CAAC,IAAyC,EAA8B,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC;AAAhH,QAAA,mBAAmB,uBAA6F;AACtH,MAAM,2BAA2B,GAAG,CAAC,IAAgC,EAA8B,EAAE,CAC3G,IAAA,2BAAmB,EAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;AADtC,QAAA,2BAA2B,+BACW;AAEnD,IAAY,qBAOX;AAPD,WAAY,qBAAqB;IAChC,0CAAiB,CAAA;IACjB,wCAAe,CAAA;IACf,oCAAW,CAAA;IACX,oCAAW,CAAA;IACX,oCAAW,CAAA;IACX,wCAAe,CAAA;AAChB,CAAC,EAPW,qBAAqB,qCAArB,qBAAqB,QAOhC;AAyKM,MAAM,iBAAiB,GAAG,CAAC,IAAsB,EAAoC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC;AAAjG,QAAA,iBAAiB,qBAAgF;AAEvG,MAAM,0BAA0B,GAAG,CAAC,MAA0B,EAAuC,EAAE;IAC7G,OAAO,MAAM,EAAE,IAAI,KAAK,qBAAqB,CAAC,GAAG,CAAC;AACnD,CAAC,CAAC;AAFW,QAAA,0BAA0B,8BAErC;AAwDW,QAAA,sBAAsB,GAAG;IACrC,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,GAAG;IACX,SAAS,EAAE,GAAG;IACd,OAAO,EAAE,KAAK;CACd,CAAC"}
@@ -70,7 +70,9 @@ export type OSSessionAggregation = Pick<ISession, '_id'> & {
70
70
  count: number;
71
71
  time: number;
72
72
  };
73
- export type DeviceManagementSession = Pick<ISession, '_id' | 'sessionId' | 'device' | 'host' | 'ip' | 'logoutAt' | 'userId' | 'loginAt'>;
73
+ export type DeviceManagementSession = Pick<ISession, '_id' | 'sessionId' | 'device' | 'host' | 'ip' | 'logoutAt' | 'userId' | 'loginAt'> & {
74
+ current?: boolean;
75
+ };
74
76
  export type DeviceManagementPopulatedSession = DeviceManagementSession & {
75
77
  _user: Pick<IUser, 'name' | 'username' | 'avatarETag' | 'avatarOrigin'>;
76
78
  };
@@ -32,6 +32,17 @@ type EnableQuery = string | {
32
32
  _id: string;
33
33
  value: any;
34
34
  }[];
35
+ export type SettingValidationRule = {
36
+ query: Record<string, unknown>;
37
+ appliesWhen?: {
38
+ _id: string;
39
+ value: unknown;
40
+ } | {
41
+ _id: string;
42
+ value: unknown;
43
+ }[];
44
+ };
45
+ type SettingValidation = SettingValidationRule[] | string;
35
46
  export interface ISettingBase extends IRocketChatRecord {
36
47
  type: 'boolean' | 'timezone' | 'string' | 'relativeUrl' | 'password' | 'int' | 'select' | 'multiSelect' | 'language' | 'color' | 'font' | 'code' | 'action' | 'asset' | 'roomPick' | 'group' | 'date' | 'lookup' | 'range' | 'timespan';
37
48
  public: boolean;
@@ -45,6 +56,7 @@ export interface ISettingBase extends IRocketChatRecord {
45
56
  blocked: boolean;
46
57
  enableQuery?: EnableQuery;
47
58
  displayQuery?: EnableQuery;
59
+ validation?: SettingValidation;
48
60
  sorter: number;
49
61
  properties?: unknown;
50
62
  enterprise?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"ISetting.js","sourceRoot":"","sources":["../src/ISetting.ts"],"names":[],"mappings":";;;AAGA,IAAY,aAGX;AAHD,WAAY,aAAa;IACxB,gCAAe,CAAA;IACf,0CAAyB,CAAA;AAC1B,CAAC,EAHW,aAAa,6BAAb,aAAa,QAGxB;AA8ID,yDAAyD;AAClD,MAAM,SAAS,GAAG,CAAC,OAAY,EAAuB,EAAE,CAC9D,KAAK,IAAI,OAAO;IAChB,MAAM,IAAI,OAAO;IACjB,QAAQ,IAAI,OAAO;IACnB,OAAO,IAAI,OAAO;IAClB,cAAc,IAAI,OAAO;IACzB,SAAS,IAAI,OAAO;IACpB,QAAQ,IAAI,OAAO;IACnB,WAAW,IAAI,OAAO,CAAC;AARX,QAAA,SAAS,aAQE;AAEjB,MAAM,mBAAmB,GAAG,CAAC,OAAqB,EAAiC,EAAE,CAAC,OAAO,CAAC,UAAU,KAAK,IAAI,CAAC;AAA5G,QAAA,mBAAmB,uBAAyF;AAElH,MAAM,cAAc,GAAG,CAAC,OAAqB,EAA4B,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,OAAO,CAAC;AAA/F,QAAA,cAAc,kBAAiF;AAErG,MAAM,aAAa,GAAG,CAAC,OAAqB,EAA2B,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,MAAM,CAAC;AAA5F,QAAA,aAAa,iBAA+E;AAElG,MAAM,eAAe,GAAG,CAAC,OAAqB,EAA6B,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,QAAQ,CAAC;AAAlG,QAAA,eAAe,mBAAmF;AAExG,MAAM,2BAA2B,GAAG,CAAC,KAA8B,EAAkC,EAAE,CAC7G,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,QAAQ,IAAI,KAAK,IAAI,MAAM,IAAI,KAAK,CAAC;AADxE,QAAA,2BAA2B,+BAC6C;AAE9E,MAAM,cAAc,GAAG,CAAC,OAAqB,EAA4B,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,OAAO,CAAC;AAA/F,QAAA,cAAc,kBAAiF"}
1
+ {"version":3,"file":"ISetting.js","sourceRoot":"","sources":["../src/ISetting.ts"],"names":[],"mappings":";;;AAGA,IAAY,aAGX;AAHD,WAAY,aAAa;IACxB,gCAAe,CAAA;IACf,0CAAyB,CAAA;AAC1B,CAAC,EAHW,aAAa,6BAAb,aAAa,QAGxB;AAsJD,yDAAyD;AAClD,MAAM,SAAS,GAAG,CAAC,OAAY,EAAuB,EAAE,CAC9D,KAAK,IAAI,OAAO;IAChB,MAAM,IAAI,OAAO;IACjB,QAAQ,IAAI,OAAO;IACnB,OAAO,IAAI,OAAO;IAClB,cAAc,IAAI,OAAO;IACzB,SAAS,IAAI,OAAO;IACpB,QAAQ,IAAI,OAAO;IACnB,WAAW,IAAI,OAAO,CAAC;AARX,QAAA,SAAS,aAQE;AAEjB,MAAM,mBAAmB,GAAG,CAAC,OAAqB,EAAiC,EAAE,CAAC,OAAO,CAAC,UAAU,KAAK,IAAI,CAAC;AAA5G,QAAA,mBAAmB,uBAAyF;AAElH,MAAM,cAAc,GAAG,CAAC,OAAqB,EAA4B,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,OAAO,CAAC;AAA/F,QAAA,cAAc,kBAAiF;AAErG,MAAM,aAAa,GAAG,CAAC,OAAqB,EAA2B,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,MAAM,CAAC;AAA5F,QAAA,aAAa,iBAA+E;AAElG,MAAM,eAAe,GAAG,CAAC,OAAqB,EAA6B,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,QAAQ,CAAC;AAAlG,QAAA,eAAe,mBAAmF;AAExG,MAAM,2BAA2B,GAAG,CAAC,KAA8B,EAAkC,EAAE,CAC7G,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,QAAQ,IAAI,KAAK,IAAI,MAAM,IAAI,KAAK,CAAC;AADxE,QAAA,2BAA2B,+BAC6C;AAE9E,MAAM,cAAc,GAAG,CAAC,OAAqB,EAA4B,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,OAAO,CAAC;AAA/F,QAAA,cAAc,kBAAiF"}
package/dist/IStats.d.ts CHANGED
@@ -274,5 +274,6 @@ export interface IStats extends IRocketChatRecord {
274
274
  abacTotalAttributeValues?: number;
275
275
  abacRoomsEnrolled?: number;
276
276
  allowUnsafeQueryAndFieldsApiParamsEnabled?: boolean;
277
+ fips?: boolean;
277
278
  }
278
279
  export {};
@@ -0,0 +1,7 @@
1
+ export interface ITwoFactorChallenge {
2
+ _id: string;
3
+ userId: string;
4
+ method: 'email' | 'totp';
5
+ expireAt: Date;
6
+ createdAt: Date;
7
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ITwoFactorChallenge.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ITwoFactorChallenge.js","sourceRoot":"","sources":["../src/ITwoFactorChallenge.ts"],"names":[],"mappings":""}
package/dist/IUser.d.ts CHANGED
@@ -196,6 +196,7 @@ export interface IUser extends IRocketChatRecord {
196
196
  isOAuthUser?: boolean;
197
197
  __rooms?: string[];
198
198
  inactiveReason?: 'deactivated' | 'pending_approval' | 'idle_too_long';
199
+ providerId?: string;
199
200
  abacAttributes?: IAbacAttributeDefinition[];
200
201
  }
201
202
  export interface IRegisterUser extends IUser {
@@ -41,5 +41,6 @@ export interface IImportMessage {
41
41
  emoji?: string;
42
42
  url?: string;
43
43
  _importFile?: IImportPendingFile;
44
+ _hidden?: boolean;
44
45
  }
45
46
  export {};
package/dist/index.d.ts CHANGED
@@ -49,6 +49,7 @@ export type * from './IEmojiCustom';
49
49
  export type * from './ICustomEmojiDescriptor';
50
50
  export type * from './IAnalytics';
51
51
  export type * from './ICredentialToken';
52
+ export type * from './ILoginCode';
52
53
  export type * from './ISamlUsedAssertions';
53
54
  export type * from './IAvatar';
54
55
  export type * from './ICustomUserStatus';
@@ -116,3 +117,4 @@ export * from './Abac';
116
117
  export type * from './ServerAudit/IAuditServerAbacAction';
117
118
  export type * from './ServerAudit/IAuditUserChangedEvent';
118
119
  export { schemas } from './Ajv';
120
+ export type * from './ITwoFactorChallenge';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,0CAAwB;AAExB,yCAAuB;AACvB,0CAAwB;AACxB,6CAA2B;AAC3B,+CAA6B;AAC7B,6CAA2B;AAC3B,kDAAgC;AAChC,0CAAwB;AAIxB,+CAA6B;AAG7B,4CAA0B;AAa1B,iDAA+B;AAE/B,+CAA6B;AAG7B,4CAA0B;AAK1B,0CAAwB;AAUxB,yCAAuB;AAevB,4CAA0B;AAE1B,4CAA0B;AAwB1B,qDAAmC;AAEnC,2EAAyD;AAEzD,0DAAwC;AAExC,qDAAmC;AAEnC,mDAAiC;AAMjC,6CAA2B;AAC3B,sDAAoC;AAEpC,uEAAqD;AAGrD,qDAAmC;AAOnC,gDAA8B;AAY9B,iDAAiC;AAKjC,yCAAuB;AAIvB,6BAAgC;AAAvB,8FAAA,OAAO,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,0CAAwB;AAExB,yCAAuB;AACvB,0CAAwB;AACxB,6CAA2B;AAC3B,+CAA6B;AAC7B,6CAA2B;AAC3B,kDAAgC;AAChC,0CAAwB;AAIxB,+CAA6B;AAG7B,4CAA0B;AAa1B,iDAA+B;AAE/B,+CAA6B;AAG7B,4CAA0B;AAK1B,0CAAwB;AAUxB,yCAAuB;AAgBvB,4CAA0B;AAE1B,4CAA0B;AAwB1B,qDAAmC;AAEnC,2EAAyD;AAEzD,0DAAwC;AAExC,qDAAmC;AAEnC,mDAAiC;AAMjC,6CAA2B;AAC3B,sDAAoC;AAEpC,uEAAqD;AAGrD,qDAAmC;AAOnC,gDAA8B;AAY9B,iDAAiC;AAKjC,yCAAuB;AAIvB,6BAAgC;AAAvB,8FAAA,OAAO,OAAA"}
@@ -1,4 +1,4 @@
1
- export declare const CoreModules: readonly ["auditing", "canned-responses", "ldap-enterprise", "livechat-enterprise", "voip-enterprise", "omnichannel-mobile-enterprise", "engagement-dashboard", "push-privacy", "scalability", "teams-mention", "saml-enterprise", "oauth-enterprise", "device-management", "federation", "videoconference-enterprise", "message-read-receipt", "outlook-calendar", "hide-watermark", "custom-roles", "accessibility-certification", "unlimited-presence", "contact-id-verification", "teams-voip", "outbound-messaging", "abac"];
1
+ export declare const CoreModules: readonly ["auditing", "canned-responses", "ldap-enterprise", "livechat-enterprise", "voip-enterprise", "omnichannel-mobile-enterprise", "engagement-dashboard", "push-privacy", "scalability", "teams-mention", "saml-enterprise", "oauth-enterprise", "device-management", "federation", "videoconference-enterprise", "message-read-receipt", "outlook-calendar", "hide-watermark", "custom-roles", "accessibility-certification", "unlimited-presence", "contact-id-verification", "teams-voip", "outbound-messaging", "abac", "fips"];
2
2
  export type InternalModuleName = (typeof CoreModules)[number];
3
3
  export type ExternalModuleName = `${string}.${string}`;
4
4
  export type LicenseModule = InternalModuleName | ExternalModuleName;
@@ -27,5 +27,6 @@ exports.CoreModules = [
27
27
  'teams-voip',
28
28
  'outbound-messaging',
29
29
  'abac',
30
+ 'fips',
30
31
  ];
31
32
  //# sourceMappingURL=LicenseModule.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"LicenseModule.js","sourceRoot":"","sources":["../../src/license/LicenseModule.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IAC1B,UAAU;IACV,kBAAkB;IAClB,iBAAiB;IACjB,qBAAqB;IACrB,iBAAiB;IACjB,+BAA+B;IAC/B,sBAAsB;IACtB,cAAc;IACd,aAAa;IACb,eAAe;IACf,iBAAiB;IACjB,kBAAkB;IAClB,mBAAmB;IACnB,YAAY;IACZ,4BAA4B;IAC5B,sBAAsB;IACtB,kBAAkB;IAClB,gBAAgB;IAChB,cAAc;IACd,6BAA6B;IAC7B,oBAAoB;IACpB,yBAAyB;IACzB,YAAY;IACZ,oBAAoB;IACpB,MAAM;CACG,CAAC"}
1
+ {"version":3,"file":"LicenseModule.js","sourceRoot":"","sources":["../../src/license/LicenseModule.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IAC1B,UAAU;IACV,kBAAkB;IAClB,iBAAiB;IACjB,qBAAqB;IACrB,iBAAiB;IACjB,+BAA+B;IAC/B,sBAAsB;IACtB,cAAc;IACd,aAAa;IACb,eAAe;IACf,iBAAiB;IACjB,kBAAkB;IAClB,mBAAmB;IACnB,YAAY;IACZ,4BAA4B;IAC5B,sBAAsB;IACtB,kBAAkB;IAClB,gBAAgB;IAChB,cAAc;IACd,6BAA6B;IAC7B,oBAAoB;IACpB,yBAAyB;IACzB,YAAY;IACZ,oBAAoB;IACpB,MAAM;IACN,MAAM;CACG,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import type { IRocketChatRecord } from '../IRocketChatRecord';
2
+ import type { RTCSessionDescriptionInit } from './RTCSessionDescription';
2
3
  export type MediaCallNegotiationStream = {
3
4
  tag: string;
4
5
  id: string;
@@ -0,0 +1,5 @@
1
+ export type RTCSdpType = 'answer' | 'offer' | 'pranswer' | 'rollback';
2
+ export type RTCSessionDescriptionInit = {
3
+ sdp?: string;
4
+ type: RTCSdpType;
5
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=RTCSessionDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RTCSessionDescription.js","sourceRoot":"","sources":["../../src/mediaCalls/RTCSessionDescription.ts"],"names":[],"mappings":""}
@@ -1,3 +1,3 @@
1
1
  export type * from './IMediaCall';
2
- export type * from './IMediaCallChannel';
3
2
  export type * from './IMediaCallNegotiation';
3
+ export type * from './RTCSessionDescription';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@rocket.chat/core-typings",
4
- "version": "8.6.1",
4
+ "version": "9.0.0-rc.0",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
7
7
  "files": [
@@ -19,13 +19,13 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@rocket.chat/icons": "^0.48.0",
22
- "@rocket.chat/message-parser": "^0.31.36",
22
+ "@rocket.chat/message-parser": "^0.32.0-rc.0",
23
23
  "@rocket.chat/ui-kit": "~1.1.0",
24
24
  "typia": "patch:typia@npm%3A9.7.2#~/.yarn/patches/typia-npm-9.7.2-5c5d9c80b4.patch",
25
25
  "zod": "~4.3.6"
26
26
  },
27
27
  "devDependencies": {
28
- "@rocket.chat/apps-engine": "^1.64.1",
28
+ "@rocket.chat/apps-engine": "^1.64.1-rc.0",
29
29
  "@types/express": "^4.17.25",
30
30
  "eslint": "~9.39.4",
31
31
  "mongodb": "6.16.0",
@@ -1,13 +0,0 @@
1
- import type { IRocketChatRecord } from '../IRocketChatRecord';
2
- import type { MediaCallActorType } from './IMediaCall';
3
- export interface IMediaCallChannel extends IRocketChatRecord {
4
- callId: string;
5
- contractId: string;
6
- actorType: MediaCallActorType;
7
- actorId: string;
8
- role: 'caller' | 'callee';
9
- state: 'none' | 'ringing' | 'joining' | 'active' | 'left';
10
- joinedAt?: Date;
11
- activeAt?: Date;
12
- leftAt?: Date;
13
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"IMediaCallChannel.js","sourceRoot":"","sources":["../../src/mediaCalls/IMediaCallChannel.ts"],"names":[],"mappings":""}