waldur-js-client 7.8.2-dev.0 → 7.8.2-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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +1048 -15
  2. package/package.json +1 -1
@@ -4885,9 +4885,6 @@ export type Offering = {
4885
4885
  readonly parent_name?: string | null;
4886
4886
  backend_metadata?: unknown;
4887
4887
  readonly has_compliance_requirements?: boolean;
4888
- /**
4889
- * Checklist that offering users must complete for compliance
4890
- */
4891
4888
  compliance_checklist?: string | null;
4892
4889
  readonly user_has_consent?: boolean;
4893
4890
  googlecalendar?: GoogleCalendar;
@@ -5062,9 +5059,6 @@ export type OfferingCreate = {
5062
5059
  readonly parent_name: string | null;
5063
5060
  backend_metadata?: unknown;
5064
5061
  readonly has_compliance_requirements: boolean;
5065
- /**
5066
- * Checklist that offering users must complete for compliance
5067
- */
5068
5062
  compliance_checklist?: string | null;
5069
5063
  };
5070
5064
  export type OfferingCreateRequest = {
@@ -5104,9 +5098,6 @@ export type OfferingCreateRequest = {
5104
5098
  backend_id?: string;
5105
5099
  image?: (Blob | File) | null;
5106
5100
  backend_metadata?: unknown;
5107
- /**
5108
- * Checklist that offering users must complete for compliance
5109
- */
5110
5101
  compliance_checklist?: string | null;
5111
5102
  limits?: {
5112
5103
  [key: string]: OfferingComponentLimitRequest;
@@ -9150,9 +9141,6 @@ export type ProviderOfferingDetails = {
9150
9141
  readonly parent_name?: string | null;
9151
9142
  backend_metadata?: unknown;
9152
9143
  readonly has_compliance_requirements?: boolean;
9153
- /**
9154
- * Checklist that offering users must complete for compliance
9155
- */
9156
9144
  compliance_checklist?: string | null;
9157
9145
  readonly integration_status?: Array<IntegrationStatus> | null;
9158
9146
  readonly google_calendar_is_public?: boolean | null;
@@ -9412,9 +9400,6 @@ export type PublicOfferingDetails = {
9412
9400
  readonly parent_name?: string | null;
9413
9401
  backend_metadata?: unknown;
9414
9402
  readonly has_compliance_requirements?: boolean;
9415
- /**
9416
- * Checklist that offering users must complete for compliance
9417
- */
9418
9403
  compliance_checklist?: string | null;
9419
9404
  readonly user_has_consent?: boolean;
9420
9405
  readonly google_calendar_is_public?: boolean | null;
@@ -12309,6 +12294,1054 @@ export type WebHookRequest = {
12309
12294
  };
12310
12295
  export type WebhookEventEnum = 'jira:issue_updated' | 'jira:issue_deleted' | 'comment_created' | 'comment_updated' | 'comment_deleted';
12311
12296
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
12297
+ export type CallManagingOrganisationRequestForm = {
12298
+ description?: string;
12299
+ customer: string;
12300
+ image?: (Blob | File) | null;
12301
+ };
12302
+ export type CallManagingOrganisationRequestMultipart = {
12303
+ description?: string;
12304
+ customer: string;
12305
+ image?: (Blob | File) | null;
12306
+ };
12307
+ export type PatchedCallManagingOrganisationRequestForm = {
12308
+ description?: string;
12309
+ image?: (Blob | File) | null;
12310
+ };
12311
+ export type PatchedCallManagingOrganisationRequestMultipart = {
12312
+ description?: string;
12313
+ image?: (Blob | File) | null;
12314
+ };
12315
+ export type ChecklistCategoryRequestForm = {
12316
+ icon?: (Blob | File) | null;
12317
+ name: string;
12318
+ description?: string;
12319
+ };
12320
+ export type ChecklistCategoryRequestMultipart = {
12321
+ icon?: (Blob | File) | null;
12322
+ name: string;
12323
+ description?: string;
12324
+ };
12325
+ export type PatchedChecklistCategoryRequestForm = {
12326
+ icon?: (Blob | File) | null;
12327
+ name?: string;
12328
+ description?: string;
12329
+ };
12330
+ export type PatchedChecklistCategoryRequestMultipart = {
12331
+ icon?: (Blob | File) | null;
12332
+ name?: string;
12333
+ description?: string;
12334
+ };
12335
+ export type CustomerRequestForm = {
12336
+ /**
12337
+ * Organization identifier in another application.
12338
+ */
12339
+ backend_id?: string;
12340
+ image?: (Blob | File) | null;
12341
+ name: string;
12342
+ slug?: string;
12343
+ native_name?: string;
12344
+ abbreviation?: string;
12345
+ description?: string;
12346
+ contact_details?: string;
12347
+ /**
12348
+ * Email address
12349
+ */
12350
+ email?: string;
12351
+ phone_number?: string;
12352
+ registration_code?: string;
12353
+ homepage?: string;
12354
+ /**
12355
+ * VAT number
12356
+ */
12357
+ vat_code?: string;
12358
+ postal?: string;
12359
+ address?: string;
12360
+ bank_name?: string;
12361
+ latitude?: number | null;
12362
+ longitude?: number | null;
12363
+ bank_account?: string;
12364
+ country?: CountryEnum | BlankEnum;
12365
+ };
12366
+ export type CustomerRequestMultipart = {
12367
+ /**
12368
+ * Organization identifier in another application.
12369
+ */
12370
+ backend_id?: string;
12371
+ image?: (Blob | File) | null;
12372
+ name: string;
12373
+ slug?: string;
12374
+ native_name?: string;
12375
+ abbreviation?: string;
12376
+ description?: string;
12377
+ contact_details?: string;
12378
+ /**
12379
+ * Email address
12380
+ */
12381
+ email?: string;
12382
+ phone_number?: string;
12383
+ registration_code?: string;
12384
+ homepage?: string;
12385
+ /**
12386
+ * VAT number
12387
+ */
12388
+ vat_code?: string;
12389
+ postal?: string;
12390
+ address?: string;
12391
+ bank_name?: string;
12392
+ latitude?: number | null;
12393
+ longitude?: number | null;
12394
+ bank_account?: string;
12395
+ country?: CountryEnum | BlankEnum;
12396
+ };
12397
+ export type PatchedCustomerRequestForm = {
12398
+ /**
12399
+ * Organization identifier in another application.
12400
+ */
12401
+ backend_id?: string;
12402
+ image?: (Blob | File) | null;
12403
+ name?: string;
12404
+ slug?: string;
12405
+ native_name?: string;
12406
+ abbreviation?: string;
12407
+ description?: string;
12408
+ contact_details?: string;
12409
+ /**
12410
+ * Email address
12411
+ */
12412
+ email?: string;
12413
+ phone_number?: string;
12414
+ registration_code?: string;
12415
+ homepage?: string;
12416
+ /**
12417
+ * VAT number
12418
+ */
12419
+ vat_code?: string;
12420
+ postal?: string;
12421
+ address?: string;
12422
+ bank_name?: string;
12423
+ latitude?: number | null;
12424
+ longitude?: number | null;
12425
+ bank_account?: string;
12426
+ country?: CountryEnum | BlankEnum;
12427
+ };
12428
+ export type PatchedCustomerRequestMultipart = {
12429
+ /**
12430
+ * Organization identifier in another application.
12431
+ */
12432
+ backend_id?: string;
12433
+ image?: (Blob | File) | null;
12434
+ name?: string;
12435
+ slug?: string;
12436
+ native_name?: string;
12437
+ abbreviation?: string;
12438
+ description?: string;
12439
+ contact_details?: string;
12440
+ /**
12441
+ * Email address
12442
+ */
12443
+ email?: string;
12444
+ phone_number?: string;
12445
+ registration_code?: string;
12446
+ homepage?: string;
12447
+ /**
12448
+ * VAT number
12449
+ */
12450
+ vat_code?: string;
12451
+ postal?: string;
12452
+ address?: string;
12453
+ bank_name?: string;
12454
+ latitude?: number | null;
12455
+ longitude?: number | null;
12456
+ bank_account?: string;
12457
+ country?: CountryEnum | BlankEnum;
12458
+ };
12459
+ export type ExternalLinkRequestForm = {
12460
+ name: string;
12461
+ description?: string;
12462
+ link: string;
12463
+ image?: (Blob | File) | null;
12464
+ };
12465
+ export type ExternalLinkRequestMultipart = {
12466
+ name: string;
12467
+ description?: string;
12468
+ link: string;
12469
+ image?: (Blob | File) | null;
12470
+ };
12471
+ export type PatchedExternalLinkRequestForm = {
12472
+ name?: string;
12473
+ description?: string;
12474
+ link?: string;
12475
+ image?: (Blob | File) | null;
12476
+ };
12477
+ export type PatchedExternalLinkRequestMultipart = {
12478
+ name?: string;
12479
+ description?: string;
12480
+ link?: string;
12481
+ image?: (Blob | File) | null;
12482
+ };
12483
+ export type PaidRequestForm = {
12484
+ date: string;
12485
+ proof?: Blob | File;
12486
+ };
12487
+ export type PaidRequestMultipart = {
12488
+ date: string;
12489
+ proof?: Blob | File;
12490
+ };
12491
+ export type MarketplaceCategoryRequestForm = {
12492
+ title: string;
12493
+ description?: string;
12494
+ icon?: (Blob | File) | null;
12495
+ /**
12496
+ * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
12497
+ */
12498
+ default_vm_category?: boolean;
12499
+ /**
12500
+ * Set to true if this category is for OpenStack Volume. Only one category can have "true" value.
12501
+ */
12502
+ default_volume_category?: boolean;
12503
+ /**
12504
+ * Set to true if this category is for OpenStack Tenant. Only one category can have "true" value.
12505
+ */
12506
+ default_tenant_category?: boolean;
12507
+ group?: string | null;
12508
+ };
12509
+ export type MarketplaceCategoryRequestMultipart = {
12510
+ title: string;
12511
+ description?: string;
12512
+ icon?: (Blob | File) | null;
12513
+ /**
12514
+ * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
12515
+ */
12516
+ default_vm_category?: boolean;
12517
+ /**
12518
+ * Set to true if this category is for OpenStack Volume. Only one category can have "true" value.
12519
+ */
12520
+ default_volume_category?: boolean;
12521
+ /**
12522
+ * Set to true if this category is for OpenStack Tenant. Only one category can have "true" value.
12523
+ */
12524
+ default_tenant_category?: boolean;
12525
+ group?: string | null;
12526
+ };
12527
+ export type PatchedMarketplaceCategoryRequestForm = {
12528
+ title?: string;
12529
+ description?: string;
12530
+ icon?: (Blob | File) | null;
12531
+ /**
12532
+ * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
12533
+ */
12534
+ default_vm_category?: boolean;
12535
+ /**
12536
+ * Set to true if this category is for OpenStack Volume. Only one category can have "true" value.
12537
+ */
12538
+ default_volume_category?: boolean;
12539
+ /**
12540
+ * Set to true if this category is for OpenStack Tenant. Only one category can have "true" value.
12541
+ */
12542
+ default_tenant_category?: boolean;
12543
+ group?: string | null;
12544
+ };
12545
+ export type PatchedMarketplaceCategoryRequestMultipart = {
12546
+ title?: string;
12547
+ description?: string;
12548
+ icon?: (Blob | File) | null;
12549
+ /**
12550
+ * Set to "true" if this category is for OpenStack VM. Only one category can have "true" value.
12551
+ */
12552
+ default_vm_category?: boolean;
12553
+ /**
12554
+ * Set to true if this category is for OpenStack Volume. Only one category can have "true" value.
12555
+ */
12556
+ default_volume_category?: boolean;
12557
+ /**
12558
+ * Set to true if this category is for OpenStack Tenant. Only one category can have "true" value.
12559
+ */
12560
+ default_tenant_category?: boolean;
12561
+ group?: string | null;
12562
+ };
12563
+ export type CategoryGroupRequestForm = {
12564
+ title: string;
12565
+ description?: string;
12566
+ icon?: (Blob | File) | null;
12567
+ };
12568
+ export type CategoryGroupRequestMultipart = {
12569
+ title: string;
12570
+ description?: string;
12571
+ icon?: (Blob | File) | null;
12572
+ };
12573
+ export type PatchedCategoryGroupRequestForm = {
12574
+ title?: string;
12575
+ description?: string;
12576
+ icon?: (Blob | File) | null;
12577
+ };
12578
+ export type PatchedCategoryGroupRequestMultipart = {
12579
+ title?: string;
12580
+ description?: string;
12581
+ icon?: (Blob | File) | null;
12582
+ };
12583
+ export type OfferingFileRequestForm = {
12584
+ name: string;
12585
+ offering: string;
12586
+ file: Blob | File;
12587
+ };
12588
+ export type OfferingFileRequestMultipart = {
12589
+ name: string;
12590
+ offering: string;
12591
+ file: Blob | File;
12592
+ };
12593
+ export type OrderAttachmentRequestForm = {
12594
+ attachment?: (Blob | File) | null;
12595
+ };
12596
+ export type OrderAttachmentRequestMultipart = {
12597
+ attachment?: (Blob | File) | null;
12598
+ };
12599
+ export type OfferingCreateRequestForm = {
12600
+ name: string;
12601
+ slug?: string;
12602
+ description?: string;
12603
+ full_description?: string;
12604
+ privacy_policy_link?: string;
12605
+ /**
12606
+ * Publicly accessible offering access URL
12607
+ */
12608
+ access_url?: string;
12609
+ customer?: string | null;
12610
+ category: string;
12611
+ attributes?: unknown;
12612
+ options?: OfferingOptionsRequest;
12613
+ resource_options?: OfferingOptionsRequest;
12614
+ components?: Array<OfferingComponentRequest>;
12615
+ vendor_details?: string;
12616
+ getting_started?: string;
12617
+ integration_guide?: string;
12618
+ thumbnail?: (Blob | File) | null;
12619
+ plans?: Array<BaseProviderPlanRequest>;
12620
+ type: string;
12621
+ /**
12622
+ * Accessible to all customers.
12623
+ */
12624
+ shared?: boolean;
12625
+ /**
12626
+ * Purchase and usage is invoiced.
12627
+ */
12628
+ billable?: boolean;
12629
+ datacite_doi?: string;
12630
+ latitude?: number | null;
12631
+ longitude?: number | null;
12632
+ country?: CountryEnum | BlankEnum;
12633
+ backend_id?: string;
12634
+ image?: (Blob | File) | null;
12635
+ backend_metadata?: unknown;
12636
+ compliance_checklist?: string | null;
12637
+ limits?: {
12638
+ [key: string]: OfferingComponentLimitRequest;
12639
+ };
12640
+ };
12641
+ export type OfferingCreateRequestMultipart = {
12642
+ name: string;
12643
+ slug?: string;
12644
+ description?: string;
12645
+ full_description?: string;
12646
+ privacy_policy_link?: string;
12647
+ /**
12648
+ * Publicly accessible offering access URL
12649
+ */
12650
+ access_url?: string;
12651
+ customer?: string | null;
12652
+ category: string;
12653
+ attributes?: unknown;
12654
+ options?: OfferingOptionsRequest;
12655
+ resource_options?: OfferingOptionsRequest;
12656
+ components?: Array<OfferingComponentRequest>;
12657
+ vendor_details?: string;
12658
+ getting_started?: string;
12659
+ integration_guide?: string;
12660
+ thumbnail?: (Blob | File) | null;
12661
+ plans?: Array<BaseProviderPlanRequest>;
12662
+ type: string;
12663
+ /**
12664
+ * Accessible to all customers.
12665
+ */
12666
+ shared?: boolean;
12667
+ /**
12668
+ * Purchase and usage is invoiced.
12669
+ */
12670
+ billable?: boolean;
12671
+ datacite_doi?: string;
12672
+ latitude?: number | null;
12673
+ longitude?: number | null;
12674
+ country?: CountryEnum | BlankEnum;
12675
+ backend_id?: string;
12676
+ image?: (Blob | File) | null;
12677
+ backend_metadata?: unknown;
12678
+ compliance_checklist?: string | null;
12679
+ limits?: {
12680
+ [key: string]: OfferingComponentLimitRequest;
12681
+ };
12682
+ };
12683
+ export type OfferingImageRequestForm = {
12684
+ image: Blob | File;
12685
+ };
12686
+ export type OfferingImageRequestMultipart = {
12687
+ image: Blob | File;
12688
+ };
12689
+ export type OfferingThumbnailRequestForm = {
12690
+ thumbnail: Blob | File;
12691
+ };
12692
+ export type OfferingThumbnailRequestMultipart = {
12693
+ thumbnail: Blob | File;
12694
+ };
12695
+ export type ScreenshotRequestForm = {
12696
+ name: string;
12697
+ description?: string;
12698
+ image: Blob | File;
12699
+ offering: string;
12700
+ };
12701
+ export type ScreenshotRequestMultipart = {
12702
+ name: string;
12703
+ description?: string;
12704
+ image: Blob | File;
12705
+ offering: string;
12706
+ };
12707
+ export type ServiceProviderRequestForm = {
12708
+ description?: string;
12709
+ enable_notifications?: boolean;
12710
+ customer: string;
12711
+ image?: (Blob | File) | null;
12712
+ };
12713
+ export type ServiceProviderRequestMultipart = {
12714
+ description?: string;
12715
+ enable_notifications?: boolean;
12716
+ customer: string;
12717
+ image?: (Blob | File) | null;
12718
+ };
12719
+ export type PatchedServiceProviderRequestForm = {
12720
+ description?: string;
12721
+ enable_notifications?: boolean;
12722
+ image?: (Blob | File) | null;
12723
+ };
12724
+ export type PatchedServiceProviderRequestMultipart = {
12725
+ description?: string;
12726
+ enable_notifications?: boolean;
12727
+ image?: (Blob | File) | null;
12728
+ };
12729
+ export type ConstanceSettingsRequestForm = {
12730
+ SITE_NAME?: string;
12731
+ SITE_DESCRIPTION?: string;
12732
+ HOMEPORT_URL?: string;
12733
+ RANCHER_USERNAME_INPUT_LABEL?: string;
12734
+ SITE_ADDRESS?: string;
12735
+ SITE_EMAIL?: string;
12736
+ SITE_PHONE?: string;
12737
+ CURRENCY_NAME?: string;
12738
+ THUMBNAIL_SIZE?: string;
12739
+ ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
12740
+ ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
12741
+ NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
12742
+ NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
12743
+ DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
12744
+ MARKETPLACE_LANDING_PAGE?: string;
12745
+ ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
12746
+ TELEMETRY_URL?: string;
12747
+ TELEMETRY_VERSION?: number;
12748
+ SCRIPT_RUN_MODE?: string;
12749
+ DOCKER_CLIENT?: string;
12750
+ DOCKER_RUN_OPTIONS?: string;
12751
+ DOCKER_SCRIPT_DIR?: string;
12752
+ DOCKER_REMOVE_CONTAINER?: boolean;
12753
+ DOCKER_IMAGES?: string;
12754
+ DOCKER_VOLUME_NAME?: string;
12755
+ K8S_NAMESPACE?: string;
12756
+ K8S_CONFIG_PATH?: string;
12757
+ K8S_JOB_TIMEOUT?: number;
12758
+ ENABLE_STRICT_CHECK_ACCEPTING_INVITATION?: boolean;
12759
+ INVITATION_DISABLE_MULTIPLE_ROLES?: boolean;
12760
+ DEFAULT_IDP?: string;
12761
+ DOCS_URL?: string;
12762
+ SHORT_PAGE_TITLE?: string;
12763
+ FULL_PAGE_TITLE?: string;
12764
+ BRAND_COLOR?: string;
12765
+ HERO_LINK_LABEL?: string;
12766
+ HERO_LINK_URL?: string;
12767
+ SUPPORT_PORTAL_URL?: string;
12768
+ COMMON_FOOTER_TEXT?: string;
12769
+ COMMON_FOOTER_HTML?: string;
12770
+ LANGUAGE_CHOICES?: string;
12771
+ DISABLE_DARK_THEME?: boolean;
12772
+ POWERED_BY_LOGO?: (Blob | File) | null;
12773
+ HERO_IMAGE?: (Blob | File) | null;
12774
+ MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
12775
+ CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
12776
+ SIDEBAR_LOGO?: (Blob | File) | null;
12777
+ SIDEBAR_LOGO_DARK?: (Blob | File) | null;
12778
+ SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
12779
+ SIDEBAR_STYLE?: string;
12780
+ SITE_LOGO?: (Blob | File) | null;
12781
+ LOGIN_LOGO?: (Blob | File) | null;
12782
+ FAVICON?: (Blob | File) | null;
12783
+ OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
12784
+ WALDUR_SUPPORT_ENABLED?: boolean;
12785
+ WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
12786
+ WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
12787
+ ATLASSIAN_USE_OLD_API?: boolean;
12788
+ ATLASSIAN_USE_TEENAGE_API?: boolean;
12789
+ ATLASSIAN_USE_AUTOMATIC_REQUEST_MAPPING?: boolean;
12790
+ ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
12791
+ ATLASSIAN_STRANGE_SETTING?: number;
12792
+ ATLASSIAN_API_URL?: string;
12793
+ ATLASSIAN_USERNAME?: string;
12794
+ ATLASSIAN_PASSWORD?: string;
12795
+ ATLASSIAN_EMAIL?: string;
12796
+ ATLASSIAN_TOKEN?: string;
12797
+ ATLASSIAN_VERIFY_SSL?: boolean;
12798
+ ATLASSIAN_PROJECT_ID?: string;
12799
+ ATLASSIAN_SHARED_USERNAME?: boolean;
12800
+ ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
12801
+ ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
12802
+ ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
12803
+ ATLASSIAN_PULL_PRIORITIES?: boolean;
12804
+ ATLASSIAN_ISSUE_TYPES?: string;
12805
+ ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
12806
+ ATLASSIAN_SUMMARY_TEMPLATE?: string;
12807
+ ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
12808
+ ATLASSIAN_IMPACT_FIELD?: string;
12809
+ ATLASSIAN_ORGANISATION_FIELD?: string;
12810
+ ATLASSIAN_RESOLUTION_SLA_FIELD?: string;
12811
+ ATLASSIAN_PROJECT_FIELD?: string;
12812
+ ATLASSIAN_REPORTER_FIELD?: string;
12813
+ ATLASSIAN_CALLER_FIELD?: string;
12814
+ ATLASSIAN_SLA_FIELD?: string;
12815
+ ATLASSIAN_LINKED_ISSUE_TYPE?: string;
12816
+ ATLASSIAN_SATISFACTION_FIELD?: string;
12817
+ ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
12818
+ ATLASSIAN_TEMPLATE_FIELD?: string;
12819
+ ZAMMAD_API_URL?: string;
12820
+ ZAMMAD_TOKEN?: string;
12821
+ ZAMMAD_GROUP?: string;
12822
+ ZAMMAD_ARTICLE_TYPE?: string;
12823
+ ZAMMAD_COMMENT_MARKER?: string;
12824
+ ZAMMAD_COMMENT_PREFIX?: string;
12825
+ ZAMMAD_COMMENT_COOLDOWN_DURATION?: number;
12826
+ SMAX_API_URL?: string;
12827
+ SMAX_TENANT_ID?: string;
12828
+ SMAX_LOGIN?: string;
12829
+ SMAX_PASSWORD?: string;
12830
+ SMAX_ORGANISATION_FIELD?: string;
12831
+ SMAX_PROJECT_FIELD?: string;
12832
+ SMAX_AFFECTED_RESOURCE_FIELD?: string;
12833
+ SMAX_TIMES_TO_PULL?: number;
12834
+ SMAX_SECONDS_TO_WAIT?: number;
12835
+ SMAX_CREATION_SOURCE_NAME?: string;
12836
+ SMAX_REQUESTS_OFFERING?: string;
12837
+ SMAX_VERIFY_SSL?: boolean;
12838
+ ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
12839
+ ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
12840
+ PROPOSAL_REVIEW_DURATION?: number;
12841
+ USER_TABLE_COLUMNS?: string;
12842
+ AUTO_APPROVE_USER_TOS?: boolean;
12843
+ FREEIPA_ENABLED?: boolean;
12844
+ FREEIPA_HOSTNAME?: string;
12845
+ FREEIPA_USERNAME?: string;
12846
+ FREEIPA_PASSWORD?: string;
12847
+ FREEIPA_VERIFY_SSL?: boolean;
12848
+ FREEIPA_USERNAME_PREFIX?: string;
12849
+ FREEIPA_GROUPNAME_PREFIX?: string;
12850
+ FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
12851
+ FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
12852
+ KEYCLOAK_ICON?: (Blob | File) | null;
12853
+ COUNTRIES?: Array<string>;
12854
+ OIDC_AUTH_URL?: string;
12855
+ OIDC_INTROSPECTION_URL?: string;
12856
+ OIDC_CLIENT_ID?: string;
12857
+ OIDC_CLIENT_SECRET?: string;
12858
+ OIDC_USER_FIELD?: string;
12859
+ OIDC_CACHE_TIMEOUT?: number;
12860
+ DEACTIVATE_USER_IF_NO_ROLES?: boolean;
12861
+ MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
12862
+ MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
12863
+ ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
12864
+ };
12865
+ export type ConstanceSettingsRequestMultipart = {
12866
+ SITE_NAME?: string;
12867
+ SITE_DESCRIPTION?: string;
12868
+ HOMEPORT_URL?: string;
12869
+ RANCHER_USERNAME_INPUT_LABEL?: string;
12870
+ SITE_ADDRESS?: string;
12871
+ SITE_EMAIL?: string;
12872
+ SITE_PHONE?: string;
12873
+ CURRENCY_NAME?: string;
12874
+ THUMBNAIL_SIZE?: string;
12875
+ ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
12876
+ ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
12877
+ NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
12878
+ NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
12879
+ DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
12880
+ MARKETPLACE_LANDING_PAGE?: string;
12881
+ ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
12882
+ TELEMETRY_URL?: string;
12883
+ TELEMETRY_VERSION?: number;
12884
+ SCRIPT_RUN_MODE?: string;
12885
+ DOCKER_CLIENT?: string;
12886
+ DOCKER_RUN_OPTIONS?: string;
12887
+ DOCKER_SCRIPT_DIR?: string;
12888
+ DOCKER_REMOVE_CONTAINER?: boolean;
12889
+ DOCKER_IMAGES?: string;
12890
+ DOCKER_VOLUME_NAME?: string;
12891
+ K8S_NAMESPACE?: string;
12892
+ K8S_CONFIG_PATH?: string;
12893
+ K8S_JOB_TIMEOUT?: number;
12894
+ ENABLE_STRICT_CHECK_ACCEPTING_INVITATION?: boolean;
12895
+ INVITATION_DISABLE_MULTIPLE_ROLES?: boolean;
12896
+ DEFAULT_IDP?: string;
12897
+ DOCS_URL?: string;
12898
+ SHORT_PAGE_TITLE?: string;
12899
+ FULL_PAGE_TITLE?: string;
12900
+ BRAND_COLOR?: string;
12901
+ HERO_LINK_LABEL?: string;
12902
+ HERO_LINK_URL?: string;
12903
+ SUPPORT_PORTAL_URL?: string;
12904
+ COMMON_FOOTER_TEXT?: string;
12905
+ COMMON_FOOTER_HTML?: string;
12906
+ LANGUAGE_CHOICES?: string;
12907
+ DISABLE_DARK_THEME?: boolean;
12908
+ POWERED_BY_LOGO?: (Blob | File) | null;
12909
+ HERO_IMAGE?: (Blob | File) | null;
12910
+ MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
12911
+ CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
12912
+ SIDEBAR_LOGO?: (Blob | File) | null;
12913
+ SIDEBAR_LOGO_DARK?: (Blob | File) | null;
12914
+ SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
12915
+ SIDEBAR_STYLE?: string;
12916
+ SITE_LOGO?: (Blob | File) | null;
12917
+ LOGIN_LOGO?: (Blob | File) | null;
12918
+ FAVICON?: (Blob | File) | null;
12919
+ OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
12920
+ WALDUR_SUPPORT_ENABLED?: boolean;
12921
+ WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
12922
+ WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
12923
+ ATLASSIAN_USE_OLD_API?: boolean;
12924
+ ATLASSIAN_USE_TEENAGE_API?: boolean;
12925
+ ATLASSIAN_USE_AUTOMATIC_REQUEST_MAPPING?: boolean;
12926
+ ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
12927
+ ATLASSIAN_STRANGE_SETTING?: number;
12928
+ ATLASSIAN_API_URL?: string;
12929
+ ATLASSIAN_USERNAME?: string;
12930
+ ATLASSIAN_PASSWORD?: string;
12931
+ ATLASSIAN_EMAIL?: string;
12932
+ ATLASSIAN_TOKEN?: string;
12933
+ ATLASSIAN_VERIFY_SSL?: boolean;
12934
+ ATLASSIAN_PROJECT_ID?: string;
12935
+ ATLASSIAN_SHARED_USERNAME?: boolean;
12936
+ ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
12937
+ ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
12938
+ ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
12939
+ ATLASSIAN_PULL_PRIORITIES?: boolean;
12940
+ ATLASSIAN_ISSUE_TYPES?: string;
12941
+ ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
12942
+ ATLASSIAN_SUMMARY_TEMPLATE?: string;
12943
+ ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
12944
+ ATLASSIAN_IMPACT_FIELD?: string;
12945
+ ATLASSIAN_ORGANISATION_FIELD?: string;
12946
+ ATLASSIAN_RESOLUTION_SLA_FIELD?: string;
12947
+ ATLASSIAN_PROJECT_FIELD?: string;
12948
+ ATLASSIAN_REPORTER_FIELD?: string;
12949
+ ATLASSIAN_CALLER_FIELD?: string;
12950
+ ATLASSIAN_SLA_FIELD?: string;
12951
+ ATLASSIAN_LINKED_ISSUE_TYPE?: string;
12952
+ ATLASSIAN_SATISFACTION_FIELD?: string;
12953
+ ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
12954
+ ATLASSIAN_TEMPLATE_FIELD?: string;
12955
+ ZAMMAD_API_URL?: string;
12956
+ ZAMMAD_TOKEN?: string;
12957
+ ZAMMAD_GROUP?: string;
12958
+ ZAMMAD_ARTICLE_TYPE?: string;
12959
+ ZAMMAD_COMMENT_MARKER?: string;
12960
+ ZAMMAD_COMMENT_PREFIX?: string;
12961
+ ZAMMAD_COMMENT_COOLDOWN_DURATION?: number;
12962
+ SMAX_API_URL?: string;
12963
+ SMAX_TENANT_ID?: string;
12964
+ SMAX_LOGIN?: string;
12965
+ SMAX_PASSWORD?: string;
12966
+ SMAX_ORGANISATION_FIELD?: string;
12967
+ SMAX_PROJECT_FIELD?: string;
12968
+ SMAX_AFFECTED_RESOURCE_FIELD?: string;
12969
+ SMAX_TIMES_TO_PULL?: number;
12970
+ SMAX_SECONDS_TO_WAIT?: number;
12971
+ SMAX_CREATION_SOURCE_NAME?: string;
12972
+ SMAX_REQUESTS_OFFERING?: string;
12973
+ SMAX_VERIFY_SSL?: boolean;
12974
+ ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
12975
+ ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
12976
+ PROPOSAL_REVIEW_DURATION?: number;
12977
+ USER_TABLE_COLUMNS?: string;
12978
+ AUTO_APPROVE_USER_TOS?: boolean;
12979
+ FREEIPA_ENABLED?: boolean;
12980
+ FREEIPA_HOSTNAME?: string;
12981
+ FREEIPA_USERNAME?: string;
12982
+ FREEIPA_PASSWORD?: string;
12983
+ FREEIPA_VERIFY_SSL?: boolean;
12984
+ FREEIPA_USERNAME_PREFIX?: string;
12985
+ FREEIPA_GROUPNAME_PREFIX?: string;
12986
+ FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
12987
+ FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
12988
+ KEYCLOAK_ICON?: (Blob | File) | null;
12989
+ COUNTRIES?: Array<string>;
12990
+ OIDC_AUTH_URL?: string;
12991
+ OIDC_INTROSPECTION_URL?: string;
12992
+ OIDC_CLIENT_ID?: string;
12993
+ OIDC_CLIENT_SECRET?: string;
12994
+ OIDC_USER_FIELD?: string;
12995
+ OIDC_CACHE_TIMEOUT?: number;
12996
+ DEACTIVATE_USER_IF_NO_ROLES?: boolean;
12997
+ MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
12998
+ MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
12999
+ ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
13000
+ };
13001
+ export type PaymentRequestForm = {
13002
+ profile: string;
13003
+ date_of_payment: string;
13004
+ sum?: string;
13005
+ proof?: (Blob | File) | null;
13006
+ };
13007
+ export type PaymentRequestMultipart = {
13008
+ profile: string;
13009
+ date_of_payment: string;
13010
+ sum?: string;
13011
+ proof?: (Blob | File) | null;
13012
+ };
13013
+ export type PatchedPaymentRequestForm = {
13014
+ profile?: string;
13015
+ date_of_payment?: string;
13016
+ sum?: string;
13017
+ proof?: (Blob | File) | null;
13018
+ };
13019
+ export type PatchedPaymentRequestMultipart = {
13020
+ profile?: string;
13021
+ date_of_payment?: string;
13022
+ sum?: string;
13023
+ proof?: (Blob | File) | null;
13024
+ };
13025
+ export type ProjectRequestForm = {
13026
+ name: string;
13027
+ slug?: string;
13028
+ /**
13029
+ * Organization
13030
+ */
13031
+ customer: string;
13032
+ description?: string;
13033
+ /**
13034
+ * Project type
13035
+ */
13036
+ type?: string | null;
13037
+ backend_id?: string;
13038
+ start_date?: string | null;
13039
+ /**
13040
+ * The date is inclusive. Once reached, all project resource will be scheduled for termination.
13041
+ */
13042
+ end_date?: string | null;
13043
+ oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
13044
+ is_industry?: boolean;
13045
+ image?: (Blob | File) | null;
13046
+ /**
13047
+ * Project type
13048
+ */
13049
+ kind?: KindEnum;
13050
+ };
13051
+ export type ProjectRequestMultipart = {
13052
+ name: string;
13053
+ slug?: string;
13054
+ /**
13055
+ * Organization
13056
+ */
13057
+ customer: string;
13058
+ description?: string;
13059
+ /**
13060
+ * Project type
13061
+ */
13062
+ type?: string | null;
13063
+ backend_id?: string;
13064
+ start_date?: string | null;
13065
+ /**
13066
+ * The date is inclusive. Once reached, all project resource will be scheduled for termination.
13067
+ */
13068
+ end_date?: string | null;
13069
+ oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
13070
+ is_industry?: boolean;
13071
+ image?: (Blob | File) | null;
13072
+ /**
13073
+ * Project type
13074
+ */
13075
+ kind?: KindEnum;
13076
+ };
13077
+ export type PatchedProjectRequestForm = {
13078
+ name?: string;
13079
+ slug?: string;
13080
+ /**
13081
+ * Organization
13082
+ */
13083
+ customer?: string;
13084
+ description?: string;
13085
+ /**
13086
+ * Project type
13087
+ */
13088
+ type?: string | null;
13089
+ backend_id?: string;
13090
+ start_date?: string | null;
13091
+ /**
13092
+ * The date is inclusive. Once reached, all project resource will be scheduled for termination.
13093
+ */
13094
+ end_date?: string | null;
13095
+ oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
13096
+ is_industry?: boolean;
13097
+ image?: (Blob | File) | null;
13098
+ /**
13099
+ * Project type
13100
+ */
13101
+ kind?: KindEnum;
13102
+ };
13103
+ export type PatchedProjectRequestMultipart = {
13104
+ name?: string;
13105
+ slug?: string;
13106
+ /**
13107
+ * Organization
13108
+ */
13109
+ customer?: string;
13110
+ description?: string;
13111
+ /**
13112
+ * Project type
13113
+ */
13114
+ type?: string | null;
13115
+ backend_id?: string;
13116
+ start_date?: string | null;
13117
+ /**
13118
+ * The date is inclusive. Once reached, all project resource will be scheduled for termination.
13119
+ */
13120
+ end_date?: string | null;
13121
+ oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
13122
+ is_industry?: boolean;
13123
+ image?: (Blob | File) | null;
13124
+ /**
13125
+ * Project type
13126
+ */
13127
+ kind?: KindEnum;
13128
+ };
13129
+ export type ProposalDocumentationRequestForm = {
13130
+ /**
13131
+ * Upload supporting documentation in PDF format.
13132
+ */
13133
+ file?: (Blob | File) | null;
13134
+ };
13135
+ export type ProposalDocumentationRequestMultipart = {
13136
+ /**
13137
+ * Upload supporting documentation in PDF format.
13138
+ */
13139
+ file?: (Blob | File) | null;
13140
+ };
13141
+ export type FirecrestJobRequestForm = {
13142
+ name: string;
13143
+ description?: string;
13144
+ service_settings: string;
13145
+ project: string;
13146
+ runtime_state?: string;
13147
+ /**
13148
+ * Batch script file
13149
+ */
13150
+ file: Blob | File;
13151
+ };
13152
+ export type FirecrestJobRequestMultipart = {
13153
+ name: string;
13154
+ description?: string;
13155
+ service_settings: string;
13156
+ project: string;
13157
+ runtime_state?: string;
13158
+ /**
13159
+ * Batch script file
13160
+ */
13161
+ file: Blob | File;
13162
+ };
13163
+ export type AttachmentRequestForm = {
13164
+ issue: string;
13165
+ file: Blob | File;
13166
+ };
13167
+ export type AttachmentRequestMultipart = {
13168
+ issue: string;
13169
+ file: Blob | File;
13170
+ };
13171
+ export type UserRequestForm = {
13172
+ /**
13173
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
13174
+ */
13175
+ username: string;
13176
+ slug?: string;
13177
+ native_name?: string;
13178
+ job_title?: string;
13179
+ email: string;
13180
+ phone_number?: string;
13181
+ organization?: string;
13182
+ description?: string;
13183
+ /**
13184
+ * Staff status
13185
+ * Designates whether the user can log into this admin site.
13186
+ */
13187
+ is_staff?: boolean;
13188
+ /**
13189
+ * Active
13190
+ * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
13191
+ */
13192
+ is_active?: boolean;
13193
+ /**
13194
+ * Support status
13195
+ * Designates whether the user is a global support user.
13196
+ */
13197
+ is_support?: boolean;
13198
+ /**
13199
+ * Token lifetime in seconds.
13200
+ */
13201
+ token_lifetime?: number | null;
13202
+ /**
13203
+ * User must agree with the policy to register.
13204
+ */
13205
+ agree_with_policy?: boolean;
13206
+ /**
13207
+ * Designates whether the user is allowed to receive email notifications.
13208
+ */
13209
+ notifications_enabled?: boolean;
13210
+ preferred_language?: string;
13211
+ first_name?: string;
13212
+ last_name?: string;
13213
+ image?: (Blob | File) | null;
13214
+ };
13215
+ export type UserRequestMultipart = {
13216
+ /**
13217
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
13218
+ */
13219
+ username: string;
13220
+ slug?: string;
13221
+ native_name?: string;
13222
+ job_title?: string;
13223
+ email: string;
13224
+ phone_number?: string;
13225
+ organization?: string;
13226
+ description?: string;
13227
+ /**
13228
+ * Staff status
13229
+ * Designates whether the user can log into this admin site.
13230
+ */
13231
+ is_staff?: boolean;
13232
+ /**
13233
+ * Active
13234
+ * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
13235
+ */
13236
+ is_active?: boolean;
13237
+ /**
13238
+ * Support status
13239
+ * Designates whether the user is a global support user.
13240
+ */
13241
+ is_support?: boolean;
13242
+ /**
13243
+ * Token lifetime in seconds.
13244
+ */
13245
+ token_lifetime?: number | null;
13246
+ /**
13247
+ * User must agree with the policy to register.
13248
+ */
13249
+ agree_with_policy?: boolean;
13250
+ /**
13251
+ * Designates whether the user is allowed to receive email notifications.
13252
+ */
13253
+ notifications_enabled?: boolean;
13254
+ preferred_language?: string;
13255
+ first_name?: string;
13256
+ last_name?: string;
13257
+ image?: (Blob | File) | null;
13258
+ };
13259
+ export type PatchedUserRequestForm = {
13260
+ /**
13261
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
13262
+ */
13263
+ username?: string;
13264
+ slug?: string;
13265
+ native_name?: string;
13266
+ job_title?: string;
13267
+ phone_number?: string;
13268
+ organization?: string;
13269
+ description?: string;
13270
+ /**
13271
+ * Staff status
13272
+ * Designates whether the user can log into this admin site.
13273
+ */
13274
+ is_staff?: boolean;
13275
+ /**
13276
+ * Active
13277
+ * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
13278
+ */
13279
+ is_active?: boolean;
13280
+ /**
13281
+ * Support status
13282
+ * Designates whether the user is a global support user.
13283
+ */
13284
+ is_support?: boolean;
13285
+ /**
13286
+ * Token lifetime in seconds.
13287
+ */
13288
+ token_lifetime?: number | null;
13289
+ /**
13290
+ * User must agree with the policy to register.
13291
+ */
13292
+ agree_with_policy?: boolean;
13293
+ /**
13294
+ * Designates whether the user is allowed to receive email notifications.
13295
+ */
13296
+ notifications_enabled?: boolean;
13297
+ preferred_language?: string;
13298
+ first_name?: string;
13299
+ last_name?: string;
13300
+ image?: (Blob | File) | null;
13301
+ };
13302
+ export type PatchedUserRequestMultipart = {
13303
+ /**
13304
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
13305
+ */
13306
+ username?: string;
13307
+ slug?: string;
13308
+ native_name?: string;
13309
+ job_title?: string;
13310
+ phone_number?: string;
13311
+ organization?: string;
13312
+ description?: string;
13313
+ /**
13314
+ * Staff status
13315
+ * Designates whether the user can log into this admin site.
13316
+ */
13317
+ is_staff?: boolean;
13318
+ /**
13319
+ * Active
13320
+ * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
13321
+ */
13322
+ is_active?: boolean;
13323
+ /**
13324
+ * Support status
13325
+ * Designates whether the user is a global support user.
13326
+ */
13327
+ is_support?: boolean;
13328
+ /**
13329
+ * Token lifetime in seconds.
13330
+ */
13331
+ token_lifetime?: number | null;
13332
+ /**
13333
+ * User must agree with the policy to register.
13334
+ */
13335
+ agree_with_policy?: boolean;
13336
+ /**
13337
+ * Designates whether the user is allowed to receive email notifications.
13338
+ */
13339
+ notifications_enabled?: boolean;
13340
+ preferred_language?: string;
13341
+ first_name?: string;
13342
+ last_name?: string;
13343
+ image?: (Blob | File) | null;
13344
+ };
12312
13345
  /**
12313
13346
  * This mixin allows to specify list of fields to be rendered by serializer.
12314
13347
  * It expects that request is available in serializer's context.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.2-dev.0",
3
+ "version": "7.8.2-dev.2",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",