@pulumi/auth0 3.7.0 → 3.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/auth0",
3
- "version": "3.7.0",
3
+ "version": "3.7.1",
4
4
  "description": "A Pulumi package for creating and managing auth0 cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "auth0",
26
- "version": "3.7.0"
26
+ "version": "3.7.1"
27
27
  }
28
28
  }
package/types/output.d.ts CHANGED
@@ -969,15 +969,15 @@ export interface ClientDefaultOrganization {
969
969
  /**
970
970
  * If set, the `defaultOrganization` will be removed.
971
971
  */
972
- disable?: boolean;
972
+ disable: boolean;
973
973
  /**
974
974
  * Definition of the flow that needs to be configured. Eg. client_credentials
975
975
  */
976
- flows?: string[];
976
+ flows: string[];
977
977
  /**
978
978
  * The unique identifier of the organization
979
979
  */
980
- organizationId?: string;
980
+ organizationId: string;
981
981
  }
982
982
  export interface ClientJwtConfiguration {
983
983
  /**