@meeco/svx-api-sdk 1.0.0-develop.20250908173109.36b8444 → 1.0.0-develop.20251009115620.9b58090

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.
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * SVX API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 3.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UtilitiesOwDeploymentRequestToJSON = exports.UtilitiesOwDeploymentRequestFromJSONTyped = exports.UtilitiesOwDeploymentRequestFromJSON = exports.instanceOfUtilitiesOwDeploymentRequest = void 0;
17
+ const UtilitiesOwDeploymentRequestOw_1 = require("./UtilitiesOwDeploymentRequestOw");
18
+ /**
19
+ * Check if a given object implements the UtilitiesOwDeploymentRequest interface.
20
+ */
21
+ function instanceOfUtilitiesOwDeploymentRequest(value) {
22
+ let isInstance = true;
23
+ isInstance = isInstance && "ow" in value;
24
+ return isInstance;
25
+ }
26
+ exports.instanceOfUtilitiesOwDeploymentRequest = instanceOfUtilitiesOwDeploymentRequest;
27
+ function UtilitiesOwDeploymentRequestFromJSON(json) {
28
+ return UtilitiesOwDeploymentRequestFromJSONTyped(json, false);
29
+ }
30
+ exports.UtilitiesOwDeploymentRequestFromJSON = UtilitiesOwDeploymentRequestFromJSON;
31
+ function UtilitiesOwDeploymentRequestFromJSONTyped(json, ignoreDiscriminator) {
32
+ if ((json === undefined) || (json === null)) {
33
+ return json;
34
+ }
35
+ return {
36
+ 'ow': (0, UtilitiesOwDeploymentRequestOw_1.UtilitiesOwDeploymentRequestOwFromJSON)(json['ow']),
37
+ };
38
+ }
39
+ exports.UtilitiesOwDeploymentRequestFromJSONTyped = UtilitiesOwDeploymentRequestFromJSONTyped;
40
+ function UtilitiesOwDeploymentRequestToJSON(value) {
41
+ if (value === undefined) {
42
+ return undefined;
43
+ }
44
+ if (value === null) {
45
+ return null;
46
+ }
47
+ return {
48
+ 'ow': (0, UtilitiesOwDeploymentRequestOw_1.UtilitiesOwDeploymentRequestOwToJSON)(value.ow),
49
+ };
50
+ }
51
+ exports.UtilitiesOwDeploymentRequestToJSON = UtilitiesOwDeploymentRequestToJSON;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * SVX API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 3.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UtilitiesOwDeploymentRequestOwToJSON = exports.UtilitiesOwDeploymentRequestOwFromJSONTyped = exports.UtilitiesOwDeploymentRequestOwFromJSON = exports.instanceOfUtilitiesOwDeploymentRequestOw = void 0;
17
+ /**
18
+ * Check if a given object implements the UtilitiesOwDeploymentRequestOw interface.
19
+ */
20
+ function instanceOfUtilitiesOwDeploymentRequestOw(value) {
21
+ let isInstance = true;
22
+ isInstance = isInstance && "app_client_id" in value;
23
+ isInstance = isInstance && "app_client_secret" in value;
24
+ isInstance = isInstance && "org_id" in value;
25
+ isInstance = isInstance && "org_passphrase" in value;
26
+ return isInstance;
27
+ }
28
+ exports.instanceOfUtilitiesOwDeploymentRequestOw = instanceOfUtilitiesOwDeploymentRequestOw;
29
+ function UtilitiesOwDeploymentRequestOwFromJSON(json) {
30
+ return UtilitiesOwDeploymentRequestOwFromJSONTyped(json, false);
31
+ }
32
+ exports.UtilitiesOwDeploymentRequestOwFromJSON = UtilitiesOwDeploymentRequestOwFromJSON;
33
+ function UtilitiesOwDeploymentRequestOwFromJSONTyped(json, ignoreDiscriminator) {
34
+ if ((json === undefined) || (json === null)) {
35
+ return json;
36
+ }
37
+ return {
38
+ 'app_client_id': json['app_client_id'],
39
+ 'app_client_secret': json['app_client_secret'],
40
+ 'org_id': json['org_id'],
41
+ 'org_passphrase': json['org_passphrase'],
42
+ };
43
+ }
44
+ exports.UtilitiesOwDeploymentRequestOwFromJSONTyped = UtilitiesOwDeploymentRequestOwFromJSONTyped;
45
+ function UtilitiesOwDeploymentRequestOwToJSON(value) {
46
+ if (value === undefined) {
47
+ return undefined;
48
+ }
49
+ if (value === null) {
50
+ return null;
51
+ }
52
+ return {
53
+ 'app_client_id': value.app_client_id,
54
+ 'app_client_secret': value.app_client_secret,
55
+ 'org_id': value.org_id,
56
+ 'org_passphrase': value.org_passphrase,
57
+ };
58
+ }
59
+ exports.UtilitiesOwDeploymentRequestOwToJSON = UtilitiesOwDeploymentRequestOwToJSON;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * SVX API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 3.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UtilitiesPaginatedDeploymentsToJSON = exports.UtilitiesPaginatedDeploymentsFromJSONTyped = exports.UtilitiesPaginatedDeploymentsFromJSON = exports.instanceOfUtilitiesPaginatedDeployments = void 0;
17
+ const UtilitiesDeployment_1 = require("./UtilitiesDeployment");
18
+ const UtilitiesPaginationMeta_1 = require("./UtilitiesPaginationMeta");
19
+ /**
20
+ * Check if a given object implements the UtilitiesPaginatedDeployments interface.
21
+ */
22
+ function instanceOfUtilitiesPaginatedDeployments(value) {
23
+ let isInstance = true;
24
+ isInstance = isInstance && "deployments" in value;
25
+ isInstance = isInstance && "meta" in value;
26
+ return isInstance;
27
+ }
28
+ exports.instanceOfUtilitiesPaginatedDeployments = instanceOfUtilitiesPaginatedDeployments;
29
+ function UtilitiesPaginatedDeploymentsFromJSON(json) {
30
+ return UtilitiesPaginatedDeploymentsFromJSONTyped(json, false);
31
+ }
32
+ exports.UtilitiesPaginatedDeploymentsFromJSON = UtilitiesPaginatedDeploymentsFromJSON;
33
+ function UtilitiesPaginatedDeploymentsFromJSONTyped(json, ignoreDiscriminator) {
34
+ if ((json === undefined) || (json === null)) {
35
+ return json;
36
+ }
37
+ return {
38
+ 'deployments': (json['deployments'].map(UtilitiesDeployment_1.UtilitiesDeploymentFromJSON)),
39
+ 'meta': (0, UtilitiesPaginationMeta_1.UtilitiesPaginationMetaFromJSON)(json['meta']),
40
+ };
41
+ }
42
+ exports.UtilitiesPaginatedDeploymentsFromJSONTyped = UtilitiesPaginatedDeploymentsFromJSONTyped;
43
+ function UtilitiesPaginatedDeploymentsToJSON(value) {
44
+ if (value === undefined) {
45
+ return undefined;
46
+ }
47
+ if (value === null) {
48
+ return null;
49
+ }
50
+ return {
51
+ 'deployments': (value.deployments.map(UtilitiesDeployment_1.UtilitiesDeploymentToJSON)),
52
+ 'meta': (0, UtilitiesPaginationMeta_1.UtilitiesPaginationMetaToJSON)(value.meta),
53
+ };
54
+ }
55
+ exports.UtilitiesPaginatedDeploymentsToJSON = UtilitiesPaginatedDeploymentsToJSON;
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * SVX API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 3.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UtilitiesPaginationMetaToJSON = exports.UtilitiesPaginationMetaFromJSONTyped = exports.UtilitiesPaginationMetaFromJSON = exports.instanceOfUtilitiesPaginationMeta = void 0;
17
+ /**
18
+ * Check if a given object implements the UtilitiesPaginationMeta interface.
19
+ */
20
+ function instanceOfUtilitiesPaginationMeta(value) {
21
+ let isInstance = true;
22
+ isInstance = isInstance && "order" in value;
23
+ isInstance = isInstance && "order_by" in value;
24
+ isInstance = isInstance && "order_from_params" in value;
25
+ isInstance = isInstance && "page" in value;
26
+ isInstance = isInstance && "page_count" in value;
27
+ isInstance = isInstance && "per_page" in value;
28
+ isInstance = isInstance && "per_page_from_params" in value;
29
+ isInstance = isInstance && "records_count" in value;
30
+ return isInstance;
31
+ }
32
+ exports.instanceOfUtilitiesPaginationMeta = instanceOfUtilitiesPaginationMeta;
33
+ function UtilitiesPaginationMetaFromJSON(json) {
34
+ return UtilitiesPaginationMetaFromJSONTyped(json, false);
35
+ }
36
+ exports.UtilitiesPaginationMetaFromJSON = UtilitiesPaginationMetaFromJSON;
37
+ function UtilitiesPaginationMetaFromJSONTyped(json, ignoreDiscriminator) {
38
+ if ((json === undefined) || (json === null)) {
39
+ return json;
40
+ }
41
+ return {
42
+ 'order': json['order'],
43
+ 'order_by': json['order_by'],
44
+ 'order_from_params': json['order_from_params'],
45
+ 'page': json['page'],
46
+ 'page_count': json['page_count'],
47
+ 'per_page': json['per_page'],
48
+ 'per_page_from_params': json['per_page_from_params'],
49
+ 'records_count': json['records_count'],
50
+ };
51
+ }
52
+ exports.UtilitiesPaginationMetaFromJSONTyped = UtilitiesPaginationMetaFromJSONTyped;
53
+ function UtilitiesPaginationMetaToJSON(value) {
54
+ if (value === undefined) {
55
+ return undefined;
56
+ }
57
+ if (value === null) {
58
+ return null;
59
+ }
60
+ return {
61
+ 'order': value.order,
62
+ 'order_by': value.order_by,
63
+ 'order_from_params': value.order_from_params,
64
+ 'page': value.page,
65
+ 'page_count': value.page_count,
66
+ 'per_page': value.per_page,
67
+ 'per_page_from_params': value.per_page_from_params,
68
+ 'records_count': value.records_count,
69
+ };
70
+ }
71
+ exports.UtilitiesPaginationMetaToJSON = UtilitiesPaginationMetaToJSON;
@@ -227,7 +227,13 @@ __exportStar(require("./UtilitiesBlobPublicInfo"), exports);
227
227
  __exportStar(require("./UtilitiesBlobPublicInfoResponse"), exports);
228
228
  __exportStar(require("./UtilitiesBlobUploadUrlRequest"), exports);
229
229
  __exportStar(require("./UtilitiesComponent"), exports);
230
+ __exportStar(require("./UtilitiesDeployment"), exports);
231
+ __exportStar(require("./UtilitiesDeploymentWithoutLog"), exports);
230
232
  __exportStar(require("./UtilitiesError"), exports);
233
+ __exportStar(require("./UtilitiesOwDeploymentRequest"), exports);
234
+ __exportStar(require("./UtilitiesOwDeploymentRequestOw"), exports);
235
+ __exportStar(require("./UtilitiesPaginatedDeployments"), exports);
236
+ __exportStar(require("./UtilitiesPaginationMeta"), exports);
231
237
  __exportStar(require("./VCCnfDto"), exports);
232
238
  __exportStar(require("./VCComponent"), exports);
233
239
  __exportStar(require("./VCConstraintsDto"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meeco/svx-api-sdk",
3
- "version": "1.0.0-develop.20250908173109.36b8444",
3
+ "version": "1.0.0-develop.20251009115620.9b58090",
4
4
  "description": "Meeco SVX API SDK",
5
5
  "types": "./lib/types/index.d.ts",
6
6
  "browser": "./lib/esm/index.js",