@waldur/admin 8.0.9-dev.0 → 8.0.9-dev.2

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.
@@ -898,7 +898,7 @@ export type ChecklistRequest = {
898
898
  */
899
899
  checklist_type?: ChecklistTypeEnum;
900
900
  };
901
- export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent';
901
+ export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent' | 'workflow_step';
902
902
  export type CircuitBreakerConfig = {
903
903
  /**
904
904
  * Number of failures before opening circuit
@@ -1079,6 +1079,7 @@ export type ConstanceSettings = {
1079
1079
  SHORT_PAGE_TITLE?: string;
1080
1080
  FULL_PAGE_TITLE?: string;
1081
1081
  PROJECT_END_DATE_MANDATORY?: boolean;
1082
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
1082
1083
  ENABLE_ORDER_START_DATE?: boolean;
1083
1084
  BRAND_COLOR?: string;
1084
1085
  HERO_LINK_LABEL?: string;
@@ -1347,6 +1348,7 @@ export type ConstanceSettingsRequest = {
1347
1348
  SHORT_PAGE_TITLE?: string;
1348
1349
  FULL_PAGE_TITLE?: string;
1349
1350
  PROJECT_END_DATE_MANDATORY?: boolean;
1351
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
1350
1352
  ENABLE_ORDER_START_DATE?: boolean;
1351
1353
  BRAND_COLOR?: string;
1352
1354
  HERO_LINK_LABEL?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waldur/admin",
3
- "version": "8.0.9-dev.0",
3
+ "version": "8.0.9-dev.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
package/src/types.gen.ts CHANGED
@@ -944,7 +944,7 @@ export type ChecklistRequest = {
944
944
  checklist_type?: ChecklistTypeEnum;
945
945
  };
946
946
 
947
- export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent';
947
+ export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent' | 'workflow_step';
948
948
 
949
949
  export type CircuitBreakerConfig = {
950
950
  /**
@@ -1135,6 +1135,7 @@ export type ConstanceSettings = {
1135
1135
  SHORT_PAGE_TITLE?: string;
1136
1136
  FULL_PAGE_TITLE?: string;
1137
1137
  PROJECT_END_DATE_MANDATORY?: boolean;
1138
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
1138
1139
  ENABLE_ORDER_START_DATE?: boolean;
1139
1140
  BRAND_COLOR?: string;
1140
1141
  HERO_LINK_LABEL?: string;
@@ -1404,6 +1405,7 @@ export type ConstanceSettingsRequest = {
1404
1405
  SHORT_PAGE_TITLE?: string;
1405
1406
  FULL_PAGE_TITLE?: string;
1406
1407
  PROJECT_END_DATE_MANDATORY?: boolean;
1408
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
1407
1409
  ENABLE_ORDER_START_DATE?: boolean;
1408
1410
  BRAND_COLOR?: string;
1409
1411
  HERO_LINK_LABEL?: string;