triangle-types 1.0.146 → 1.0.147

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.
@@ -1,4 +1,4 @@
1
- declare const tenant_provision_type_ids: readonly ["supreme_admin", "scout", "prism", "tag"];
1
+ declare const tenant_provision_type_ids: readonly ["supreme_admin", "scout", "prism", "tag", "target"];
2
2
  export type TenantProvisionTypeID = typeof tenant_provision_type_ids[number];
3
3
  export declare function is_tenant_provision_type_id(tenant_provision_type_id: any): tenant_provision_type_id is TenantProvisionTypeID;
4
4
  export declare class TenantProvision {
@@ -1,4 +1,4 @@
1
- const tenant_provision_type_ids = ["supreme_admin", "scout", "prism", "tag"];
1
+ const tenant_provision_type_ids = ["supreme_admin", "scout", "prism", "tag", "target"];
2
2
  export function is_tenant_provision_type_id(tenant_provision_type_id) {
3
3
  return tenant_provision_type_ids.includes(tenant_provision_type_id);
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triangle-types",
3
- "version": "1.0.146",
3
+ "version": "1.0.147",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {
@@ -1,4 +1,4 @@
1
- const tenant_provision_type_ids = ["supreme_admin", "scout", "prism", "tag"] as const
1
+ const tenant_provision_type_ids = ["supreme_admin", "scout", "prism", "tag", "target"] as const
2
2
 
3
3
  export type TenantProvisionTypeID = typeof tenant_provision_type_ids[number]
4
4