@nutanix-scratch/objects-js-client 4.0.1-alpha.2
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.txt +49 -0
- package/README.md +200 -0
- package/dist/Ntnx-Objects-js-client-prod.js +1 -0
- package/dist/Ntnx-Objects-js-client.js +729 -0
- package/dist/es/ApiClient.d.ts +159 -0
- package/dist/es/ApiClient.js +1211 -0
- package/dist/es/Paginable.d.ts +95 -0
- package/dist/es/Paginable.js +287 -0
- package/dist/es/apis/objectstores-endpoints.d.ts +231 -0
- package/dist/es/apis/objectstores-endpoints.js +522 -0
- package/dist/es/index.d.ts +64 -0
- package/dist/es/index.js +252 -0
- package/dist/es/models/common/v1/config/FQDN.d.ts +48 -0
- package/dist/es/models/common/v1/config/FQDN.js +242 -0
- package/dist/es/models/common/v1/config/Flag.d.ts +58 -0
- package/dist/es/models/common/v1/config/Flag.js +275 -0
- package/dist/es/models/common/v1/config/IPAddress.d.ts +61 -0
- package/dist/es/models/common/v1/config/IPAddress.js +291 -0
- package/dist/es/models/common/v1/config/IPv4Address.d.ts +62 -0
- package/dist/es/models/common/v1/config/IPv4Address.js +288 -0
- package/dist/es/models/common/v1/config/IPv6Address.d.ts +62 -0
- package/dist/es/models/common/v1/config/IPv6Address.js +288 -0
- package/dist/es/models/common/v1/config/KVPair.d.ts +62 -0
- package/dist/es/models/common/v1/config/KVPair.js +332 -0
- package/dist/es/models/common/v1/config/Message.d.ts +84 -0
- package/dist/es/models/common/v1/config/Message.js +354 -0
- package/dist/es/models/common/v1/config/MessageSeverity.d.ts +19 -0
- package/dist/es/models/common/v1/config/MessageSeverity.js +91 -0
- package/dist/es/models/common/v1/config/Metadata.d.ts +98 -0
- package/dist/es/models/common/v1/config/Metadata.js +411 -0
- package/dist/es/models/common/v1/config/TenantAwareModel.d.ts +50 -0
- package/dist/es/models/common/v1/config/TenantAwareModel.js +243 -0
- package/dist/es/models/common/v1/response/ApiLink.d.ts +62 -0
- package/dist/es/models/common/v1/response/ApiLink.js +280 -0
- package/dist/es/models/common/v1/response/ApiResponseMetadata.d.ts +98 -0
- package/dist/es/models/common/v1/response/ApiResponseMetadata.js +438 -0
- package/dist/es/models/common/v1/response/ExternalizableAbstractModel.d.ts +42 -0
- package/dist/es/models/common/v1/response/ExternalizableAbstractModel.js +270 -0
- package/dist/es/models/objects/v4/error/AppMessage.d.ts +108 -0
- package/dist/es/models/objects/v4/error/AppMessage.js +432 -0
- package/dist/es/models/objects/v4/error/ErrorResponse.d.ts +48 -0
- package/dist/es/models/objects/v4/error/ErrorResponse.js +288 -0
- package/dist/es/models/objects/v4/error/SchemaValidationError.d.ts +98 -0
- package/dist/es/models/objects/v4/error/SchemaValidationError.js +407 -0
- package/dist/es/models/objects/v4/error/SchemaValidationErrorMessage.d.ts +74 -0
- package/dist/es/models/objects/v4/error/SchemaValidationErrorMessage.js +318 -0
- package/dist/es/models/objects/v4/operations/Certificate.d.ts +78 -0
- package/dist/es/models/objects/v4/operations/Certificate.js +411 -0
- package/dist/es/models/objects/v4/operations/CertificateApiResponse.d.ts +59 -0
- package/dist/es/models/objects/v4/operations/CertificateApiResponse.js +311 -0
- package/dist/es/models/objects/v4/operations/CertificateListApiResponse.d.ts +59 -0
- package/dist/es/models/objects/v4/operations/CertificateListApiResponse.js +338 -0
- package/dist/es/models/objects/v4/operations/CertificateProjection.d.ts +9 -0
- package/dist/es/models/objects/v4/operations/CertificateProjection.js +131 -0
- package/dist/es/models/objects/v4/operations/Objectstore.d.ts +242 -0
- package/dist/es/models/objects/v4/operations/Objectstore.js +945 -0
- package/dist/es/models/objects/v4/operations/ObjectstoreApiResponse.d.ts +59 -0
- package/dist/es/models/objects/v4/operations/ObjectstoreApiResponse.js +311 -0
- package/dist/es/models/objects/v4/operations/ObjectstoreListApiResponse.d.ts +59 -0
- package/dist/es/models/objects/v4/operations/ObjectstoreListApiResponse.js +338 -0
- package/dist/es/models/objects/v4/operations/ObjectstoreProjection.d.ts +50 -0
- package/dist/es/models/objects/v4/operations/ObjectstoreProjection.js +298 -0
- package/dist/es/models/objects/v4/operations/StateEnum.d.ts +19 -0
- package/dist/es/models/objects/v4/operations/StateEnum.js +145 -0
- package/dist/es/models/objects/v4/operations/TaskReferenceApiResponse.d.ts +59 -0
- package/dist/es/models/objects/v4/operations/TaskReferenceApiResponse.js +311 -0
- package/dist/es/models/prism/v4/config/TaskReference.d.ts +50 -0
- package/dist/es/models/prism/v4/config/TaskReference.js +247 -0
- package/dist/es/models/validation/ValidationError.d.ts +13 -0
- package/dist/es/models/validation/ValidationError.js +60 -0
- package/dist/es/models/validation/ValidationScopes.d.ts +9 -0
- package/dist/es/models/validation/ValidationScopes.js +38 -0
- package/dist/es/utils/ValidationUtils.d.ts +13 -0
- package/dist/es/utils/ValidationUtils.js +85 -0
- package/dist/lib/ApiClient.d.ts +159 -0
- package/dist/lib/ApiClient.js +1211 -0
- package/dist/lib/Paginable.d.ts +95 -0
- package/dist/lib/Paginable.js +287 -0
- package/dist/lib/apis/objectstores-endpoints.d.ts +231 -0
- package/dist/lib/apis/objectstores-endpoints.js +522 -0
- package/dist/lib/index.d.ts +64 -0
- package/dist/lib/index.js +252 -0
- package/dist/lib/models/common/v1/config/FQDN.d.ts +48 -0
- package/dist/lib/models/common/v1/config/FQDN.js +242 -0
- package/dist/lib/models/common/v1/config/Flag.d.ts +58 -0
- package/dist/lib/models/common/v1/config/Flag.js +275 -0
- package/dist/lib/models/common/v1/config/IPAddress.d.ts +61 -0
- package/dist/lib/models/common/v1/config/IPAddress.js +291 -0
- package/dist/lib/models/common/v1/config/IPv4Address.d.ts +62 -0
- package/dist/lib/models/common/v1/config/IPv4Address.js +288 -0
- package/dist/lib/models/common/v1/config/IPv6Address.d.ts +62 -0
- package/dist/lib/models/common/v1/config/IPv6Address.js +288 -0
- package/dist/lib/models/common/v1/config/KVPair.d.ts +62 -0
- package/dist/lib/models/common/v1/config/KVPair.js +332 -0
- package/dist/lib/models/common/v1/config/Message.d.ts +84 -0
- package/dist/lib/models/common/v1/config/Message.js +354 -0
- package/dist/lib/models/common/v1/config/MessageSeverity.d.ts +19 -0
- package/dist/lib/models/common/v1/config/MessageSeverity.js +91 -0
- package/dist/lib/models/common/v1/config/Metadata.d.ts +98 -0
- package/dist/lib/models/common/v1/config/Metadata.js +411 -0
- package/dist/lib/models/common/v1/config/TenantAwareModel.d.ts +50 -0
- package/dist/lib/models/common/v1/config/TenantAwareModel.js +243 -0
- package/dist/lib/models/common/v1/response/ApiLink.d.ts +62 -0
- package/dist/lib/models/common/v1/response/ApiLink.js +280 -0
- package/dist/lib/models/common/v1/response/ApiResponseMetadata.d.ts +98 -0
- package/dist/lib/models/common/v1/response/ApiResponseMetadata.js +438 -0
- package/dist/lib/models/common/v1/response/ExternalizableAbstractModel.d.ts +42 -0
- package/dist/lib/models/common/v1/response/ExternalizableAbstractModel.js +270 -0
- package/dist/lib/models/objects/v4/error/AppMessage.d.ts +108 -0
- package/dist/lib/models/objects/v4/error/AppMessage.js +432 -0
- package/dist/lib/models/objects/v4/error/ErrorResponse.d.ts +48 -0
- package/dist/lib/models/objects/v4/error/ErrorResponse.js +288 -0
- package/dist/lib/models/objects/v4/error/SchemaValidationError.d.ts +98 -0
- package/dist/lib/models/objects/v4/error/SchemaValidationError.js +407 -0
- package/dist/lib/models/objects/v4/error/SchemaValidationErrorMessage.d.ts +74 -0
- package/dist/lib/models/objects/v4/error/SchemaValidationErrorMessage.js +318 -0
- package/dist/lib/models/objects/v4/operations/Certificate.d.ts +78 -0
- package/dist/lib/models/objects/v4/operations/Certificate.js +411 -0
- package/dist/lib/models/objects/v4/operations/CertificateApiResponse.d.ts +59 -0
- package/dist/lib/models/objects/v4/operations/CertificateApiResponse.js +311 -0
- package/dist/lib/models/objects/v4/operations/CertificateListApiResponse.d.ts +59 -0
- package/dist/lib/models/objects/v4/operations/CertificateListApiResponse.js +338 -0
- package/dist/lib/models/objects/v4/operations/CertificateProjection.d.ts +9 -0
- package/dist/lib/models/objects/v4/operations/CertificateProjection.js +131 -0
- package/dist/lib/models/objects/v4/operations/Objectstore.d.ts +242 -0
- package/dist/lib/models/objects/v4/operations/Objectstore.js +945 -0
- package/dist/lib/models/objects/v4/operations/ObjectstoreApiResponse.d.ts +59 -0
- package/dist/lib/models/objects/v4/operations/ObjectstoreApiResponse.js +311 -0
- package/dist/lib/models/objects/v4/operations/ObjectstoreListApiResponse.d.ts +59 -0
- package/dist/lib/models/objects/v4/operations/ObjectstoreListApiResponse.js +338 -0
- package/dist/lib/models/objects/v4/operations/ObjectstoreProjection.d.ts +50 -0
- package/dist/lib/models/objects/v4/operations/ObjectstoreProjection.js +298 -0
- package/dist/lib/models/objects/v4/operations/StateEnum.d.ts +19 -0
- package/dist/lib/models/objects/v4/operations/StateEnum.js +145 -0
- package/dist/lib/models/objects/v4/operations/TaskReferenceApiResponse.d.ts +59 -0
- package/dist/lib/models/objects/v4/operations/TaskReferenceApiResponse.js +311 -0
- package/dist/lib/models/prism/v4/config/TaskReference.d.ts +50 -0
- package/dist/lib/models/prism/v4/config/TaskReference.js +247 -0
- package/dist/lib/models/validation/ValidationError.d.ts +13 -0
- package/dist/lib/models/validation/ValidationError.js +60 -0
- package/dist/lib/models/validation/ValidationScopes.d.ts +9 -0
- package/dist/lib/models/validation/ValidationScopes.js +38 -0
- package/dist/lib/utils/ValidationUtils.d.ts +13 -0
- package/dist/lib/utils/ValidationUtils.js +85 -0
- package/package.json +53 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
8
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
9
|
+
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); } }
|
|
10
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
12
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
13
|
+
/*
|
|
14
|
+
* Nutanix Objects Storage Management APIs
|
|
15
|
+
*
|
|
16
|
+
* OpenAPI spec version: 4.0.1-alpha-2
|
|
17
|
+
*
|
|
18
|
+
* NOTE: This class is auto generated by the Open API Dev Platform.
|
|
19
|
+
*
|
|
20
|
+
* Open API Dev Platform Codegen version: 16.8.0.7344-RELEASE
|
|
21
|
+
*
|
|
22
|
+
* Do not edit the class manually.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
var ValidationError = exports["default"] = /*#__PURE__*/function () {
|
|
26
|
+
function ValidationError(name, message) {
|
|
27
|
+
_classCallCheck(this, ValidationError);
|
|
28
|
+
this.name = name;
|
|
29
|
+
this.message = message;
|
|
30
|
+
}
|
|
31
|
+
return _createClass(ValidationError, [{
|
|
32
|
+
key: "getName",
|
|
33
|
+
value: function getName() {
|
|
34
|
+
return this.name;
|
|
35
|
+
}
|
|
36
|
+
}, {
|
|
37
|
+
key: "setName",
|
|
38
|
+
value: function setName(name) {
|
|
39
|
+
this.name = name;
|
|
40
|
+
}
|
|
41
|
+
}, {
|
|
42
|
+
key: "getMessage",
|
|
43
|
+
value: function getMessage() {
|
|
44
|
+
return this.message;
|
|
45
|
+
}
|
|
46
|
+
}, {
|
|
47
|
+
key: "setMessage",
|
|
48
|
+
value: function setMessage(message) {
|
|
49
|
+
this.message = message;
|
|
50
|
+
}
|
|
51
|
+
}, {
|
|
52
|
+
key: "toJson",
|
|
53
|
+
value: function toJson() {
|
|
54
|
+
return {
|
|
55
|
+
'name': this.getName(),
|
|
56
|
+
'message': this.getMessage()
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
}]);
|
|
60
|
+
}();
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
/**
|
|
8
|
+
* Enum class ValidationScopes.
|
|
9
|
+
* @enum {}
|
|
10
|
+
* @readonly
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
var ValidationScopes = {
|
|
14
|
+
/**
|
|
15
|
+
* value: {DEFAULT}
|
|
16
|
+
* @const
|
|
17
|
+
*/
|
|
18
|
+
DEFAULT: "DEFAULT"
|
|
19
|
+
};
|
|
20
|
+
ValidationScopes.constructFromObject = function (obj) {
|
|
21
|
+
if (typeof obj === 'string' || obj instanceof String) {
|
|
22
|
+
return ValidationScopes[obj];
|
|
23
|
+
} else {
|
|
24
|
+
throw new Error("Received object name is not an instance of String");
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
ValidationScopes.validate = function (obj) {
|
|
28
|
+
if (typeof obj !== 'undefined' && obj !== null) {
|
|
29
|
+
switch (obj) {
|
|
30
|
+
case ValidationScopes.DEFAULT:
|
|
31
|
+
return;
|
|
32
|
+
default:
|
|
33
|
+
throw new Error("Invalid : must be ValidationScopes.{ }");
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
Object.freeze(ValidationScopes);
|
|
38
|
+
var _default = exports["default"] = ValidationScopes;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default class ValidationUtils {
|
|
2
|
+
static validateMaximum(value: any, maximum: any): boolean;
|
|
3
|
+
static validateMinimum(value: any, minimum: any): boolean;
|
|
4
|
+
static validateExclusiveMaximum(value: any, eMaximum: any): boolean;
|
|
5
|
+
static validateExclusiveMinimum(value: any, eMinimum: any): boolean;
|
|
6
|
+
static validateMultipleOf(value: any, multipleOf: any): boolean;
|
|
7
|
+
static validateMaxLength(value: any, maxLength: any): boolean;
|
|
8
|
+
static validateMinLength(value: any, minLength: any): boolean;
|
|
9
|
+
static validatePattern(value: any, pattern: any): boolean;
|
|
10
|
+
static validateMaxItems(value: any, maxItems: any): boolean;
|
|
11
|
+
static validateMinItems(value: any, minItems: any): boolean;
|
|
12
|
+
static validateUniqueItems(value: any, uniqueItems: any): boolean;
|
|
13
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
8
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
9
|
+
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); } }
|
|
10
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
12
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
13
|
+
/*
|
|
14
|
+
* Nutanix Objects Storage Management APIs
|
|
15
|
+
*
|
|
16
|
+
* OpenAPI spec version: 4.0.1-alpha-2
|
|
17
|
+
*
|
|
18
|
+
* NOTE: This class is auto generated by the Open API Dev Platform.
|
|
19
|
+
*
|
|
20
|
+
* Open API Dev Platform Codegen version: 16.8.0.7344-RELEASE
|
|
21
|
+
*
|
|
22
|
+
* Do not edit the class manually.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
var ValidationUtils = exports["default"] = /*#__PURE__*/function () {
|
|
26
|
+
function ValidationUtils() {
|
|
27
|
+
_classCallCheck(this, ValidationUtils);
|
|
28
|
+
}
|
|
29
|
+
return _createClass(ValidationUtils, null, [{
|
|
30
|
+
key: "validateMaximum",
|
|
31
|
+
value: function validateMaximum(value, maximum) {
|
|
32
|
+
return !(maximum === null || value > maximum);
|
|
33
|
+
}
|
|
34
|
+
}, {
|
|
35
|
+
key: "validateMinimum",
|
|
36
|
+
value: function validateMinimum(value, minimum) {
|
|
37
|
+
return !(minimum === null || value < minimum);
|
|
38
|
+
}
|
|
39
|
+
}, {
|
|
40
|
+
key: "validateExclusiveMaximum",
|
|
41
|
+
value: function validateExclusiveMaximum(value, eMaximum) {
|
|
42
|
+
return !(eMaximum === null || value > eMaximum);
|
|
43
|
+
}
|
|
44
|
+
}, {
|
|
45
|
+
key: "validateExclusiveMinimum",
|
|
46
|
+
value: function validateExclusiveMinimum(value, eMinimum) {
|
|
47
|
+
return !(eMinimum === null || value > eMinimum);
|
|
48
|
+
}
|
|
49
|
+
}, {
|
|
50
|
+
key: "validateMultipleOf",
|
|
51
|
+
value: function validateMultipleOf(value, multipleOf) {
|
|
52
|
+
return !(multipleOf === null || value % multipleOf === 0);
|
|
53
|
+
}
|
|
54
|
+
}, {
|
|
55
|
+
key: "validateMaxLength",
|
|
56
|
+
value: function validateMaxLength(value, maxLength) {
|
|
57
|
+
return !(maxLength === null || value.length > maxLength);
|
|
58
|
+
}
|
|
59
|
+
}, {
|
|
60
|
+
key: "validateMinLength",
|
|
61
|
+
value: function validateMinLength(value, minLength) {
|
|
62
|
+
return !(minLength === null || value.length < minLength);
|
|
63
|
+
}
|
|
64
|
+
}, {
|
|
65
|
+
key: "validatePattern",
|
|
66
|
+
value: function validatePattern(value, pattern) {
|
|
67
|
+
return !(pattern === null || value.match(pattern) === null);
|
|
68
|
+
}
|
|
69
|
+
}, {
|
|
70
|
+
key: "validateMaxItems",
|
|
71
|
+
value: function validateMaxItems(value, maxItems) {
|
|
72
|
+
return !(maxItems === null || value.length > maxItems);
|
|
73
|
+
}
|
|
74
|
+
}, {
|
|
75
|
+
key: "validateMinItems",
|
|
76
|
+
value: function validateMinItems(value, minItems) {
|
|
77
|
+
return !(minItems === null || value.length < minItems);
|
|
78
|
+
}
|
|
79
|
+
}, {
|
|
80
|
+
key: "validateUniqueItems",
|
|
81
|
+
value: function validateUniqueItems(value, uniqueItems) {
|
|
82
|
+
return !(uniqueItems === null || !uniqueItems || value.length !== new Set(value).size);
|
|
83
|
+
}
|
|
84
|
+
}]);
|
|
85
|
+
}();
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nutanix-scratch/objects-js-client",
|
|
3
|
+
"version": "4.0.1-alpha.2",
|
|
4
|
+
"description": "The Javascript client for Nutanix Objects Storage Management APIs is designed for Javascript client application developers offering them simple and flexible access to APIs that manage Petabytes of Unstructured and Machine-generated data using a software-defined Object Store Service.",
|
|
5
|
+
"license": "SEE LICENSE AT LICENSE.md",
|
|
6
|
+
"main": "dist/lib/index.js",
|
|
7
|
+
"module": "dist/es/index.js",
|
|
8
|
+
"types": "dist/lib/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Nutanix Inc.",
|
|
14
|
+
"email": "sdk@nutanix.com",
|
|
15
|
+
"url": "https://developers.nutanix.com"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=14.0.0"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://developers.nutanix.com/bugs",
|
|
22
|
+
"mail": "sdk@nutanix.com"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"nutanix",
|
|
26
|
+
"Nutanix Objects Storage Management APIs"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"test": "mocha --compilers js:babel-core/register --recursive"
|
|
30
|
+
},
|
|
31
|
+
"browser": {
|
|
32
|
+
"fs": false
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"registry": "https://registry.npmjs.org"
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/orichter/package-publishing-examples.git"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"superagent": "7.1.5",
|
|
43
|
+
"uuid": "^9.0.0",
|
|
44
|
+
"superagent-retry-delay": "^2.6.2",
|
|
45
|
+
"path-browserify": "^1.0.1"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"babel-core": "6.26.0",
|
|
49
|
+
"mocha": "~2.3.4",
|
|
50
|
+
"sinon": "1.17.3",
|
|
51
|
+
"expect.js": "~0.3.1"
|
|
52
|
+
}
|
|
53
|
+
}
|