@snagsolutions/sdk 0.1.0-alpha.104 → 0.1.0-alpha.106
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/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/loyalty/rule-edits.d.ts +0 -172
- package/resources/loyalty/rule-edits.d.ts.map +1 -1
- package/resources/loyalty/rule-groups.d.ts +0 -43
- package/resources/loyalty/rule-groups.d.ts.map +1 -1
- package/resources/loyalty/rules.d.ts +4 -215
- package/resources/loyalty/rules.d.ts.map +1 -1
- package/src/resources/loyalty/rule-edits.ts +0 -208
- package/src/resources/loyalty/rule-groups.ts +0 -52
- package/src/resources/loyalty/rules.ts +5 -260
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -975,11 +975,6 @@ export namespace RuleGroupGetRuleGroupsResponse {
|
|
|
975
975
|
*/
|
|
976
976
|
amountMultiplier?: SmartContract.AmountMultiplier | null;
|
|
977
977
|
|
|
978
|
-
/**
|
|
979
|
-
* Array of bonus details applied to the rule.
|
|
980
|
-
*/
|
|
981
|
-
bonus?: Array<SmartContract.Bonus> | null;
|
|
982
|
-
|
|
983
978
|
/**
|
|
984
979
|
* ID of the smart contract.
|
|
985
980
|
*/
|
|
@@ -990,21 +985,11 @@ export namespace RuleGroupGetRuleGroupsResponse {
|
|
|
990
985
|
*/
|
|
991
986
|
criteria?: 'everyEvent' | 'byParameter' | null;
|
|
992
987
|
|
|
993
|
-
/**
|
|
994
|
-
* Time range applied to the rule.
|
|
995
|
-
*/
|
|
996
|
-
customRange?: SmartContract.CustomRange | null;
|
|
997
|
-
|
|
998
988
|
/**
|
|
999
989
|
* Event emitted by the smart contract.
|
|
1000
990
|
*/
|
|
1001
991
|
event?: string | null;
|
|
1002
992
|
|
|
1003
|
-
/**
|
|
1004
|
-
* Maximum value allowed for the parameter.
|
|
1005
|
-
*/
|
|
1006
|
-
max?: number | null;
|
|
1007
|
-
|
|
1008
993
|
/**
|
|
1009
994
|
* Array of parameters for the smart contract.
|
|
1010
995
|
*/
|
|
@@ -1014,16 +999,6 @@ export namespace RuleGroupGetRuleGroupsResponse {
|
|
|
1014
999
|
* Type of the smart contract interaction.
|
|
1015
1000
|
*/
|
|
1016
1001
|
type?: 'function' | 'event' | null;
|
|
1017
|
-
|
|
1018
|
-
/**
|
|
1019
|
-
* Flag indicating if a bonus is applied.
|
|
1020
|
-
*/
|
|
1021
|
-
withBonus?: boolean | null;
|
|
1022
|
-
|
|
1023
|
-
/**
|
|
1024
|
-
* Flag indicating if a custom range is applied.
|
|
1025
|
-
*/
|
|
1026
|
-
withCustomRange?: boolean | null;
|
|
1027
1002
|
}
|
|
1028
1003
|
|
|
1029
1004
|
export namespace SmartContract {
|
|
@@ -1037,33 +1012,6 @@ export namespace RuleGroupGetRuleGroupsResponse {
|
|
|
1037
1012
|
valueMapping?: string | null;
|
|
1038
1013
|
}
|
|
1039
1014
|
|
|
1040
|
-
export interface Bonus {
|
|
1041
|
-
/**
|
|
1042
|
-
* Amount of the bonus.
|
|
1043
|
-
*/
|
|
1044
|
-
amount?: number | null;
|
|
1045
|
-
|
|
1046
|
-
/**
|
|
1047
|
-
* Number of times the bonus is applied.
|
|
1048
|
-
*/
|
|
1049
|
-
count?: number | null;
|
|
1050
|
-
}
|
|
1051
|
-
|
|
1052
|
-
/**
|
|
1053
|
-
* Time range applied to the rule.
|
|
1054
|
-
*/
|
|
1055
|
-
export interface CustomRange {
|
|
1056
|
-
/**
|
|
1057
|
-
* End time of the custom range.
|
|
1058
|
-
*/
|
|
1059
|
-
endsAt?: string | null;
|
|
1060
|
-
|
|
1061
|
-
/**
|
|
1062
|
-
* Start time of the custom range.
|
|
1063
|
-
*/
|
|
1064
|
-
startsAt?: string | null;
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
1015
|
export interface Param {
|
|
1068
1016
|
/**
|
|
1069
1017
|
* Condition to check for the parameter.
|
|
@@ -1149,11 +1149,6 @@ export namespace RuleCreateResponse {
|
|
|
1149
1149
|
*/
|
|
1150
1150
|
amountMultiplier?: SmartContract.AmountMultiplier | null;
|
|
1151
1151
|
|
|
1152
|
-
/**
|
|
1153
|
-
* Array of bonus details applied to the rule.
|
|
1154
|
-
*/
|
|
1155
|
-
bonus?: Array<SmartContract.Bonus> | null;
|
|
1156
|
-
|
|
1157
1152
|
/**
|
|
1158
1153
|
* ID of the smart contract.
|
|
1159
1154
|
*/
|
|
@@ -1164,21 +1159,11 @@ export namespace RuleCreateResponse {
|
|
|
1164
1159
|
*/
|
|
1165
1160
|
criteria?: 'everyEvent' | 'byParameter' | null;
|
|
1166
1161
|
|
|
1167
|
-
/**
|
|
1168
|
-
* Time range applied to the rule.
|
|
1169
|
-
*/
|
|
1170
|
-
customRange?: SmartContract.CustomRange | null;
|
|
1171
|
-
|
|
1172
1162
|
/**
|
|
1173
1163
|
* Event emitted by the smart contract.
|
|
1174
1164
|
*/
|
|
1175
1165
|
event?: string | null;
|
|
1176
1166
|
|
|
1177
|
-
/**
|
|
1178
|
-
* Maximum value allowed for the parameter.
|
|
1179
|
-
*/
|
|
1180
|
-
max?: number | null;
|
|
1181
|
-
|
|
1182
1167
|
/**
|
|
1183
1168
|
* Array of parameters for the smart contract.
|
|
1184
1169
|
*/
|
|
@@ -1188,16 +1173,6 @@ export namespace RuleCreateResponse {
|
|
|
1188
1173
|
* Type of the smart contract interaction.
|
|
1189
1174
|
*/
|
|
1190
1175
|
type?: 'function' | 'event' | null;
|
|
1191
|
-
|
|
1192
|
-
/**
|
|
1193
|
-
* Flag indicating if a bonus is applied.
|
|
1194
|
-
*/
|
|
1195
|
-
withBonus?: boolean | null;
|
|
1196
|
-
|
|
1197
|
-
/**
|
|
1198
|
-
* Flag indicating if a custom range is applied.
|
|
1199
|
-
*/
|
|
1200
|
-
withCustomRange?: boolean | null;
|
|
1201
1176
|
}
|
|
1202
1177
|
|
|
1203
1178
|
export namespace SmartContract {
|
|
@@ -1211,33 +1186,6 @@ export namespace RuleCreateResponse {
|
|
|
1211
1186
|
valueMapping?: string | null;
|
|
1212
1187
|
}
|
|
1213
1188
|
|
|
1214
|
-
export interface Bonus {
|
|
1215
|
-
/**
|
|
1216
|
-
* Amount of the bonus.
|
|
1217
|
-
*/
|
|
1218
|
-
amount?: number | null;
|
|
1219
|
-
|
|
1220
|
-
/**
|
|
1221
|
-
* Number of times the bonus is applied.
|
|
1222
|
-
*/
|
|
1223
|
-
count?: number | null;
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
/**
|
|
1227
|
-
* Time range applied to the rule.
|
|
1228
|
-
*/
|
|
1229
|
-
export interface CustomRange {
|
|
1230
|
-
/**
|
|
1231
|
-
* End time of the custom range.
|
|
1232
|
-
*/
|
|
1233
|
-
endsAt?: string | null;
|
|
1234
|
-
|
|
1235
|
-
/**
|
|
1236
|
-
* Start time of the custom range.
|
|
1237
|
-
*/
|
|
1238
|
-
startsAt?: string | null;
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
1189
|
export interface Param {
|
|
1242
1190
|
/**
|
|
1243
1191
|
* Condition to check for the parameter.
|
|
@@ -2314,11 +2262,6 @@ export namespace RuleUpdateResponse {
|
|
|
2314
2262
|
*/
|
|
2315
2263
|
amountMultiplier?: SmartContract.AmountMultiplier | null;
|
|
2316
2264
|
|
|
2317
|
-
/**
|
|
2318
|
-
* Array of bonus details applied to the rule.
|
|
2319
|
-
*/
|
|
2320
|
-
bonus?: Array<SmartContract.Bonus> | null;
|
|
2321
|
-
|
|
2322
2265
|
/**
|
|
2323
2266
|
* ID of the smart contract.
|
|
2324
2267
|
*/
|
|
@@ -2329,21 +2272,11 @@ export namespace RuleUpdateResponse {
|
|
|
2329
2272
|
*/
|
|
2330
2273
|
criteria?: 'everyEvent' | 'byParameter' | null;
|
|
2331
2274
|
|
|
2332
|
-
/**
|
|
2333
|
-
* Time range applied to the rule.
|
|
2334
|
-
*/
|
|
2335
|
-
customRange?: SmartContract.CustomRange | null;
|
|
2336
|
-
|
|
2337
2275
|
/**
|
|
2338
2276
|
* Event emitted by the smart contract.
|
|
2339
2277
|
*/
|
|
2340
2278
|
event?: string | null;
|
|
2341
2279
|
|
|
2342
|
-
/**
|
|
2343
|
-
* Maximum value allowed for the parameter.
|
|
2344
|
-
*/
|
|
2345
|
-
max?: number | null;
|
|
2346
|
-
|
|
2347
2280
|
/**
|
|
2348
2281
|
* Array of parameters for the smart contract.
|
|
2349
2282
|
*/
|
|
@@ -2353,16 +2286,6 @@ export namespace RuleUpdateResponse {
|
|
|
2353
2286
|
* Type of the smart contract interaction.
|
|
2354
2287
|
*/
|
|
2355
2288
|
type?: 'function' | 'event' | null;
|
|
2356
|
-
|
|
2357
|
-
/**
|
|
2358
|
-
* Flag indicating if a bonus is applied.
|
|
2359
|
-
*/
|
|
2360
|
-
withBonus?: boolean | null;
|
|
2361
|
-
|
|
2362
|
-
/**
|
|
2363
|
-
* Flag indicating if a custom range is applied.
|
|
2364
|
-
*/
|
|
2365
|
-
withCustomRange?: boolean | null;
|
|
2366
2289
|
}
|
|
2367
2290
|
|
|
2368
2291
|
export namespace SmartContract {
|
|
@@ -2376,33 +2299,6 @@ export namespace RuleUpdateResponse {
|
|
|
2376
2299
|
valueMapping?: string | null;
|
|
2377
2300
|
}
|
|
2378
2301
|
|
|
2379
|
-
export interface Bonus {
|
|
2380
|
-
/**
|
|
2381
|
-
* Amount of the bonus.
|
|
2382
|
-
*/
|
|
2383
|
-
amount?: number | null;
|
|
2384
|
-
|
|
2385
|
-
/**
|
|
2386
|
-
* Number of times the bonus is applied.
|
|
2387
|
-
*/
|
|
2388
|
-
count?: number | null;
|
|
2389
|
-
}
|
|
2390
|
-
|
|
2391
|
-
/**
|
|
2392
|
-
* Time range applied to the rule.
|
|
2393
|
-
*/
|
|
2394
|
-
export interface CustomRange {
|
|
2395
|
-
/**
|
|
2396
|
-
* End time of the custom range.
|
|
2397
|
-
*/
|
|
2398
|
-
endsAt?: string | null;
|
|
2399
|
-
|
|
2400
|
-
/**
|
|
2401
|
-
* Start time of the custom range.
|
|
2402
|
-
*/
|
|
2403
|
-
startsAt?: string | null;
|
|
2404
|
-
}
|
|
2405
|
-
|
|
2406
2302
|
export interface Param {
|
|
2407
2303
|
/**
|
|
2408
2304
|
* Condition to check for the parameter.
|
|
@@ -3386,11 +3282,6 @@ export namespace RuleListResponse {
|
|
|
3386
3282
|
*/
|
|
3387
3283
|
amountMultiplier?: SmartContract.AmountMultiplier | null;
|
|
3388
3284
|
|
|
3389
|
-
/**
|
|
3390
|
-
* Array of bonus details applied to the rule.
|
|
3391
|
-
*/
|
|
3392
|
-
bonus?: Array<SmartContract.Bonus> | null;
|
|
3393
|
-
|
|
3394
3285
|
/**
|
|
3395
3286
|
* ID of the smart contract.
|
|
3396
3287
|
*/
|
|
@@ -3401,21 +3292,11 @@ export namespace RuleListResponse {
|
|
|
3401
3292
|
*/
|
|
3402
3293
|
criteria?: 'everyEvent' | 'byParameter' | null;
|
|
3403
3294
|
|
|
3404
|
-
/**
|
|
3405
|
-
* Time range applied to the rule.
|
|
3406
|
-
*/
|
|
3407
|
-
customRange?: SmartContract.CustomRange | null;
|
|
3408
|
-
|
|
3409
3295
|
/**
|
|
3410
3296
|
* Event emitted by the smart contract.
|
|
3411
3297
|
*/
|
|
3412
3298
|
event?: string | null;
|
|
3413
3299
|
|
|
3414
|
-
/**
|
|
3415
|
-
* Maximum value allowed for the parameter.
|
|
3416
|
-
*/
|
|
3417
|
-
max?: number | null;
|
|
3418
|
-
|
|
3419
3300
|
/**
|
|
3420
3301
|
* Array of parameters for the smart contract.
|
|
3421
3302
|
*/
|
|
@@ -3425,16 +3306,6 @@ export namespace RuleListResponse {
|
|
|
3425
3306
|
* Type of the smart contract interaction.
|
|
3426
3307
|
*/
|
|
3427
3308
|
type?: 'function' | 'event' | null;
|
|
3428
|
-
|
|
3429
|
-
/**
|
|
3430
|
-
* Flag indicating if a bonus is applied.
|
|
3431
|
-
*/
|
|
3432
|
-
withBonus?: boolean | null;
|
|
3433
|
-
|
|
3434
|
-
/**
|
|
3435
|
-
* Flag indicating if a custom range is applied.
|
|
3436
|
-
*/
|
|
3437
|
-
withCustomRange?: boolean | null;
|
|
3438
3309
|
}
|
|
3439
3310
|
|
|
3440
3311
|
export namespace SmartContract {
|
|
@@ -3448,33 +3319,6 @@ export namespace RuleListResponse {
|
|
|
3448
3319
|
valueMapping?: string | null;
|
|
3449
3320
|
}
|
|
3450
3321
|
|
|
3451
|
-
export interface Bonus {
|
|
3452
|
-
/**
|
|
3453
|
-
* Amount of the bonus.
|
|
3454
|
-
*/
|
|
3455
|
-
amount?: number | null;
|
|
3456
|
-
|
|
3457
|
-
/**
|
|
3458
|
-
* Number of times the bonus is applied.
|
|
3459
|
-
*/
|
|
3460
|
-
count?: number | null;
|
|
3461
|
-
}
|
|
3462
|
-
|
|
3463
|
-
/**
|
|
3464
|
-
* Time range applied to the rule.
|
|
3465
|
-
*/
|
|
3466
|
-
export interface CustomRange {
|
|
3467
|
-
/**
|
|
3468
|
-
* End time of the custom range.
|
|
3469
|
-
*/
|
|
3470
|
-
endsAt?: string | null;
|
|
3471
|
-
|
|
3472
|
-
/**
|
|
3473
|
-
* Start time of the custom range.
|
|
3474
|
-
*/
|
|
3475
|
-
startsAt?: string | null;
|
|
3476
|
-
}
|
|
3477
|
-
|
|
3478
3322
|
export interface Param {
|
|
3479
3323
|
/**
|
|
3480
3324
|
* Condition to check for the parameter.
|
|
@@ -4565,11 +4409,6 @@ export namespace RuleCreateParams {
|
|
|
4565
4409
|
*/
|
|
4566
4410
|
amountMultiplier?: SmartContract.AmountMultiplier | null;
|
|
4567
4411
|
|
|
4568
|
-
/**
|
|
4569
|
-
* Array of bonus details applied to the rule.
|
|
4570
|
-
*/
|
|
4571
|
-
bonus?: Array<SmartContract.Bonus> | null;
|
|
4572
|
-
|
|
4573
4412
|
/**
|
|
4574
4413
|
* ID of the smart contract.
|
|
4575
4414
|
*/
|
|
@@ -4580,21 +4419,11 @@ export namespace RuleCreateParams {
|
|
|
4580
4419
|
*/
|
|
4581
4420
|
criteria?: 'everyEvent' | 'byParameter' | null;
|
|
4582
4421
|
|
|
4583
|
-
/**
|
|
4584
|
-
* Time range applied to the rule.
|
|
4585
|
-
*/
|
|
4586
|
-
customRange?: SmartContract.CustomRange | null;
|
|
4587
|
-
|
|
4588
4422
|
/**
|
|
4589
4423
|
* Event emitted by the smart contract.
|
|
4590
4424
|
*/
|
|
4591
4425
|
event?: string | null;
|
|
4592
4426
|
|
|
4593
|
-
/**
|
|
4594
|
-
* Maximum value allowed for the parameter.
|
|
4595
|
-
*/
|
|
4596
|
-
max?: number | null;
|
|
4597
|
-
|
|
4598
4427
|
/**
|
|
4599
4428
|
* Array of parameters for the smart contract.
|
|
4600
4429
|
*/
|
|
@@ -4604,16 +4433,6 @@ export namespace RuleCreateParams {
|
|
|
4604
4433
|
* Type of the smart contract interaction.
|
|
4605
4434
|
*/
|
|
4606
4435
|
type?: 'function' | 'event' | null;
|
|
4607
|
-
|
|
4608
|
-
/**
|
|
4609
|
-
* Flag indicating if a bonus is applied.
|
|
4610
|
-
*/
|
|
4611
|
-
withBonus?: boolean | null;
|
|
4612
|
-
|
|
4613
|
-
/**
|
|
4614
|
-
* Flag indicating if a custom range is applied.
|
|
4615
|
-
*/
|
|
4616
|
-
withCustomRange?: boolean | null;
|
|
4617
4436
|
}
|
|
4618
4437
|
|
|
4619
4438
|
export namespace SmartContract {
|
|
@@ -4627,33 +4446,6 @@ export namespace RuleCreateParams {
|
|
|
4627
4446
|
valueMapping?: string | null;
|
|
4628
4447
|
}
|
|
4629
4448
|
|
|
4630
|
-
export interface Bonus {
|
|
4631
|
-
/**
|
|
4632
|
-
* Amount of the bonus.
|
|
4633
|
-
*/
|
|
4634
|
-
amount?: number | null;
|
|
4635
|
-
|
|
4636
|
-
/**
|
|
4637
|
-
* Number of times the bonus is applied.
|
|
4638
|
-
*/
|
|
4639
|
-
count?: number | null;
|
|
4640
|
-
}
|
|
4641
|
-
|
|
4642
|
-
/**
|
|
4643
|
-
* Time range applied to the rule.
|
|
4644
|
-
*/
|
|
4645
|
-
export interface CustomRange {
|
|
4646
|
-
/**
|
|
4647
|
-
* End time of the custom range.
|
|
4648
|
-
*/
|
|
4649
|
-
endsAt?: string | null;
|
|
4650
|
-
|
|
4651
|
-
/**
|
|
4652
|
-
* Start time of the custom range.
|
|
4653
|
-
*/
|
|
4654
|
-
startsAt?: string | null;
|
|
4655
|
-
}
|
|
4656
|
-
|
|
4657
4449
|
export interface Param {
|
|
4658
4450
|
/**
|
|
4659
4451
|
* Condition to check for the parameter.
|
|
@@ -5728,11 +5520,6 @@ export namespace RuleUpdateParams {
|
|
|
5728
5520
|
*/
|
|
5729
5521
|
amountMultiplier?: SmartContract.AmountMultiplier | null;
|
|
5730
5522
|
|
|
5731
|
-
/**
|
|
5732
|
-
* Array of bonus details applied to the rule.
|
|
5733
|
-
*/
|
|
5734
|
-
bonus?: Array<SmartContract.Bonus> | null;
|
|
5735
|
-
|
|
5736
5523
|
/**
|
|
5737
5524
|
* ID of the smart contract.
|
|
5738
5525
|
*/
|
|
@@ -5743,21 +5530,11 @@ export namespace RuleUpdateParams {
|
|
|
5743
5530
|
*/
|
|
5744
5531
|
criteria?: 'everyEvent' | 'byParameter' | null;
|
|
5745
5532
|
|
|
5746
|
-
/**
|
|
5747
|
-
* Time range applied to the rule.
|
|
5748
|
-
*/
|
|
5749
|
-
customRange?: SmartContract.CustomRange | null;
|
|
5750
|
-
|
|
5751
5533
|
/**
|
|
5752
5534
|
* Event emitted by the smart contract.
|
|
5753
5535
|
*/
|
|
5754
5536
|
event?: string | null;
|
|
5755
5537
|
|
|
5756
|
-
/**
|
|
5757
|
-
* Maximum value allowed for the parameter.
|
|
5758
|
-
*/
|
|
5759
|
-
max?: number | null;
|
|
5760
|
-
|
|
5761
5538
|
/**
|
|
5762
5539
|
* Array of parameters for the smart contract.
|
|
5763
5540
|
*/
|
|
@@ -5767,16 +5544,6 @@ export namespace RuleUpdateParams {
|
|
|
5767
5544
|
* Type of the smart contract interaction.
|
|
5768
5545
|
*/
|
|
5769
5546
|
type?: 'function' | 'event' | null;
|
|
5770
|
-
|
|
5771
|
-
/**
|
|
5772
|
-
* Flag indicating if a bonus is applied.
|
|
5773
|
-
*/
|
|
5774
|
-
withBonus?: boolean | null;
|
|
5775
|
-
|
|
5776
|
-
/**
|
|
5777
|
-
* Flag indicating if a custom range is applied.
|
|
5778
|
-
*/
|
|
5779
|
-
withCustomRange?: boolean | null;
|
|
5780
5547
|
}
|
|
5781
5548
|
|
|
5782
5549
|
export namespace SmartContract {
|
|
@@ -5790,33 +5557,6 @@ export namespace RuleUpdateParams {
|
|
|
5790
5557
|
valueMapping?: string | null;
|
|
5791
5558
|
}
|
|
5792
5559
|
|
|
5793
|
-
export interface Bonus {
|
|
5794
|
-
/**
|
|
5795
|
-
* Amount of the bonus.
|
|
5796
|
-
*/
|
|
5797
|
-
amount?: number | null;
|
|
5798
|
-
|
|
5799
|
-
/**
|
|
5800
|
-
* Number of times the bonus is applied.
|
|
5801
|
-
*/
|
|
5802
|
-
count?: number | null;
|
|
5803
|
-
}
|
|
5804
|
-
|
|
5805
|
-
/**
|
|
5806
|
-
* Time range applied to the rule.
|
|
5807
|
-
*/
|
|
5808
|
-
export interface CustomRange {
|
|
5809
|
-
/**
|
|
5810
|
-
* End time of the custom range.
|
|
5811
|
-
*/
|
|
5812
|
-
endsAt?: string | null;
|
|
5813
|
-
|
|
5814
|
-
/**
|
|
5815
|
-
* Start time of the custom range.
|
|
5816
|
-
*/
|
|
5817
|
-
startsAt?: string | null;
|
|
5818
|
-
}
|
|
5819
|
-
|
|
5820
5560
|
export interface Param {
|
|
5821
5561
|
/**
|
|
5822
5562
|
* Condition to check for the parameter.
|
|
@@ -5975,6 +5715,11 @@ export interface RuleCompleteParams {
|
|
|
5975
5715
|
*/
|
|
5976
5716
|
loyaltyQuestionChoiceId?: string;
|
|
5977
5717
|
|
|
5718
|
+
/**
|
|
5719
|
+
* Value to compare with the range
|
|
5720
|
+
*/
|
|
5721
|
+
rangeValue?: number | null;
|
|
5722
|
+
|
|
5978
5723
|
/**
|
|
5979
5724
|
* Unique identifier for the user
|
|
5980
5725
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.106'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.106";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '0.1.0-alpha.
|
|
4
|
+
exports.VERSION = '0.1.0-alpha.106'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.106'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|