oci-cims 2.97.0 → 2.98.0

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 (73) hide show
  1. package/lib/client.d.ts +23 -23
  2. package/lib/client.js +23 -128
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/activity-item.d.ts +6 -2
  5. package/lib/model/activity-item.js.map +1 -1
  6. package/lib/model/create-account-item-details.d.ts +1 -0
  7. package/lib/model/create-account-item-details.js.map +1 -1
  8. package/lib/model/create-incident.d.ts +8 -1
  9. package/lib/model/create-incident.js.map +1 -1
  10. package/lib/model/create-limit-item-details.d.ts +4 -1
  11. package/lib/model/create-limit-item-details.js +1 -0
  12. package/lib/model/create-limit-item-details.js.map +1 -1
  13. package/lib/model/create-tech-support-item-details.d.ts +1 -0
  14. package/lib/model/create-tech-support-item-details.js.map +1 -1
  15. package/lib/model/create-user-details.d.ts +8 -1
  16. package/lib/model/create-user-details.js.map +1 -1
  17. package/lib/model/incident-resource-type.d.ts +5 -1
  18. package/lib/model/incident-resource-type.js +4 -4
  19. package/lib/model/incident-resource-type.js.map +1 -1
  20. package/lib/model/incident-summary.d.ts +8 -1
  21. package/lib/model/incident-summary.js.map +1 -1
  22. package/lib/model/incident.d.ts +8 -1
  23. package/lib/model/incident.js.map +1 -1
  24. package/lib/model/index.d.ts +6 -0
  25. package/lib/model/index.js +8 -1
  26. package/lib/model/index.js.map +1 -1
  27. package/lib/model/item.d.ts +1 -1
  28. package/lib/model/limit-item.d.ts +5 -0
  29. package/lib/model/limit-item.js +1 -0
  30. package/lib/model/limit-item.js.map +1 -1
  31. package/lib/model/problem-type.d.ts +8 -1
  32. package/lib/model/problem-type.js +8 -1
  33. package/lib/model/problem-type.js.map +1 -1
  34. package/lib/model/service-categories.d.ts +4 -5
  35. package/lib/model/service-categories.js +34 -2
  36. package/lib/model/service-categories.js.map +1 -1
  37. package/lib/model/service-category.d.ts +4 -0
  38. package/lib/model/service-category.js.map +1 -1
  39. package/lib/model/sub-categories.d.ts +46 -0
  40. package/lib/model/sub-categories.js +67 -0
  41. package/lib/model/sub-categories.js.map +1 -0
  42. package/lib/model/sub-components.d.ts +37 -0
  43. package/lib/model/sub-components.js +35 -0
  44. package/lib/model/sub-components.js.map +1 -0
  45. package/lib/model/subscription-info.d.ts +32 -0
  46. package/lib/model/subscription-info.js +35 -0
  47. package/lib/model/subscription-info.js.map +1 -0
  48. package/lib/model/ticket.d.ts +2 -2
  49. package/lib/model/update-incident.d.ts +8 -1
  50. package/lib/model/update-incident.js.map +1 -1
  51. package/lib/model/user.d.ts +8 -1
  52. package/lib/model/user.js.map +1 -1
  53. package/lib/request/create-incident-request.d.ts +4 -0
  54. package/lib/request/get-incident-request.d.ts +11 -5
  55. package/lib/request/index.d.ts +0 -4
  56. package/lib/request/list-incident-resource-types-request.d.ts +7 -1
  57. package/lib/request/list-incidents-request.d.ts +7 -1
  58. package/lib/request/update-incident-request.d.ts +11 -5
  59. package/lib/request/validate-user-request.d.ts +7 -1
  60. package/lib/response/index.d.ts +0 -4
  61. package/package.json +3 -3
  62. package/lib/request/get-csi-number-request.d.ts +0 -54
  63. package/lib/request/get-csi-number-request.js +0 -15
  64. package/lib/request/get-csi-number-request.js.map +0 -1
  65. package/lib/request/get-status-request.d.ts +0 -30
  66. package/lib/request/get-status-request.js +0 -15
  67. package/lib/request/get-status-request.js.map +0 -1
  68. package/lib/response/get-csi-number-response.d.ts +0 -22
  69. package/lib/response/get-csi-number-response.js +0 -15
  70. package/lib/response/get-csi-number-response.js.map +0 -1
  71. package/lib/response/get-status-response.d.ts +0 -23
  72. package/lib/response/get-status-response.js +0 -15
  73. package/lib/response/get-status-response.js.map +0 -1
@@ -26,6 +26,8 @@ export interface CreateIncidentRequest extends common.BaseRequest {
26
26
  "opcRequestId"?: string;
27
27
  /**
28
28
  * User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
29
+ * User OCID is mandatory for OCI Users and optional for Multicloud users.
30
+ *
29
31
  */
30
32
  "ocid"?: string;
31
33
  /**
@@ -46,6 +48,8 @@ export interface CreateIncidentRequest extends common.BaseRequest {
46
48
  "idtoken"?: string;
47
49
  /**
48
50
  * The OCID of identity domain.
51
+ * DomainID is mandatory if the user is part of Non Default Identity domain.
52
+ *
49
53
  */
50
54
  "domainid"?: string;
51
55
  }
@@ -19,26 +19,30 @@ export interface GetIncidentRequest extends common.BaseRequest {
19
19
  * Unique identifier for the support ticket.
20
20
  */
21
21
  "incidentKey": string;
22
+ /**
23
+ * The OCID of the tenancy.
24
+ */
25
+ "compartmentId": string;
22
26
  /**
23
27
  * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
24
28
  */
25
29
  "opcRequestId"?: string;
26
30
  /**
27
- * The Customer Support Identifier (CSI) associated with the support account.
31
+ * The Customer Support Identifier (CSI) number associated with the support account.
32
+ * The CSI is required for technical support tickets and optional for limits and billing tickets.
33
+ *
28
34
  */
29
35
  "csi"?: string;
30
36
  /**
31
37
  * User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
38
+ * User OCID is mandatory for OCI Users and optional for Multicloud users.
39
+ *
32
40
  */
33
41
  "ocid"?: string;
34
42
  /**
35
43
  * The region of the tenancy.
36
44
  */
37
45
  "homeregion"?: string;
38
- /**
39
- * The OCID of the tenancy.
40
- */
41
- "compartmentId"?: string;
42
46
  /**
43
47
  * The kind of support request.
44
48
  */
@@ -57,6 +61,8 @@ export interface GetIncidentRequest extends common.BaseRequest {
57
61
  "idtoken"?: string;
58
62
  /**
59
63
  * The OCID of identity domain.
64
+ * DomainID is mandatory if the user is part of Non Default Identity domain.
65
+ *
60
66
  */
61
67
  "domainid"?: string;
62
68
  }
@@ -18,12 +18,8 @@ and you need to register your Customer Support Identifier (CSI) with My Oracle S
18
18
  */
19
19
  import * as CreateIncidentRequest from "./create-incident-request";
20
20
  export import CreateIncidentRequest = CreateIncidentRequest.CreateIncidentRequest;
21
- import * as GetCsiNumberRequest from "./get-csi-number-request";
22
- export import GetCsiNumberRequest = GetCsiNumberRequest.GetCsiNumberRequest;
23
21
  import * as GetIncidentRequest from "./get-incident-request";
24
22
  export import GetIncidentRequest = GetIncidentRequest.GetIncidentRequest;
25
- import * as GetStatusRequest from "./get-status-request";
26
- export import GetStatusRequest = GetStatusRequest.GetStatusRequest;
27
23
  import * as ListIncidentResourceTypesRequest from "./list-incident-resource-types-request";
28
24
  export import ListIncidentResourceTypesRequest = ListIncidentResourceTypesRequest.ListIncidentResourceTypesRequest;
29
25
  import * as ListIncidentsRequest from "./list-incidents-request";
@@ -51,11 +51,15 @@ export interface ListIncidentResourceTypesRequest extends common.BaseRequest {
51
51
  */
52
52
  "name"?: string;
53
53
  /**
54
- * The Customer Support Identifier (CSI) associated with the support account.
54
+ * The Customer Support Identifier (CSI) number associated with the support account.
55
+ * The CSI is required for technical support tickets and optional for limits and billing tickets.
56
+ *
55
57
  */
56
58
  "csi"?: string;
57
59
  /**
58
60
  * User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
61
+ * User OCID is mandatory for OCI Users and optional for Multicloud users.
62
+ *
59
63
  */
60
64
  "ocid"?: string;
61
65
  /**
@@ -64,6 +68,8 @@ export interface ListIncidentResourceTypesRequest extends common.BaseRequest {
64
68
  "homeregion"?: string;
65
69
  /**
66
70
  * The OCID of identity domain.
71
+ * DomainID is mandatory if the user is part of Non Default Identity domain.
72
+ *
67
73
  */
68
74
  "domainid"?: string;
69
75
  }
@@ -21,7 +21,9 @@ export interface ListIncidentsRequest extends common.BaseRequest {
21
21
  */
22
22
  "compartmentId": string;
23
23
  /**
24
- * The Customer Support Identifier (CSI) associated with the support account.
24
+ * The Customer Support Identifier (CSI) number associated with the support account.
25
+ * The CSI is required for technical support tickets and optional for limits and billing tickets.
26
+ *
25
27
  */
26
28
  "csi"?: string;
27
29
  /**
@@ -52,6 +54,8 @@ export interface ListIncidentsRequest extends common.BaseRequest {
52
54
  "opcRequestId"?: string;
53
55
  /**
54
56
  * User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
57
+ * User OCID is mandatory for OCI Users and optional for Multicloud users.
58
+ *
55
59
  */
56
60
  "ocid"?: string;
57
61
  /**
@@ -76,6 +80,8 @@ export interface ListIncidentsRequest extends common.BaseRequest {
76
80
  "idtoken"?: string;
77
81
  /**
78
82
  * The OCID of identity domain.
83
+ * DomainID is mandatory if the user is part of Non Default Identity domain.
84
+ *
79
85
  */
80
86
  "domainid"?: string;
81
87
  }
@@ -25,23 +25,27 @@ export interface UpdateIncidentRequest extends common.BaseRequest {
25
25
  */
26
26
  "updateIncidentDetails": model.UpdateIncident;
27
27
  /**
28
- * The Customer Support Identifier (CSI) associated with the support account.
28
+ * The OCID of the tenancy.
29
+ */
30
+ "compartmentId": string;
31
+ /**
32
+ * The Customer Support Identifier (CSI) number associated with the support account.
33
+ * The CSI is required for technical support tickets and optional for limits and billing tickets.
34
+ *
29
35
  */
30
36
  "csi"?: string;
31
37
  /**
32
38
  * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
33
39
  */
34
40
  "opcRequestId"?: string;
35
- /**
36
- * The OCID of the tenancy.
37
- */
38
- "compartmentId"?: string;
39
41
  /**
40
42
  * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match} parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.
41
43
  */
42
44
  "ifMatch"?: string;
43
45
  /**
44
46
  * User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
47
+ * User OCID is mandatory for OCI Users and optional for Multicloud users.
48
+ *
45
49
  */
46
50
  "ocid"?: string;
47
51
  /**
@@ -62,6 +66,8 @@ export interface UpdateIncidentRequest extends common.BaseRequest {
62
66
  "idtoken"?: string;
63
67
  /**
64
68
  * The OCID of identity domain.
69
+ * DomainID is mandatory if the user is part of Non Default Identity domain.
70
+ *
65
71
  */
66
72
  "domainid"?: string;
67
73
  }
@@ -17,7 +17,9 @@ import common = require("oci-common");
17
17
  */
18
18
  export interface ValidateUserRequest extends common.BaseRequest {
19
19
  /**
20
- * The Customer Support Identifier (CSI) associated with the support account.
20
+ * The Customer Support Identifier (CSI) number associated with the support account.
21
+ * The CSI is required for technical support tickets and optional for limits and billing tickets.
22
+ *
21
23
  */
22
24
  "csi"?: string;
23
25
  /**
@@ -30,6 +32,8 @@ export interface ValidateUserRequest extends common.BaseRequest {
30
32
  "problemType"?: model.ProblemType;
31
33
  /**
32
34
  * User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
35
+ * User OCID is mandatory for OCI Users and optional for Multicloud users.
36
+ *
33
37
  */
34
38
  "ocid"?: string;
35
39
  /**
@@ -50,6 +54,8 @@ export interface ValidateUserRequest extends common.BaseRequest {
50
54
  "idtoken"?: string;
51
55
  /**
52
56
  * The OCID of identity domain.
57
+ * DomainID is mandatory if the user is part of Non Default Identity domain.
58
+ *
53
59
  */
54
60
  "domainid"?: string;
55
61
  }
@@ -18,12 +18,8 @@ and you need to register your Customer Support Identifier (CSI) with My Oracle S
18
18
  */
19
19
  import * as CreateIncidentResponse from "./create-incident-response";
20
20
  export import CreateIncidentResponse = CreateIncidentResponse.CreateIncidentResponse;
21
- import * as GetCsiNumberResponse from "./get-csi-number-response";
22
- export import GetCsiNumberResponse = GetCsiNumberResponse.GetCsiNumberResponse;
23
21
  import * as GetIncidentResponse from "./get-incident-response";
24
22
  export import GetIncidentResponse = GetIncidentResponse.GetIncidentResponse;
25
- import * as GetStatusResponse from "./get-status-response";
26
- export import GetStatusResponse = GetStatusResponse.GetStatusResponse;
27
23
  import * as ListIncidentResourceTypesResponse from "./list-incident-resource-types-response";
28
24
  export import ListIncidentResourceTypesResponse = ListIncidentResourceTypesResponse.ListIncidentResourceTypesResponse;
29
25
  import * as ListIncidentsResponse from "./list-incidents-response";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-cims",
3
- "version": "2.97.0",
3
+ "version": "2.98.0",
4
4
  "description": "OCI NodeJS client for Cims ",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "license": "(UPL-1.0 OR Apache-2.0)",
17
17
  "dependencies": {
18
- "oci-common": "2.97.0",
19
- "oci-workrequests": "2.97.0"
18
+ "oci-common": "2.98.0",
19
+ "oci-workrequests": "2.98.0"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"
@@ -1,54 +0,0 @@
1
- /**
2
- *
3
- *
4
- * OpenAPI spec version: 20181231
5
- *
6
- *
7
- * NOTE: This class is auto generated by OracleSDKGenerator.
8
- * Do not edit the class manually.
9
- *
10
- * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
11
- * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
- */
13
- import common = require("oci-common");
14
- /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/cims/GetCsiNumber.ts.html |here} to see how to use GetCsiNumberRequest.
16
- */
17
- export interface GetCsiNumberRequest extends common.BaseRequest {
18
- /**
19
- * Tenancy Ocid in oracle cloud Infrastructure
20
- */
21
- "tenantId": string;
22
- /**
23
- * Home region of the customer which is part of oracle cloud infrastructure regions
24
- */
25
- "region": string;
26
- /**
27
- * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
28
- */
29
- "opcRequestId"?: string;
30
- /**
31
- * User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
32
- */
33
- "ocid"?: string;
34
- /**
35
- * The region of the tenancy.
36
- */
37
- "homeregion"?: string;
38
- /**
39
- * Token type that determine which cloud provider the request come from.
40
- */
41
- "bearertokentype"?: string;
42
- /**
43
- * Token that provided by multi cloud provider, which help to validate the email.
44
- */
45
- "bearertoken"?: string;
46
- /**
47
- * IdToken that provided by multi cloud provider, which help to validate the email.
48
- */
49
- "idtoken"?: string;
50
- /**
51
- * The OCID of identity domain.
52
- */
53
- "domainid"?: string;
54
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /**
3
- *
4
- *
5
- * OpenAPI spec version: 20181231
6
- *
7
- *
8
- * NOTE: This class is auto generated by OracleSDKGenerator.
9
- * Do not edit the class manually.
10
- *
11
- * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
12
- * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
- */
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- //# sourceMappingURL=get-csi-number-request.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-csi-number-request.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/request/get-csi-number-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -1,30 +0,0 @@
1
- /**
2
- *
3
- *
4
- * OpenAPI spec version: 20181231
5
- *
6
- *
7
- * NOTE: This class is auto generated by OracleSDKGenerator.
8
- * Do not edit the class manually.
9
- *
10
- * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
11
- * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
- */
13
- import common = require("oci-common");
14
- /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/cims/GetStatus.ts.html |here} to see how to use GetStatusRequest.
16
- */
17
- export interface GetStatusRequest extends common.BaseRequest {
18
- /**
19
- * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
20
- */
21
- "opcRequestId"?: string;
22
- /**
23
- * User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
24
- */
25
- "ocid"?: string;
26
- /**
27
- * The region of the tenancy.
28
- */
29
- "homeregion"?: string;
30
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /**
3
- *
4
- *
5
- * OpenAPI spec version: 20181231
6
- *
7
- *
8
- * NOTE: This class is auto generated by OracleSDKGenerator.
9
- * Do not edit the class manually.
10
- *
11
- * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
12
- * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
- */
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- //# sourceMappingURL=get-status-request.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-status-request.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/request/get-status-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -1,22 +0,0 @@
1
- /**
2
- *
3
- *
4
- * OpenAPI spec version: 20181231
5
- *
6
- *
7
- * NOTE: This class is auto generated by OracleSDKGenerator.
8
- * Do not edit the class manually.
9
- *
10
- * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
11
- * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
- */
13
- export interface GetCsiNumberResponse {
14
- /**
15
- * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
16
- */
17
- "opcRequestId": string;
18
- /**
19
- * The returned string instance.
20
- */
21
- "value": string;
22
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /**
3
- *
4
- *
5
- * OpenAPI spec version: 20181231
6
- *
7
- *
8
- * NOTE: This class is auto generated by OracleSDKGenerator.
9
- * Do not edit the class manually.
10
- *
11
- * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
12
- * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
- */
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- //# sourceMappingURL=get-csi-number-response.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-csi-number-response.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/response/get-csi-number-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -1,23 +0,0 @@
1
- /**
2
- *
3
- *
4
- * OpenAPI spec version: 20181231
5
- *
6
- *
7
- * NOTE: This class is auto generated by OracleSDKGenerator.
8
- * Do not edit the class manually.
9
- *
10
- * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
11
- * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
- */
13
- import * as model from "../model";
14
- export interface GetStatusResponse {
15
- /**
16
- * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
17
- */
18
- "opcRequestId": string;
19
- /**
20
- * The returned model.Status instance.
21
- */
22
- "status": model.Status;
23
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /**
3
- *
4
- *
5
- * OpenAPI spec version: 20181231
6
- *
7
- *
8
- * NOTE: This class is auto generated by OracleSDKGenerator.
9
- * Do not edit the class manually.
10
- *
11
- * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
12
- * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
- */
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- //# sourceMappingURL=get-status-response.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-status-response.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/response/get-status-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}