@azure/arm-graphservices 1.0.2-alpha.20260303.1 → 1.0.2-alpha.20260304.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/graphServices.js +4 -0
- package/dist/commonjs/index.js +7 -0
- package/dist/commonjs/lroImpl.js +4 -0
- package/dist/commonjs/models/index.js +7 -0
- package/dist/commonjs/models/mappers.js +16 -0
- package/dist/commonjs/models/parameters.js +13 -0
- package/dist/commonjs/operations/accounts.js +4 -0
- package/dist/commonjs/operations/index.js +5 -0
- package/dist/commonjs/operations/operations.js +4 -0
- package/dist/commonjs/operationsInterfaces/index.js +5 -0
- package/dist/commonjs/pagingHelper.js +5 -0
- package/package.json +2 -2
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_graphServices = require("./graphServices.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
|
+
GraphServices,
|
|
32
|
+
getContinuationToken,
|
|
33
|
+
...require("./models/index.js"),
|
|
34
|
+
...require("./operationsInterfaces/index.js")
|
|
35
|
+
});
|
package/dist/commonjs/lroImpl.js
CHANGED
|
@@ -46,3 +46,10 @@ var KnownActionType = /* @__PURE__ */ ((KnownActionType2) => {
|
|
|
46
46
|
KnownActionType2["Internal"] = "Internal";
|
|
47
47
|
return KnownActionType2;
|
|
48
48
|
})(KnownActionType || {});
|
|
49
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
50
|
+
0 && (module.exports = {
|
|
51
|
+
KnownActionType,
|
|
52
|
+
KnownCreatedByType,
|
|
53
|
+
KnownOrigin,
|
|
54
|
+
KnownProvisioningState
|
|
55
|
+
});
|
|
@@ -418,3 +418,19 @@ const AccountPatchResource = {
|
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
420
|
};
|
|
421
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
422
|
+
0 && (module.exports = {
|
|
423
|
+
AccountPatchResource,
|
|
424
|
+
AccountResource,
|
|
425
|
+
AccountResourceList,
|
|
426
|
+
AccountResourceProperties,
|
|
427
|
+
AccountResourceSystemData,
|
|
428
|
+
ErrorAdditionalInfo,
|
|
429
|
+
ErrorDetail,
|
|
430
|
+
ErrorResponse,
|
|
431
|
+
Operation,
|
|
432
|
+
OperationDisplay,
|
|
433
|
+
OperationListResult,
|
|
434
|
+
Resource,
|
|
435
|
+
TagUpdate
|
|
436
|
+
});
|
|
@@ -130,3 +130,16 @@ const nextLink = {
|
|
|
130
130
|
},
|
|
131
131
|
skipEncoding: true
|
|
132
132
|
};
|
|
133
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
134
|
+
0 && (module.exports = {
|
|
135
|
+
$host,
|
|
136
|
+
accept,
|
|
137
|
+
accountResource,
|
|
138
|
+
accountResource1,
|
|
139
|
+
apiVersion,
|
|
140
|
+
contentType,
|
|
141
|
+
nextLink,
|
|
142
|
+
resourceGroupName,
|
|
143
|
+
resourceName,
|
|
144
|
+
subscriptionId
|
|
145
|
+
});
|
|
@@ -16,3 +16,8 @@ var operations_exports = {};
|
|
|
16
16
|
module.exports = __toCommonJS(operations_exports);
|
|
17
17
|
__reExport(operations_exports, require("./accounts.js"), module.exports);
|
|
18
18
|
__reExport(operations_exports, require("./operations.js"), module.exports);
|
|
19
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
20
|
+
0 && (module.exports = {
|
|
21
|
+
...require("./accounts.js"),
|
|
22
|
+
...require("./operations.js")
|
|
23
|
+
});
|
|
@@ -16,3 +16,8 @@ var operationsInterfaces_exports = {};
|
|
|
16
16
|
module.exports = __toCommonJS(operationsInterfaces_exports);
|
|
17
17
|
__reExport(operationsInterfaces_exports, require("./accounts.js"), module.exports);
|
|
18
18
|
__reExport(operationsInterfaces_exports, require("./operations.js"), module.exports);
|
|
19
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
20
|
+
0 && (module.exports = {
|
|
21
|
+
...require("./accounts.js"),
|
|
22
|
+
...require("./operations.js")
|
|
23
|
+
});
|
|
@@ -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 GraphServices.",
|
|
6
|
-
"version": "1.0.2-alpha.
|
|
6
|
+
"version": "1.0.2-alpha.20260304.1",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"typescript": "~5.9.3",
|
|
42
42
|
"vitest": "^4.0.8",
|
|
43
43
|
"@azure-tools/test-credential": "^2.1.2",
|
|
44
|
-
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
45
44
|
"@azure-tools/test-recorder": "^4.1.1",
|
|
45
|
+
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
46
46
|
"@azure/dev-tool": "^1.0.0"
|
|
47
47
|
},
|
|
48
48
|
"repository": "github:Azure/azure-sdk-for-js",
|