@azure/arm-changes 1.1.2-alpha.20260304.1 → 1.1.2-alpha.20260305.1
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/dist/commonjs/changesClient.js +4 -0
- package/dist/commonjs/index.js +7 -0
- package/dist/commonjs/models/mappers.js +12 -0
- package/dist/commonjs/models/parameters.js +15 -0
- package/dist/commonjs/operations/changes.js +4 -0
- package/dist/commonjs/operations/index.js +4 -0
- package/dist/commonjs/operationsInterfaces/index.js +4 -0
- package/dist/commonjs/pagingHelper.js +5 -0
- package/package.json +3 -3
package/dist/commonjs/index.js
CHANGED
|
@@ -26,3 +26,10 @@ var import_pagingHelper = require("./pagingHelper.js");
|
|
|
26
26
|
__reExport(src_exports, require("./models/index.js"), module.exports);
|
|
27
27
|
var import_changesClient = require("./changesClient.js");
|
|
28
28
|
__reExport(src_exports, require("./operationsInterfaces/index.js"), module.exports);
|
|
29
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
30
|
+
0 && (module.exports = {
|
|
31
|
+
ChangesClient,
|
|
32
|
+
getContinuationToken,
|
|
33
|
+
...require("./models/index.js"),
|
|
34
|
+
...require("./operationsInterfaces/index.js")
|
|
35
|
+
});
|
|
@@ -317,3 +317,15 @@ const ChangeResourceResult = {
|
|
|
317
317
|
}
|
|
318
318
|
}
|
|
319
319
|
};
|
|
320
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
321
|
+
0 && (module.exports = {
|
|
322
|
+
ChangeAttributes,
|
|
323
|
+
ChangeBase,
|
|
324
|
+
ChangeProperties,
|
|
325
|
+
ChangeResourceListResult,
|
|
326
|
+
ChangeResourceResult,
|
|
327
|
+
ErrorAdditionalInfo,
|
|
328
|
+
ErrorDetail,
|
|
329
|
+
ErrorResponse,
|
|
330
|
+
Resource
|
|
331
|
+
});
|
|
@@ -158,3 +158,18 @@ const nextLink = {
|
|
|
158
158
|
},
|
|
159
159
|
skipEncoding: true
|
|
160
160
|
};
|
|
161
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
162
|
+
0 && (module.exports = {
|
|
163
|
+
$host,
|
|
164
|
+
accept,
|
|
165
|
+
apiVersion,
|
|
166
|
+
changeResourceId,
|
|
167
|
+
nextLink,
|
|
168
|
+
resourceGroupName,
|
|
169
|
+
resourceName,
|
|
170
|
+
resourceProviderNamespace,
|
|
171
|
+
resourceType,
|
|
172
|
+
skipToken,
|
|
173
|
+
subscriptionId,
|
|
174
|
+
top
|
|
175
|
+
});
|
|
@@ -15,3 +15,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
15
15
|
var operations_exports = {};
|
|
16
16
|
module.exports = __toCommonJS(operations_exports);
|
|
17
17
|
__reExport(operations_exports, require("./changes.js"), module.exports);
|
|
18
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
19
|
+
0 && (module.exports = {
|
|
20
|
+
...require("./changes.js")
|
|
21
|
+
});
|
|
@@ -15,3 +15,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
15
15
|
var operationsInterfaces_exports = {};
|
|
16
16
|
module.exports = __toCommonJS(operationsInterfaces_exports);
|
|
17
17
|
__reExport(operationsInterfaces_exports, require("./changes.js"), module.exports);
|
|
18
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
19
|
+
0 && (module.exports = {
|
|
20
|
+
...require("./changes.js")
|
|
21
|
+
});
|
|
@@ -36,3 +36,8 @@ function setContinuationToken(page, continuationToken) {
|
|
|
36
36
|
pageInfo.continuationToken = continuationToken;
|
|
37
37
|
pageMap.set(page, pageInfo);
|
|
38
38
|
}
|
|
39
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
40
|
+
0 && (module.exports = {
|
|
41
|
+
getContinuationToken,
|
|
42
|
+
setContinuationToken
|
|
43
|
+
});
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for ChangesClient.",
|
|
6
|
-
"version": "1.1.2-alpha.
|
|
6
|
+
"version": "1.1.2-alpha.20260305.1",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"typescript": "~5.9.3",
|
|
38
38
|
"vitest": "^4.0.8",
|
|
39
39
|
"@azure-tools/test-recorder": "^4.1.1",
|
|
40
|
-
"@azure-tools/test-credential": "^2.1.2",
|
|
41
40
|
"@azure/dev-tool": "^1.0.0",
|
|
42
|
-
"@azure-tools/test-utils-vitest": "^2.0.1"
|
|
41
|
+
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
42
|
+
"@azure-tools/test-credential": "^2.1.2"
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/changes/arm-changes",
|
|
45
45
|
"repository": "github:Azure/azure-sdk-for-js",
|