@corellium/corellium-cli 1.3.4 → 1.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/coverage/cobertura-coverage.xml +1 -1
  2. package/coverage/lcov-report/index.html +1 -1
  3. package/node_modules/@corellium/client-api/README.md +177 -14
  4. package/node_modules/@corellium/client-api/dist/ApiClient.js +67 -138
  5. package/node_modules/@corellium/client-api/dist/api/CorelliumApi.js +4668 -905
  6. package/node_modules/@corellium/client-api/dist/index.js +469 -37
  7. package/node_modules/@corellium/client-api/dist/model/Address.js +158 -0
  8. package/node_modules/@corellium/client-api/dist/model/AgentApp.js +159 -0
  9. package/node_modules/@corellium/client-api/dist/model/AgentAppReadyResponse.js +112 -0
  10. package/node_modules/@corellium/client-api/dist/model/AgentAppStatus.js +102 -0
  11. package/node_modules/@corellium/client-api/dist/model/AgentAppsList.js +127 -0
  12. package/node_modules/@corellium/client-api/dist/model/AgentAppsStatusList.js +127 -0
  13. package/node_modules/@corellium/client-api/dist/model/AgentError.js +153 -0
  14. package/node_modules/@corellium/client-api/dist/model/AgentIcons.js +89 -0
  15. package/node_modules/@corellium/client-api/dist/model/AgentInstallBody.js +93 -0
  16. package/node_modules/@corellium/client-api/dist/model/AgentProfilesReturn.js +116 -0
  17. package/node_modules/@corellium/client-api/dist/model/AgentSystemAdbAuth.js +89 -0
  18. package/node_modules/@corellium/client-api/dist/model/AgentSystemGetPropBody.js +116 -0
  19. package/node_modules/@corellium/client-api/dist/model/AgentValueReturn.js +93 -0
  20. package/node_modules/@corellium/client-api/dist/model/AgreedAck.js +89 -0
  21. package/node_modules/@corellium/client-api/dist/model/ApiConflictError.js +61 -22
  22. package/node_modules/@corellium/client-api/dist/model/ApiError.js +64 -21
  23. package/node_modules/@corellium/client-api/dist/model/ApiInternalConsistencyError.js +144 -0
  24. package/node_modules/@corellium/client-api/dist/model/ApiNotFoundError.js +65 -23
  25. package/node_modules/@corellium/client-api/dist/model/ApiToken.js +55 -17
  26. package/node_modules/@corellium/client-api/dist/model/Bit.js +24 -14
  27. package/node_modules/@corellium/client-api/dist/model/BtraceEnableOptions.js +93 -0
  28. package/node_modules/@corellium/client-api/dist/model/Button.js +90 -0
  29. package/node_modules/@corellium/client-api/dist/model/CouponOptions.js +161 -0
  30. package/node_modules/@corellium/client-api/dist/model/CreateTeam.js +116 -0
  31. package/node_modules/@corellium/client-api/dist/model/CreatedBy.js +128 -0
  32. package/node_modules/@corellium/client-api/dist/model/Credentials.js +59 -19
  33. package/node_modules/@corellium/client-api/dist/model/DomainOptions.js +103 -0
  34. package/node_modules/@corellium/client-api/dist/model/Extension.js +167 -0
  35. package/node_modules/@corellium/client-api/dist/model/Features.js +260 -0
  36. package/node_modules/@corellium/client-api/dist/model/FileChanges.js +120 -0
  37. package/node_modules/@corellium/client-api/dist/model/Firmware.js +97 -46
  38. package/node_modules/@corellium/client-api/dist/model/GpioStateDefinition.js +55 -20
  39. package/node_modules/@corellium/client-api/dist/model/GpiosState.js +120 -0
  40. package/node_modules/@corellium/client-api/dist/model/GrantTrialRequestResponse.js +93 -0
  41. package/node_modules/@corellium/client-api/dist/model/Hook.js +211 -0
  42. package/node_modules/@corellium/client-api/dist/model/Image.js +99 -49
  43. package/node_modules/@corellium/client-api/dist/model/Instance.js +201 -71
  44. package/node_modules/@corellium/client-api/dist/model/InstanceAgentState.js +106 -0
  45. package/node_modules/@corellium/client-api/dist/model/InstanceBootOptions.js +72 -29
  46. package/node_modules/@corellium/client-api/dist/model/InstanceBootOptionsAdditionalTag.js +90 -0
  47. package/node_modules/@corellium/client-api/dist/model/InstanceConsoleEndpoint.js +34 -17
  48. package/node_modules/@corellium/client-api/dist/model/InstanceCreateOptions.js +126 -49
  49. package/node_modules/@corellium/client-api/dist/model/InstanceInput.js +181 -0
  50. package/node_modules/@corellium/client-api/dist/model/InstanceNetdumpState.js +115 -0
  51. package/node_modules/@corellium/client-api/dist/model/InstanceNetmonState.js +56 -16
  52. package/node_modules/@corellium/client-api/dist/model/InstanceReturn.js +55 -20
  53. package/node_modules/@corellium/client-api/dist/model/InstanceServices.js +35 -18
  54. package/node_modules/@corellium/client-api/dist/model/InstanceStartOptions.js +39 -17
  55. package/node_modules/@corellium/client-api/dist/model/InstanceState.js +52 -21
  56. package/node_modules/@corellium/client-api/dist/model/InstanceStopOptions.js +30 -17
  57. package/node_modules/@corellium/client-api/dist/model/InstanceUpgradeBody.js +129 -0
  58. package/node_modules/@corellium/client-api/dist/model/Invitation.js +115 -0
  59. package/node_modules/@corellium/client-api/dist/model/InviteRevokeParams.js +94 -0
  60. package/node_modules/@corellium/client-api/dist/model/InviteRevokeParamsIds.js +150 -0
  61. package/node_modules/@corellium/client-api/dist/model/Kcrange.js +106 -0
  62. package/node_modules/@corellium/client-api/dist/model/KernelTask.js +149 -0
  63. package/node_modules/@corellium/client-api/dist/model/KernelThread.js +115 -0
  64. package/node_modules/@corellium/client-api/dist/model/MediaPlayBody.js +106 -0
  65. package/node_modules/@corellium/client-api/dist/model/Model.js +97 -35
  66. package/node_modules/@corellium/client-api/dist/model/ModelSoftware.js +77 -28
  67. package/node_modules/@corellium/client-api/dist/model/NetdumpFilter.js +158 -0
  68. package/node_modules/@corellium/client-api/dist/model/PasswordChangeBody.js +146 -0
  69. package/node_modules/@corellium/client-api/dist/model/PasswordResetBody.js +146 -0
  70. package/node_modules/@corellium/client-api/dist/model/PatchInstanceOptions.js +182 -0
  71. package/node_modules/@corellium/client-api/dist/model/PeripheralsData.js +63 -33
  72. package/node_modules/@corellium/client-api/dist/model/Plan.js +106 -0
  73. package/node_modules/@corellium/client-api/dist/model/Project.js +77 -28
  74. package/node_modules/@corellium/client-api/dist/model/ProjectKey.js +206 -0
  75. package/node_modules/@corellium/client-api/dist/model/ProjectQuota.js +35 -21
  76. package/node_modules/@corellium/client-api/dist/model/ProjectSettings.js +35 -21
  77. package/node_modules/@corellium/client-api/dist/model/ProjectUsage.js +37 -23
  78. package/node_modules/@corellium/client-api/dist/model/ProxyConfig.js +116 -0
  79. package/node_modules/@corellium/client-api/dist/model/RateInfo.js +98 -0
  80. package/node_modules/@corellium/client-api/dist/model/ResetLinkBody.js +116 -0
  81. package/node_modules/@corellium/client-api/dist/model/Role.js +164 -0
  82. package/node_modules/@corellium/client-api/dist/model/RotateBody.js +140 -0
  83. package/node_modules/@corellium/client-api/dist/model/Snapshot.js +56 -32
  84. package/node_modules/@corellium/client-api/dist/model/SnapshotCreationOptions.js +54 -17
  85. package/node_modules/@corellium/client-api/dist/model/SnapshotStatus.js +37 -19
  86. package/node_modules/@corellium/client-api/dist/model/SubscriberInvite.js +277 -0
  87. package/node_modules/@corellium/client-api/dist/model/Team.js +162 -0
  88. package/node_modules/@corellium/client-api/dist/model/TeamCreate.js +93 -0
  89. package/node_modules/@corellium/client-api/dist/model/TextInput.js +93 -0
  90. package/node_modules/@corellium/client-api/dist/model/Token.js +56 -19
  91. package/node_modules/@corellium/client-api/dist/model/TouchCurveInput.js +98 -0
  92. package/node_modules/@corellium/client-api/dist/model/TouchInput.js +89 -0
  93. package/node_modules/@corellium/client-api/dist/model/Trial.js +112 -0
  94. package/node_modules/@corellium/client-api/dist/model/TrialExtension.js +124 -0
  95. package/node_modules/@corellium/client-api/dist/model/TrialRequestMetadata.js +146 -0
  96. package/node_modules/@corellium/client-api/dist/model/TrialRequestOptions.js +156 -0
  97. package/node_modules/@corellium/client-api/dist/model/UpdateExtension.js +89 -0
  98. package/node_modules/@corellium/client-api/dist/model/User.js +170 -0
  99. package/node_modules/@corellium/client-api/dist/model/UserError.js +65 -22
  100. package/node_modules/@corellium/client-api/dist/model/V1CreateHookParameters.js +179 -0
  101. package/node_modules/@corellium/client-api/dist/model/V1LoadExtensionParameters.js +116 -0
  102. package/node_modules/@corellium/client-api/dist/model/V1SetStateBody.js +50 -18
  103. package/node_modules/@corellium/client-api/dist/model/ValidationError.js +157 -0
  104. package/node_modules/@corellium/client-api/dist/model/VolumeOptions.js +42 -21
  105. package/node_modules/@corellium/client-api/dist/model/VpnDefinition.js +45 -23
  106. package/node_modules/@corellium/client-api/dist/model/WebPlayerCreateSessionRequest.js +171 -0
  107. package/node_modules/@corellium/client-api/dist/model/WebPlayerSession.js +142 -0
  108. package/node_modules/@corellium/client-api/package.json +1 -1
  109. package/package.json +2 -2
  110. package/renovate.json +96 -0
  111. package/src/commands/login.js +6 -4
  112. package/src/commands/mast/constants.js +1 -2
  113. package/src/commands/mast/create-assessment.js +2 -3
  114. package/src/commands/mast/delete-assessment.js +2 -3
  115. package/src/commands/mast/download-report.js +3 -4
  116. package/src/commands/mast/get-assessment.js +2 -3
  117. package/src/commands/mast/get-assessments.js +2 -3
  118. package/src/commands/mast/start-monitor.js +2 -3
  119. package/src/commands/mast/stop-monitor.js +2 -3
  120. package/src/commands/mast/test.js +2 -3
  121. package/src/commands/mast/api-base-path.js +0 -21
@@ -0,0 +1,146 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
10
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
11
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
12
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
13
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
14
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /**
15
+ * Corellium API
16
+ * REST API to manage your virtual devices.
17
+ *
18
+ * The version of the OpenAPI document: 4.5.0-16775
19
+ *
20
+ *
21
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
22
+ * https://openapi-generator.tech
23
+ * Do not edit the class manually.
24
+ *
25
+ */
26
+ /**
27
+ * The TrialRequestMetadata model module.
28
+ * @module model/TrialRequestMetadata
29
+ * @version 0.3.2
30
+ */
31
+ var TrialRequestMetadata = /*#__PURE__*/function () {
32
+ /**
33
+ * Constructs a new <code>TrialRequestMetadata</code>.
34
+ *
35
+ * @alias module:model/TrialRequestMetadata
36
+ */
37
+ function TrialRequestMetadata() {
38
+ _classCallCheck(this, TrialRequestMetadata);
39
+ TrialRequestMetadata.initialize(this);
40
+ }
41
+
42
+ /**
43
+ * Initializes the fields of this object.
44
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
45
+ * Only for internal use.
46
+ */
47
+ _createClass(TrialRequestMetadata, null, [{
48
+ key: "initialize",
49
+ value: function initialize(obj) {}
50
+
51
+ /**
52
+ * Constructs a <code>TrialRequestMetadata</code> from a plain JavaScript object, optionally creating a new instance.
53
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
54
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
55
+ * @param {module:model/TrialRequestMetadata} obj Optional instance to populate.
56
+ * @return {module:model/TrialRequestMetadata} The populated <code>TrialRequestMetadata</code> instance.
57
+ */
58
+ }, {
59
+ key: "constructFromObject",
60
+ value: function constructFromObject(data, obj) {
61
+ if (data) {
62
+ obj = obj || new TrialRequestMetadata();
63
+ if (data.hasOwnProperty('name')) {
64
+ obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
65
+ }
66
+ if (data.hasOwnProperty('company')) {
67
+ obj['company'] = _ApiClient["default"].convertToType(data['company'], 'String');
68
+ }
69
+ if (data.hasOwnProperty('malware')) {
70
+ obj['malware'] = _ApiClient["default"].convertToType(data['malware'], 'Boolean');
71
+ }
72
+ if (data.hasOwnProperty('research')) {
73
+ obj['research'] = _ApiClient["default"].convertToType(data['research'], 'Boolean');
74
+ }
75
+ if (data.hasOwnProperty('pentest')) {
76
+ obj['pentest'] = _ApiClient["default"].convertToType(data['pentest'], 'Boolean');
77
+ }
78
+ if (data.hasOwnProperty('other')) {
79
+ obj['other'] = _ApiClient["default"].convertToType(data['other'], 'String');
80
+ }
81
+ }
82
+ return obj;
83
+ }
84
+
85
+ /**
86
+ * Validates the JSON data with respect to <code>TrialRequestMetadata</code>.
87
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
88
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>TrialRequestMetadata</code>.
89
+ */
90
+ }, {
91
+ key: "validateJSON",
92
+ value: function validateJSON(data) {
93
+ // ensure the json data is a string
94
+ if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
95
+ throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
96
+ }
97
+ // ensure the json data is a string
98
+ if (data['company'] && !(typeof data['company'] === 'string' || data['company'] instanceof String)) {
99
+ throw new Error("Expected the field `company` to be a primitive type in the JSON string but got " + data['company']);
100
+ }
101
+ // ensure the json data is a string
102
+ if (data['other'] && !(typeof data['other'] === 'string' || data['other'] instanceof String)) {
103
+ throw new Error("Expected the field `other` to be a primitive type in the JSON string but got " + data['other']);
104
+ }
105
+ return true;
106
+ }
107
+ }]);
108
+ return TrialRequestMetadata;
109
+ }();
110
+ /**
111
+ *
112
+ * @member {String} name
113
+ */
114
+ TrialRequestMetadata.prototype['name'] = undefined;
115
+
116
+ /**
117
+ * provided company name
118
+ * @member {String} company
119
+ */
120
+ TrialRequestMetadata.prototype['company'] = undefined;
121
+
122
+ /**
123
+ * option from sign up form, interesting using for malware
124
+ * @member {Boolean} malware
125
+ */
126
+ TrialRequestMetadata.prototype['malware'] = undefined;
127
+
128
+ /**
129
+ * option from sign up form, interesting using for research
130
+ * @member {Boolean} research
131
+ */
132
+ TrialRequestMetadata.prototype['research'] = undefined;
133
+
134
+ /**
135
+ * option from sign up form, interesting using for pentesting
136
+ * @member {Boolean} pentest
137
+ */
138
+ TrialRequestMetadata.prototype['pentest'] = undefined;
139
+
140
+ /**
141
+ * option from sign up form, interesting using for other area added here
142
+ * @member {String} other
143
+ */
144
+ TrialRequestMetadata.prototype['other'] = undefined;
145
+ var _default = TrialRequestMetadata;
146
+ exports["default"] = _default;
@@ -0,0 +1,156 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ var _Address = _interopRequireDefault(require("./Address"));
9
+ var _TrialRequestMetadata = _interopRequireDefault(require("./TrialRequestMetadata"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
12
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
13
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
14
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
15
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
16
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /**
17
+ * Corellium API
18
+ * REST API to manage your virtual devices.
19
+ *
20
+ * The version of the OpenAPI document: 4.5.0-16775
21
+ *
22
+ *
23
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
24
+ * https://openapi-generator.tech
25
+ * Do not edit the class manually.
26
+ *
27
+ */
28
+ /**
29
+ * The TrialRequestOptions model module.
30
+ * @module model/TrialRequestOptions
31
+ * @version 0.3.2
32
+ */
33
+ var TrialRequestOptions = /*#__PURE__*/function () {
34
+ /**
35
+ * Constructs a new <code>TrialRequestOptions</code>.
36
+ *
37
+ * @alias module:model/TrialRequestOptions
38
+ */
39
+ function TrialRequestOptions() {
40
+ _classCallCheck(this, TrialRequestOptions);
41
+ TrialRequestOptions.initialize(this);
42
+ }
43
+
44
+ /**
45
+ * Initializes the fields of this object.
46
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
47
+ * Only for internal use.
48
+ */
49
+ _createClass(TrialRequestOptions, null, [{
50
+ key: "initialize",
51
+ value: function initialize(obj) {}
52
+
53
+ /**
54
+ * Constructs a <code>TrialRequestOptions</code> from a plain JavaScript object, optionally creating a new instance.
55
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
56
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
57
+ * @param {module:model/TrialRequestOptions} obj Optional instance to populate.
58
+ * @return {module:model/TrialRequestOptions} The populated <code>TrialRequestOptions</code> instance.
59
+ */
60
+ }, {
61
+ key: "constructFromObject",
62
+ value: function constructFromObject(data, obj) {
63
+ if (data) {
64
+ obj = obj || new TrialRequestOptions();
65
+ if (data.hasOwnProperty('address')) {
66
+ obj['address'] = _Address["default"].constructFromObject(data['address']);
67
+ }
68
+ if (data.hasOwnProperty('email')) {
69
+ obj['email'] = _ApiClient["default"].convertToType(data['email'], 'String');
70
+ }
71
+ if (data.hasOwnProperty('name')) {
72
+ obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
73
+ }
74
+ if (data.hasOwnProperty('metadata')) {
75
+ obj['metadata'] = _TrialRequestMetadata["default"].constructFromObject(data['metadata']);
76
+ }
77
+ if (data.hasOwnProperty('enterprise')) {
78
+ obj['enterprise'] = _ApiClient["default"].convertToType(data['enterprise'], 'Boolean');
79
+ }
80
+ if (data.hasOwnProperty('token')) {
81
+ obj['token'] = _ApiClient["default"].convertToType(data['token'], 'String');
82
+ }
83
+ }
84
+ return obj;
85
+ }
86
+
87
+ /**
88
+ * Validates the JSON data with respect to <code>TrialRequestOptions</code>.
89
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
90
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>TrialRequestOptions</code>.
91
+ */
92
+ }, {
93
+ key: "validateJSON",
94
+ value: function validateJSON(data) {
95
+ // validate the optional field `address`
96
+ if (data['address']) {
97
+ // data not null
98
+ _Address["default"].validateJSON(data['address']);
99
+ }
100
+ // ensure the json data is a string
101
+ if (data['email'] && !(typeof data['email'] === 'string' || data['email'] instanceof String)) {
102
+ throw new Error("Expected the field `email` to be a primitive type in the JSON string but got " + data['email']);
103
+ }
104
+ // ensure the json data is a string
105
+ if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
106
+ throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
107
+ }
108
+ // validate the optional field `metadata`
109
+ if (data['metadata']) {
110
+ // data not null
111
+ _TrialRequestMetadata["default"].validateJSON(data['metadata']);
112
+ }
113
+ // ensure the json data is a string
114
+ if (data['token'] && !(typeof data['token'] === 'string' || data['token'] instanceof String)) {
115
+ throw new Error("Expected the field `token` to be a primitive type in the JSON string but got " + data['token']);
116
+ }
117
+ return true;
118
+ }
119
+ }]);
120
+ return TrialRequestOptions;
121
+ }();
122
+ /**
123
+ * @member {module:model/Address} address
124
+ */
125
+ TrialRequestOptions.prototype['address'] = undefined;
126
+
127
+ /**
128
+ * The user's email address.
129
+ * @member {String} email
130
+ */
131
+ TrialRequestOptions.prototype['email'] = undefined;
132
+
133
+ /**
134
+ * The user's full name.
135
+ * @member {String} name
136
+ */
137
+ TrialRequestOptions.prototype['name'] = undefined;
138
+
139
+ /**
140
+ * @member {module:model/TrialRequestMetadata} metadata
141
+ */
142
+ TrialRequestOptions.prototype['metadata'] = undefined;
143
+
144
+ /**
145
+ * If true, create an enterprise domain.
146
+ * @member {Boolean} enterprise
147
+ */
148
+ TrialRequestOptions.prototype['enterprise'] = undefined;
149
+
150
+ /**
151
+ * Stripe payment token.
152
+ * @member {String} token
153
+ */
154
+ TrialRequestOptions.prototype['token'] = undefined;
155
+ var _default = TrialRequestOptions;
156
+ exports["default"] = _default;
@@ -0,0 +1,89 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
10
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
11
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
12
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
13
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
14
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /**
15
+ * Corellium API
16
+ * REST API to manage your virtual devices.
17
+ *
18
+ * The version of the OpenAPI document: 4.5.0-16775
19
+ *
20
+ *
21
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
22
+ * https://openapi-generator.tech
23
+ * Do not edit the class manually.
24
+ *
25
+ */
26
+ /**
27
+ * The UpdateExtension model module.
28
+ * @module model/UpdateExtension
29
+ * @version 0.3.2
30
+ */
31
+ var UpdateExtension = /*#__PURE__*/function () {
32
+ /**
33
+ * Constructs a new <code>UpdateExtension</code>.
34
+ *
35
+ * @alias module:model/UpdateExtension
36
+ */
37
+ function UpdateExtension() {
38
+ _classCallCheck(this, UpdateExtension);
39
+ UpdateExtension.initialize(this);
40
+ }
41
+
42
+ /**
43
+ * Initializes the fields of this object.
44
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
45
+ * Only for internal use.
46
+ */
47
+ _createClass(UpdateExtension, null, [{
48
+ key: "initialize",
49
+ value: function initialize(obj) {}
50
+
51
+ /**
52
+ * Constructs a <code>UpdateExtension</code> from a plain JavaScript object, optionally creating a new instance.
53
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
54
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
55
+ * @param {module:model/UpdateExtension} obj Optional instance to populate.
56
+ * @return {module:model/UpdateExtension} The populated <code>UpdateExtension</code> instance.
57
+ */
58
+ }, {
59
+ key: "constructFromObject",
60
+ value: function constructFromObject(data, obj) {
61
+ if (data) {
62
+ obj = obj || new UpdateExtension();
63
+ if (data.hasOwnProperty('enabled')) {
64
+ obj['enabled'] = _ApiClient["default"].convertToType(data['enabled'], 'Boolean');
65
+ }
66
+ }
67
+ return obj;
68
+ }
69
+
70
+ /**
71
+ * Validates the JSON data with respect to <code>UpdateExtension</code>.
72
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
73
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>UpdateExtension</code>.
74
+ */
75
+ }, {
76
+ key: "validateJSON",
77
+ value: function validateJSON(data) {
78
+ return true;
79
+ }
80
+ }]);
81
+ return UpdateExtension;
82
+ }();
83
+ /**
84
+ * If true, instances requiring this extension can be created or started
85
+ * @member {Boolean} enabled
86
+ */
87
+ UpdateExtension.prototype['enabled'] = undefined;
88
+ var _default = UpdateExtension;
89
+ exports["default"] = _default;
@@ -0,0 +1,170 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
10
+ function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
11
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
12
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
13
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
14
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
15
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
16
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
17
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /**
18
+ * Corellium API
19
+ * REST API to manage your virtual devices.
20
+ *
21
+ * The version of the OpenAPI document: 4.5.0-16775
22
+ *
23
+ *
24
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
25
+ * https://openapi-generator.tech
26
+ * Do not edit the class manually.
27
+ *
28
+ */
29
+ /**
30
+ * The User model module.
31
+ * @module model/User
32
+ * @version 0.3.2
33
+ */
34
+ var User = /*#__PURE__*/function () {
35
+ /**
36
+ * Constructs a new <code>User</code>.
37
+ * /_**
38
+ * @alias module:model/User
39
+ * @param id {String} User ID
40
+ * @param label {String} User Label
41
+ * @param name {String} User Name
42
+ * @param email {String} User Email
43
+ */
44
+ function User(id, label, name, email) {
45
+ _classCallCheck(this, User);
46
+ User.initialize(this, id, label, name, email);
47
+ }
48
+
49
+ /**
50
+ * Initializes the fields of this object.
51
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
52
+ * Only for internal use.
53
+ */
54
+ _createClass(User, null, [{
55
+ key: "initialize",
56
+ value: function initialize(obj, id, label, name, email) {
57
+ obj['id'] = id;
58
+ obj['label'] = label;
59
+ obj['name'] = name;
60
+ obj['email'] = email;
61
+ }
62
+
63
+ /**
64
+ * Constructs a <code>User</code> from a plain JavaScript object, optionally creating a new instance.
65
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
66
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
67
+ * @param {module:model/User} obj Optional instance to populate.
68
+ * @return {module:model/User} The populated <code>User</code> instance.
69
+ */
70
+ }, {
71
+ key: "constructFromObject",
72
+ value: function constructFromObject(data, obj) {
73
+ if (data) {
74
+ obj = obj || new User();
75
+ if (data.hasOwnProperty('id')) {
76
+ obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
77
+ }
78
+ if (data.hasOwnProperty('label')) {
79
+ obj['label'] = _ApiClient["default"].convertToType(data['label'], 'String');
80
+ }
81
+ if (data.hasOwnProperty('name')) {
82
+ obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
83
+ }
84
+ if (data.hasOwnProperty('email')) {
85
+ obj['email'] = _ApiClient["default"].convertToType(data['email'], 'String');
86
+ }
87
+ if (data.hasOwnProperty('administrator')) {
88
+ obj['administrator'] = _ApiClient["default"].convertToType(data['administrator'], 'Boolean');
89
+ }
90
+ }
91
+ return obj;
92
+ }
93
+
94
+ /**
95
+ * Validates the JSON data with respect to <code>User</code>.
96
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
97
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>User</code>.
98
+ */
99
+ }, {
100
+ key: "validateJSON",
101
+ value: function validateJSON(data) {
102
+ // check to make sure all required properties are present in the JSON string
103
+ var _iterator = _createForOfIteratorHelper(User.RequiredProperties),
104
+ _step;
105
+ try {
106
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
107
+ var property = _step.value;
108
+ if (!data[property]) {
109
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
110
+ }
111
+ }
112
+ // ensure the json data is a string
113
+ } catch (err) {
114
+ _iterator.e(err);
115
+ } finally {
116
+ _iterator.f();
117
+ }
118
+ if (data['id'] && !(typeof data['id'] === 'string' || data['id'] instanceof String)) {
119
+ throw new Error("Expected the field `id` to be a primitive type in the JSON string but got " + data['id']);
120
+ }
121
+ // ensure the json data is a string
122
+ if (data['label'] && !(typeof data['label'] === 'string' || data['label'] instanceof String)) {
123
+ throw new Error("Expected the field `label` to be a primitive type in the JSON string but got " + data['label']);
124
+ }
125
+ // ensure the json data is a string
126
+ if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
127
+ throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
128
+ }
129
+ // ensure the json data is a string
130
+ if (data['email'] && !(typeof data['email'] === 'string' || data['email'] instanceof String)) {
131
+ throw new Error("Expected the field `email` to be a primitive type in the JSON string but got " + data['email']);
132
+ }
133
+ return true;
134
+ }
135
+ }]);
136
+ return User;
137
+ }();
138
+ User.RequiredProperties = ["id", "label", "name", "email"];
139
+
140
+ /**
141
+ * User ID
142
+ * @member {String} id
143
+ */
144
+ User.prototype['id'] = undefined;
145
+
146
+ /**
147
+ * User Label
148
+ * @member {String} label
149
+ */
150
+ User.prototype['label'] = undefined;
151
+
152
+ /**
153
+ * User Name
154
+ * @member {String} name
155
+ */
156
+ User.prototype['name'] = undefined;
157
+
158
+ /**
159
+ * User Email
160
+ * @member {String} email
161
+ */
162
+ User.prototype['email'] = undefined;
163
+
164
+ /**
165
+ * the flag that specifies whether user is Administrator or not
166
+ * @member {Boolean} administrator
167
+ */
168
+ User.prototype['administrator'] = undefined;
169
+ var _default = User;
170
+ exports["default"] = _default;