waldur-js-client 8.0.4-dev.0 → 8.0.4-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.
- package/dist/sdk.gen.d.ts +12 -2
- package/dist/sdk.gen.js +41 -1
- package/dist/types.gen.d.ts +59 -166
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -5712,7 +5712,7 @@ export const chatQuotaSetQuota = (options) => {
|
|
|
5712
5712
|
*
|
|
5713
5713
|
*/
|
|
5714
5714
|
export const chatQuotaUsageRetrieve = (options) => {
|
|
5715
|
-
return (options
|
|
5715
|
+
return (options.client ?? _heyApiClient).get({
|
|
5716
5716
|
security: [
|
|
5717
5717
|
{
|
|
5718
5718
|
name: 'Authorization',
|
|
@@ -15240,6 +15240,46 @@ export const marketplaceOfferingUsersChecklistTemplateCount = (options) => {
|
|
|
15240
15240
|
...options
|
|
15241
15241
|
});
|
|
15242
15242
|
};
|
|
15243
|
+
/**
|
|
15244
|
+
* Get profile field warnings
|
|
15245
|
+
* Returns a mapping of user profile field names to offerings that expose those fields. When ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS is enabled, clearing a field listed here would make the user invisible to the service provider for the associated offerings.
|
|
15246
|
+
*/
|
|
15247
|
+
export const marketplaceOfferingUsersProfileFieldWarningsRetrieve = (options) => {
|
|
15248
|
+
return (options?.client ?? _heyApiClient).get({
|
|
15249
|
+
security: [
|
|
15250
|
+
{
|
|
15251
|
+
name: 'Authorization',
|
|
15252
|
+
type: 'apiKey'
|
|
15253
|
+
},
|
|
15254
|
+
{
|
|
15255
|
+
scheme: 'bearer',
|
|
15256
|
+
type: 'http'
|
|
15257
|
+
}
|
|
15258
|
+
],
|
|
15259
|
+
url: '/api/marketplace-offering-users/profile_field_warnings/',
|
|
15260
|
+
...options
|
|
15261
|
+
});
|
|
15262
|
+
};
|
|
15263
|
+
/**
|
|
15264
|
+
* Get profile field warnings
|
|
15265
|
+
* Get number of items in the collection matching the request parameters.
|
|
15266
|
+
*/
|
|
15267
|
+
export const marketplaceOfferingUsersProfileFieldWarningsCount = (options) => {
|
|
15268
|
+
return (options?.client ?? _heyApiClient).head({
|
|
15269
|
+
security: [
|
|
15270
|
+
{
|
|
15271
|
+
name: 'Authorization',
|
|
15272
|
+
type: 'apiKey'
|
|
15273
|
+
},
|
|
15274
|
+
{
|
|
15275
|
+
scheme: 'bearer',
|
|
15276
|
+
type: 'http'
|
|
15277
|
+
}
|
|
15278
|
+
],
|
|
15279
|
+
url: '/api/marketplace-offering-users/profile_field_warnings/',
|
|
15280
|
+
...options
|
|
15281
|
+
});
|
|
15282
|
+
};
|
|
15243
15283
|
/**
|
|
15244
15284
|
* List orders
|
|
15245
15285
|
* Returns a paginated list of orders accessible to the current user. Orders are visible to service consumers (project/customer members with appropriate permissions) and service providers.
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -4194,6 +4194,7 @@ export type ConstanceSettings = {
|
|
|
4194
4194
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
4195
4195
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
4196
4196
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
4197
|
+
ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS?: boolean;
|
|
4197
4198
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
4198
4199
|
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
4199
4200
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
@@ -4433,6 +4434,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4433
4434
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
4434
4435
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
4435
4436
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
4437
|
+
ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS?: boolean;
|
|
4436
4438
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
4437
4439
|
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
4438
4440
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
@@ -11432,6 +11434,8 @@ export type OfferingUser = {
|
|
|
11432
11434
|
readonly consent_data?: {
|
|
11433
11435
|
[key: string]: string;
|
|
11434
11436
|
} | null;
|
|
11437
|
+
readonly is_profile_complete?: boolean;
|
|
11438
|
+
readonly missing_profile_attributes?: Array<string>;
|
|
11435
11439
|
};
|
|
11436
11440
|
export type OfferingUserAttributeConfig = {
|
|
11437
11441
|
readonly uuid: string;
|
|
@@ -13497,7 +13501,7 @@ export type OrderCreateRequest = {
|
|
|
13497
13501
|
/**
|
|
13498
13502
|
* Attributes structure depends on the offering type specified in the parent object. Can also be a generic object for offerings without a specific attributes schema.
|
|
13499
13503
|
*/
|
|
13500
|
-
attributes?:
|
|
13504
|
+
attributes?: GenericOrderAttributes;
|
|
13501
13505
|
limits?: {
|
|
13502
13506
|
[key: string]: number;
|
|
13503
13507
|
};
|
|
@@ -23635,151 +23639,6 @@ export type WebHookRequest = {
|
|
|
23635
23639
|
content_type?: WebHookContentTypeEnum;
|
|
23636
23640
|
};
|
|
23637
23641
|
export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
|
|
23638
|
-
export type AzureVirtualMachineCreateOrderAttributes = {
|
|
23639
|
-
name: string;
|
|
23640
|
-
description?: string;
|
|
23641
|
-
size: string;
|
|
23642
|
-
image: string;
|
|
23643
|
-
location: string;
|
|
23644
|
-
};
|
|
23645
|
-
export type AzureSqlServerCreateOrderAttributes = {
|
|
23646
|
-
name: string;
|
|
23647
|
-
description?: string;
|
|
23648
|
-
location: string;
|
|
23649
|
-
};
|
|
23650
|
-
export type MarketplaceOpenPortalCreateOrderAttributes = {
|
|
23651
|
-
name: string;
|
|
23652
|
-
description?: string;
|
|
23653
|
-
};
|
|
23654
|
-
export type MarketplaceOpenPortalRemoteCreateOrderAttributes = {
|
|
23655
|
-
name: string;
|
|
23656
|
-
description?: string;
|
|
23657
|
-
};
|
|
23658
|
-
export type OpenStackTenantCreateOrderAttributes = {
|
|
23659
|
-
name: string;
|
|
23660
|
-
description?: string;
|
|
23661
|
-
subnet_cidr?: string;
|
|
23662
|
-
skip_connection_extnet?: boolean;
|
|
23663
|
-
skip_creation_of_default_router?: boolean;
|
|
23664
|
-
skip_creation_of_default_subnet?: boolean;
|
|
23665
|
-
/**
|
|
23666
|
-
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
23667
|
-
*/
|
|
23668
|
-
availability_zone?: string;
|
|
23669
|
-
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
23670
|
-
};
|
|
23671
|
-
export type OpenStackCreateInstancePortRequest = {
|
|
23672
|
-
fixed_ips?: Array<OpenStackFixedIpRequest>;
|
|
23673
|
-
/**
|
|
23674
|
-
* Subnet to which this port belongs
|
|
23675
|
-
*/
|
|
23676
|
-
subnet?: string | null;
|
|
23677
|
-
port?: string;
|
|
23678
|
-
};
|
|
23679
|
-
export type OpenStackDataVolumeRequest = {
|
|
23680
|
-
size: number;
|
|
23681
|
-
volume_type?: string | null;
|
|
23682
|
-
};
|
|
23683
|
-
export type OpenStackServerGroupHyperlinkRequest = {
|
|
23684
|
-
url: string;
|
|
23685
|
-
};
|
|
23686
|
-
export type OpenStackInstanceCreateOrderAttributes = {
|
|
23687
|
-
name: string;
|
|
23688
|
-
description?: string;
|
|
23689
|
-
/**
|
|
23690
|
-
* The flavor to use for the instance
|
|
23691
|
-
*/
|
|
23692
|
-
flavor: string;
|
|
23693
|
-
/**
|
|
23694
|
-
* The OS image to use for the instance
|
|
23695
|
-
*/
|
|
23696
|
-
image: string;
|
|
23697
|
-
/**
|
|
23698
|
-
* List of security groups to apply to the instance
|
|
23699
|
-
*/
|
|
23700
|
-
security_groups?: Array<OpenStackSecurityGroupHyperlinkRequest>;
|
|
23701
|
-
/**
|
|
23702
|
-
* Server group for instance scheduling policy
|
|
23703
|
-
*/
|
|
23704
|
-
server_group?: OpenStackServerGroupHyperlinkRequest;
|
|
23705
|
-
/**
|
|
23706
|
-
* Network ports to attach to the instance
|
|
23707
|
-
*/
|
|
23708
|
-
ports: Array<OpenStackCreateInstancePortRequest>;
|
|
23709
|
-
/**
|
|
23710
|
-
* Floating IPs to assign to the instance
|
|
23711
|
-
*/
|
|
23712
|
-
floating_ips?: Array<OpenStackCreateFloatingIpRequest>;
|
|
23713
|
-
/**
|
|
23714
|
-
* Size of the system volume in MiB. Minimum size is 1024 MiB (1 GiB)
|
|
23715
|
-
*/
|
|
23716
|
-
system_volume_size: number;
|
|
23717
|
-
/**
|
|
23718
|
-
* Volume type for the system volume
|
|
23719
|
-
*/
|
|
23720
|
-
system_volume_type?: string | null;
|
|
23721
|
-
/**
|
|
23722
|
-
* Size of the data volume in MiB. Minimum size is 1024 MiB (1 GiB)
|
|
23723
|
-
*/
|
|
23724
|
-
data_volume_size?: number;
|
|
23725
|
-
/**
|
|
23726
|
-
* Volume type for the data volume
|
|
23727
|
-
*/
|
|
23728
|
-
data_volume_type?: string | null;
|
|
23729
|
-
ssh_public_key?: string;
|
|
23730
|
-
/**
|
|
23731
|
-
* Additional data that will be added to instance on provisioning
|
|
23732
|
-
*/
|
|
23733
|
-
user_data?: string;
|
|
23734
|
-
/**
|
|
23735
|
-
* Availability zone where this instance is located
|
|
23736
|
-
*/
|
|
23737
|
-
availability_zone?: string | null;
|
|
23738
|
-
/**
|
|
23739
|
-
* If True, instance will be connected directly to external network
|
|
23740
|
-
*/
|
|
23741
|
-
connect_directly_to_external_network?: boolean;
|
|
23742
|
-
/**
|
|
23743
|
-
* Additional data volumes to attach to the instance
|
|
23744
|
-
*/
|
|
23745
|
-
data_volumes?: Array<OpenStackDataVolumeRequest>;
|
|
23746
|
-
};
|
|
23747
|
-
export type OpenStackVolumeCreateOrderAttributes = {
|
|
23748
|
-
name: string;
|
|
23749
|
-
description?: string;
|
|
23750
|
-
/**
|
|
23751
|
-
* Image that this volume was created from, if any
|
|
23752
|
-
*/
|
|
23753
|
-
image?: string | null;
|
|
23754
|
-
/**
|
|
23755
|
-
* Size in MiB
|
|
23756
|
-
*/
|
|
23757
|
-
size?: number | null;
|
|
23758
|
-
/**
|
|
23759
|
-
* Availability zone where this volume is located
|
|
23760
|
-
*/
|
|
23761
|
-
availability_zone?: string | null;
|
|
23762
|
-
/**
|
|
23763
|
-
* Type of the volume (e.g. SSD, HDD)
|
|
23764
|
-
*/
|
|
23765
|
-
type?: string | null;
|
|
23766
|
-
};
|
|
23767
|
-
export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
|
|
23768
|
-
name: string;
|
|
23769
|
-
description?: string;
|
|
23770
|
-
};
|
|
23771
|
-
export type VMwareVirtualMachineCreateOrderAttributes = {
|
|
23772
|
-
name: string;
|
|
23773
|
-
description?: string;
|
|
23774
|
-
guest_os?: 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64' | null;
|
|
23775
|
-
/**
|
|
23776
|
-
* Number of cores per socket in a VM
|
|
23777
|
-
*/
|
|
23778
|
-
cores_per_socket?: number;
|
|
23779
|
-
template?: string | null;
|
|
23780
|
-
cluster?: string | null;
|
|
23781
|
-
datastore?: string | null;
|
|
23782
|
-
};
|
|
23783
23642
|
export type GenericOrderAttributes = {
|
|
23784
23643
|
/**
|
|
23785
23644
|
* The name of the resource to be created. Will be displayed in the portal.
|
|
@@ -24853,6 +24712,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
24853
24712
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
24854
24713
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
24855
24714
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
24715
|
+
ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS?: boolean;
|
|
24856
24716
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
24857
24717
|
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
24858
24718
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
@@ -25092,6 +24952,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
25092
24952
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
25093
24953
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
25094
24954
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
24955
|
+
ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS?: boolean;
|
|
25095
24956
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
25096
24957
|
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
25097
24958
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
@@ -31660,11 +31521,11 @@ export type ChatQuotaSetQuotaResponses = {
|
|
|
31660
31521
|
export type ChatQuotaUsageRetrieveData = {
|
|
31661
31522
|
body?: never;
|
|
31662
31523
|
path?: never;
|
|
31663
|
-
query
|
|
31524
|
+
query: {
|
|
31664
31525
|
/**
|
|
31665
31526
|
* UUID of user to view quota for (staff/support only). Omit to view your own quota.
|
|
31666
31527
|
*/
|
|
31667
|
-
user_uuid
|
|
31528
|
+
user_uuid: string;
|
|
31668
31529
|
};
|
|
31669
31530
|
url: '/api/chat-quota/usage/';
|
|
31670
31531
|
};
|
|
@@ -41178,7 +41039,11 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
41178
41039
|
* Created after
|
|
41179
41040
|
*/
|
|
41180
41041
|
created?: string;
|
|
41181
|
-
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
41042
|
+
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
41043
|
+
/**
|
|
41044
|
+
* User has complete profile for the offering
|
|
41045
|
+
*/
|
|
41046
|
+
has_complete_profile?: boolean;
|
|
41182
41047
|
/**
|
|
41183
41048
|
* User Has Consent
|
|
41184
41049
|
*/
|
|
@@ -41252,6 +41117,10 @@ export type MarketplaceOfferingUsersCountData = {
|
|
|
41252
41117
|
* Created after
|
|
41253
41118
|
*/
|
|
41254
41119
|
created?: string;
|
|
41120
|
+
/**
|
|
41121
|
+
* User has complete profile for the offering
|
|
41122
|
+
*/
|
|
41123
|
+
has_complete_profile?: boolean;
|
|
41255
41124
|
/**
|
|
41256
41125
|
* User Has Consent
|
|
41257
41126
|
*/
|
|
@@ -41350,7 +41219,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
|
|
|
41350
41219
|
uuid: string;
|
|
41351
41220
|
};
|
|
41352
41221
|
query?: {
|
|
41353
|
-
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
41222
|
+
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
41354
41223
|
};
|
|
41355
41224
|
url: '/api/marketplace-offering-users/{uuid}/';
|
|
41356
41225
|
};
|
|
@@ -41705,6 +41574,30 @@ export type MarketplaceOfferingUsersChecklistTemplateCountResponses = {
|
|
|
41705
41574
|
*/
|
|
41706
41575
|
200: unknown;
|
|
41707
41576
|
};
|
|
41577
|
+
export type MarketplaceOfferingUsersProfileFieldWarningsRetrieveData = {
|
|
41578
|
+
body?: never;
|
|
41579
|
+
path?: never;
|
|
41580
|
+
query?: never;
|
|
41581
|
+
url: '/api/marketplace-offering-users/profile_field_warnings/';
|
|
41582
|
+
};
|
|
41583
|
+
export type MarketplaceOfferingUsersProfileFieldWarningsRetrieveResponses = {
|
|
41584
|
+
/**
|
|
41585
|
+
* No response body
|
|
41586
|
+
*/
|
|
41587
|
+
200: unknown;
|
|
41588
|
+
};
|
|
41589
|
+
export type MarketplaceOfferingUsersProfileFieldWarningsCountData = {
|
|
41590
|
+
body?: never;
|
|
41591
|
+
path?: never;
|
|
41592
|
+
query?: never;
|
|
41593
|
+
url: '/api/marketplace-offering-users/profile_field_warnings/';
|
|
41594
|
+
};
|
|
41595
|
+
export type MarketplaceOfferingUsersProfileFieldWarningsCountResponses = {
|
|
41596
|
+
/**
|
|
41597
|
+
* No response body
|
|
41598
|
+
*/
|
|
41599
|
+
200: unknown;
|
|
41600
|
+
};
|
|
41708
41601
|
export type MarketplaceOrdersListData = {
|
|
41709
41602
|
body?: never;
|
|
41710
41603
|
path?: never;
|
|
@@ -42546,7 +42439,7 @@ export type MarketplacePlansUsageStatsListData = {
|
|
|
42546
42439
|
path?: never;
|
|
42547
42440
|
query?: {
|
|
42548
42441
|
/**
|
|
42549
|
-
* Filter by
|
|
42442
|
+
* Filter by offering customer provider UUID.
|
|
42550
42443
|
*/
|
|
42551
42444
|
customer_provider_uuid?: string;
|
|
42552
42445
|
/**
|
|
@@ -42583,7 +42476,7 @@ export type MarketplacePlansUsageStatsCountData = {
|
|
|
42583
42476
|
path?: never;
|
|
42584
42477
|
query?: {
|
|
42585
42478
|
/**
|
|
42586
|
-
* Filter by
|
|
42479
|
+
* Filter by offering customer provider UUID.
|
|
42587
42480
|
*/
|
|
42588
42481
|
customer_provider_uuid?: string;
|
|
42589
42482
|
/**
|
|
@@ -43088,7 +42981,7 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
43088
42981
|
/**
|
|
43089
42982
|
* Organization group UUID
|
|
43090
42983
|
*/
|
|
43091
|
-
organization_group_uuid?:
|
|
42984
|
+
organization_group_uuid?: string;
|
|
43092
42985
|
/**
|
|
43093
42986
|
* A page number within the paginated result set.
|
|
43094
42987
|
*/
|
|
@@ -43252,7 +43145,7 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
43252
43145
|
/**
|
|
43253
43146
|
* Organization group UUID
|
|
43254
43147
|
*/
|
|
43255
|
-
organization_group_uuid?:
|
|
43148
|
+
organization_group_uuid?: string;
|
|
43256
43149
|
/**
|
|
43257
43150
|
* A page number within the paginated result set.
|
|
43258
43151
|
*/
|
|
@@ -43553,7 +43446,7 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
43553
43446
|
/**
|
|
43554
43447
|
* Organization group UUID
|
|
43555
43448
|
*/
|
|
43556
|
-
organization_group_uuid?:
|
|
43449
|
+
organization_group_uuid?: string;
|
|
43557
43450
|
/**
|
|
43558
43451
|
* A page number within the paginated result set.
|
|
43559
43452
|
*/
|
|
@@ -43728,7 +43621,7 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
43728
43621
|
/**
|
|
43729
43622
|
* Organization group UUID
|
|
43730
43623
|
*/
|
|
43731
|
-
organization_group_uuid?:
|
|
43624
|
+
organization_group_uuid?: string;
|
|
43732
43625
|
/**
|
|
43733
43626
|
* A page number within the paginated result set.
|
|
43734
43627
|
*/
|
|
@@ -43913,7 +43806,7 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
43913
43806
|
/**
|
|
43914
43807
|
* Organization group UUID
|
|
43915
43808
|
*/
|
|
43916
|
-
organization_group_uuid?:
|
|
43809
|
+
organization_group_uuid?: string;
|
|
43917
43810
|
/**
|
|
43918
43811
|
* A page number within the paginated result set.
|
|
43919
43812
|
*/
|
|
@@ -44227,7 +44120,7 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
44227
44120
|
/**
|
|
44228
44121
|
* Organization group UUID
|
|
44229
44122
|
*/
|
|
44230
|
-
organization_group_uuid?:
|
|
44123
|
+
organization_group_uuid?: string;
|
|
44231
44124
|
/**
|
|
44232
44125
|
* A page number within the paginated result set.
|
|
44233
44126
|
*/
|
|
@@ -44452,7 +44345,7 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
44452
44345
|
/**
|
|
44453
44346
|
* Organization group UUID
|
|
44454
44347
|
*/
|
|
44455
|
-
organization_group_uuid?:
|
|
44348
|
+
organization_group_uuid?: string;
|
|
44456
44349
|
/**
|
|
44457
44350
|
* A page number within the paginated result set.
|
|
44458
44351
|
*/
|
|
@@ -44640,7 +44533,7 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
44640
44533
|
/**
|
|
44641
44534
|
* Organization group UUID
|
|
44642
44535
|
*/
|
|
44643
|
-
organization_group_uuid?:
|
|
44536
|
+
organization_group_uuid?: string;
|
|
44644
44537
|
/**
|
|
44645
44538
|
* A page number within the paginated result set.
|
|
44646
44539
|
*/
|
|
@@ -44828,7 +44721,7 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
44828
44721
|
/**
|
|
44829
44722
|
* Organization group UUID
|
|
44830
44723
|
*/
|
|
44831
|
-
organization_group_uuid?:
|
|
44724
|
+
organization_group_uuid?: string;
|
|
44832
44725
|
/**
|
|
44833
44726
|
* A page number within the paginated result set.
|
|
44834
44727
|
*/
|
|
@@ -45559,7 +45452,7 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
45559
45452
|
/**
|
|
45560
45453
|
* Organization group UUID
|
|
45561
45454
|
*/
|
|
45562
|
-
organization_group_uuid?:
|
|
45455
|
+
organization_group_uuid?: string;
|
|
45563
45456
|
/**
|
|
45564
45457
|
* A page number within the paginated result set.
|
|
45565
45458
|
*/
|
|
@@ -45723,7 +45616,7 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
45723
45616
|
/**
|
|
45724
45617
|
* Organization group UUID
|
|
45725
45618
|
*/
|
|
45726
|
-
organization_group_uuid?:
|
|
45619
|
+
organization_group_uuid?: string;
|
|
45727
45620
|
/**
|
|
45728
45621
|
* A page number within the paginated result set.
|
|
45729
45622
|
*/
|
|
@@ -46892,7 +46785,7 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
46892
46785
|
/**
|
|
46893
46786
|
* Organization group UUID
|
|
46894
46787
|
*/
|
|
46895
|
-
organization_group_uuid?:
|
|
46788
|
+
organization_group_uuid?: string;
|
|
46896
46789
|
/**
|
|
46897
46790
|
* A page number within the paginated result set.
|
|
46898
46791
|
*/
|
|
@@ -47056,7 +46949,7 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
47056
46949
|
/**
|
|
47057
46950
|
* Organization group UUID
|
|
47058
46951
|
*/
|
|
47059
|
-
organization_group_uuid?:
|
|
46952
|
+
organization_group_uuid?: string;
|
|
47060
46953
|
/**
|
|
47061
46954
|
* A page number within the paginated result set.
|
|
47062
46955
|
*/
|
|
@@ -49511,7 +49404,7 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
49511
49404
|
/**
|
|
49512
49405
|
* Organization group UUID
|
|
49513
49406
|
*/
|
|
49514
|
-
organization_group_uuid?:
|
|
49407
|
+
organization_group_uuid?: string;
|
|
49515
49408
|
/**
|
|
49516
49409
|
* A page number within the paginated result set.
|
|
49517
49410
|
*/
|