@distilled.cloud/azure 0.16.8 → 0.17.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@distilled.cloud/azure",
3
- "version": "0.16.8",
3
+ "version": "0.17.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/alchemy-run/distilled",
@@ -73,8 +73,7 @@
73
73
  "specs:update": "git -C specs/azure-rest-api-specs fetch && git -C specs/azure-rest-api-specs checkout main && git -C specs/azure-rest-api-specs pull"
74
74
  },
75
75
  "dependencies": {
76
- "@distilled.cloud/core": "0.16.8",
77
- "effect": ">=4.0.0-beta.60 || >=4.0.0"
76
+ "@distilled.cloud/core": "0.17.0"
78
77
  },
79
78
  "devDependencies": {
80
79
  "@types/bun": "^1.3.0",
@@ -3884,7 +3884,7 @@ export type OperationsListOutput = typeof OperationsListOutput.Type;
3884
3884
 
3885
3885
  // The operation
3886
3886
  /**
3887
- * List the operations for the provider
3887
+ * List all available Microsoft.AzureStackHCI provider operations
3888
3888
  *
3889
3889
  * @param api-version - The API version to use for this operation.
3890
3890
  */
@@ -3636,19 +3636,25 @@ export type OperationsListInput = typeof OperationsListInput.Type;
3636
3636
 
3637
3637
  // Output Schema
3638
3638
  export const OperationsListOutput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
3639
- value: Schema.Array(
3640
- Schema.Struct({
3641
- origin: Schema.optional(Schema.String),
3642
- name: Schema.optional(Schema.String),
3643
- display: Schema.optional(
3644
- Schema.Struct({
3645
- operation: Schema.optional(Schema.String),
3646
- resource: Schema.optional(Schema.String),
3647
- description: Schema.optional(Schema.String),
3648
- provider: Schema.optional(Schema.String),
3649
- }),
3650
- ),
3651
- }),
3639
+ value: Schema.optional(
3640
+ Schema.Array(
3641
+ Schema.Struct({
3642
+ name: Schema.optional(Schema.String),
3643
+ isDataAction: Schema.optional(Schema.Boolean),
3644
+ display: Schema.optional(
3645
+ Schema.Struct({
3646
+ provider: Schema.optional(Schema.String),
3647
+ resource: Schema.optional(Schema.String),
3648
+ operation: Schema.optional(Schema.String),
3649
+ description: Schema.optional(Schema.String),
3650
+ }),
3651
+ ),
3652
+ origin: Schema.optional(
3653
+ Schema.Literals(["user", "system", "user,system"]),
3654
+ ),
3655
+ actionType: Schema.optional(Schema.Literals(["Internal"])),
3656
+ }),
3657
+ ),
3652
3658
  ),
3653
3659
  nextLink: Schema.optional(Schema.String),
3654
3660
  });
@@ -3656,7 +3662,7 @@ export type OperationsListOutput = typeof OperationsListOutput.Type;
3656
3662
 
3657
3663
  // The operation
3658
3664
  /**
3659
- * Gets a list of operations.
3665
+ * List the operations for the provider
3660
3666
  *
3661
3667
  * @param api-version - The API version to use for this operation.
3662
3668
  */
@@ -1434,7 +1434,7 @@ export type OperationsListOutput = typeof OperationsListOutput.Type;
1434
1434
 
1435
1435
  // The operation
1436
1436
  /**
1437
- * Lists all of the available Microsoft.Marketplace REST API operations.
1437
+ * List the operations for the provider
1438
1438
  *
1439
1439
  * @param api-version - The API version to use for this operation.
1440
1440
  */
@@ -10991,9 +10991,9 @@ export const ManagementLocksListByScope = /*@__PURE__*/ /*#__PURE__*/ API.make(
10991
10991
  }),
10992
10992
  );
10993
10993
  // Input Schema
10994
- export const OperationsListInput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
10995
- "api-version": Schema.String,
10996
- }).pipe(
10994
+ export const OperationsListInput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct(
10995
+ {},
10996
+ ).pipe(
10997
10997
  T.Http({ method: "GET", path: "/providers/Microsoft.Resources/operations" }),
10998
10998
  );
10999
10999
  export type OperationsListInput = typeof OperationsListInput.Type;
@@ -11004,7 +11004,6 @@ export const OperationsListOutput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
11004
11004
  Schema.Array(
11005
11005
  Schema.Struct({
11006
11006
  name: Schema.optional(Schema.String),
11007
- isDataAction: Schema.optional(Schema.Boolean),
11008
11007
  display: Schema.optional(
11009
11008
  Schema.Struct({
11010
11009
  provider: Schema.optional(Schema.String),
@@ -11013,10 +11012,6 @@ export const OperationsListOutput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
11013
11012
  description: Schema.optional(Schema.String),
11014
11013
  }),
11015
11014
  ),
11016
- origin: Schema.optional(
11017
- Schema.Literals(["user", "system", "user,system"]),
11018
- ),
11019
- actionType: Schema.optional(Schema.Literals(["Internal"])),
11020
11015
  }),
11021
11016
  ),
11022
11017
  ),
@@ -11026,9 +11021,7 @@ export type OperationsListOutput = typeof OperationsListOutput.Type;
11026
11021
 
11027
11022
  // The operation
11028
11023
  /**
11029
- * List the operations for the provider
11030
- *
11031
- * @param api-version - The API version to use for this operation.
11024
+ * Lists all of the available Microsoft.Resources REST API operations.
11032
11025
  */
11033
11026
  export const OperationsList = /*@__PURE__*/ /*#__PURE__*/ API.make(() => ({
11034
11027
  inputSchema: OperationsListInput,