Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/permissions-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/permissions-client",
"version": "0.16.3",
"version": "0.16.4",
"description": "Client library for epilot Permissions API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions clients/permissions-client/src/openapi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ declare namespace Components {
* 123
*/
partner_org_id?: string;
/**
* Indicates whether this role was created by a vendor organization on behalf of the partner organization.
*/
vendor_created?: boolean;
/**
* List of grants (permissions) applied to the role
*/
Expand Down Expand Up @@ -537,6 +541,10 @@ declare namespace Components {
* Maximum number of users that can be assigned this role (vendor-enforced limit, can only be set via internal auth)
*/
vendor_enforced_user_limit?: number;
/**
* Indicates whether this role was created by a vendor organization on behalf of the partner organization.
*/
vendor_created?: boolean;
}
/**
* A role that is applied to end customers and installers using the Portals
Expand Down
8 changes: 8 additions & 0 deletions clients/permissions-client/src/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1147,6 +1147,10 @@
"type": "integer",
"readOnly": true,
"description": "Maximum number of users that can be assigned this role (vendor-enforced limit, can only be set via internal auth)"
},
"vendor_created": {
"type": "boolean",
"description": "Indicates whether this role was created by a vendor organization on behalf of the partner organization."
}
}
}
Expand Down Expand Up @@ -1439,6 +1443,10 @@
"$ref": "#/components/schemas/OrganizationId"
}
]
},
"vendor_created": {
"type": "boolean",
"description": "Indicates whether this role was created by a vendor organization on behalf of the partner organization."
}
}
},
Expand Down
Loading