@azure/arm-features 3.1.2-alpha.20260303.1 → 3.1.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.
@@ -227,3 +227,7 @@ const listOperationsNextOperationSpec = {
227
227
  headerParameters: [Parameters.accept],
228
228
  serializer
229
229
  };
230
+ // Annotate the CommonJS export names for ESM import in node:
231
+ 0 && (module.exports = {
232
+ FeatureClient
233
+ });
@@ -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_featureClient = require("./featureClient.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
+ FeatureClient,
32
+ getContinuationToken,
33
+ ...require("./models/index.js"),
34
+ ...require("./operationsInterfaces/index.js")
35
+ });
@@ -37,3 +37,8 @@ var KnownSubscriptionFeatureRegistrationApprovalType = /* @__PURE__ */ ((KnownSu
37
37
  KnownSubscriptionFeatureRegistrationApprovalType2["AutoApproval"] = "AutoApproval";
38
38
  return KnownSubscriptionFeatureRegistrationApprovalType2;
39
39
  })(KnownSubscriptionFeatureRegistrationApprovalType || {});
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ KnownSubscriptionFeatureRegistrationApprovalType,
43
+ KnownSubscriptionFeatureRegistrationState
44
+ });
@@ -451,3 +451,19 @@ const SubscriptionFeatureRegistration = {
451
451
  }
452
452
  }
453
453
  };
454
+ // Annotate the CommonJS export names for ESM import in node:
455
+ 0 && (module.exports = {
456
+ AuthorizationProfile,
457
+ ErrorDefinition,
458
+ ErrorResponse,
459
+ FeatureOperationsListResult,
460
+ FeatureProperties,
461
+ FeatureResult,
462
+ Operation,
463
+ OperationDisplay,
464
+ OperationListResult,
465
+ ProxyResource,
466
+ SubscriptionFeatureRegistration,
467
+ SubscriptionFeatureRegistrationList,
468
+ SubscriptionFeatureRegistrationProperties
469
+ });
@@ -141,3 +141,17 @@ const subscriptionFeatureRegistrationType = {
141
141
  parameterPath: ["options", "subscriptionFeatureRegistrationType"],
142
142
  mapper: import_mappers.SubscriptionFeatureRegistration
143
143
  };
144
+ // Annotate the CommonJS export names for ESM import in node:
145
+ 0 && (module.exports = {
146
+ $host,
147
+ accept,
148
+ accept1,
149
+ apiVersion,
150
+ contentType,
151
+ featureName,
152
+ nextLink,
153
+ providerNamespace,
154
+ resourceProviderNamespace,
155
+ subscriptionFeatureRegistrationType,
156
+ subscriptionId
157
+ });
@@ -368,3 +368,7 @@ const listNextOperationSpec = {
368
368
  headerParameters: [Parameters.accept],
369
369
  serializer
370
370
  };
371
+ // Annotate the CommonJS export names for ESM import in node:
372
+ 0 && (module.exports = {
373
+ FeaturesImpl
374
+ });
@@ -16,3 +16,8 @@ var operations_exports = {};
16
16
  module.exports = __toCommonJS(operations_exports);
17
17
  __reExport(operations_exports, require("./features.js"), module.exports);
18
18
  __reExport(operations_exports, require("./subscriptionFeatureRegistrations.js"), module.exports);
19
+ // Annotate the CommonJS export names for ESM import in node:
20
+ 0 && (module.exports = {
21
+ ...require("./features.js"),
22
+ ...require("./subscriptionFeatureRegistrations.js")
23
+ });
@@ -373,3 +373,7 @@ const listAllBySubscriptionNextOperationSpec = {
373
373
  headerParameters: [Parameters.accept1],
374
374
  serializer
375
375
  };
376
+ // Annotate the CommonJS export names for ESM import in node:
377
+ 0 && (module.exports = {
378
+ SubscriptionFeatureRegistrationsImpl
379
+ });
@@ -16,3 +16,8 @@ var operationsInterfaces_exports = {};
16
16
  module.exports = __toCommonJS(operationsInterfaces_exports);
17
17
  __reExport(operationsInterfaces_exports, require("./features.js"), module.exports);
18
18
  __reExport(operationsInterfaces_exports, require("./subscriptionFeatureRegistrations.js"), module.exports);
19
+ // Annotate the CommonJS export names for ESM import in node:
20
+ 0 && (module.exports = {
21
+ ...require("./features.js"),
22
+ ...require("./subscriptionFeatureRegistrations.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 FeatureClient.",
6
- "version": "3.1.2-alpha.20260303.1",
6
+ "version": "3.1.2-alpha.20260304.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -37,10 +37,10 @@
37
37
  "rimraf": "^6.1.0",
38
38
  "typescript": "~5.9.3",
39
39
  "vitest": "^4.0.8",
40
+ "@azure-tools/test-credential": "^2.1.2",
40
41
  "@azure-tools/test-recorder": "^4.1.1",
41
42
  "@azure/dev-tool": "^1.0.0",
42
- "@azure-tools/test-utils-vitest": "^2.0.1",
43
- "@azure-tools/test-credential": "^2.1.2"
43
+ "@azure-tools/test-utils-vitest": "^2.0.1"
44
44
  },
45
45
  "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/features/arm-features",
46
46
  "repository": "github:Azure/azure-sdk-for-js",