@licensespring/node-sdk 1.0.6 → 1.0.9
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/LICENSE.md +56 -0
- package/README.md +92 -46
- package/dist/src/abstract-manager.d.ts +2 -0
- package/dist/src/abstract-manager.js +43 -2
- package/dist/src/abstract-manager.js.map +1 -1
- package/dist/src/api.d.ts +1572 -266
- package/dist/src/api.js +79 -3
- package/dist/src/api.js.map +1 -1
- package/dist/src/floating.d.ts +2 -0
- package/dist/src/floating.js +43 -2
- package/dist/src/floating.js.map +1 -1
- package/dist/src/license-file.js +37 -1
- package/dist/src/license-file.js.map +1 -1
- package/dist/src/license.d.ts +1 -1
- package/dist/src/service.d.ts +3 -1
- package/dist/src/service.js +12 -2
- package/dist/src/service.js.map +1 -1
- package/dist/src/types.d.ts +30 -16
- package/dist/src/types.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +1 -1
package/dist/src/api.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { CustomerLicenseUsersResponse, DeviceVariable, GetCustomerLicensesPayload, GetUserLicensesPayload, HardwareIdAlgorithm, InstallationFileResponse, LicenseActivationIdentificatorOfflineWithVariables, LicenseActivationIdentificatorWithVariables, LicenseBorrowResponse, LicenseConsumptionsResponse, LicenseFeatureConsumptionResponse, LicenseFeatureResponse, LicenseIdentificator, LicenseIdentificatorAddConsumptions, LicenseIdentificatorAddFeatureConsumptions, LicenseIdentificatorAndFeature, LicenseIdentificatorWithBorrowedUntil, LicenseIdentificatorWithInstallation, LicenseIdentificatorWithVariables, LicenseTrialResponse, LicensespringAPIConfig, LicensespringAPIConfigDef, PasswordChangePayload, ProductDetailsPayload, ProductDetailsResponse, SSOURLParams, TrialKeyPayload, VersionsResponse } from './types';
|
|
2
2
|
import OfflineActivation from './offline-activation';
|
|
3
|
+
import { AxiosProxyConfig } from 'axios';
|
|
3
4
|
export default class LicenseAPI {
|
|
4
5
|
private service;
|
|
5
6
|
config: LicensespringAPIConfig;
|
|
6
7
|
constructor(config: LicensespringAPIConfigDef);
|
|
7
8
|
getHardwareID(algorithm?: HardwareIdAlgorithm): string;
|
|
9
|
+
setProxy(proxy: AxiosProxyConfig | null): void;
|
|
8
10
|
checkLicense(payload: LicenseIdentificator, includeExpiredFeatures?: boolean): Promise<({
|
|
9
11
|
id: number;
|
|
10
12
|
allow_grace_period: boolean;
|
|
@@ -34,7 +36,7 @@ export default class LicenseAPI {
|
|
|
34
36
|
max_borrow_time: number;
|
|
35
37
|
max_license_users: number;
|
|
36
38
|
max_overages: number;
|
|
37
|
-
max_transfers
|
|
39
|
+
max_transfers?: number;
|
|
38
40
|
order_store_id: string;
|
|
39
41
|
prevent_vm: boolean;
|
|
40
42
|
release_date: string;
|
|
@@ -59,7 +61,6 @@ export default class LicenseAPI {
|
|
|
59
61
|
is_floating_cloud: boolean;
|
|
60
62
|
floating_in_use_devices: number;
|
|
61
63
|
floating_users: number;
|
|
62
|
-
floating_timeout: number;
|
|
63
64
|
} & {
|
|
64
65
|
trial_days?: undefined;
|
|
65
66
|
is_trial: false;
|
|
@@ -71,7 +72,7 @@ export default class LicenseAPI {
|
|
|
71
72
|
allow_overages: boolean;
|
|
72
73
|
max_overages: number;
|
|
73
74
|
reset_consumption: boolean;
|
|
74
|
-
consumption_period:
|
|
75
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
75
76
|
}) | ({
|
|
76
77
|
id: number;
|
|
77
78
|
allow_grace_period: boolean;
|
|
@@ -101,7 +102,7 @@ export default class LicenseAPI {
|
|
|
101
102
|
max_borrow_time: number;
|
|
102
103
|
max_license_users: number;
|
|
103
104
|
max_overages: number;
|
|
104
|
-
max_transfers
|
|
105
|
+
max_transfers?: number;
|
|
105
106
|
order_store_id: string;
|
|
106
107
|
prevent_vm: boolean;
|
|
107
108
|
release_date: string;
|
|
@@ -126,7 +127,6 @@ export default class LicenseAPI {
|
|
|
126
127
|
is_floating_cloud: boolean;
|
|
127
128
|
floating_in_use_devices: number;
|
|
128
129
|
floating_users: number;
|
|
129
|
-
floating_timeout: number;
|
|
130
130
|
} & {
|
|
131
131
|
is_trial: true;
|
|
132
132
|
trial_days: number;
|
|
@@ -138,7 +138,7 @@ export default class LicenseAPI {
|
|
|
138
138
|
allow_overages: boolean;
|
|
139
139
|
max_overages: number;
|
|
140
140
|
reset_consumption: boolean;
|
|
141
|
-
consumption_period:
|
|
141
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
142
142
|
}) | ({
|
|
143
143
|
id: number;
|
|
144
144
|
allow_grace_period: boolean;
|
|
@@ -168,7 +168,7 @@ export default class LicenseAPI {
|
|
|
168
168
|
max_borrow_time: number;
|
|
169
169
|
max_license_users: number;
|
|
170
170
|
max_overages: number;
|
|
171
|
-
max_transfers
|
|
171
|
+
max_transfers?: number;
|
|
172
172
|
order_store_id: string;
|
|
173
173
|
prevent_vm: boolean;
|
|
174
174
|
release_date: string;
|
|
@@ -193,7 +193,6 @@ export default class LicenseAPI {
|
|
|
193
193
|
is_floating_cloud: true;
|
|
194
194
|
floating_in_use_devices: number;
|
|
195
195
|
floating_users: number;
|
|
196
|
-
floating_timeout: number;
|
|
197
196
|
} & {
|
|
198
197
|
trial_days?: undefined;
|
|
199
198
|
is_trial: false;
|
|
@@ -205,7 +204,7 @@ export default class LicenseAPI {
|
|
|
205
204
|
allow_overages: boolean;
|
|
206
205
|
max_overages: number;
|
|
207
206
|
reset_consumption: boolean;
|
|
208
|
-
consumption_period:
|
|
207
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
209
208
|
}) | ({
|
|
210
209
|
id: number;
|
|
211
210
|
allow_grace_period: boolean;
|
|
@@ -235,7 +234,7 @@ export default class LicenseAPI {
|
|
|
235
234
|
max_borrow_time: number;
|
|
236
235
|
max_license_users: number;
|
|
237
236
|
max_overages: number;
|
|
238
|
-
max_transfers
|
|
237
|
+
max_transfers?: number;
|
|
239
238
|
order_store_id: string;
|
|
240
239
|
prevent_vm: boolean;
|
|
241
240
|
release_date: string;
|
|
@@ -260,7 +259,6 @@ export default class LicenseAPI {
|
|
|
260
259
|
is_floating_cloud: true;
|
|
261
260
|
floating_in_use_devices: number;
|
|
262
261
|
floating_users: number;
|
|
263
|
-
floating_timeout: number;
|
|
264
262
|
} & {
|
|
265
263
|
is_trial: true;
|
|
266
264
|
trial_days: number;
|
|
@@ -272,7 +270,7 @@ export default class LicenseAPI {
|
|
|
272
270
|
allow_overages: boolean;
|
|
273
271
|
max_overages: number;
|
|
274
272
|
reset_consumption: boolean;
|
|
275
|
-
consumption_period:
|
|
273
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
276
274
|
}) | ({
|
|
277
275
|
id: number;
|
|
278
276
|
allow_grace_period: boolean;
|
|
@@ -302,7 +300,7 @@ export default class LicenseAPI {
|
|
|
302
300
|
max_borrow_time: number;
|
|
303
301
|
max_license_users: number;
|
|
304
302
|
max_overages: number;
|
|
305
|
-
max_transfers
|
|
303
|
+
max_transfers?: number;
|
|
306
304
|
order_store_id: string;
|
|
307
305
|
prevent_vm: boolean;
|
|
308
306
|
release_date: string;
|
|
@@ -320,14 +318,13 @@ export default class LicenseAPI {
|
|
|
320
318
|
product_details: import("./types").ProductDetails;
|
|
321
319
|
metadata: import("./types").JSON;
|
|
322
320
|
} & {
|
|
323
|
-
|
|
324
|
-
|
|
321
|
+
user?: undefined;
|
|
322
|
+
license_key: string;
|
|
325
323
|
} & {
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
floating_timeout: number;
|
|
324
|
+
floating_users?: undefined;
|
|
325
|
+
floating_in_use_devices?: undefined;
|
|
326
|
+
is_floating_cloud: false;
|
|
327
|
+
is_floating: false;
|
|
331
328
|
} & {
|
|
332
329
|
trial_days?: undefined;
|
|
333
330
|
is_trial: false;
|
|
@@ -339,7 +336,7 @@ export default class LicenseAPI {
|
|
|
339
336
|
allow_overages: boolean;
|
|
340
337
|
max_overages: number;
|
|
341
338
|
reset_consumption: boolean;
|
|
342
|
-
consumption_period:
|
|
339
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
343
340
|
}) | ({
|
|
344
341
|
id: number;
|
|
345
342
|
allow_grace_period: boolean;
|
|
@@ -369,7 +366,7 @@ export default class LicenseAPI {
|
|
|
369
366
|
max_borrow_time: number;
|
|
370
367
|
max_license_users: number;
|
|
371
368
|
max_overages: number;
|
|
372
|
-
max_transfers
|
|
369
|
+
max_transfers?: number;
|
|
373
370
|
order_store_id: string;
|
|
374
371
|
prevent_vm: boolean;
|
|
375
372
|
release_date: string;
|
|
@@ -387,14 +384,13 @@ export default class LicenseAPI {
|
|
|
387
384
|
product_details: import("./types").ProductDetails;
|
|
388
385
|
metadata: import("./types").JSON;
|
|
389
386
|
} & {
|
|
390
|
-
|
|
391
|
-
|
|
387
|
+
user?: undefined;
|
|
388
|
+
license_key: string;
|
|
392
389
|
} & {
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
floating_timeout: number;
|
|
390
|
+
floating_users?: undefined;
|
|
391
|
+
floating_in_use_devices?: undefined;
|
|
392
|
+
is_floating_cloud: false;
|
|
393
|
+
is_floating: false;
|
|
398
394
|
} & {
|
|
399
395
|
is_trial: true;
|
|
400
396
|
trial_days: number;
|
|
@@ -406,7 +402,7 @@ export default class LicenseAPI {
|
|
|
406
402
|
allow_overages: boolean;
|
|
407
403
|
max_overages: number;
|
|
408
404
|
reset_consumption: boolean;
|
|
409
|
-
consumption_period:
|
|
405
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
410
406
|
}) | ({
|
|
411
407
|
id: number;
|
|
412
408
|
allow_grace_period: boolean;
|
|
@@ -436,7 +432,7 @@ export default class LicenseAPI {
|
|
|
436
432
|
max_borrow_time: number;
|
|
437
433
|
max_license_users: number;
|
|
438
434
|
max_overages: number;
|
|
439
|
-
max_transfers
|
|
435
|
+
max_transfers?: number;
|
|
440
436
|
order_store_id: string;
|
|
441
437
|
prevent_vm: boolean;
|
|
442
438
|
release_date: string;
|
|
@@ -457,11 +453,10 @@ export default class LicenseAPI {
|
|
|
457
453
|
license_key?: undefined;
|
|
458
454
|
user: import("./types").LicenseUser;
|
|
459
455
|
} & {
|
|
460
|
-
is_floating:
|
|
461
|
-
is_floating_cloud:
|
|
456
|
+
is_floating: true;
|
|
457
|
+
is_floating_cloud: boolean;
|
|
462
458
|
floating_in_use_devices: number;
|
|
463
459
|
floating_users: number;
|
|
464
|
-
floating_timeout: number;
|
|
465
460
|
} & {
|
|
466
461
|
trial_days?: undefined;
|
|
467
462
|
is_trial: false;
|
|
@@ -473,7 +468,7 @@ export default class LicenseAPI {
|
|
|
473
468
|
allow_overages: boolean;
|
|
474
469
|
max_overages: number;
|
|
475
470
|
reset_consumption: boolean;
|
|
476
|
-
consumption_period:
|
|
471
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
477
472
|
}) | ({
|
|
478
473
|
id: number;
|
|
479
474
|
allow_grace_period: boolean;
|
|
@@ -503,7 +498,7 @@ export default class LicenseAPI {
|
|
|
503
498
|
max_borrow_time: number;
|
|
504
499
|
max_license_users: number;
|
|
505
500
|
max_overages: number;
|
|
506
|
-
max_transfers
|
|
501
|
+
max_transfers?: number;
|
|
507
502
|
order_store_id: string;
|
|
508
503
|
prevent_vm: boolean;
|
|
509
504
|
release_date: string;
|
|
@@ -524,11 +519,10 @@ export default class LicenseAPI {
|
|
|
524
519
|
license_key?: undefined;
|
|
525
520
|
user: import("./types").LicenseUser;
|
|
526
521
|
} & {
|
|
527
|
-
is_floating:
|
|
528
|
-
is_floating_cloud:
|
|
522
|
+
is_floating: true;
|
|
523
|
+
is_floating_cloud: boolean;
|
|
529
524
|
floating_in_use_devices: number;
|
|
530
525
|
floating_users: number;
|
|
531
|
-
floating_timeout: number;
|
|
532
526
|
} & {
|
|
533
527
|
is_trial: true;
|
|
534
528
|
trial_days: number;
|
|
@@ -540,9 +534,8 @@ export default class LicenseAPI {
|
|
|
540
534
|
allow_overages: boolean;
|
|
541
535
|
max_overages: number;
|
|
542
536
|
reset_consumption: boolean;
|
|
543
|
-
consumption_period:
|
|
544
|
-
})
|
|
545
|
-
activateLicense(payload: LicenseActivationIdentificatorWithVariables): Promise<({
|
|
537
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
538
|
+
}) | ({
|
|
546
539
|
id: number;
|
|
547
540
|
allow_grace_period: boolean;
|
|
548
541
|
allow_overages: boolean;
|
|
@@ -571,7 +564,7 @@ export default class LicenseAPI {
|
|
|
571
564
|
max_borrow_time: number;
|
|
572
565
|
max_license_users: number;
|
|
573
566
|
max_overages: number;
|
|
574
|
-
max_transfers
|
|
567
|
+
max_transfers?: number;
|
|
575
568
|
order_store_id: string;
|
|
576
569
|
prevent_vm: boolean;
|
|
577
570
|
release_date: string;
|
|
@@ -589,14 +582,13 @@ export default class LicenseAPI {
|
|
|
589
582
|
product_details: import("./types").ProductDetails;
|
|
590
583
|
metadata: import("./types").JSON;
|
|
591
584
|
} & {
|
|
592
|
-
|
|
593
|
-
|
|
585
|
+
license_key?: undefined;
|
|
586
|
+
user: import("./types").LicenseUser;
|
|
594
587
|
} & {
|
|
595
|
-
is_floating:
|
|
596
|
-
is_floating_cloud:
|
|
588
|
+
is_floating: boolean;
|
|
589
|
+
is_floating_cloud: true;
|
|
597
590
|
floating_in_use_devices: number;
|
|
598
591
|
floating_users: number;
|
|
599
|
-
floating_timeout: number;
|
|
600
592
|
} & {
|
|
601
593
|
trial_days?: undefined;
|
|
602
594
|
is_trial: false;
|
|
@@ -608,7 +600,7 @@ export default class LicenseAPI {
|
|
|
608
600
|
allow_overages: boolean;
|
|
609
601
|
max_overages: number;
|
|
610
602
|
reset_consumption: boolean;
|
|
611
|
-
consumption_period:
|
|
603
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
612
604
|
}) | ({
|
|
613
605
|
id: number;
|
|
614
606
|
allow_grace_period: boolean;
|
|
@@ -638,7 +630,7 @@ export default class LicenseAPI {
|
|
|
638
630
|
max_borrow_time: number;
|
|
639
631
|
max_license_users: number;
|
|
640
632
|
max_overages: number;
|
|
641
|
-
max_transfers
|
|
633
|
+
max_transfers?: number;
|
|
642
634
|
order_store_id: string;
|
|
643
635
|
prevent_vm: boolean;
|
|
644
636
|
release_date: string;
|
|
@@ -656,14 +648,13 @@ export default class LicenseAPI {
|
|
|
656
648
|
product_details: import("./types").ProductDetails;
|
|
657
649
|
metadata: import("./types").JSON;
|
|
658
650
|
} & {
|
|
659
|
-
|
|
660
|
-
|
|
651
|
+
license_key?: undefined;
|
|
652
|
+
user: import("./types").LicenseUser;
|
|
661
653
|
} & {
|
|
662
|
-
is_floating:
|
|
663
|
-
is_floating_cloud:
|
|
654
|
+
is_floating: boolean;
|
|
655
|
+
is_floating_cloud: true;
|
|
664
656
|
floating_in_use_devices: number;
|
|
665
657
|
floating_users: number;
|
|
666
|
-
floating_timeout: number;
|
|
667
658
|
} & {
|
|
668
659
|
is_trial: true;
|
|
669
660
|
trial_days: number;
|
|
@@ -675,7 +666,7 @@ export default class LicenseAPI {
|
|
|
675
666
|
allow_overages: boolean;
|
|
676
667
|
max_overages: number;
|
|
677
668
|
reset_consumption: boolean;
|
|
678
|
-
consumption_period:
|
|
669
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
679
670
|
}) | ({
|
|
680
671
|
id: number;
|
|
681
672
|
allow_grace_period: boolean;
|
|
@@ -705,7 +696,7 @@ export default class LicenseAPI {
|
|
|
705
696
|
max_borrow_time: number;
|
|
706
697
|
max_license_users: number;
|
|
707
698
|
max_overages: number;
|
|
708
|
-
max_transfers
|
|
699
|
+
max_transfers?: number;
|
|
709
700
|
order_store_id: string;
|
|
710
701
|
prevent_vm: boolean;
|
|
711
702
|
release_date: string;
|
|
@@ -723,14 +714,13 @@ export default class LicenseAPI {
|
|
|
723
714
|
product_details: import("./types").ProductDetails;
|
|
724
715
|
metadata: import("./types").JSON;
|
|
725
716
|
} & {
|
|
726
|
-
|
|
727
|
-
|
|
717
|
+
license_key?: undefined;
|
|
718
|
+
user: import("./types").LicenseUser;
|
|
728
719
|
} & {
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
floating_timeout: number;
|
|
720
|
+
floating_users?: undefined;
|
|
721
|
+
floating_in_use_devices?: undefined;
|
|
722
|
+
is_floating_cloud: false;
|
|
723
|
+
is_floating: false;
|
|
734
724
|
} & {
|
|
735
725
|
trial_days?: undefined;
|
|
736
726
|
is_trial: false;
|
|
@@ -742,7 +732,7 @@ export default class LicenseAPI {
|
|
|
742
732
|
allow_overages: boolean;
|
|
743
733
|
max_overages: number;
|
|
744
734
|
reset_consumption: boolean;
|
|
745
|
-
consumption_period:
|
|
735
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
746
736
|
}) | ({
|
|
747
737
|
id: number;
|
|
748
738
|
allow_grace_period: boolean;
|
|
@@ -772,7 +762,7 @@ export default class LicenseAPI {
|
|
|
772
762
|
max_borrow_time: number;
|
|
773
763
|
max_license_users: number;
|
|
774
764
|
max_overages: number;
|
|
775
|
-
max_transfers
|
|
765
|
+
max_transfers?: number;
|
|
776
766
|
order_store_id: string;
|
|
777
767
|
prevent_vm: boolean;
|
|
778
768
|
release_date: string;
|
|
@@ -790,14 +780,13 @@ export default class LicenseAPI {
|
|
|
790
780
|
product_details: import("./types").ProductDetails;
|
|
791
781
|
metadata: import("./types").JSON;
|
|
792
782
|
} & {
|
|
793
|
-
|
|
794
|
-
|
|
783
|
+
license_key?: undefined;
|
|
784
|
+
user: import("./types").LicenseUser;
|
|
795
785
|
} & {
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
floating_timeout: number;
|
|
786
|
+
floating_users?: undefined;
|
|
787
|
+
floating_in_use_devices?: undefined;
|
|
788
|
+
is_floating_cloud: false;
|
|
789
|
+
is_floating: false;
|
|
801
790
|
} & {
|
|
802
791
|
is_trial: true;
|
|
803
792
|
trial_days: number;
|
|
@@ -809,8 +798,9 @@ export default class LicenseAPI {
|
|
|
809
798
|
allow_overages: boolean;
|
|
810
799
|
max_overages: number;
|
|
811
800
|
reset_consumption: boolean;
|
|
812
|
-
consumption_period:
|
|
813
|
-
})
|
|
801
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
802
|
+
})>;
|
|
803
|
+
activateLicense(payload: LicenseActivationIdentificatorWithVariables): Promise<({
|
|
814
804
|
id: number;
|
|
815
805
|
allow_grace_period: boolean;
|
|
816
806
|
allow_overages: boolean;
|
|
@@ -839,7 +829,7 @@ export default class LicenseAPI {
|
|
|
839
829
|
max_borrow_time: number;
|
|
840
830
|
max_license_users: number;
|
|
841
831
|
max_overages: number;
|
|
842
|
-
max_transfers
|
|
832
|
+
max_transfers?: number;
|
|
843
833
|
order_store_id: string;
|
|
844
834
|
prevent_vm: boolean;
|
|
845
835
|
release_date: string;
|
|
@@ -857,14 +847,13 @@ export default class LicenseAPI {
|
|
|
857
847
|
product_details: import("./types").ProductDetails;
|
|
858
848
|
metadata: import("./types").JSON;
|
|
859
849
|
} & {
|
|
860
|
-
|
|
861
|
-
|
|
850
|
+
user?: undefined;
|
|
851
|
+
license_key: string;
|
|
862
852
|
} & {
|
|
863
853
|
is_floating: true;
|
|
864
854
|
is_floating_cloud: boolean;
|
|
865
855
|
floating_in_use_devices: number;
|
|
866
856
|
floating_users: number;
|
|
867
|
-
floating_timeout: number;
|
|
868
857
|
} & {
|
|
869
858
|
trial_days?: undefined;
|
|
870
859
|
is_trial: false;
|
|
@@ -876,7 +865,7 @@ export default class LicenseAPI {
|
|
|
876
865
|
allow_overages: boolean;
|
|
877
866
|
max_overages: number;
|
|
878
867
|
reset_consumption: boolean;
|
|
879
|
-
consumption_period:
|
|
868
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
880
869
|
}) | ({
|
|
881
870
|
id: number;
|
|
882
871
|
allow_grace_period: boolean;
|
|
@@ -906,7 +895,7 @@ export default class LicenseAPI {
|
|
|
906
895
|
max_borrow_time: number;
|
|
907
896
|
max_license_users: number;
|
|
908
897
|
max_overages: number;
|
|
909
|
-
max_transfers
|
|
898
|
+
max_transfers?: number;
|
|
910
899
|
order_store_id: string;
|
|
911
900
|
prevent_vm: boolean;
|
|
912
901
|
release_date: string;
|
|
@@ -924,14 +913,13 @@ export default class LicenseAPI {
|
|
|
924
913
|
product_details: import("./types").ProductDetails;
|
|
925
914
|
metadata: import("./types").JSON;
|
|
926
915
|
} & {
|
|
927
|
-
|
|
928
|
-
|
|
916
|
+
user?: undefined;
|
|
917
|
+
license_key: string;
|
|
929
918
|
} & {
|
|
930
919
|
is_floating: true;
|
|
931
920
|
is_floating_cloud: boolean;
|
|
932
921
|
floating_in_use_devices: number;
|
|
933
922
|
floating_users: number;
|
|
934
|
-
floating_timeout: number;
|
|
935
923
|
} & {
|
|
936
924
|
is_trial: true;
|
|
937
925
|
trial_days: number;
|
|
@@ -943,7 +931,7 @@ export default class LicenseAPI {
|
|
|
943
931
|
allow_overages: boolean;
|
|
944
932
|
max_overages: number;
|
|
945
933
|
reset_consumption: boolean;
|
|
946
|
-
consumption_period:
|
|
934
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
947
935
|
}) | ({
|
|
948
936
|
id: number;
|
|
949
937
|
allow_grace_period: boolean;
|
|
@@ -973,7 +961,7 @@ export default class LicenseAPI {
|
|
|
973
961
|
max_borrow_time: number;
|
|
974
962
|
max_license_users: number;
|
|
975
963
|
max_overages: number;
|
|
976
|
-
max_transfers
|
|
964
|
+
max_transfers?: number;
|
|
977
965
|
order_store_id: string;
|
|
978
966
|
prevent_vm: boolean;
|
|
979
967
|
release_date: string;
|
|
@@ -991,14 +979,13 @@ export default class LicenseAPI {
|
|
|
991
979
|
product_details: import("./types").ProductDetails;
|
|
992
980
|
metadata: import("./types").JSON;
|
|
993
981
|
} & {
|
|
994
|
-
|
|
995
|
-
|
|
982
|
+
user?: undefined;
|
|
983
|
+
license_key: string;
|
|
996
984
|
} & {
|
|
997
985
|
is_floating: boolean;
|
|
998
986
|
is_floating_cloud: true;
|
|
999
987
|
floating_in_use_devices: number;
|
|
1000
988
|
floating_users: number;
|
|
1001
|
-
floating_timeout: number;
|
|
1002
989
|
} & {
|
|
1003
990
|
trial_days?: undefined;
|
|
1004
991
|
is_trial: false;
|
|
@@ -1010,7 +997,7 @@ export default class LicenseAPI {
|
|
|
1010
997
|
allow_overages: boolean;
|
|
1011
998
|
max_overages: number;
|
|
1012
999
|
reset_consumption: boolean;
|
|
1013
|
-
consumption_period:
|
|
1000
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1014
1001
|
}) | ({
|
|
1015
1002
|
id: number;
|
|
1016
1003
|
allow_grace_period: boolean;
|
|
@@ -1040,7 +1027,7 @@ export default class LicenseAPI {
|
|
|
1040
1027
|
max_borrow_time: number;
|
|
1041
1028
|
max_license_users: number;
|
|
1042
1029
|
max_overages: number;
|
|
1043
|
-
max_transfers
|
|
1030
|
+
max_transfers?: number;
|
|
1044
1031
|
order_store_id: string;
|
|
1045
1032
|
prevent_vm: boolean;
|
|
1046
1033
|
release_date: string;
|
|
@@ -1058,14 +1045,13 @@ export default class LicenseAPI {
|
|
|
1058
1045
|
product_details: import("./types").ProductDetails;
|
|
1059
1046
|
metadata: import("./types").JSON;
|
|
1060
1047
|
} & {
|
|
1061
|
-
|
|
1062
|
-
|
|
1048
|
+
user?: undefined;
|
|
1049
|
+
license_key: string;
|
|
1063
1050
|
} & {
|
|
1064
1051
|
is_floating: boolean;
|
|
1065
1052
|
is_floating_cloud: true;
|
|
1066
1053
|
floating_in_use_devices: number;
|
|
1067
1054
|
floating_users: number;
|
|
1068
|
-
floating_timeout: number;
|
|
1069
1055
|
} & {
|
|
1070
1056
|
is_trial: true;
|
|
1071
1057
|
trial_days: number;
|
|
@@ -1077,10 +1063,8 @@ export default class LicenseAPI {
|
|
|
1077
1063
|
allow_overages: boolean;
|
|
1078
1064
|
max_overages: number;
|
|
1079
1065
|
reset_consumption: boolean;
|
|
1080
|
-
consumption_period:
|
|
1081
|
-
})
|
|
1082
|
-
deactivateLicense(payload: LicenseIdentificator): Promise<boolean>;
|
|
1083
|
-
activateOffline(payload: LicenseActivationIdentificatorOfflineWithVariables): Promise<({
|
|
1066
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1067
|
+
}) | ({
|
|
1084
1068
|
id: number;
|
|
1085
1069
|
allow_grace_period: boolean;
|
|
1086
1070
|
allow_overages: boolean;
|
|
@@ -1109,7 +1093,7 @@ export default class LicenseAPI {
|
|
|
1109
1093
|
max_borrow_time: number;
|
|
1110
1094
|
max_license_users: number;
|
|
1111
1095
|
max_overages: number;
|
|
1112
|
-
max_transfers
|
|
1096
|
+
max_transfers?: number;
|
|
1113
1097
|
order_store_id: string;
|
|
1114
1098
|
prevent_vm: boolean;
|
|
1115
1099
|
release_date: string;
|
|
@@ -1130,11 +1114,10 @@ export default class LicenseAPI {
|
|
|
1130
1114
|
user?: undefined;
|
|
1131
1115
|
license_key: string;
|
|
1132
1116
|
} & {
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
floating_timeout: number;
|
|
1117
|
+
floating_users?: undefined;
|
|
1118
|
+
floating_in_use_devices?: undefined;
|
|
1119
|
+
is_floating_cloud: false;
|
|
1120
|
+
is_floating: false;
|
|
1138
1121
|
} & {
|
|
1139
1122
|
trial_days?: undefined;
|
|
1140
1123
|
is_trial: false;
|
|
@@ -1146,9 +1129,7 @@ export default class LicenseAPI {
|
|
|
1146
1129
|
allow_overages: boolean;
|
|
1147
1130
|
max_overages: number;
|
|
1148
1131
|
reset_consumption: boolean;
|
|
1149
|
-
consumption_period:
|
|
1150
|
-
} & {
|
|
1151
|
-
license_signature_v2: string;
|
|
1132
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1152
1133
|
}) | ({
|
|
1153
1134
|
id: number;
|
|
1154
1135
|
allow_grace_period: boolean;
|
|
@@ -1178,7 +1159,7 @@ export default class LicenseAPI {
|
|
|
1178
1159
|
max_borrow_time: number;
|
|
1179
1160
|
max_license_users: number;
|
|
1180
1161
|
max_overages: number;
|
|
1181
|
-
max_transfers
|
|
1162
|
+
max_transfers?: number;
|
|
1182
1163
|
order_store_id: string;
|
|
1183
1164
|
prevent_vm: boolean;
|
|
1184
1165
|
release_date: string;
|
|
@@ -1199,11 +1180,10 @@ export default class LicenseAPI {
|
|
|
1199
1180
|
user?: undefined;
|
|
1200
1181
|
license_key: string;
|
|
1201
1182
|
} & {
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
floating_timeout: number;
|
|
1183
|
+
floating_users?: undefined;
|
|
1184
|
+
floating_in_use_devices?: undefined;
|
|
1185
|
+
is_floating_cloud: false;
|
|
1186
|
+
is_floating: false;
|
|
1207
1187
|
} & {
|
|
1208
1188
|
is_trial: true;
|
|
1209
1189
|
trial_days: number;
|
|
@@ -1215,9 +1195,7 @@ export default class LicenseAPI {
|
|
|
1215
1195
|
allow_overages: boolean;
|
|
1216
1196
|
max_overages: number;
|
|
1217
1197
|
reset_consumption: boolean;
|
|
1218
|
-
consumption_period:
|
|
1219
|
-
} & {
|
|
1220
|
-
license_signature_v2: string;
|
|
1198
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1221
1199
|
}) | ({
|
|
1222
1200
|
id: number;
|
|
1223
1201
|
allow_grace_period: boolean;
|
|
@@ -1247,7 +1225,7 @@ export default class LicenseAPI {
|
|
|
1247
1225
|
max_borrow_time: number;
|
|
1248
1226
|
max_license_users: number;
|
|
1249
1227
|
max_overages: number;
|
|
1250
|
-
max_transfers
|
|
1228
|
+
max_transfers?: number;
|
|
1251
1229
|
order_store_id: string;
|
|
1252
1230
|
prevent_vm: boolean;
|
|
1253
1231
|
release_date: string;
|
|
@@ -1265,14 +1243,13 @@ export default class LicenseAPI {
|
|
|
1265
1243
|
product_details: import("./types").ProductDetails;
|
|
1266
1244
|
metadata: import("./types").JSON;
|
|
1267
1245
|
} & {
|
|
1268
|
-
|
|
1269
|
-
|
|
1246
|
+
license_key?: undefined;
|
|
1247
|
+
user: import("./types").LicenseUser;
|
|
1270
1248
|
} & {
|
|
1271
|
-
is_floating:
|
|
1272
|
-
is_floating_cloud:
|
|
1249
|
+
is_floating: true;
|
|
1250
|
+
is_floating_cloud: boolean;
|
|
1273
1251
|
floating_in_use_devices: number;
|
|
1274
1252
|
floating_users: number;
|
|
1275
|
-
floating_timeout: number;
|
|
1276
1253
|
} & {
|
|
1277
1254
|
trial_days?: undefined;
|
|
1278
1255
|
is_trial: false;
|
|
@@ -1284,9 +1261,7 @@ export default class LicenseAPI {
|
|
|
1284
1261
|
allow_overages: boolean;
|
|
1285
1262
|
max_overages: number;
|
|
1286
1263
|
reset_consumption: boolean;
|
|
1287
|
-
consumption_period:
|
|
1288
|
-
} & {
|
|
1289
|
-
license_signature_v2: string;
|
|
1264
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1290
1265
|
}) | ({
|
|
1291
1266
|
id: number;
|
|
1292
1267
|
allow_grace_period: boolean;
|
|
@@ -1316,7 +1291,7 @@ export default class LicenseAPI {
|
|
|
1316
1291
|
max_borrow_time: number;
|
|
1317
1292
|
max_license_users: number;
|
|
1318
1293
|
max_overages: number;
|
|
1319
|
-
max_transfers
|
|
1294
|
+
max_transfers?: number;
|
|
1320
1295
|
order_store_id: string;
|
|
1321
1296
|
prevent_vm: boolean;
|
|
1322
1297
|
release_date: string;
|
|
@@ -1334,14 +1309,13 @@ export default class LicenseAPI {
|
|
|
1334
1309
|
product_details: import("./types").ProductDetails;
|
|
1335
1310
|
metadata: import("./types").JSON;
|
|
1336
1311
|
} & {
|
|
1337
|
-
|
|
1338
|
-
|
|
1312
|
+
license_key?: undefined;
|
|
1313
|
+
user: import("./types").LicenseUser;
|
|
1339
1314
|
} & {
|
|
1340
|
-
is_floating:
|
|
1341
|
-
is_floating_cloud:
|
|
1315
|
+
is_floating: true;
|
|
1316
|
+
is_floating_cloud: boolean;
|
|
1342
1317
|
floating_in_use_devices: number;
|
|
1343
1318
|
floating_users: number;
|
|
1344
|
-
floating_timeout: number;
|
|
1345
1319
|
} & {
|
|
1346
1320
|
is_trial: true;
|
|
1347
1321
|
trial_days: number;
|
|
@@ -1353,9 +1327,7 @@ export default class LicenseAPI {
|
|
|
1353
1327
|
allow_overages: boolean;
|
|
1354
1328
|
max_overages: number;
|
|
1355
1329
|
reset_consumption: boolean;
|
|
1356
|
-
consumption_period:
|
|
1357
|
-
} & {
|
|
1358
|
-
license_signature_v2: string;
|
|
1330
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1359
1331
|
}) | ({
|
|
1360
1332
|
id: number;
|
|
1361
1333
|
allow_grace_period: boolean;
|
|
@@ -1385,7 +1357,7 @@ export default class LicenseAPI {
|
|
|
1385
1357
|
max_borrow_time: number;
|
|
1386
1358
|
max_license_users: number;
|
|
1387
1359
|
max_overages: number;
|
|
1388
|
-
max_transfers
|
|
1360
|
+
max_transfers?: number;
|
|
1389
1361
|
order_store_id: string;
|
|
1390
1362
|
prevent_vm: boolean;
|
|
1391
1363
|
release_date: string;
|
|
@@ -1406,11 +1378,10 @@ export default class LicenseAPI {
|
|
|
1406
1378
|
license_key?: undefined;
|
|
1407
1379
|
user: import("./types").LicenseUser;
|
|
1408
1380
|
} & {
|
|
1409
|
-
is_floating:
|
|
1410
|
-
is_floating_cloud:
|
|
1381
|
+
is_floating: boolean;
|
|
1382
|
+
is_floating_cloud: true;
|
|
1411
1383
|
floating_in_use_devices: number;
|
|
1412
1384
|
floating_users: number;
|
|
1413
|
-
floating_timeout: number;
|
|
1414
1385
|
} & {
|
|
1415
1386
|
trial_days?: undefined;
|
|
1416
1387
|
is_trial: false;
|
|
@@ -1422,9 +1393,7 @@ export default class LicenseAPI {
|
|
|
1422
1393
|
allow_overages: boolean;
|
|
1423
1394
|
max_overages: number;
|
|
1424
1395
|
reset_consumption: boolean;
|
|
1425
|
-
consumption_period:
|
|
1426
|
-
} & {
|
|
1427
|
-
license_signature_v2: string;
|
|
1396
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1428
1397
|
}) | ({
|
|
1429
1398
|
id: number;
|
|
1430
1399
|
allow_grace_period: boolean;
|
|
@@ -1454,7 +1423,7 @@ export default class LicenseAPI {
|
|
|
1454
1423
|
max_borrow_time: number;
|
|
1455
1424
|
max_license_users: number;
|
|
1456
1425
|
max_overages: number;
|
|
1457
|
-
max_transfers
|
|
1426
|
+
max_transfers?: number;
|
|
1458
1427
|
order_store_id: string;
|
|
1459
1428
|
prevent_vm: boolean;
|
|
1460
1429
|
release_date: string;
|
|
@@ -1475,11 +1444,10 @@ export default class LicenseAPI {
|
|
|
1475
1444
|
license_key?: undefined;
|
|
1476
1445
|
user: import("./types").LicenseUser;
|
|
1477
1446
|
} & {
|
|
1478
|
-
is_floating:
|
|
1479
|
-
is_floating_cloud:
|
|
1447
|
+
is_floating: boolean;
|
|
1448
|
+
is_floating_cloud: true;
|
|
1480
1449
|
floating_in_use_devices: number;
|
|
1481
1450
|
floating_users: number;
|
|
1482
|
-
floating_timeout: number;
|
|
1483
1451
|
} & {
|
|
1484
1452
|
is_trial: true;
|
|
1485
1453
|
trial_days: number;
|
|
@@ -1491,9 +1459,7 @@ export default class LicenseAPI {
|
|
|
1491
1459
|
allow_overages: boolean;
|
|
1492
1460
|
max_overages: number;
|
|
1493
1461
|
reset_consumption: boolean;
|
|
1494
|
-
consumption_period:
|
|
1495
|
-
} & {
|
|
1496
|
-
license_signature_v2: string;
|
|
1462
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1497
1463
|
}) | ({
|
|
1498
1464
|
id: number;
|
|
1499
1465
|
allow_grace_period: boolean;
|
|
@@ -1523,7 +1489,7 @@ export default class LicenseAPI {
|
|
|
1523
1489
|
max_borrow_time: number;
|
|
1524
1490
|
max_license_users: number;
|
|
1525
1491
|
max_overages: number;
|
|
1526
|
-
max_transfers
|
|
1492
|
+
max_transfers?: number;
|
|
1527
1493
|
order_store_id: string;
|
|
1528
1494
|
prevent_vm: boolean;
|
|
1529
1495
|
release_date: string;
|
|
@@ -1544,11 +1510,10 @@ export default class LicenseAPI {
|
|
|
1544
1510
|
license_key?: undefined;
|
|
1545
1511
|
user: import("./types").LicenseUser;
|
|
1546
1512
|
} & {
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
floating_timeout: number;
|
|
1513
|
+
floating_users?: undefined;
|
|
1514
|
+
floating_in_use_devices?: undefined;
|
|
1515
|
+
is_floating_cloud: false;
|
|
1516
|
+
is_floating: false;
|
|
1552
1517
|
} & {
|
|
1553
1518
|
trial_days?: undefined;
|
|
1554
1519
|
is_trial: false;
|
|
@@ -1560,9 +1525,7 @@ export default class LicenseAPI {
|
|
|
1560
1525
|
allow_overages: boolean;
|
|
1561
1526
|
max_overages: number;
|
|
1562
1527
|
reset_consumption: boolean;
|
|
1563
|
-
consumption_period:
|
|
1564
|
-
} & {
|
|
1565
|
-
license_signature_v2: string;
|
|
1528
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1566
1529
|
}) | ({
|
|
1567
1530
|
id: number;
|
|
1568
1531
|
allow_grace_period: boolean;
|
|
@@ -1592,7 +1555,7 @@ export default class LicenseAPI {
|
|
|
1592
1555
|
max_borrow_time: number;
|
|
1593
1556
|
max_license_users: number;
|
|
1594
1557
|
max_overages: number;
|
|
1595
|
-
max_transfers
|
|
1558
|
+
max_transfers?: number;
|
|
1596
1559
|
order_store_id: string;
|
|
1597
1560
|
prevent_vm: boolean;
|
|
1598
1561
|
release_date: string;
|
|
@@ -1613,11 +1576,10 @@ export default class LicenseAPI {
|
|
|
1613
1576
|
license_key?: undefined;
|
|
1614
1577
|
user: import("./types").LicenseUser;
|
|
1615
1578
|
} & {
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
floating_timeout: number;
|
|
1579
|
+
floating_users?: undefined;
|
|
1580
|
+
floating_in_use_devices?: undefined;
|
|
1581
|
+
is_floating_cloud: false;
|
|
1582
|
+
is_floating: false;
|
|
1621
1583
|
} & {
|
|
1622
1584
|
is_trial: true;
|
|
1623
1585
|
trial_days: number;
|
|
@@ -1629,12 +1591,10 @@ export default class LicenseAPI {
|
|
|
1629
1591
|
allow_overages: boolean;
|
|
1630
1592
|
max_overages: number;
|
|
1631
1593
|
reset_consumption: boolean;
|
|
1632
|
-
consumption_period:
|
|
1633
|
-
} & {
|
|
1634
|
-
license_signature_v2: string;
|
|
1594
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1635
1595
|
})>;
|
|
1636
|
-
|
|
1637
|
-
|
|
1596
|
+
deactivateLicense(payload: LicenseIdentificator): Promise<boolean>;
|
|
1597
|
+
activateOffline(payload: LicenseActivationIdentificatorOfflineWithVariables): Promise<({
|
|
1638
1598
|
id: number;
|
|
1639
1599
|
allow_grace_period: boolean;
|
|
1640
1600
|
allow_overages: boolean;
|
|
@@ -1663,7 +1623,7 @@ export default class LicenseAPI {
|
|
|
1663
1623
|
max_borrow_time: number;
|
|
1664
1624
|
max_license_users: number;
|
|
1665
1625
|
max_overages: number;
|
|
1666
|
-
max_transfers
|
|
1626
|
+
max_transfers?: number;
|
|
1667
1627
|
order_store_id: string;
|
|
1668
1628
|
prevent_vm: boolean;
|
|
1669
1629
|
release_date: string;
|
|
@@ -1688,7 +1648,6 @@ export default class LicenseAPI {
|
|
|
1688
1648
|
is_floating_cloud: boolean;
|
|
1689
1649
|
floating_in_use_devices: number;
|
|
1690
1650
|
floating_users: number;
|
|
1691
|
-
floating_timeout: number;
|
|
1692
1651
|
} & {
|
|
1693
1652
|
trial_days?: undefined;
|
|
1694
1653
|
is_trial: false;
|
|
@@ -1700,11 +1659,9 @@ export default class LicenseAPI {
|
|
|
1700
1659
|
allow_overages: boolean;
|
|
1701
1660
|
max_overages: number;
|
|
1702
1661
|
reset_consumption: boolean;
|
|
1703
|
-
consumption_period:
|
|
1662
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1704
1663
|
} & {
|
|
1705
1664
|
license_signature_v2: string;
|
|
1706
|
-
} & {
|
|
1707
|
-
offline_signature: string;
|
|
1708
1665
|
}) | ({
|
|
1709
1666
|
id: number;
|
|
1710
1667
|
allow_grace_period: boolean;
|
|
@@ -1734,7 +1691,7 @@ export default class LicenseAPI {
|
|
|
1734
1691
|
max_borrow_time: number;
|
|
1735
1692
|
max_license_users: number;
|
|
1736
1693
|
max_overages: number;
|
|
1737
|
-
max_transfers
|
|
1694
|
+
max_transfers?: number;
|
|
1738
1695
|
order_store_id: string;
|
|
1739
1696
|
prevent_vm: boolean;
|
|
1740
1697
|
release_date: string;
|
|
@@ -1759,7 +1716,6 @@ export default class LicenseAPI {
|
|
|
1759
1716
|
is_floating_cloud: boolean;
|
|
1760
1717
|
floating_in_use_devices: number;
|
|
1761
1718
|
floating_users: number;
|
|
1762
|
-
floating_timeout: number;
|
|
1763
1719
|
} & {
|
|
1764
1720
|
is_trial: true;
|
|
1765
1721
|
trial_days: number;
|
|
@@ -1771,11 +1727,9 @@ export default class LicenseAPI {
|
|
|
1771
1727
|
allow_overages: boolean;
|
|
1772
1728
|
max_overages: number;
|
|
1773
1729
|
reset_consumption: boolean;
|
|
1774
|
-
consumption_period:
|
|
1730
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1775
1731
|
} & {
|
|
1776
1732
|
license_signature_v2: string;
|
|
1777
|
-
} & {
|
|
1778
|
-
offline_signature: string;
|
|
1779
1733
|
}) | ({
|
|
1780
1734
|
id: number;
|
|
1781
1735
|
allow_grace_period: boolean;
|
|
@@ -1805,7 +1759,7 @@ export default class LicenseAPI {
|
|
|
1805
1759
|
max_borrow_time: number;
|
|
1806
1760
|
max_license_users: number;
|
|
1807
1761
|
max_overages: number;
|
|
1808
|
-
max_transfers
|
|
1762
|
+
max_transfers?: number;
|
|
1809
1763
|
order_store_id: string;
|
|
1810
1764
|
prevent_vm: boolean;
|
|
1811
1765
|
release_date: string;
|
|
@@ -1830,7 +1784,6 @@ export default class LicenseAPI {
|
|
|
1830
1784
|
is_floating_cloud: true;
|
|
1831
1785
|
floating_in_use_devices: number;
|
|
1832
1786
|
floating_users: number;
|
|
1833
|
-
floating_timeout: number;
|
|
1834
1787
|
} & {
|
|
1835
1788
|
trial_days?: undefined;
|
|
1836
1789
|
is_trial: false;
|
|
@@ -1842,11 +1795,9 @@ export default class LicenseAPI {
|
|
|
1842
1795
|
allow_overages: boolean;
|
|
1843
1796
|
max_overages: number;
|
|
1844
1797
|
reset_consumption: boolean;
|
|
1845
|
-
consumption_period:
|
|
1798
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1846
1799
|
} & {
|
|
1847
1800
|
license_signature_v2: string;
|
|
1848
|
-
} & {
|
|
1849
|
-
offline_signature: string;
|
|
1850
1801
|
}) | ({
|
|
1851
1802
|
id: number;
|
|
1852
1803
|
allow_grace_period: boolean;
|
|
@@ -1876,7 +1827,7 @@ export default class LicenseAPI {
|
|
|
1876
1827
|
max_borrow_time: number;
|
|
1877
1828
|
max_license_users: number;
|
|
1878
1829
|
max_overages: number;
|
|
1879
|
-
max_transfers
|
|
1830
|
+
max_transfers?: number;
|
|
1880
1831
|
order_store_id: string;
|
|
1881
1832
|
prevent_vm: boolean;
|
|
1882
1833
|
release_date: string;
|
|
@@ -1901,7 +1852,6 @@ export default class LicenseAPI {
|
|
|
1901
1852
|
is_floating_cloud: true;
|
|
1902
1853
|
floating_in_use_devices: number;
|
|
1903
1854
|
floating_users: number;
|
|
1904
|
-
floating_timeout: number;
|
|
1905
1855
|
} & {
|
|
1906
1856
|
is_trial: true;
|
|
1907
1857
|
trial_days: number;
|
|
@@ -1913,11 +1863,9 @@ export default class LicenseAPI {
|
|
|
1913
1863
|
allow_overages: boolean;
|
|
1914
1864
|
max_overages: number;
|
|
1915
1865
|
reset_consumption: boolean;
|
|
1916
|
-
consumption_period:
|
|
1866
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1917
1867
|
} & {
|
|
1918
1868
|
license_signature_v2: string;
|
|
1919
|
-
} & {
|
|
1920
|
-
offline_signature: string;
|
|
1921
1869
|
}) | ({
|
|
1922
1870
|
id: number;
|
|
1923
1871
|
allow_grace_period: boolean;
|
|
@@ -1947,7 +1895,7 @@ export default class LicenseAPI {
|
|
|
1947
1895
|
max_borrow_time: number;
|
|
1948
1896
|
max_license_users: number;
|
|
1949
1897
|
max_overages: number;
|
|
1950
|
-
max_transfers
|
|
1898
|
+
max_transfers?: number;
|
|
1951
1899
|
order_store_id: string;
|
|
1952
1900
|
prevent_vm: boolean;
|
|
1953
1901
|
release_date: string;
|
|
@@ -1965,14 +1913,13 @@ export default class LicenseAPI {
|
|
|
1965
1913
|
product_details: import("./types").ProductDetails;
|
|
1966
1914
|
metadata: import("./types").JSON;
|
|
1967
1915
|
} & {
|
|
1968
|
-
|
|
1969
|
-
|
|
1916
|
+
user?: undefined;
|
|
1917
|
+
license_key: string;
|
|
1970
1918
|
} & {
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
floating_timeout: number;
|
|
1919
|
+
floating_users?: undefined;
|
|
1920
|
+
floating_in_use_devices?: undefined;
|
|
1921
|
+
is_floating_cloud: false;
|
|
1922
|
+
is_floating: false;
|
|
1976
1923
|
} & {
|
|
1977
1924
|
trial_days?: undefined;
|
|
1978
1925
|
is_trial: false;
|
|
@@ -1984,11 +1931,9 @@ export default class LicenseAPI {
|
|
|
1984
1931
|
allow_overages: boolean;
|
|
1985
1932
|
max_overages: number;
|
|
1986
1933
|
reset_consumption: boolean;
|
|
1987
|
-
consumption_period:
|
|
1934
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
1988
1935
|
} & {
|
|
1989
1936
|
license_signature_v2: string;
|
|
1990
|
-
} & {
|
|
1991
|
-
offline_signature: string;
|
|
1992
1937
|
}) | ({
|
|
1993
1938
|
id: number;
|
|
1994
1939
|
allow_grace_period: boolean;
|
|
@@ -2018,7 +1963,7 @@ export default class LicenseAPI {
|
|
|
2018
1963
|
max_borrow_time: number;
|
|
2019
1964
|
max_license_users: number;
|
|
2020
1965
|
max_overages: number;
|
|
2021
|
-
max_transfers
|
|
1966
|
+
max_transfers?: number;
|
|
2022
1967
|
order_store_id: string;
|
|
2023
1968
|
prevent_vm: boolean;
|
|
2024
1969
|
release_date: string;
|
|
@@ -2036,14 +1981,13 @@ export default class LicenseAPI {
|
|
|
2036
1981
|
product_details: import("./types").ProductDetails;
|
|
2037
1982
|
metadata: import("./types").JSON;
|
|
2038
1983
|
} & {
|
|
2039
|
-
|
|
2040
|
-
|
|
1984
|
+
user?: undefined;
|
|
1985
|
+
license_key: string;
|
|
2041
1986
|
} & {
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
floating_timeout: number;
|
|
1987
|
+
floating_users?: undefined;
|
|
1988
|
+
floating_in_use_devices?: undefined;
|
|
1989
|
+
is_floating_cloud: false;
|
|
1990
|
+
is_floating: false;
|
|
2047
1991
|
} & {
|
|
2048
1992
|
is_trial: true;
|
|
2049
1993
|
trial_days: number;
|
|
@@ -2055,11 +1999,9 @@ export default class LicenseAPI {
|
|
|
2055
1999
|
allow_overages: boolean;
|
|
2056
2000
|
max_overages: number;
|
|
2057
2001
|
reset_consumption: boolean;
|
|
2058
|
-
consumption_period:
|
|
2002
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2059
2003
|
} & {
|
|
2060
2004
|
license_signature_v2: string;
|
|
2061
|
-
} & {
|
|
2062
|
-
offline_signature: string;
|
|
2063
2005
|
}) | ({
|
|
2064
2006
|
id: number;
|
|
2065
2007
|
allow_grace_period: boolean;
|
|
@@ -2089,7 +2031,7 @@ export default class LicenseAPI {
|
|
|
2089
2031
|
max_borrow_time: number;
|
|
2090
2032
|
max_license_users: number;
|
|
2091
2033
|
max_overages: number;
|
|
2092
|
-
max_transfers
|
|
2034
|
+
max_transfers?: number;
|
|
2093
2035
|
order_store_id: string;
|
|
2094
2036
|
prevent_vm: boolean;
|
|
2095
2037
|
release_date: string;
|
|
@@ -2110,11 +2052,10 @@ export default class LicenseAPI {
|
|
|
2110
2052
|
license_key?: undefined;
|
|
2111
2053
|
user: import("./types").LicenseUser;
|
|
2112
2054
|
} & {
|
|
2113
|
-
is_floating:
|
|
2114
|
-
is_floating_cloud:
|
|
2055
|
+
is_floating: true;
|
|
2056
|
+
is_floating_cloud: boolean;
|
|
2115
2057
|
floating_in_use_devices: number;
|
|
2116
2058
|
floating_users: number;
|
|
2117
|
-
floating_timeout: number;
|
|
2118
2059
|
} & {
|
|
2119
2060
|
trial_days?: undefined;
|
|
2120
2061
|
is_trial: false;
|
|
@@ -2126,11 +2067,9 @@ export default class LicenseAPI {
|
|
|
2126
2067
|
allow_overages: boolean;
|
|
2127
2068
|
max_overages: number;
|
|
2128
2069
|
reset_consumption: boolean;
|
|
2129
|
-
consumption_period:
|
|
2070
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2130
2071
|
} & {
|
|
2131
2072
|
license_signature_v2: string;
|
|
2132
|
-
} & {
|
|
2133
|
-
offline_signature: string;
|
|
2134
2073
|
}) | ({
|
|
2135
2074
|
id: number;
|
|
2136
2075
|
allow_grace_period: boolean;
|
|
@@ -2160,7 +2099,7 @@ export default class LicenseAPI {
|
|
|
2160
2099
|
max_borrow_time: number;
|
|
2161
2100
|
max_license_users: number;
|
|
2162
2101
|
max_overages: number;
|
|
2163
|
-
max_transfers
|
|
2102
|
+
max_transfers?: number;
|
|
2164
2103
|
order_store_id: string;
|
|
2165
2104
|
prevent_vm: boolean;
|
|
2166
2105
|
release_date: string;
|
|
@@ -2181,11 +2120,10 @@ export default class LicenseAPI {
|
|
|
2181
2120
|
license_key?: undefined;
|
|
2182
2121
|
user: import("./types").LicenseUser;
|
|
2183
2122
|
} & {
|
|
2184
|
-
is_floating:
|
|
2185
|
-
is_floating_cloud:
|
|
2123
|
+
is_floating: true;
|
|
2124
|
+
is_floating_cloud: boolean;
|
|
2186
2125
|
floating_in_use_devices: number;
|
|
2187
2126
|
floating_users: number;
|
|
2188
|
-
floating_timeout: number;
|
|
2189
2127
|
} & {
|
|
2190
2128
|
is_trial: true;
|
|
2191
2129
|
trial_days: number;
|
|
@@ -2197,14 +2135,10 @@ export default class LicenseAPI {
|
|
|
2197
2135
|
allow_overages: boolean;
|
|
2198
2136
|
max_overages: number;
|
|
2199
2137
|
reset_consumption: boolean;
|
|
2200
|
-
consumption_period:
|
|
2138
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2201
2139
|
} & {
|
|
2202
2140
|
license_signature_v2: string;
|
|
2203
|
-
}
|
|
2204
|
-
offline_signature: string;
|
|
2205
|
-
});
|
|
2206
|
-
getTrialKey(payload: TrialKeyPayload): Promise<LicenseTrialResponse>;
|
|
2207
|
-
getUserLicenses(payload: GetUserLicensesPayload): Promise<(({
|
|
2141
|
+
}) | ({
|
|
2208
2142
|
id: number;
|
|
2209
2143
|
allow_grace_period: boolean;
|
|
2210
2144
|
allow_overages: boolean;
|
|
@@ -2233,7 +2167,7 @@ export default class LicenseAPI {
|
|
|
2233
2167
|
max_borrow_time: number;
|
|
2234
2168
|
max_license_users: number;
|
|
2235
2169
|
max_overages: number;
|
|
2236
|
-
max_transfers
|
|
2170
|
+
max_transfers?: number;
|
|
2237
2171
|
order_store_id: string;
|
|
2238
2172
|
prevent_vm: boolean;
|
|
2239
2173
|
release_date: string;
|
|
@@ -2251,14 +2185,13 @@ export default class LicenseAPI {
|
|
|
2251
2185
|
product_details: import("./types").ProductDetails;
|
|
2252
2186
|
metadata: import("./types").JSON;
|
|
2253
2187
|
} & {
|
|
2254
|
-
|
|
2255
|
-
|
|
2188
|
+
license_key?: undefined;
|
|
2189
|
+
user: import("./types").LicenseUser;
|
|
2256
2190
|
} & {
|
|
2257
|
-
is_floating:
|
|
2258
|
-
is_floating_cloud:
|
|
2191
|
+
is_floating: boolean;
|
|
2192
|
+
is_floating_cloud: true;
|
|
2259
2193
|
floating_in_use_devices: number;
|
|
2260
2194
|
floating_users: number;
|
|
2261
|
-
floating_timeout: number;
|
|
2262
2195
|
} & {
|
|
2263
2196
|
trial_days?: undefined;
|
|
2264
2197
|
is_trial: false;
|
|
@@ -2270,7 +2203,9 @@ export default class LicenseAPI {
|
|
|
2270
2203
|
allow_overages: boolean;
|
|
2271
2204
|
max_overages: number;
|
|
2272
2205
|
reset_consumption: boolean;
|
|
2273
|
-
consumption_period:
|
|
2206
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2207
|
+
} & {
|
|
2208
|
+
license_signature_v2: string;
|
|
2274
2209
|
}) | ({
|
|
2275
2210
|
id: number;
|
|
2276
2211
|
allow_grace_period: boolean;
|
|
@@ -2300,7 +2235,7 @@ export default class LicenseAPI {
|
|
|
2300
2235
|
max_borrow_time: number;
|
|
2301
2236
|
max_license_users: number;
|
|
2302
2237
|
max_overages: number;
|
|
2303
|
-
max_transfers
|
|
2238
|
+
max_transfers?: number;
|
|
2304
2239
|
order_store_id: string;
|
|
2305
2240
|
prevent_vm: boolean;
|
|
2306
2241
|
release_date: string;
|
|
@@ -2318,14 +2253,13 @@ export default class LicenseAPI {
|
|
|
2318
2253
|
product_details: import("./types").ProductDetails;
|
|
2319
2254
|
metadata: import("./types").JSON;
|
|
2320
2255
|
} & {
|
|
2321
|
-
|
|
2322
|
-
|
|
2256
|
+
license_key?: undefined;
|
|
2257
|
+
user: import("./types").LicenseUser;
|
|
2323
2258
|
} & {
|
|
2324
|
-
is_floating:
|
|
2325
|
-
is_floating_cloud:
|
|
2259
|
+
is_floating: boolean;
|
|
2260
|
+
is_floating_cloud: true;
|
|
2326
2261
|
floating_in_use_devices: number;
|
|
2327
2262
|
floating_users: number;
|
|
2328
|
-
floating_timeout: number;
|
|
2329
2263
|
} & {
|
|
2330
2264
|
is_trial: true;
|
|
2331
2265
|
trial_days: number;
|
|
@@ -2337,7 +2271,9 @@ export default class LicenseAPI {
|
|
|
2337
2271
|
allow_overages: boolean;
|
|
2338
2272
|
max_overages: number;
|
|
2339
2273
|
reset_consumption: boolean;
|
|
2340
|
-
consumption_period:
|
|
2274
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2275
|
+
} & {
|
|
2276
|
+
license_signature_v2: string;
|
|
2341
2277
|
}) | ({
|
|
2342
2278
|
id: number;
|
|
2343
2279
|
allow_grace_period: boolean;
|
|
@@ -2367,7 +2303,7 @@ export default class LicenseAPI {
|
|
|
2367
2303
|
max_borrow_time: number;
|
|
2368
2304
|
max_license_users: number;
|
|
2369
2305
|
max_overages: number;
|
|
2370
|
-
max_transfers
|
|
2306
|
+
max_transfers?: number;
|
|
2371
2307
|
order_store_id: string;
|
|
2372
2308
|
prevent_vm: boolean;
|
|
2373
2309
|
release_date: string;
|
|
@@ -2385,14 +2321,13 @@ export default class LicenseAPI {
|
|
|
2385
2321
|
product_details: import("./types").ProductDetails;
|
|
2386
2322
|
metadata: import("./types").JSON;
|
|
2387
2323
|
} & {
|
|
2388
|
-
|
|
2389
|
-
|
|
2324
|
+
license_key?: undefined;
|
|
2325
|
+
user: import("./types").LicenseUser;
|
|
2390
2326
|
} & {
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
floating_timeout: number;
|
|
2327
|
+
floating_users?: undefined;
|
|
2328
|
+
floating_in_use_devices?: undefined;
|
|
2329
|
+
is_floating_cloud: false;
|
|
2330
|
+
is_floating: false;
|
|
2396
2331
|
} & {
|
|
2397
2332
|
trial_days?: undefined;
|
|
2398
2333
|
is_trial: false;
|
|
@@ -2404,7 +2339,9 @@ export default class LicenseAPI {
|
|
|
2404
2339
|
allow_overages: boolean;
|
|
2405
2340
|
max_overages: number;
|
|
2406
2341
|
reset_consumption: boolean;
|
|
2407
|
-
consumption_period:
|
|
2342
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2343
|
+
} & {
|
|
2344
|
+
license_signature_v2: string;
|
|
2408
2345
|
}) | ({
|
|
2409
2346
|
id: number;
|
|
2410
2347
|
allow_grace_period: boolean;
|
|
@@ -2434,7 +2371,7 @@ export default class LicenseAPI {
|
|
|
2434
2371
|
max_borrow_time: number;
|
|
2435
2372
|
max_license_users: number;
|
|
2436
2373
|
max_overages: number;
|
|
2437
|
-
max_transfers
|
|
2374
|
+
max_transfers?: number;
|
|
2438
2375
|
order_store_id: string;
|
|
2439
2376
|
prevent_vm: boolean;
|
|
2440
2377
|
release_date: string;
|
|
@@ -2452,14 +2389,1255 @@ export default class LicenseAPI {
|
|
|
2452
2389
|
product_details: import("./types").ProductDetails;
|
|
2453
2390
|
metadata: import("./types").JSON;
|
|
2454
2391
|
} & {
|
|
2455
|
-
|
|
2456
|
-
|
|
2392
|
+
license_key?: undefined;
|
|
2393
|
+
user: import("./types").LicenseUser;
|
|
2457
2394
|
} & {
|
|
2458
|
-
|
|
2395
|
+
floating_users?: undefined;
|
|
2396
|
+
floating_in_use_devices?: undefined;
|
|
2397
|
+
is_floating_cloud: false;
|
|
2398
|
+
is_floating: false;
|
|
2399
|
+
} & {
|
|
2400
|
+
is_trial: true;
|
|
2401
|
+
trial_days: number;
|
|
2402
|
+
} & {
|
|
2403
|
+
license_type: "consumption";
|
|
2404
|
+
max_consumptions: number;
|
|
2405
|
+
total_consumptions: number;
|
|
2406
|
+
allow_unlimited_consumptions: boolean;
|
|
2407
|
+
allow_overages: boolean;
|
|
2408
|
+
max_overages: number;
|
|
2409
|
+
reset_consumption: boolean;
|
|
2410
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2411
|
+
} & {
|
|
2412
|
+
license_signature_v2: string;
|
|
2413
|
+
})>;
|
|
2414
|
+
deactivateOffline(payload: LicenseIdentificator): Promise<boolean>;
|
|
2415
|
+
checkLicenseOffline(payloadBase64: string): ({
|
|
2416
|
+
id: number;
|
|
2417
|
+
allow_grace_period: boolean;
|
|
2418
|
+
allow_overages: boolean;
|
|
2419
|
+
allow_unlimited_activations: boolean;
|
|
2420
|
+
borrowed_until: string | null;
|
|
2421
|
+
can_borrow: boolean;
|
|
2422
|
+
channel: string;
|
|
2423
|
+
device_id: number;
|
|
2424
|
+
enable_maintenance_period: boolean;
|
|
2425
|
+
environment: string;
|
|
2426
|
+
eula_link: string;
|
|
2427
|
+
floating_timeout: number;
|
|
2428
|
+
grace_period: number;
|
|
2429
|
+
hash_md5: string;
|
|
2430
|
+
installation_file: string;
|
|
2431
|
+
is_air_gapped: boolean;
|
|
2432
|
+
is_borrowed: boolean;
|
|
2433
|
+
is_expired: boolean;
|
|
2434
|
+
is_hardware_key_auth: boolean;
|
|
2435
|
+
license_active: boolean;
|
|
2436
|
+
license_enabled: boolean;
|
|
2437
|
+
license_signature: string;
|
|
2438
|
+
license_type: import("./types").LicenseType;
|
|
2439
|
+
maintenance_period: string | null;
|
|
2440
|
+
max_activations: number;
|
|
2441
|
+
max_borrow_time: number;
|
|
2442
|
+
max_license_users: number;
|
|
2443
|
+
max_overages: number;
|
|
2444
|
+
max_transfers?: number;
|
|
2445
|
+
order_store_id: string;
|
|
2446
|
+
prevent_vm: boolean;
|
|
2447
|
+
release_date: string;
|
|
2448
|
+
release_notes_link: string;
|
|
2449
|
+
requires_version: string;
|
|
2450
|
+
size: string;
|
|
2451
|
+
start_date: string | null;
|
|
2452
|
+
times_activated: number;
|
|
2453
|
+
transfer_count: number;
|
|
2454
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
2455
|
+
version: string;
|
|
2456
|
+
product_features: import("./types").ProductFeature[];
|
|
2457
|
+
custom_fields: import("./types").CustomField[];
|
|
2458
|
+
customer: import("./types").Customer;
|
|
2459
|
+
product_details: import("./types").ProductDetails;
|
|
2460
|
+
metadata: import("./types").JSON;
|
|
2461
|
+
} & {
|
|
2462
|
+
user?: undefined;
|
|
2463
|
+
license_key: string;
|
|
2464
|
+
} & {
|
|
2465
|
+
is_floating: true;
|
|
2466
|
+
is_floating_cloud: boolean;
|
|
2467
|
+
floating_in_use_devices: number;
|
|
2468
|
+
floating_users: number;
|
|
2469
|
+
} & {
|
|
2470
|
+
trial_days?: undefined;
|
|
2471
|
+
is_trial: false;
|
|
2472
|
+
} & {
|
|
2473
|
+
license_type: "consumption";
|
|
2474
|
+
max_consumptions: number;
|
|
2475
|
+
total_consumptions: number;
|
|
2476
|
+
allow_unlimited_consumptions: boolean;
|
|
2477
|
+
allow_overages: boolean;
|
|
2478
|
+
max_overages: number;
|
|
2479
|
+
reset_consumption: boolean;
|
|
2480
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2481
|
+
} & {
|
|
2482
|
+
license_signature_v2: string;
|
|
2483
|
+
} & {
|
|
2484
|
+
offline_signature: string;
|
|
2485
|
+
}) | ({
|
|
2486
|
+
id: number;
|
|
2487
|
+
allow_grace_period: boolean;
|
|
2488
|
+
allow_overages: boolean;
|
|
2489
|
+
allow_unlimited_activations: boolean;
|
|
2490
|
+
borrowed_until: string | null;
|
|
2491
|
+
can_borrow: boolean;
|
|
2492
|
+
channel: string;
|
|
2493
|
+
device_id: number;
|
|
2494
|
+
enable_maintenance_period: boolean;
|
|
2495
|
+
environment: string;
|
|
2496
|
+
eula_link: string;
|
|
2497
|
+
floating_timeout: number;
|
|
2498
|
+
grace_period: number;
|
|
2499
|
+
hash_md5: string;
|
|
2500
|
+
installation_file: string;
|
|
2501
|
+
is_air_gapped: boolean;
|
|
2502
|
+
is_borrowed: boolean;
|
|
2503
|
+
is_expired: boolean;
|
|
2504
|
+
is_hardware_key_auth: boolean;
|
|
2505
|
+
license_active: boolean;
|
|
2506
|
+
license_enabled: boolean;
|
|
2507
|
+
license_signature: string;
|
|
2508
|
+
license_type: import("./types").LicenseType;
|
|
2509
|
+
maintenance_period: string | null;
|
|
2510
|
+
max_activations: number;
|
|
2511
|
+
max_borrow_time: number;
|
|
2512
|
+
max_license_users: number;
|
|
2513
|
+
max_overages: number;
|
|
2514
|
+
max_transfers?: number;
|
|
2515
|
+
order_store_id: string;
|
|
2516
|
+
prevent_vm: boolean;
|
|
2517
|
+
release_date: string;
|
|
2518
|
+
release_notes_link: string;
|
|
2519
|
+
requires_version: string;
|
|
2520
|
+
size: string;
|
|
2521
|
+
start_date: string | null;
|
|
2522
|
+
times_activated: number;
|
|
2523
|
+
transfer_count: number;
|
|
2524
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
2525
|
+
version: string;
|
|
2526
|
+
product_features: import("./types").ProductFeature[];
|
|
2527
|
+
custom_fields: import("./types").CustomField[];
|
|
2528
|
+
customer: import("./types").Customer;
|
|
2529
|
+
product_details: import("./types").ProductDetails;
|
|
2530
|
+
metadata: import("./types").JSON;
|
|
2531
|
+
} & {
|
|
2532
|
+
user?: undefined;
|
|
2533
|
+
license_key: string;
|
|
2534
|
+
} & {
|
|
2535
|
+
is_floating: true;
|
|
2536
|
+
is_floating_cloud: boolean;
|
|
2537
|
+
floating_in_use_devices: number;
|
|
2538
|
+
floating_users: number;
|
|
2539
|
+
} & {
|
|
2540
|
+
is_trial: true;
|
|
2541
|
+
trial_days: number;
|
|
2542
|
+
} & {
|
|
2543
|
+
license_type: "consumption";
|
|
2544
|
+
max_consumptions: number;
|
|
2545
|
+
total_consumptions: number;
|
|
2546
|
+
allow_unlimited_consumptions: boolean;
|
|
2547
|
+
allow_overages: boolean;
|
|
2548
|
+
max_overages: number;
|
|
2549
|
+
reset_consumption: boolean;
|
|
2550
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2551
|
+
} & {
|
|
2552
|
+
license_signature_v2: string;
|
|
2553
|
+
} & {
|
|
2554
|
+
offline_signature: string;
|
|
2555
|
+
}) | ({
|
|
2556
|
+
id: number;
|
|
2557
|
+
allow_grace_period: boolean;
|
|
2558
|
+
allow_overages: boolean;
|
|
2559
|
+
allow_unlimited_activations: boolean;
|
|
2560
|
+
borrowed_until: string | null;
|
|
2561
|
+
can_borrow: boolean;
|
|
2562
|
+
channel: string;
|
|
2563
|
+
device_id: number;
|
|
2564
|
+
enable_maintenance_period: boolean;
|
|
2565
|
+
environment: string;
|
|
2566
|
+
eula_link: string;
|
|
2567
|
+
floating_timeout: number;
|
|
2568
|
+
grace_period: number;
|
|
2569
|
+
hash_md5: string;
|
|
2570
|
+
installation_file: string;
|
|
2571
|
+
is_air_gapped: boolean;
|
|
2572
|
+
is_borrowed: boolean;
|
|
2573
|
+
is_expired: boolean;
|
|
2574
|
+
is_hardware_key_auth: boolean;
|
|
2575
|
+
license_active: boolean;
|
|
2576
|
+
license_enabled: boolean;
|
|
2577
|
+
license_signature: string;
|
|
2578
|
+
license_type: import("./types").LicenseType;
|
|
2579
|
+
maintenance_period: string | null;
|
|
2580
|
+
max_activations: number;
|
|
2581
|
+
max_borrow_time: number;
|
|
2582
|
+
max_license_users: number;
|
|
2583
|
+
max_overages: number;
|
|
2584
|
+
max_transfers?: number;
|
|
2585
|
+
order_store_id: string;
|
|
2586
|
+
prevent_vm: boolean;
|
|
2587
|
+
release_date: string;
|
|
2588
|
+
release_notes_link: string;
|
|
2589
|
+
requires_version: string;
|
|
2590
|
+
size: string;
|
|
2591
|
+
start_date: string | null;
|
|
2592
|
+
times_activated: number;
|
|
2593
|
+
transfer_count: number;
|
|
2594
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
2595
|
+
version: string;
|
|
2596
|
+
product_features: import("./types").ProductFeature[];
|
|
2597
|
+
custom_fields: import("./types").CustomField[];
|
|
2598
|
+
customer: import("./types").Customer;
|
|
2599
|
+
product_details: import("./types").ProductDetails;
|
|
2600
|
+
metadata: import("./types").JSON;
|
|
2601
|
+
} & {
|
|
2602
|
+
user?: undefined;
|
|
2603
|
+
license_key: string;
|
|
2604
|
+
} & {
|
|
2605
|
+
is_floating: boolean;
|
|
2606
|
+
is_floating_cloud: true;
|
|
2607
|
+
floating_in_use_devices: number;
|
|
2608
|
+
floating_users: number;
|
|
2609
|
+
} & {
|
|
2610
|
+
trial_days?: undefined;
|
|
2611
|
+
is_trial: false;
|
|
2612
|
+
} & {
|
|
2613
|
+
license_type: "consumption";
|
|
2614
|
+
max_consumptions: number;
|
|
2615
|
+
total_consumptions: number;
|
|
2616
|
+
allow_unlimited_consumptions: boolean;
|
|
2617
|
+
allow_overages: boolean;
|
|
2618
|
+
max_overages: number;
|
|
2619
|
+
reset_consumption: boolean;
|
|
2620
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2621
|
+
} & {
|
|
2622
|
+
license_signature_v2: string;
|
|
2623
|
+
} & {
|
|
2624
|
+
offline_signature: string;
|
|
2625
|
+
}) | ({
|
|
2626
|
+
id: number;
|
|
2627
|
+
allow_grace_period: boolean;
|
|
2628
|
+
allow_overages: boolean;
|
|
2629
|
+
allow_unlimited_activations: boolean;
|
|
2630
|
+
borrowed_until: string | null;
|
|
2631
|
+
can_borrow: boolean;
|
|
2632
|
+
channel: string;
|
|
2633
|
+
device_id: number;
|
|
2634
|
+
enable_maintenance_period: boolean;
|
|
2635
|
+
environment: string;
|
|
2636
|
+
eula_link: string;
|
|
2637
|
+
floating_timeout: number;
|
|
2638
|
+
grace_period: number;
|
|
2639
|
+
hash_md5: string;
|
|
2640
|
+
installation_file: string;
|
|
2641
|
+
is_air_gapped: boolean;
|
|
2642
|
+
is_borrowed: boolean;
|
|
2643
|
+
is_expired: boolean;
|
|
2644
|
+
is_hardware_key_auth: boolean;
|
|
2645
|
+
license_active: boolean;
|
|
2646
|
+
license_enabled: boolean;
|
|
2647
|
+
license_signature: string;
|
|
2648
|
+
license_type: import("./types").LicenseType;
|
|
2649
|
+
maintenance_period: string | null;
|
|
2650
|
+
max_activations: number;
|
|
2651
|
+
max_borrow_time: number;
|
|
2652
|
+
max_license_users: number;
|
|
2653
|
+
max_overages: number;
|
|
2654
|
+
max_transfers?: number;
|
|
2655
|
+
order_store_id: string;
|
|
2656
|
+
prevent_vm: boolean;
|
|
2657
|
+
release_date: string;
|
|
2658
|
+
release_notes_link: string;
|
|
2659
|
+
requires_version: string;
|
|
2660
|
+
size: string;
|
|
2661
|
+
start_date: string | null;
|
|
2662
|
+
times_activated: number;
|
|
2663
|
+
transfer_count: number;
|
|
2664
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
2665
|
+
version: string;
|
|
2666
|
+
product_features: import("./types").ProductFeature[];
|
|
2667
|
+
custom_fields: import("./types").CustomField[];
|
|
2668
|
+
customer: import("./types").Customer;
|
|
2669
|
+
product_details: import("./types").ProductDetails;
|
|
2670
|
+
metadata: import("./types").JSON;
|
|
2671
|
+
} & {
|
|
2672
|
+
user?: undefined;
|
|
2673
|
+
license_key: string;
|
|
2674
|
+
} & {
|
|
2675
|
+
is_floating: boolean;
|
|
2676
|
+
is_floating_cloud: true;
|
|
2677
|
+
floating_in_use_devices: number;
|
|
2678
|
+
floating_users: number;
|
|
2679
|
+
} & {
|
|
2680
|
+
is_trial: true;
|
|
2681
|
+
trial_days: number;
|
|
2682
|
+
} & {
|
|
2683
|
+
license_type: "consumption";
|
|
2684
|
+
max_consumptions: number;
|
|
2685
|
+
total_consumptions: number;
|
|
2686
|
+
allow_unlimited_consumptions: boolean;
|
|
2687
|
+
allow_overages: boolean;
|
|
2688
|
+
max_overages: number;
|
|
2689
|
+
reset_consumption: boolean;
|
|
2690
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2691
|
+
} & {
|
|
2692
|
+
license_signature_v2: string;
|
|
2693
|
+
} & {
|
|
2694
|
+
offline_signature: string;
|
|
2695
|
+
}) | ({
|
|
2696
|
+
id: number;
|
|
2697
|
+
allow_grace_period: boolean;
|
|
2698
|
+
allow_overages: boolean;
|
|
2699
|
+
allow_unlimited_activations: boolean;
|
|
2700
|
+
borrowed_until: string | null;
|
|
2701
|
+
can_borrow: boolean;
|
|
2702
|
+
channel: string;
|
|
2703
|
+
device_id: number;
|
|
2704
|
+
enable_maintenance_period: boolean;
|
|
2705
|
+
environment: string;
|
|
2706
|
+
eula_link: string;
|
|
2707
|
+
floating_timeout: number;
|
|
2708
|
+
grace_period: number;
|
|
2709
|
+
hash_md5: string;
|
|
2710
|
+
installation_file: string;
|
|
2711
|
+
is_air_gapped: boolean;
|
|
2712
|
+
is_borrowed: boolean;
|
|
2713
|
+
is_expired: boolean;
|
|
2714
|
+
is_hardware_key_auth: boolean;
|
|
2715
|
+
license_active: boolean;
|
|
2716
|
+
license_enabled: boolean;
|
|
2717
|
+
license_signature: string;
|
|
2718
|
+
license_type: import("./types").LicenseType;
|
|
2719
|
+
maintenance_period: string | null;
|
|
2720
|
+
max_activations: number;
|
|
2721
|
+
max_borrow_time: number;
|
|
2722
|
+
max_license_users: number;
|
|
2723
|
+
max_overages: number;
|
|
2724
|
+
max_transfers?: number;
|
|
2725
|
+
order_store_id: string;
|
|
2726
|
+
prevent_vm: boolean;
|
|
2727
|
+
release_date: string;
|
|
2728
|
+
release_notes_link: string;
|
|
2729
|
+
requires_version: string;
|
|
2730
|
+
size: string;
|
|
2731
|
+
start_date: string | null;
|
|
2732
|
+
times_activated: number;
|
|
2733
|
+
transfer_count: number;
|
|
2734
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
2735
|
+
version: string;
|
|
2736
|
+
product_features: import("./types").ProductFeature[];
|
|
2737
|
+
custom_fields: import("./types").CustomField[];
|
|
2738
|
+
customer: import("./types").Customer;
|
|
2739
|
+
product_details: import("./types").ProductDetails;
|
|
2740
|
+
metadata: import("./types").JSON;
|
|
2741
|
+
} & {
|
|
2742
|
+
user?: undefined;
|
|
2743
|
+
license_key: string;
|
|
2744
|
+
} & {
|
|
2745
|
+
floating_users?: undefined;
|
|
2746
|
+
floating_in_use_devices?: undefined;
|
|
2747
|
+
is_floating_cloud: false;
|
|
2748
|
+
is_floating: false;
|
|
2749
|
+
} & {
|
|
2750
|
+
trial_days?: undefined;
|
|
2751
|
+
is_trial: false;
|
|
2752
|
+
} & {
|
|
2753
|
+
license_type: "consumption";
|
|
2754
|
+
max_consumptions: number;
|
|
2755
|
+
total_consumptions: number;
|
|
2756
|
+
allow_unlimited_consumptions: boolean;
|
|
2757
|
+
allow_overages: boolean;
|
|
2758
|
+
max_overages: number;
|
|
2759
|
+
reset_consumption: boolean;
|
|
2760
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2761
|
+
} & {
|
|
2762
|
+
license_signature_v2: string;
|
|
2763
|
+
} & {
|
|
2764
|
+
offline_signature: string;
|
|
2765
|
+
}) | ({
|
|
2766
|
+
id: number;
|
|
2767
|
+
allow_grace_period: boolean;
|
|
2768
|
+
allow_overages: boolean;
|
|
2769
|
+
allow_unlimited_activations: boolean;
|
|
2770
|
+
borrowed_until: string | null;
|
|
2771
|
+
can_borrow: boolean;
|
|
2772
|
+
channel: string;
|
|
2773
|
+
device_id: number;
|
|
2774
|
+
enable_maintenance_period: boolean;
|
|
2775
|
+
environment: string;
|
|
2776
|
+
eula_link: string;
|
|
2777
|
+
floating_timeout: number;
|
|
2778
|
+
grace_period: number;
|
|
2779
|
+
hash_md5: string;
|
|
2780
|
+
installation_file: string;
|
|
2781
|
+
is_air_gapped: boolean;
|
|
2782
|
+
is_borrowed: boolean;
|
|
2783
|
+
is_expired: boolean;
|
|
2784
|
+
is_hardware_key_auth: boolean;
|
|
2785
|
+
license_active: boolean;
|
|
2786
|
+
license_enabled: boolean;
|
|
2787
|
+
license_signature: string;
|
|
2788
|
+
license_type: import("./types").LicenseType;
|
|
2789
|
+
maintenance_period: string | null;
|
|
2790
|
+
max_activations: number;
|
|
2791
|
+
max_borrow_time: number;
|
|
2792
|
+
max_license_users: number;
|
|
2793
|
+
max_overages: number;
|
|
2794
|
+
max_transfers?: number;
|
|
2795
|
+
order_store_id: string;
|
|
2796
|
+
prevent_vm: boolean;
|
|
2797
|
+
release_date: string;
|
|
2798
|
+
release_notes_link: string;
|
|
2799
|
+
requires_version: string;
|
|
2800
|
+
size: string;
|
|
2801
|
+
start_date: string | null;
|
|
2802
|
+
times_activated: number;
|
|
2803
|
+
transfer_count: number;
|
|
2804
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
2805
|
+
version: string;
|
|
2806
|
+
product_features: import("./types").ProductFeature[];
|
|
2807
|
+
custom_fields: import("./types").CustomField[];
|
|
2808
|
+
customer: import("./types").Customer;
|
|
2809
|
+
product_details: import("./types").ProductDetails;
|
|
2810
|
+
metadata: import("./types").JSON;
|
|
2811
|
+
} & {
|
|
2812
|
+
user?: undefined;
|
|
2813
|
+
license_key: string;
|
|
2814
|
+
} & {
|
|
2815
|
+
floating_users?: undefined;
|
|
2816
|
+
floating_in_use_devices?: undefined;
|
|
2817
|
+
is_floating_cloud: false;
|
|
2818
|
+
is_floating: false;
|
|
2819
|
+
} & {
|
|
2820
|
+
is_trial: true;
|
|
2821
|
+
trial_days: number;
|
|
2822
|
+
} & {
|
|
2823
|
+
license_type: "consumption";
|
|
2824
|
+
max_consumptions: number;
|
|
2825
|
+
total_consumptions: number;
|
|
2826
|
+
allow_unlimited_consumptions: boolean;
|
|
2827
|
+
allow_overages: boolean;
|
|
2828
|
+
max_overages: number;
|
|
2829
|
+
reset_consumption: boolean;
|
|
2830
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2831
|
+
} & {
|
|
2832
|
+
license_signature_v2: string;
|
|
2833
|
+
} & {
|
|
2834
|
+
offline_signature: string;
|
|
2835
|
+
}) | ({
|
|
2836
|
+
id: number;
|
|
2837
|
+
allow_grace_period: boolean;
|
|
2838
|
+
allow_overages: boolean;
|
|
2839
|
+
allow_unlimited_activations: boolean;
|
|
2840
|
+
borrowed_until: string | null;
|
|
2841
|
+
can_borrow: boolean;
|
|
2842
|
+
channel: string;
|
|
2843
|
+
device_id: number;
|
|
2844
|
+
enable_maintenance_period: boolean;
|
|
2845
|
+
environment: string;
|
|
2846
|
+
eula_link: string;
|
|
2847
|
+
floating_timeout: number;
|
|
2848
|
+
grace_period: number;
|
|
2849
|
+
hash_md5: string;
|
|
2850
|
+
installation_file: string;
|
|
2851
|
+
is_air_gapped: boolean;
|
|
2852
|
+
is_borrowed: boolean;
|
|
2853
|
+
is_expired: boolean;
|
|
2854
|
+
is_hardware_key_auth: boolean;
|
|
2855
|
+
license_active: boolean;
|
|
2856
|
+
license_enabled: boolean;
|
|
2857
|
+
license_signature: string;
|
|
2858
|
+
license_type: import("./types").LicenseType;
|
|
2859
|
+
maintenance_period: string | null;
|
|
2860
|
+
max_activations: number;
|
|
2861
|
+
max_borrow_time: number;
|
|
2862
|
+
max_license_users: number;
|
|
2863
|
+
max_overages: number;
|
|
2864
|
+
max_transfers?: number;
|
|
2865
|
+
order_store_id: string;
|
|
2866
|
+
prevent_vm: boolean;
|
|
2867
|
+
release_date: string;
|
|
2868
|
+
release_notes_link: string;
|
|
2869
|
+
requires_version: string;
|
|
2870
|
+
size: string;
|
|
2871
|
+
start_date: string | null;
|
|
2872
|
+
times_activated: number;
|
|
2873
|
+
transfer_count: number;
|
|
2874
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
2875
|
+
version: string;
|
|
2876
|
+
product_features: import("./types").ProductFeature[];
|
|
2877
|
+
custom_fields: import("./types").CustomField[];
|
|
2878
|
+
customer: import("./types").Customer;
|
|
2879
|
+
product_details: import("./types").ProductDetails;
|
|
2880
|
+
metadata: import("./types").JSON;
|
|
2881
|
+
} & {
|
|
2882
|
+
license_key?: undefined;
|
|
2883
|
+
user: import("./types").LicenseUser;
|
|
2884
|
+
} & {
|
|
2885
|
+
is_floating: true;
|
|
2886
|
+
is_floating_cloud: boolean;
|
|
2887
|
+
floating_in_use_devices: number;
|
|
2888
|
+
floating_users: number;
|
|
2889
|
+
} & {
|
|
2890
|
+
trial_days?: undefined;
|
|
2891
|
+
is_trial: false;
|
|
2892
|
+
} & {
|
|
2893
|
+
license_type: "consumption";
|
|
2894
|
+
max_consumptions: number;
|
|
2895
|
+
total_consumptions: number;
|
|
2896
|
+
allow_unlimited_consumptions: boolean;
|
|
2897
|
+
allow_overages: boolean;
|
|
2898
|
+
max_overages: number;
|
|
2899
|
+
reset_consumption: boolean;
|
|
2900
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2901
|
+
} & {
|
|
2902
|
+
license_signature_v2: string;
|
|
2903
|
+
} & {
|
|
2904
|
+
offline_signature: string;
|
|
2905
|
+
}) | ({
|
|
2906
|
+
id: number;
|
|
2907
|
+
allow_grace_period: boolean;
|
|
2908
|
+
allow_overages: boolean;
|
|
2909
|
+
allow_unlimited_activations: boolean;
|
|
2910
|
+
borrowed_until: string | null;
|
|
2911
|
+
can_borrow: boolean;
|
|
2912
|
+
channel: string;
|
|
2913
|
+
device_id: number;
|
|
2914
|
+
enable_maintenance_period: boolean;
|
|
2915
|
+
environment: string;
|
|
2916
|
+
eula_link: string;
|
|
2917
|
+
floating_timeout: number;
|
|
2918
|
+
grace_period: number;
|
|
2919
|
+
hash_md5: string;
|
|
2920
|
+
installation_file: string;
|
|
2921
|
+
is_air_gapped: boolean;
|
|
2922
|
+
is_borrowed: boolean;
|
|
2923
|
+
is_expired: boolean;
|
|
2924
|
+
is_hardware_key_auth: boolean;
|
|
2925
|
+
license_active: boolean;
|
|
2926
|
+
license_enabled: boolean;
|
|
2927
|
+
license_signature: string;
|
|
2928
|
+
license_type: import("./types").LicenseType;
|
|
2929
|
+
maintenance_period: string | null;
|
|
2930
|
+
max_activations: number;
|
|
2931
|
+
max_borrow_time: number;
|
|
2932
|
+
max_license_users: number;
|
|
2933
|
+
max_overages: number;
|
|
2934
|
+
max_transfers?: number;
|
|
2935
|
+
order_store_id: string;
|
|
2936
|
+
prevent_vm: boolean;
|
|
2937
|
+
release_date: string;
|
|
2938
|
+
release_notes_link: string;
|
|
2939
|
+
requires_version: string;
|
|
2940
|
+
size: string;
|
|
2941
|
+
start_date: string | null;
|
|
2942
|
+
times_activated: number;
|
|
2943
|
+
transfer_count: number;
|
|
2944
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
2945
|
+
version: string;
|
|
2946
|
+
product_features: import("./types").ProductFeature[];
|
|
2947
|
+
custom_fields: import("./types").CustomField[];
|
|
2948
|
+
customer: import("./types").Customer;
|
|
2949
|
+
product_details: import("./types").ProductDetails;
|
|
2950
|
+
metadata: import("./types").JSON;
|
|
2951
|
+
} & {
|
|
2952
|
+
license_key?: undefined;
|
|
2953
|
+
user: import("./types").LicenseUser;
|
|
2954
|
+
} & {
|
|
2955
|
+
is_floating: true;
|
|
2956
|
+
is_floating_cloud: boolean;
|
|
2957
|
+
floating_in_use_devices: number;
|
|
2958
|
+
floating_users: number;
|
|
2959
|
+
} & {
|
|
2960
|
+
is_trial: true;
|
|
2961
|
+
trial_days: number;
|
|
2962
|
+
} & {
|
|
2963
|
+
license_type: "consumption";
|
|
2964
|
+
max_consumptions: number;
|
|
2965
|
+
total_consumptions: number;
|
|
2966
|
+
allow_unlimited_consumptions: boolean;
|
|
2967
|
+
allow_overages: boolean;
|
|
2968
|
+
max_overages: number;
|
|
2969
|
+
reset_consumption: boolean;
|
|
2970
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2971
|
+
} & {
|
|
2972
|
+
license_signature_v2: string;
|
|
2973
|
+
} & {
|
|
2974
|
+
offline_signature: string;
|
|
2975
|
+
}) | ({
|
|
2976
|
+
id: number;
|
|
2977
|
+
allow_grace_period: boolean;
|
|
2978
|
+
allow_overages: boolean;
|
|
2979
|
+
allow_unlimited_activations: boolean;
|
|
2980
|
+
borrowed_until: string | null;
|
|
2981
|
+
can_borrow: boolean;
|
|
2982
|
+
channel: string;
|
|
2983
|
+
device_id: number;
|
|
2984
|
+
enable_maintenance_period: boolean;
|
|
2985
|
+
environment: string;
|
|
2986
|
+
eula_link: string;
|
|
2987
|
+
floating_timeout: number;
|
|
2988
|
+
grace_period: number;
|
|
2989
|
+
hash_md5: string;
|
|
2990
|
+
installation_file: string;
|
|
2991
|
+
is_air_gapped: boolean;
|
|
2992
|
+
is_borrowed: boolean;
|
|
2993
|
+
is_expired: boolean;
|
|
2994
|
+
is_hardware_key_auth: boolean;
|
|
2995
|
+
license_active: boolean;
|
|
2996
|
+
license_enabled: boolean;
|
|
2997
|
+
license_signature: string;
|
|
2998
|
+
license_type: import("./types").LicenseType;
|
|
2999
|
+
maintenance_period: string | null;
|
|
3000
|
+
max_activations: number;
|
|
3001
|
+
max_borrow_time: number;
|
|
3002
|
+
max_license_users: number;
|
|
3003
|
+
max_overages: number;
|
|
3004
|
+
max_transfers?: number;
|
|
3005
|
+
order_store_id: string;
|
|
3006
|
+
prevent_vm: boolean;
|
|
3007
|
+
release_date: string;
|
|
3008
|
+
release_notes_link: string;
|
|
3009
|
+
requires_version: string;
|
|
3010
|
+
size: string;
|
|
3011
|
+
start_date: string | null;
|
|
3012
|
+
times_activated: number;
|
|
3013
|
+
transfer_count: number;
|
|
3014
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3015
|
+
version: string;
|
|
3016
|
+
product_features: import("./types").ProductFeature[];
|
|
3017
|
+
custom_fields: import("./types").CustomField[];
|
|
3018
|
+
customer: import("./types").Customer;
|
|
3019
|
+
product_details: import("./types").ProductDetails;
|
|
3020
|
+
metadata: import("./types").JSON;
|
|
3021
|
+
} & {
|
|
3022
|
+
license_key?: undefined;
|
|
3023
|
+
user: import("./types").LicenseUser;
|
|
3024
|
+
} & {
|
|
3025
|
+
is_floating: boolean;
|
|
3026
|
+
is_floating_cloud: true;
|
|
3027
|
+
floating_in_use_devices: number;
|
|
3028
|
+
floating_users: number;
|
|
3029
|
+
} & {
|
|
3030
|
+
trial_days?: undefined;
|
|
3031
|
+
is_trial: false;
|
|
3032
|
+
} & {
|
|
3033
|
+
license_type: "consumption";
|
|
3034
|
+
max_consumptions: number;
|
|
3035
|
+
total_consumptions: number;
|
|
3036
|
+
allow_unlimited_consumptions: boolean;
|
|
3037
|
+
allow_overages: boolean;
|
|
3038
|
+
max_overages: number;
|
|
3039
|
+
reset_consumption: boolean;
|
|
3040
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3041
|
+
} & {
|
|
3042
|
+
license_signature_v2: string;
|
|
3043
|
+
} & {
|
|
3044
|
+
offline_signature: string;
|
|
3045
|
+
}) | ({
|
|
3046
|
+
id: number;
|
|
3047
|
+
allow_grace_period: boolean;
|
|
3048
|
+
allow_overages: boolean;
|
|
3049
|
+
allow_unlimited_activations: boolean;
|
|
3050
|
+
borrowed_until: string | null;
|
|
3051
|
+
can_borrow: boolean;
|
|
3052
|
+
channel: string;
|
|
3053
|
+
device_id: number;
|
|
3054
|
+
enable_maintenance_period: boolean;
|
|
3055
|
+
environment: string;
|
|
3056
|
+
eula_link: string;
|
|
3057
|
+
floating_timeout: number;
|
|
3058
|
+
grace_period: number;
|
|
3059
|
+
hash_md5: string;
|
|
3060
|
+
installation_file: string;
|
|
3061
|
+
is_air_gapped: boolean;
|
|
3062
|
+
is_borrowed: boolean;
|
|
3063
|
+
is_expired: boolean;
|
|
3064
|
+
is_hardware_key_auth: boolean;
|
|
3065
|
+
license_active: boolean;
|
|
3066
|
+
license_enabled: boolean;
|
|
3067
|
+
license_signature: string;
|
|
3068
|
+
license_type: import("./types").LicenseType;
|
|
3069
|
+
maintenance_period: string | null;
|
|
3070
|
+
max_activations: number;
|
|
3071
|
+
max_borrow_time: number;
|
|
3072
|
+
max_license_users: number;
|
|
3073
|
+
max_overages: number;
|
|
3074
|
+
max_transfers?: number;
|
|
3075
|
+
order_store_id: string;
|
|
3076
|
+
prevent_vm: boolean;
|
|
3077
|
+
release_date: string;
|
|
3078
|
+
release_notes_link: string;
|
|
3079
|
+
requires_version: string;
|
|
3080
|
+
size: string;
|
|
3081
|
+
start_date: string | null;
|
|
3082
|
+
times_activated: number;
|
|
3083
|
+
transfer_count: number;
|
|
3084
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3085
|
+
version: string;
|
|
3086
|
+
product_features: import("./types").ProductFeature[];
|
|
3087
|
+
custom_fields: import("./types").CustomField[];
|
|
3088
|
+
customer: import("./types").Customer;
|
|
3089
|
+
product_details: import("./types").ProductDetails;
|
|
3090
|
+
metadata: import("./types").JSON;
|
|
3091
|
+
} & {
|
|
3092
|
+
license_key?: undefined;
|
|
3093
|
+
user: import("./types").LicenseUser;
|
|
3094
|
+
} & {
|
|
3095
|
+
is_floating: boolean;
|
|
3096
|
+
is_floating_cloud: true;
|
|
3097
|
+
floating_in_use_devices: number;
|
|
3098
|
+
floating_users: number;
|
|
3099
|
+
} & {
|
|
3100
|
+
is_trial: true;
|
|
3101
|
+
trial_days: number;
|
|
3102
|
+
} & {
|
|
3103
|
+
license_type: "consumption";
|
|
3104
|
+
max_consumptions: number;
|
|
3105
|
+
total_consumptions: number;
|
|
3106
|
+
allow_unlimited_consumptions: boolean;
|
|
3107
|
+
allow_overages: boolean;
|
|
3108
|
+
max_overages: number;
|
|
3109
|
+
reset_consumption: boolean;
|
|
3110
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3111
|
+
} & {
|
|
3112
|
+
license_signature_v2: string;
|
|
3113
|
+
} & {
|
|
3114
|
+
offline_signature: string;
|
|
3115
|
+
}) | ({
|
|
3116
|
+
id: number;
|
|
3117
|
+
allow_grace_period: boolean;
|
|
3118
|
+
allow_overages: boolean;
|
|
3119
|
+
allow_unlimited_activations: boolean;
|
|
3120
|
+
borrowed_until: string | null;
|
|
3121
|
+
can_borrow: boolean;
|
|
3122
|
+
channel: string;
|
|
3123
|
+
device_id: number;
|
|
3124
|
+
enable_maintenance_period: boolean;
|
|
3125
|
+
environment: string;
|
|
3126
|
+
eula_link: string;
|
|
3127
|
+
floating_timeout: number;
|
|
3128
|
+
grace_period: number;
|
|
3129
|
+
hash_md5: string;
|
|
3130
|
+
installation_file: string;
|
|
3131
|
+
is_air_gapped: boolean;
|
|
3132
|
+
is_borrowed: boolean;
|
|
3133
|
+
is_expired: boolean;
|
|
3134
|
+
is_hardware_key_auth: boolean;
|
|
3135
|
+
license_active: boolean;
|
|
3136
|
+
license_enabled: boolean;
|
|
3137
|
+
license_signature: string;
|
|
3138
|
+
license_type: import("./types").LicenseType;
|
|
3139
|
+
maintenance_period: string | null;
|
|
3140
|
+
max_activations: number;
|
|
3141
|
+
max_borrow_time: number;
|
|
3142
|
+
max_license_users: number;
|
|
3143
|
+
max_overages: number;
|
|
3144
|
+
max_transfers?: number;
|
|
3145
|
+
order_store_id: string;
|
|
3146
|
+
prevent_vm: boolean;
|
|
3147
|
+
release_date: string;
|
|
3148
|
+
release_notes_link: string;
|
|
3149
|
+
requires_version: string;
|
|
3150
|
+
size: string;
|
|
3151
|
+
start_date: string | null;
|
|
3152
|
+
times_activated: number;
|
|
3153
|
+
transfer_count: number;
|
|
3154
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3155
|
+
version: string;
|
|
3156
|
+
product_features: import("./types").ProductFeature[];
|
|
3157
|
+
custom_fields: import("./types").CustomField[];
|
|
3158
|
+
customer: import("./types").Customer;
|
|
3159
|
+
product_details: import("./types").ProductDetails;
|
|
3160
|
+
metadata: import("./types").JSON;
|
|
3161
|
+
} & {
|
|
3162
|
+
license_key?: undefined;
|
|
3163
|
+
user: import("./types").LicenseUser;
|
|
3164
|
+
} & {
|
|
3165
|
+
floating_users?: undefined;
|
|
3166
|
+
floating_in_use_devices?: undefined;
|
|
3167
|
+
is_floating_cloud: false;
|
|
3168
|
+
is_floating: false;
|
|
3169
|
+
} & {
|
|
3170
|
+
trial_days?: undefined;
|
|
3171
|
+
is_trial: false;
|
|
3172
|
+
} & {
|
|
3173
|
+
license_type: "consumption";
|
|
3174
|
+
max_consumptions: number;
|
|
3175
|
+
total_consumptions: number;
|
|
3176
|
+
allow_unlimited_consumptions: boolean;
|
|
3177
|
+
allow_overages: boolean;
|
|
3178
|
+
max_overages: number;
|
|
3179
|
+
reset_consumption: boolean;
|
|
3180
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3181
|
+
} & {
|
|
3182
|
+
license_signature_v2: string;
|
|
3183
|
+
} & {
|
|
3184
|
+
offline_signature: string;
|
|
3185
|
+
}) | ({
|
|
3186
|
+
id: number;
|
|
3187
|
+
allow_grace_period: boolean;
|
|
3188
|
+
allow_overages: boolean;
|
|
3189
|
+
allow_unlimited_activations: boolean;
|
|
3190
|
+
borrowed_until: string | null;
|
|
3191
|
+
can_borrow: boolean;
|
|
3192
|
+
channel: string;
|
|
3193
|
+
device_id: number;
|
|
3194
|
+
enable_maintenance_period: boolean;
|
|
3195
|
+
environment: string;
|
|
3196
|
+
eula_link: string;
|
|
3197
|
+
floating_timeout: number;
|
|
3198
|
+
grace_period: number;
|
|
3199
|
+
hash_md5: string;
|
|
3200
|
+
installation_file: string;
|
|
3201
|
+
is_air_gapped: boolean;
|
|
3202
|
+
is_borrowed: boolean;
|
|
3203
|
+
is_expired: boolean;
|
|
3204
|
+
is_hardware_key_auth: boolean;
|
|
3205
|
+
license_active: boolean;
|
|
3206
|
+
license_enabled: boolean;
|
|
3207
|
+
license_signature: string;
|
|
3208
|
+
license_type: import("./types").LicenseType;
|
|
3209
|
+
maintenance_period: string | null;
|
|
3210
|
+
max_activations: number;
|
|
3211
|
+
max_borrow_time: number;
|
|
3212
|
+
max_license_users: number;
|
|
3213
|
+
max_overages: number;
|
|
3214
|
+
max_transfers?: number;
|
|
3215
|
+
order_store_id: string;
|
|
3216
|
+
prevent_vm: boolean;
|
|
3217
|
+
release_date: string;
|
|
3218
|
+
release_notes_link: string;
|
|
3219
|
+
requires_version: string;
|
|
3220
|
+
size: string;
|
|
3221
|
+
start_date: string | null;
|
|
3222
|
+
times_activated: number;
|
|
3223
|
+
transfer_count: number;
|
|
3224
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3225
|
+
version: string;
|
|
3226
|
+
product_features: import("./types").ProductFeature[];
|
|
3227
|
+
custom_fields: import("./types").CustomField[];
|
|
3228
|
+
customer: import("./types").Customer;
|
|
3229
|
+
product_details: import("./types").ProductDetails;
|
|
3230
|
+
metadata: import("./types").JSON;
|
|
3231
|
+
} & {
|
|
3232
|
+
license_key?: undefined;
|
|
3233
|
+
user: import("./types").LicenseUser;
|
|
3234
|
+
} & {
|
|
3235
|
+
floating_users?: undefined;
|
|
3236
|
+
floating_in_use_devices?: undefined;
|
|
3237
|
+
is_floating_cloud: false;
|
|
3238
|
+
is_floating: false;
|
|
3239
|
+
} & {
|
|
3240
|
+
is_trial: true;
|
|
3241
|
+
trial_days: number;
|
|
3242
|
+
} & {
|
|
3243
|
+
license_type: "consumption";
|
|
3244
|
+
max_consumptions: number;
|
|
3245
|
+
total_consumptions: number;
|
|
3246
|
+
allow_unlimited_consumptions: boolean;
|
|
3247
|
+
allow_overages: boolean;
|
|
3248
|
+
max_overages: number;
|
|
3249
|
+
reset_consumption: boolean;
|
|
3250
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3251
|
+
} & {
|
|
3252
|
+
license_signature_v2: string;
|
|
3253
|
+
} & {
|
|
3254
|
+
offline_signature: string;
|
|
3255
|
+
});
|
|
3256
|
+
getTrialKey(payload: TrialKeyPayload): Promise<LicenseTrialResponse>;
|
|
3257
|
+
getUserLicenses(payload: GetUserLicensesPayload): Promise<(({
|
|
3258
|
+
id: number;
|
|
3259
|
+
allow_grace_period: boolean;
|
|
3260
|
+
allow_overages: boolean;
|
|
3261
|
+
allow_unlimited_activations: boolean;
|
|
3262
|
+
borrowed_until: string | null;
|
|
3263
|
+
can_borrow: boolean;
|
|
3264
|
+
channel: string;
|
|
3265
|
+
device_id: number;
|
|
3266
|
+
enable_maintenance_period: boolean;
|
|
3267
|
+
environment: string;
|
|
3268
|
+
eula_link: string;
|
|
3269
|
+
floating_timeout: number;
|
|
3270
|
+
grace_period: number;
|
|
3271
|
+
hash_md5: string;
|
|
3272
|
+
installation_file: string;
|
|
3273
|
+
is_air_gapped: boolean;
|
|
3274
|
+
is_borrowed: boolean;
|
|
3275
|
+
is_expired: boolean;
|
|
3276
|
+
is_hardware_key_auth: boolean;
|
|
3277
|
+
license_active: boolean;
|
|
3278
|
+
license_enabled: boolean;
|
|
3279
|
+
license_signature: string;
|
|
3280
|
+
license_type: import("./types").LicenseType;
|
|
3281
|
+
maintenance_period: string | null;
|
|
3282
|
+
max_activations: number;
|
|
3283
|
+
max_borrow_time: number;
|
|
3284
|
+
max_license_users: number;
|
|
3285
|
+
max_overages: number;
|
|
3286
|
+
max_transfers?: number;
|
|
3287
|
+
order_store_id: string;
|
|
3288
|
+
prevent_vm: boolean;
|
|
3289
|
+
release_date: string;
|
|
3290
|
+
release_notes_link: string;
|
|
3291
|
+
requires_version: string;
|
|
3292
|
+
size: string;
|
|
3293
|
+
start_date: string | null;
|
|
3294
|
+
times_activated: number;
|
|
3295
|
+
transfer_count: number;
|
|
3296
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3297
|
+
version: string;
|
|
3298
|
+
product_features: import("./types").ProductFeature[];
|
|
3299
|
+
custom_fields: import("./types").CustomField[];
|
|
3300
|
+
customer: import("./types").Customer;
|
|
3301
|
+
product_details: import("./types").ProductDetails;
|
|
3302
|
+
metadata: import("./types").JSON;
|
|
3303
|
+
} & {
|
|
3304
|
+
user?: undefined;
|
|
3305
|
+
license_key: string;
|
|
3306
|
+
} & {
|
|
3307
|
+
is_floating: true;
|
|
3308
|
+
is_floating_cloud: boolean;
|
|
3309
|
+
floating_in_use_devices: number;
|
|
3310
|
+
floating_users: number;
|
|
3311
|
+
} & {
|
|
3312
|
+
trial_days?: undefined;
|
|
3313
|
+
is_trial: false;
|
|
3314
|
+
} & {
|
|
3315
|
+
license_type: "consumption";
|
|
3316
|
+
max_consumptions: number;
|
|
3317
|
+
total_consumptions: number;
|
|
3318
|
+
allow_unlimited_consumptions: boolean;
|
|
3319
|
+
allow_overages: boolean;
|
|
3320
|
+
max_overages: number;
|
|
3321
|
+
reset_consumption: boolean;
|
|
3322
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3323
|
+
}) | ({
|
|
3324
|
+
id: number;
|
|
3325
|
+
allow_grace_period: boolean;
|
|
3326
|
+
allow_overages: boolean;
|
|
3327
|
+
allow_unlimited_activations: boolean;
|
|
3328
|
+
borrowed_until: string | null;
|
|
3329
|
+
can_borrow: boolean;
|
|
3330
|
+
channel: string;
|
|
3331
|
+
device_id: number;
|
|
3332
|
+
enable_maintenance_period: boolean;
|
|
3333
|
+
environment: string;
|
|
3334
|
+
eula_link: string;
|
|
3335
|
+
floating_timeout: number;
|
|
3336
|
+
grace_period: number;
|
|
3337
|
+
hash_md5: string;
|
|
3338
|
+
installation_file: string;
|
|
3339
|
+
is_air_gapped: boolean;
|
|
3340
|
+
is_borrowed: boolean;
|
|
3341
|
+
is_expired: boolean;
|
|
3342
|
+
is_hardware_key_auth: boolean;
|
|
3343
|
+
license_active: boolean;
|
|
3344
|
+
license_enabled: boolean;
|
|
3345
|
+
license_signature: string;
|
|
3346
|
+
license_type: import("./types").LicenseType;
|
|
3347
|
+
maintenance_period: string | null;
|
|
3348
|
+
max_activations: number;
|
|
3349
|
+
max_borrow_time: number;
|
|
3350
|
+
max_license_users: number;
|
|
3351
|
+
max_overages: number;
|
|
3352
|
+
max_transfers?: number;
|
|
3353
|
+
order_store_id: string;
|
|
3354
|
+
prevent_vm: boolean;
|
|
3355
|
+
release_date: string;
|
|
3356
|
+
release_notes_link: string;
|
|
3357
|
+
requires_version: string;
|
|
3358
|
+
size: string;
|
|
3359
|
+
start_date: string | null;
|
|
3360
|
+
times_activated: number;
|
|
3361
|
+
transfer_count: number;
|
|
3362
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3363
|
+
version: string;
|
|
3364
|
+
product_features: import("./types").ProductFeature[];
|
|
3365
|
+
custom_fields: import("./types").CustomField[];
|
|
3366
|
+
customer: import("./types").Customer;
|
|
3367
|
+
product_details: import("./types").ProductDetails;
|
|
3368
|
+
metadata: import("./types").JSON;
|
|
3369
|
+
} & {
|
|
3370
|
+
user?: undefined;
|
|
3371
|
+
license_key: string;
|
|
3372
|
+
} & {
|
|
3373
|
+
is_floating: true;
|
|
3374
|
+
is_floating_cloud: boolean;
|
|
3375
|
+
floating_in_use_devices: number;
|
|
3376
|
+
floating_users: number;
|
|
3377
|
+
} & {
|
|
3378
|
+
is_trial: true;
|
|
3379
|
+
trial_days: number;
|
|
3380
|
+
} & {
|
|
3381
|
+
license_type: "consumption";
|
|
3382
|
+
max_consumptions: number;
|
|
3383
|
+
total_consumptions: number;
|
|
3384
|
+
allow_unlimited_consumptions: boolean;
|
|
3385
|
+
allow_overages: boolean;
|
|
3386
|
+
max_overages: number;
|
|
3387
|
+
reset_consumption: boolean;
|
|
3388
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3389
|
+
}) | ({
|
|
3390
|
+
id: number;
|
|
3391
|
+
allow_grace_period: boolean;
|
|
3392
|
+
allow_overages: boolean;
|
|
3393
|
+
allow_unlimited_activations: boolean;
|
|
3394
|
+
borrowed_until: string | null;
|
|
3395
|
+
can_borrow: boolean;
|
|
3396
|
+
channel: string;
|
|
3397
|
+
device_id: number;
|
|
3398
|
+
enable_maintenance_period: boolean;
|
|
3399
|
+
environment: string;
|
|
3400
|
+
eula_link: string;
|
|
3401
|
+
floating_timeout: number;
|
|
3402
|
+
grace_period: number;
|
|
3403
|
+
hash_md5: string;
|
|
3404
|
+
installation_file: string;
|
|
3405
|
+
is_air_gapped: boolean;
|
|
3406
|
+
is_borrowed: boolean;
|
|
3407
|
+
is_expired: boolean;
|
|
3408
|
+
is_hardware_key_auth: boolean;
|
|
3409
|
+
license_active: boolean;
|
|
3410
|
+
license_enabled: boolean;
|
|
3411
|
+
license_signature: string;
|
|
3412
|
+
license_type: import("./types").LicenseType;
|
|
3413
|
+
maintenance_period: string | null;
|
|
3414
|
+
max_activations: number;
|
|
3415
|
+
max_borrow_time: number;
|
|
3416
|
+
max_license_users: number;
|
|
3417
|
+
max_overages: number;
|
|
3418
|
+
max_transfers?: number;
|
|
3419
|
+
order_store_id: string;
|
|
3420
|
+
prevent_vm: boolean;
|
|
3421
|
+
release_date: string;
|
|
3422
|
+
release_notes_link: string;
|
|
3423
|
+
requires_version: string;
|
|
3424
|
+
size: string;
|
|
3425
|
+
start_date: string | null;
|
|
3426
|
+
times_activated: number;
|
|
3427
|
+
transfer_count: number;
|
|
3428
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3429
|
+
version: string;
|
|
3430
|
+
product_features: import("./types").ProductFeature[];
|
|
3431
|
+
custom_fields: import("./types").CustomField[];
|
|
3432
|
+
customer: import("./types").Customer;
|
|
3433
|
+
product_details: import("./types").ProductDetails;
|
|
3434
|
+
metadata: import("./types").JSON;
|
|
3435
|
+
} & {
|
|
3436
|
+
user?: undefined;
|
|
3437
|
+
license_key: string;
|
|
3438
|
+
} & {
|
|
3439
|
+
is_floating: boolean;
|
|
3440
|
+
is_floating_cloud: true;
|
|
3441
|
+
floating_in_use_devices: number;
|
|
3442
|
+
floating_users: number;
|
|
3443
|
+
} & {
|
|
3444
|
+
trial_days?: undefined;
|
|
3445
|
+
is_trial: false;
|
|
3446
|
+
} & {
|
|
3447
|
+
license_type: "consumption";
|
|
3448
|
+
max_consumptions: number;
|
|
3449
|
+
total_consumptions: number;
|
|
3450
|
+
allow_unlimited_consumptions: boolean;
|
|
3451
|
+
allow_overages: boolean;
|
|
3452
|
+
max_overages: number;
|
|
3453
|
+
reset_consumption: boolean;
|
|
3454
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3455
|
+
}) | ({
|
|
3456
|
+
id: number;
|
|
3457
|
+
allow_grace_period: boolean;
|
|
3458
|
+
allow_overages: boolean;
|
|
3459
|
+
allow_unlimited_activations: boolean;
|
|
3460
|
+
borrowed_until: string | null;
|
|
3461
|
+
can_borrow: boolean;
|
|
3462
|
+
channel: string;
|
|
3463
|
+
device_id: number;
|
|
3464
|
+
enable_maintenance_period: boolean;
|
|
3465
|
+
environment: string;
|
|
3466
|
+
eula_link: string;
|
|
3467
|
+
floating_timeout: number;
|
|
3468
|
+
grace_period: number;
|
|
3469
|
+
hash_md5: string;
|
|
3470
|
+
installation_file: string;
|
|
3471
|
+
is_air_gapped: boolean;
|
|
3472
|
+
is_borrowed: boolean;
|
|
3473
|
+
is_expired: boolean;
|
|
3474
|
+
is_hardware_key_auth: boolean;
|
|
3475
|
+
license_active: boolean;
|
|
3476
|
+
license_enabled: boolean;
|
|
3477
|
+
license_signature: string;
|
|
3478
|
+
license_type: import("./types").LicenseType;
|
|
3479
|
+
maintenance_period: string | null;
|
|
3480
|
+
max_activations: number;
|
|
3481
|
+
max_borrow_time: number;
|
|
3482
|
+
max_license_users: number;
|
|
3483
|
+
max_overages: number;
|
|
3484
|
+
max_transfers?: number;
|
|
3485
|
+
order_store_id: string;
|
|
3486
|
+
prevent_vm: boolean;
|
|
3487
|
+
release_date: string;
|
|
3488
|
+
release_notes_link: string;
|
|
3489
|
+
requires_version: string;
|
|
3490
|
+
size: string;
|
|
3491
|
+
start_date: string | null;
|
|
3492
|
+
times_activated: number;
|
|
3493
|
+
transfer_count: number;
|
|
3494
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3495
|
+
version: string;
|
|
3496
|
+
product_features: import("./types").ProductFeature[];
|
|
3497
|
+
custom_fields: import("./types").CustomField[];
|
|
3498
|
+
customer: import("./types").Customer;
|
|
3499
|
+
product_details: import("./types").ProductDetails;
|
|
3500
|
+
metadata: import("./types").JSON;
|
|
3501
|
+
} & {
|
|
3502
|
+
user?: undefined;
|
|
3503
|
+
license_key: string;
|
|
3504
|
+
} & {
|
|
3505
|
+
is_floating: boolean;
|
|
2459
3506
|
is_floating_cloud: true;
|
|
2460
3507
|
floating_in_use_devices: number;
|
|
2461
3508
|
floating_users: number;
|
|
3509
|
+
} & {
|
|
3510
|
+
is_trial: true;
|
|
3511
|
+
trial_days: number;
|
|
3512
|
+
} & {
|
|
3513
|
+
license_type: "consumption";
|
|
3514
|
+
max_consumptions: number;
|
|
3515
|
+
total_consumptions: number;
|
|
3516
|
+
allow_unlimited_consumptions: boolean;
|
|
3517
|
+
allow_overages: boolean;
|
|
3518
|
+
max_overages: number;
|
|
3519
|
+
reset_consumption: boolean;
|
|
3520
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3521
|
+
}) | ({
|
|
3522
|
+
id: number;
|
|
3523
|
+
allow_grace_period: boolean;
|
|
3524
|
+
allow_overages: boolean;
|
|
3525
|
+
allow_unlimited_activations: boolean;
|
|
3526
|
+
borrowed_until: string | null;
|
|
3527
|
+
can_borrow: boolean;
|
|
3528
|
+
channel: string;
|
|
3529
|
+
device_id: number;
|
|
3530
|
+
enable_maintenance_period: boolean;
|
|
3531
|
+
environment: string;
|
|
3532
|
+
eula_link: string;
|
|
3533
|
+
floating_timeout: number;
|
|
3534
|
+
grace_period: number;
|
|
3535
|
+
hash_md5: string;
|
|
3536
|
+
installation_file: string;
|
|
3537
|
+
is_air_gapped: boolean;
|
|
3538
|
+
is_borrowed: boolean;
|
|
3539
|
+
is_expired: boolean;
|
|
3540
|
+
is_hardware_key_auth: boolean;
|
|
3541
|
+
license_active: boolean;
|
|
3542
|
+
license_enabled: boolean;
|
|
3543
|
+
license_signature: string;
|
|
3544
|
+
license_type: import("./types").LicenseType;
|
|
3545
|
+
maintenance_period: string | null;
|
|
3546
|
+
max_activations: number;
|
|
3547
|
+
max_borrow_time: number;
|
|
3548
|
+
max_license_users: number;
|
|
3549
|
+
max_overages: number;
|
|
3550
|
+
max_transfers?: number;
|
|
3551
|
+
order_store_id: string;
|
|
3552
|
+
prevent_vm: boolean;
|
|
3553
|
+
release_date: string;
|
|
3554
|
+
release_notes_link: string;
|
|
3555
|
+
requires_version: string;
|
|
3556
|
+
size: string;
|
|
3557
|
+
start_date: string | null;
|
|
3558
|
+
times_activated: number;
|
|
3559
|
+
transfer_count: number;
|
|
3560
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3561
|
+
version: string;
|
|
3562
|
+
product_features: import("./types").ProductFeature[];
|
|
3563
|
+
custom_fields: import("./types").CustomField[];
|
|
3564
|
+
customer: import("./types").Customer;
|
|
3565
|
+
product_details: import("./types").ProductDetails;
|
|
3566
|
+
metadata: import("./types").JSON;
|
|
3567
|
+
} & {
|
|
3568
|
+
user?: undefined;
|
|
3569
|
+
license_key: string;
|
|
3570
|
+
} & {
|
|
3571
|
+
floating_users?: undefined;
|
|
3572
|
+
floating_in_use_devices?: undefined;
|
|
3573
|
+
is_floating_cloud: false;
|
|
3574
|
+
is_floating: false;
|
|
3575
|
+
} & {
|
|
3576
|
+
trial_days?: undefined;
|
|
3577
|
+
is_trial: false;
|
|
3578
|
+
} & {
|
|
3579
|
+
license_type: "consumption";
|
|
3580
|
+
max_consumptions: number;
|
|
3581
|
+
total_consumptions: number;
|
|
3582
|
+
allow_unlimited_consumptions: boolean;
|
|
3583
|
+
allow_overages: boolean;
|
|
3584
|
+
max_overages: number;
|
|
3585
|
+
reset_consumption: boolean;
|
|
3586
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3587
|
+
}) | ({
|
|
3588
|
+
id: number;
|
|
3589
|
+
allow_grace_period: boolean;
|
|
3590
|
+
allow_overages: boolean;
|
|
3591
|
+
allow_unlimited_activations: boolean;
|
|
3592
|
+
borrowed_until: string | null;
|
|
3593
|
+
can_borrow: boolean;
|
|
3594
|
+
channel: string;
|
|
3595
|
+
device_id: number;
|
|
3596
|
+
enable_maintenance_period: boolean;
|
|
3597
|
+
environment: string;
|
|
3598
|
+
eula_link: string;
|
|
2462
3599
|
floating_timeout: number;
|
|
3600
|
+
grace_period: number;
|
|
3601
|
+
hash_md5: string;
|
|
3602
|
+
installation_file: string;
|
|
3603
|
+
is_air_gapped: boolean;
|
|
3604
|
+
is_borrowed: boolean;
|
|
3605
|
+
is_expired: boolean;
|
|
3606
|
+
is_hardware_key_auth: boolean;
|
|
3607
|
+
license_active: boolean;
|
|
3608
|
+
license_enabled: boolean;
|
|
3609
|
+
license_signature: string;
|
|
3610
|
+
license_type: import("./types").LicenseType;
|
|
3611
|
+
maintenance_period: string | null;
|
|
3612
|
+
max_activations: number;
|
|
3613
|
+
max_borrow_time: number;
|
|
3614
|
+
max_license_users: number;
|
|
3615
|
+
max_overages: number;
|
|
3616
|
+
max_transfers?: number;
|
|
3617
|
+
order_store_id: string;
|
|
3618
|
+
prevent_vm: boolean;
|
|
3619
|
+
release_date: string;
|
|
3620
|
+
release_notes_link: string;
|
|
3621
|
+
requires_version: string;
|
|
3622
|
+
size: string;
|
|
3623
|
+
start_date: string | null;
|
|
3624
|
+
times_activated: number;
|
|
3625
|
+
transfer_count: number;
|
|
3626
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3627
|
+
version: string;
|
|
3628
|
+
product_features: import("./types").ProductFeature[];
|
|
3629
|
+
custom_fields: import("./types").CustomField[];
|
|
3630
|
+
customer: import("./types").Customer;
|
|
3631
|
+
product_details: import("./types").ProductDetails;
|
|
3632
|
+
metadata: import("./types").JSON;
|
|
3633
|
+
} & {
|
|
3634
|
+
user?: undefined;
|
|
3635
|
+
license_key: string;
|
|
3636
|
+
} & {
|
|
3637
|
+
floating_users?: undefined;
|
|
3638
|
+
floating_in_use_devices?: undefined;
|
|
3639
|
+
is_floating_cloud: false;
|
|
3640
|
+
is_floating: false;
|
|
2463
3641
|
} & {
|
|
2464
3642
|
is_trial: true;
|
|
2465
3643
|
trial_days: number;
|
|
@@ -2471,7 +3649,7 @@ export default class LicenseAPI {
|
|
|
2471
3649
|
allow_overages: boolean;
|
|
2472
3650
|
max_overages: number;
|
|
2473
3651
|
reset_consumption: boolean;
|
|
2474
|
-
consumption_period:
|
|
3652
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2475
3653
|
}) | ({
|
|
2476
3654
|
id: number;
|
|
2477
3655
|
allow_grace_period: boolean;
|
|
@@ -2501,7 +3679,7 @@ export default class LicenseAPI {
|
|
|
2501
3679
|
max_borrow_time: number;
|
|
2502
3680
|
max_license_users: number;
|
|
2503
3681
|
max_overages: number;
|
|
2504
|
-
max_transfers
|
|
3682
|
+
max_transfers?: number;
|
|
2505
3683
|
order_store_id: string;
|
|
2506
3684
|
prevent_vm: boolean;
|
|
2507
3685
|
release_date: string;
|
|
@@ -2526,7 +3704,6 @@ export default class LicenseAPI {
|
|
|
2526
3704
|
is_floating_cloud: boolean;
|
|
2527
3705
|
floating_in_use_devices: number;
|
|
2528
3706
|
floating_users: number;
|
|
2529
|
-
floating_timeout: number;
|
|
2530
3707
|
} & {
|
|
2531
3708
|
trial_days?: undefined;
|
|
2532
3709
|
is_trial: false;
|
|
@@ -2538,7 +3715,7 @@ export default class LicenseAPI {
|
|
|
2538
3715
|
allow_overages: boolean;
|
|
2539
3716
|
max_overages: number;
|
|
2540
3717
|
reset_consumption: boolean;
|
|
2541
|
-
consumption_period:
|
|
3718
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2542
3719
|
}) | ({
|
|
2543
3720
|
id: number;
|
|
2544
3721
|
allow_grace_period: boolean;
|
|
@@ -2568,7 +3745,7 @@ export default class LicenseAPI {
|
|
|
2568
3745
|
max_borrow_time: number;
|
|
2569
3746
|
max_license_users: number;
|
|
2570
3747
|
max_overages: number;
|
|
2571
|
-
max_transfers
|
|
3748
|
+
max_transfers?: number;
|
|
2572
3749
|
order_store_id: string;
|
|
2573
3750
|
prevent_vm: boolean;
|
|
2574
3751
|
release_date: string;
|
|
@@ -2593,7 +3770,6 @@ export default class LicenseAPI {
|
|
|
2593
3770
|
is_floating_cloud: boolean;
|
|
2594
3771
|
floating_in_use_devices: number;
|
|
2595
3772
|
floating_users: number;
|
|
2596
|
-
floating_timeout: number;
|
|
2597
3773
|
} & {
|
|
2598
3774
|
is_trial: true;
|
|
2599
3775
|
trial_days: number;
|
|
@@ -2605,7 +3781,7 @@ export default class LicenseAPI {
|
|
|
2605
3781
|
allow_overages: boolean;
|
|
2606
3782
|
max_overages: number;
|
|
2607
3783
|
reset_consumption: boolean;
|
|
2608
|
-
consumption_period:
|
|
3784
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2609
3785
|
}) | ({
|
|
2610
3786
|
id: number;
|
|
2611
3787
|
allow_grace_period: boolean;
|
|
@@ -2635,7 +3811,7 @@ export default class LicenseAPI {
|
|
|
2635
3811
|
max_borrow_time: number;
|
|
2636
3812
|
max_license_users: number;
|
|
2637
3813
|
max_overages: number;
|
|
2638
|
-
max_transfers
|
|
3814
|
+
max_transfers?: number;
|
|
2639
3815
|
order_store_id: string;
|
|
2640
3816
|
prevent_vm: boolean;
|
|
2641
3817
|
release_date: string;
|
|
@@ -2660,7 +3836,6 @@ export default class LicenseAPI {
|
|
|
2660
3836
|
is_floating_cloud: true;
|
|
2661
3837
|
floating_in_use_devices: number;
|
|
2662
3838
|
floating_users: number;
|
|
2663
|
-
floating_timeout: number;
|
|
2664
3839
|
} & {
|
|
2665
3840
|
trial_days?: undefined;
|
|
2666
3841
|
is_trial: false;
|
|
@@ -2672,7 +3847,7 @@ export default class LicenseAPI {
|
|
|
2672
3847
|
allow_overages: boolean;
|
|
2673
3848
|
max_overages: number;
|
|
2674
3849
|
reset_consumption: boolean;
|
|
2675
|
-
consumption_period:
|
|
3850
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2676
3851
|
}) | ({
|
|
2677
3852
|
id: number;
|
|
2678
3853
|
allow_grace_period: boolean;
|
|
@@ -2702,7 +3877,7 @@ export default class LicenseAPI {
|
|
|
2702
3877
|
max_borrow_time: number;
|
|
2703
3878
|
max_license_users: number;
|
|
2704
3879
|
max_overages: number;
|
|
2705
|
-
max_transfers
|
|
3880
|
+
max_transfers?: number;
|
|
2706
3881
|
order_store_id: string;
|
|
2707
3882
|
prevent_vm: boolean;
|
|
2708
3883
|
release_date: string;
|
|
@@ -2727,7 +3902,138 @@ export default class LicenseAPI {
|
|
|
2727
3902
|
is_floating_cloud: true;
|
|
2728
3903
|
floating_in_use_devices: number;
|
|
2729
3904
|
floating_users: number;
|
|
3905
|
+
} & {
|
|
3906
|
+
is_trial: true;
|
|
3907
|
+
trial_days: number;
|
|
3908
|
+
} & {
|
|
3909
|
+
license_type: "consumption";
|
|
3910
|
+
max_consumptions: number;
|
|
3911
|
+
total_consumptions: number;
|
|
3912
|
+
allow_unlimited_consumptions: boolean;
|
|
3913
|
+
allow_overages: boolean;
|
|
3914
|
+
max_overages: number;
|
|
3915
|
+
reset_consumption: boolean;
|
|
3916
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3917
|
+
}) | ({
|
|
3918
|
+
id: number;
|
|
3919
|
+
allow_grace_period: boolean;
|
|
3920
|
+
allow_overages: boolean;
|
|
3921
|
+
allow_unlimited_activations: boolean;
|
|
3922
|
+
borrowed_until: string | null;
|
|
3923
|
+
can_borrow: boolean;
|
|
3924
|
+
channel: string;
|
|
3925
|
+
device_id: number;
|
|
3926
|
+
enable_maintenance_period: boolean;
|
|
3927
|
+
environment: string;
|
|
3928
|
+
eula_link: string;
|
|
3929
|
+
floating_timeout: number;
|
|
3930
|
+
grace_period: number;
|
|
3931
|
+
hash_md5: string;
|
|
3932
|
+
installation_file: string;
|
|
3933
|
+
is_air_gapped: boolean;
|
|
3934
|
+
is_borrowed: boolean;
|
|
3935
|
+
is_expired: boolean;
|
|
3936
|
+
is_hardware_key_auth: boolean;
|
|
3937
|
+
license_active: boolean;
|
|
3938
|
+
license_enabled: boolean;
|
|
3939
|
+
license_signature: string;
|
|
3940
|
+
license_type: import("./types").LicenseType;
|
|
3941
|
+
maintenance_period: string | null;
|
|
3942
|
+
max_activations: number;
|
|
3943
|
+
max_borrow_time: number;
|
|
3944
|
+
max_license_users: number;
|
|
3945
|
+
max_overages: number;
|
|
3946
|
+
max_transfers?: number;
|
|
3947
|
+
order_store_id: string;
|
|
3948
|
+
prevent_vm: boolean;
|
|
3949
|
+
release_date: string;
|
|
3950
|
+
release_notes_link: string;
|
|
3951
|
+
requires_version: string;
|
|
3952
|
+
size: string;
|
|
3953
|
+
start_date: string | null;
|
|
3954
|
+
times_activated: number;
|
|
3955
|
+
transfer_count: number;
|
|
3956
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
3957
|
+
version: string;
|
|
3958
|
+
product_features: import("./types").ProductFeature[];
|
|
3959
|
+
custom_fields: import("./types").CustomField[];
|
|
3960
|
+
customer: import("./types").Customer;
|
|
3961
|
+
product_details: import("./types").ProductDetails;
|
|
3962
|
+
metadata: import("./types").JSON;
|
|
3963
|
+
} & {
|
|
3964
|
+
license_key?: undefined;
|
|
3965
|
+
user: import("./types").LicenseUser;
|
|
3966
|
+
} & {
|
|
3967
|
+
floating_users?: undefined;
|
|
3968
|
+
floating_in_use_devices?: undefined;
|
|
3969
|
+
is_floating_cloud: false;
|
|
3970
|
+
is_floating: false;
|
|
3971
|
+
} & {
|
|
3972
|
+
trial_days?: undefined;
|
|
3973
|
+
is_trial: false;
|
|
3974
|
+
} & {
|
|
3975
|
+
license_type: "consumption";
|
|
3976
|
+
max_consumptions: number;
|
|
3977
|
+
total_consumptions: number;
|
|
3978
|
+
allow_unlimited_consumptions: boolean;
|
|
3979
|
+
allow_overages: boolean;
|
|
3980
|
+
max_overages: number;
|
|
3981
|
+
reset_consumption: boolean;
|
|
3982
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
3983
|
+
}) | ({
|
|
3984
|
+
id: number;
|
|
3985
|
+
allow_grace_period: boolean;
|
|
3986
|
+
allow_overages: boolean;
|
|
3987
|
+
allow_unlimited_activations: boolean;
|
|
3988
|
+
borrowed_until: string | null;
|
|
3989
|
+
can_borrow: boolean;
|
|
3990
|
+
channel: string;
|
|
3991
|
+
device_id: number;
|
|
3992
|
+
enable_maintenance_period: boolean;
|
|
3993
|
+
environment: string;
|
|
3994
|
+
eula_link: string;
|
|
2730
3995
|
floating_timeout: number;
|
|
3996
|
+
grace_period: number;
|
|
3997
|
+
hash_md5: string;
|
|
3998
|
+
installation_file: string;
|
|
3999
|
+
is_air_gapped: boolean;
|
|
4000
|
+
is_borrowed: boolean;
|
|
4001
|
+
is_expired: boolean;
|
|
4002
|
+
is_hardware_key_auth: boolean;
|
|
4003
|
+
license_active: boolean;
|
|
4004
|
+
license_enabled: boolean;
|
|
4005
|
+
license_signature: string;
|
|
4006
|
+
license_type: import("./types").LicenseType;
|
|
4007
|
+
maintenance_period: string | null;
|
|
4008
|
+
max_activations: number;
|
|
4009
|
+
max_borrow_time: number;
|
|
4010
|
+
max_license_users: number;
|
|
4011
|
+
max_overages: number;
|
|
4012
|
+
max_transfers?: number;
|
|
4013
|
+
order_store_id: string;
|
|
4014
|
+
prevent_vm: boolean;
|
|
4015
|
+
release_date: string;
|
|
4016
|
+
release_notes_link: string;
|
|
4017
|
+
requires_version: string;
|
|
4018
|
+
size: string;
|
|
4019
|
+
start_date: string | null;
|
|
4020
|
+
times_activated: number;
|
|
4021
|
+
transfer_count: number;
|
|
4022
|
+
validity_period: import("./types").DateISO8601UTC | null;
|
|
4023
|
+
version: string;
|
|
4024
|
+
product_features: import("./types").ProductFeature[];
|
|
4025
|
+
custom_fields: import("./types").CustomField[];
|
|
4026
|
+
customer: import("./types").Customer;
|
|
4027
|
+
product_details: import("./types").ProductDetails;
|
|
4028
|
+
metadata: import("./types").JSON;
|
|
4029
|
+
} & {
|
|
4030
|
+
license_key?: undefined;
|
|
4031
|
+
user: import("./types").LicenseUser;
|
|
4032
|
+
} & {
|
|
4033
|
+
floating_users?: undefined;
|
|
4034
|
+
floating_in_use_devices?: undefined;
|
|
4035
|
+
is_floating_cloud: false;
|
|
4036
|
+
is_floating: false;
|
|
2731
4037
|
} & {
|
|
2732
4038
|
is_trial: true;
|
|
2733
4039
|
trial_days: number;
|
|
@@ -2739,7 +4045,7 @@ export default class LicenseAPI {
|
|
|
2739
4045
|
allow_overages: boolean;
|
|
2740
4046
|
max_overages: number;
|
|
2741
4047
|
reset_consumption: boolean;
|
|
2742
|
-
consumption_period:
|
|
4048
|
+
consumption_period: "daily" | "weekly" | "monthly" | "annually" | null;
|
|
2743
4049
|
}))[]>;
|
|
2744
4050
|
getCustomerLicenseUsers(payload: GetCustomerLicensesPayload): Promise<CustomerLicenseUsersResponse>;
|
|
2745
4051
|
checkLicenseFeature(payload: LicenseIdentificatorAndFeature): Promise<LicenseFeatureResponse>;
|