@waldur/admin 8.0.9-dev.1 → 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.
- package/dist/types.gen.d.ts +15 -1
- package/package.json +1 -1
- package/src/types.gen.ts +15 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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
|
|
@@ -1197,6 +1197,12 @@ export type ConstanceSettings = {
|
|
|
1197
1197
|
SCIM_API_URL?: string;
|
|
1198
1198
|
SCIM_API_KEY?: string;
|
|
1199
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;
|
|
1200
1206
|
KEYCLOAK_ICON?: string | null;
|
|
1201
1207
|
COUNTRIES?: Array<string>;
|
|
1202
1208
|
OIDC_AUTH_URL?: string;
|
|
@@ -1301,6 +1307,7 @@ export type ConstanceSettings = {
|
|
|
1301
1307
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
1302
1308
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
1303
1309
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
1310
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
1304
1311
|
PAT_ENABLED?: boolean;
|
|
1305
1312
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
1306
1313
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -1466,6 +1473,12 @@ export type ConstanceSettingsRequest = {
|
|
|
1466
1473
|
SCIM_API_URL?: string;
|
|
1467
1474
|
SCIM_API_KEY?: string;
|
|
1468
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;
|
|
1469
1482
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
1470
1483
|
COUNTRIES?: Array<string>;
|
|
1471
1484
|
OIDC_AUTH_URL?: string;
|
|
@@ -1570,6 +1583,7 @@ export type ConstanceSettingsRequest = {
|
|
|
1570
1583
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
1571
1584
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
1572
1585
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
1586
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
1573
1587
|
PAT_ENABLED?: boolean;
|
|
1574
1588
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
1575
1589
|
PAT_MAX_TOKENS_PER_USER?: number;
|
package/package.json
CHANGED
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
|
/**
|
|
@@ -1253,6 +1253,12 @@ export type ConstanceSettings = {
|
|
|
1253
1253
|
SCIM_API_URL?: string;
|
|
1254
1254
|
SCIM_API_KEY?: string;
|
|
1255
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;
|
|
1256
1262
|
KEYCLOAK_ICON?: string | null;
|
|
1257
1263
|
COUNTRIES?: Array<string>;
|
|
1258
1264
|
OIDC_AUTH_URL?: string;
|
|
@@ -1357,6 +1363,7 @@ export type ConstanceSettings = {
|
|
|
1357
1363
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
1358
1364
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
1359
1365
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
1366
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
1360
1367
|
PAT_ENABLED?: boolean;
|
|
1361
1368
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
1362
1369
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -1523,6 +1530,12 @@ export type ConstanceSettingsRequest = {
|
|
|
1523
1530
|
SCIM_API_URL?: string;
|
|
1524
1531
|
SCIM_API_KEY?: string;
|
|
1525
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;
|
|
1526
1539
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
1527
1540
|
COUNTRIES?: Array<string>;
|
|
1528
1541
|
OIDC_AUTH_URL?: string;
|
|
@@ -1627,6 +1640,7 @@ export type ConstanceSettingsRequest = {
|
|
|
1627
1640
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
1628
1641
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
1629
1642
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
1643
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
1630
1644
|
PAT_ENABLED?: boolean;
|
|
1631
1645
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
1632
1646
|
PAT_MAX_TOKENS_PER_USER?: number;
|