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

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;
@@ -1196,6 +1197,12 @@ export type ConstanceSettings = {
1196
1197
  SCIM_API_URL?: string;
1197
1198
  SCIM_API_KEY?: string;
1198
1199
  SCIM_URN_NAMESPACE?: string;
1200
+ SCIM_INBOUND_ENABLED?: boolean;
1201
+ SCIM_INBOUND_SOURCE_NAME?: string;
1202
+ SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1203
+ SCIM_PULL_API_URL?: string;
1204
+ SCIM_PULL_API_KEY?: string;
1205
+ SCIM_PULL_SOURCE_NAME?: string;
1199
1206
  KEYCLOAK_ICON?: string | null;
1200
1207
  COUNTRIES?: Array<string>;
1201
1208
  OIDC_AUTH_URL?: string;
@@ -1300,6 +1307,7 @@ export type ConstanceSettings = {
1300
1307
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
1301
1308
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
1302
1309
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
1310
+ SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
1303
1311
  PAT_ENABLED?: boolean;
1304
1312
  PAT_MAX_LIFETIME_DAYS?: number;
1305
1313
  PAT_MAX_TOKENS_PER_USER?: number;
@@ -1347,6 +1355,7 @@ export type ConstanceSettingsRequest = {
1347
1355
  SHORT_PAGE_TITLE?: string;
1348
1356
  FULL_PAGE_TITLE?: string;
1349
1357
  PROJECT_END_DATE_MANDATORY?: boolean;
1358
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
1350
1359
  ENABLE_ORDER_START_DATE?: boolean;
1351
1360
  BRAND_COLOR?: string;
1352
1361
  HERO_LINK_LABEL?: string;
@@ -1464,6 +1473,12 @@ export type ConstanceSettingsRequest = {
1464
1473
  SCIM_API_URL?: string;
1465
1474
  SCIM_API_KEY?: string;
1466
1475
  SCIM_URN_NAMESPACE?: string;
1476
+ SCIM_INBOUND_ENABLED?: boolean;
1477
+ SCIM_INBOUND_SOURCE_NAME?: string;
1478
+ SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1479
+ SCIM_PULL_API_URL?: string;
1480
+ SCIM_PULL_API_KEY?: string;
1481
+ SCIM_PULL_SOURCE_NAME?: string;
1467
1482
  KEYCLOAK_ICON?: (Blob | File) | null;
1468
1483
  COUNTRIES?: Array<string>;
1469
1484
  OIDC_AUTH_URL?: string;
@@ -1568,6 +1583,7 @@ export type ConstanceSettingsRequest = {
1568
1583
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
1569
1584
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
1570
1585
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
1586
+ SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
1571
1587
  PAT_ENABLED?: boolean;
1572
1588
  PAT_MAX_LIFETIME_DAYS?: number;
1573
1589
  PAT_MAX_TOKENS_PER_USER?: number;
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.10",
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;
@@ -1252,6 +1253,12 @@ export type ConstanceSettings = {
1252
1253
  SCIM_API_URL?: string;
1253
1254
  SCIM_API_KEY?: string;
1254
1255
  SCIM_URN_NAMESPACE?: string;
1256
+ SCIM_INBOUND_ENABLED?: boolean;
1257
+ SCIM_INBOUND_SOURCE_NAME?: string;
1258
+ SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1259
+ SCIM_PULL_API_URL?: string;
1260
+ SCIM_PULL_API_KEY?: string;
1261
+ SCIM_PULL_SOURCE_NAME?: string;
1255
1262
  KEYCLOAK_ICON?: string | null;
1256
1263
  COUNTRIES?: Array<string>;
1257
1264
  OIDC_AUTH_URL?: string;
@@ -1356,6 +1363,7 @@ export type ConstanceSettings = {
1356
1363
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
1357
1364
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
1358
1365
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
1366
+ SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
1359
1367
  PAT_ENABLED?: boolean;
1360
1368
  PAT_MAX_LIFETIME_DAYS?: number;
1361
1369
  PAT_MAX_TOKENS_PER_USER?: number;
@@ -1404,6 +1412,7 @@ export type ConstanceSettingsRequest = {
1404
1412
  SHORT_PAGE_TITLE?: string;
1405
1413
  FULL_PAGE_TITLE?: string;
1406
1414
  PROJECT_END_DATE_MANDATORY?: boolean;
1415
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
1407
1416
  ENABLE_ORDER_START_DATE?: boolean;
1408
1417
  BRAND_COLOR?: string;
1409
1418
  HERO_LINK_LABEL?: string;
@@ -1521,6 +1530,12 @@ export type ConstanceSettingsRequest = {
1521
1530
  SCIM_API_URL?: string;
1522
1531
  SCIM_API_KEY?: string;
1523
1532
  SCIM_URN_NAMESPACE?: string;
1533
+ SCIM_INBOUND_ENABLED?: boolean;
1534
+ SCIM_INBOUND_SOURCE_NAME?: string;
1535
+ SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1536
+ SCIM_PULL_API_URL?: string;
1537
+ SCIM_PULL_API_KEY?: string;
1538
+ SCIM_PULL_SOURCE_NAME?: string;
1524
1539
  KEYCLOAK_ICON?: (Blob | File) | null;
1525
1540
  COUNTRIES?: Array<string>;
1526
1541
  OIDC_AUTH_URL?: string;
@@ -1625,6 +1640,7 @@ export type ConstanceSettingsRequest = {
1625
1640
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
1626
1641
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
1627
1642
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
1643
+ SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
1628
1644
  PAT_ENABLED?: boolean;
1629
1645
  PAT_MAX_LIFETIME_DAYS?: number;
1630
1646
  PAT_MAX_TOKENS_PER_USER?: number;