waldur-js-client 7.9.10-dev.4 → 7.9.10-dev.6

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.
@@ -17969,17 +17969,6 @@ export type ResourceUserRequest = {
17969
17969
  role: string;
17970
17970
  user: string;
17971
17971
  };
17972
- export type ResourceVersion = {
17973
- id: number;
17974
- revision_date: string;
17975
- readonly revision_user: {
17976
- [key: string]: unknown;
17977
- } | null;
17978
- revision_comment: string;
17979
- readonly serialized_data: {
17980
- [key: string]: unknown;
17981
- };
17982
- };
17983
17972
  export type ResourcesGeographySummary = {
17984
17973
  /**
17985
17974
  * Total number of active resources
@@ -20765,6 +20754,16 @@ export type UserInfoRequest = {
20765
20754
  shortname?: string | null;
20766
20755
  user: string;
20767
20756
  };
20757
+ export type UserJobTitleCount = {
20758
+ /**
20759
+ * Job title
20760
+ */
20761
+ job_title: string | null;
20762
+ /**
20763
+ * Number of users
20764
+ */
20765
+ count: number;
20766
+ };
20768
20767
  export type UserLanguageCount = {
20769
20768
  language: string;
20770
20769
  count: number;
@@ -20816,6 +20815,16 @@ export type UserOrganizationCount = {
20816
20815
  */
20817
20816
  count: number;
20818
20817
  };
20818
+ export type UserOrganizationTypeCount = {
20819
+ /**
20820
+ * Organization type (SCHAC URN)
20821
+ */
20822
+ organization_type: string | null;
20823
+ /**
20824
+ * Number of users
20825
+ */
20826
+ count: number;
20827
+ };
20819
20828
  export type UserRegistrationTrend = {
20820
20829
  month: string;
20821
20830
  count: number;
@@ -20957,6 +20966,32 @@ export type VersionAdoption = {
20957
20966
  */
20958
20967
  readonly users_count: number;
20959
20968
  };
20969
+ export type VersionHistory = {
20970
+ /**
20971
+ * Version ID
20972
+ */
20973
+ id: number;
20974
+ /**
20975
+ * When this revision was created
20976
+ */
20977
+ revision_date: string;
20978
+ /**
20979
+ * User who created this revision
20980
+ */
20981
+ readonly revision_user: {
20982
+ [key: string]: unknown;
20983
+ } | null;
20984
+ /**
20985
+ * Comment describing the revision
20986
+ */
20987
+ revision_comment: string;
20988
+ /**
20989
+ * Serialized model fields at this revision
20990
+ */
20991
+ readonly serialized_data: {
20992
+ [key: string]: unknown;
20993
+ };
20994
+ };
20960
20995
  export type VisibilityEnum = 'private' | 'public';
20961
20996
  export type VisibleInvitationDetails = {
20962
20997
  /**
@@ -29880,6 +29915,105 @@ export type CustomersDeleteUserResponses = {
29880
29915
  */
29881
29916
  200: unknown;
29882
29917
  };
29918
+ export type CustomersHistoryListData = {
29919
+ body?: never;
29920
+ path: {
29921
+ uuid: string;
29922
+ };
29923
+ query?: {
29924
+ /**
29925
+ * Abbreviation
29926
+ */
29927
+ abbreviation?: string;
29928
+ agreement_number?: string;
29929
+ archived?: boolean;
29930
+ backend_id?: string;
29931
+ /**
29932
+ * Contact details
29933
+ */
29934
+ contact_details?: string;
29935
+ /**
29936
+ * Filter versions created after this timestamp (ISO 8601)
29937
+ */
29938
+ created_after?: string;
29939
+ /**
29940
+ * Filter versions created before this timestamp (ISO 8601)
29941
+ */
29942
+ created_before?: string;
29943
+ /**
29944
+ * Name
29945
+ */
29946
+ name?: string;
29947
+ /**
29948
+ * Name (exact)
29949
+ */
29950
+ name_exact?: string;
29951
+ /**
29952
+ * Native name
29953
+ */
29954
+ native_name?: string;
29955
+ /**
29956
+ * Which field to use when ordering the results.
29957
+ */
29958
+ o?: string;
29959
+ /**
29960
+ * Organization group name
29961
+ */
29962
+ organization_group_name?: string;
29963
+ /**
29964
+ * Organization group UUID
29965
+ */
29966
+ organization_group_uuid?: Array<string>;
29967
+ /**
29968
+ * Return a list of customers where current user is owner.
29969
+ */
29970
+ owned_by_current_user?: boolean;
29971
+ /**
29972
+ * A page number within the paginated result set.
29973
+ */
29974
+ page?: number;
29975
+ /**
29976
+ * Number of results to return per page.
29977
+ */
29978
+ page_size?: number;
29979
+ /**
29980
+ * Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
29981
+ */
29982
+ query?: string;
29983
+ registration_code?: string;
29984
+ };
29985
+ url: '/api/customers/{uuid}/history/';
29986
+ };
29987
+ export type CustomersHistoryListResponses = {
29988
+ 200: Array<VersionHistory>;
29989
+ };
29990
+ export type CustomersHistoryListResponse = CustomersHistoryListResponses[keyof CustomersHistoryListResponses];
29991
+ export type CustomersHistoryAtRetrieveData = {
29992
+ body?: never;
29993
+ path: {
29994
+ uuid: string;
29995
+ };
29996
+ query: {
29997
+ /**
29998
+ * ISO 8601 timestamp to query the object state at
29999
+ */
30000
+ timestamp: string;
30001
+ };
30002
+ url: '/api/customers/{uuid}/history/at/';
30003
+ };
30004
+ export type CustomersHistoryAtRetrieveErrors = {
30005
+ 400: {
30006
+ [key: string]: unknown;
30007
+ };
30008
+ 404: {
30009
+ [key: string]: unknown;
30010
+ };
30011
+ };
30012
+ export type CustomersHistoryAtRetrieveError = CustomersHistoryAtRetrieveErrors[keyof CustomersHistoryAtRetrieveErrors];
30013
+ export type CustomersHistoryAtRetrieveResponses = {
30014
+ 200: VersionHistory;
30015
+ };
30016
+ export type CustomersHistoryAtRetrieveResponse = CustomersHistoryAtRetrieveResponses[keyof CustomersHistoryAtRetrieveResponses];
29883
30017
  export type CustomersListUsersListData = {
29884
30018
  body?: never;
29885
30019
  path: {
@@ -32814,6 +32948,75 @@ export type InvoicesRetrieveResponses = {
32814
32948
  200: Invoice;
32815
32949
  };
32816
32950
  export type InvoicesRetrieveResponse = InvoicesRetrieveResponses[keyof InvoicesRetrieveResponses];
32951
+ export type InvoicesHistoryListData = {
32952
+ body?: never;
32953
+ path: {
32954
+ uuid: string;
32955
+ };
32956
+ query?: {
32957
+ created?: string;
32958
+ /**
32959
+ * Filter versions created after this timestamp (ISO 8601)
32960
+ */
32961
+ created_after?: string;
32962
+ /**
32963
+ * Filter versions created before this timestamp (ISO 8601)
32964
+ */
32965
+ created_before?: string;
32966
+ customer?: string;
32967
+ customer_uuid?: string;
32968
+ end_date?: string;
32969
+ month?: number;
32970
+ /**
32971
+ * Ordering
32972
+ *
32973
+ *
32974
+ */
32975
+ o?: Array<'-created' | '-month' | '-year' | 'created' | 'month' | 'year'>;
32976
+ /**
32977
+ * A page number within the paginated result set.
32978
+ */
32979
+ page?: number;
32980
+ /**
32981
+ * Number of results to return per page.
32982
+ */
32983
+ page_size?: number;
32984
+ start_date?: string;
32985
+ state?: Array<'canceled' | 'created' | 'paid' | 'pending'>;
32986
+ year?: number;
32987
+ };
32988
+ url: '/api/invoices/{uuid}/history/';
32989
+ };
32990
+ export type InvoicesHistoryListResponses = {
32991
+ 200: Array<VersionHistory>;
32992
+ };
32993
+ export type InvoicesHistoryListResponse = InvoicesHistoryListResponses[keyof InvoicesHistoryListResponses];
32994
+ export type InvoicesHistoryAtRetrieveData = {
32995
+ body?: never;
32996
+ path: {
32997
+ uuid: string;
32998
+ };
32999
+ query: {
33000
+ /**
33001
+ * ISO 8601 timestamp to query the object state at
33002
+ */
33003
+ timestamp: string;
33004
+ };
33005
+ url: '/api/invoices/{uuid}/history/at/';
33006
+ };
33007
+ export type InvoicesHistoryAtRetrieveErrors = {
33008
+ 400: {
33009
+ [key: string]: unknown;
33010
+ };
33011
+ 404: {
33012
+ [key: string]: unknown;
33013
+ };
33014
+ };
33015
+ export type InvoicesHistoryAtRetrieveError = InvoicesHistoryAtRetrieveErrors[keyof InvoicesHistoryAtRetrieveErrors];
33016
+ export type InvoicesHistoryAtRetrieveResponses = {
33017
+ 200: VersionHistory;
33018
+ };
33019
+ export type InvoicesHistoryAtRetrieveResponse = InvoicesHistoryAtRetrieveResponses[keyof InvoicesHistoryAtRetrieveResponses];
32817
33020
  export type InvoicesItemsRetrieveData = {
32818
33021
  body?: never;
32819
33022
  path: {
@@ -33308,11 +33511,46 @@ export type KeysRetrieveResponses = {
33308
33511
  200: SshKey;
33309
33512
  };
33310
33513
  export type KeysRetrieveResponse = KeysRetrieveResponses[keyof KeysRetrieveResponses];
33311
- export type LexisLinksListData = {
33514
+ export type KeysHistoryListData = {
33312
33515
  body?: never;
33313
- path?: never;
33516
+ path: {
33517
+ uuid: string;
33518
+ };
33314
33519
  query?: {
33315
- customer_uuid?: string;
33520
+ /**
33521
+ * Created after
33522
+ */
33523
+ created?: string;
33524
+ /**
33525
+ * Filter versions created after this timestamp (ISO 8601)
33526
+ */
33527
+ created_after?: string;
33528
+ /**
33529
+ * Filter versions created before this timestamp (ISO 8601)
33530
+ */
33531
+ created_before?: string;
33532
+ fingerprint_md5?: string;
33533
+ fingerprint_sha256?: string;
33534
+ fingerprint_sha512?: string;
33535
+ is_shared?: boolean;
33536
+ /**
33537
+ * Modified after
33538
+ */
33539
+ modified?: string;
33540
+ /**
33541
+ * Name
33542
+ */
33543
+ name?: string;
33544
+ /**
33545
+ * Name (exact)
33546
+ */
33547
+ name_exact?: string;
33548
+ /**
33549
+ * Ordering
33550
+ *
33551
+ *
33552
+ */
33553
+ o?: Array<'-name' | 'name'>;
33316
33554
  /**
33317
33555
  * A page number within the paginated result set.
33318
33556
  */
@@ -33321,21 +33559,75 @@ export type LexisLinksListData = {
33321
33559
  * Number of results to return per page.
33322
33560
  */
33323
33561
  page_size?: number;
33324
- project_uuid?: string;
33325
33562
  /**
33326
- * Filter by robot account username or type
33563
+ * User UUID
33564
+ */
33565
+ user_uuid?: string;
33566
+ /**
33567
+ * UUID
33327
33568
  */
33328
- query?: string;
33329
- resource_uuid?: string;
33330
33569
  uuid?: string;
33331
33570
  };
33332
- url: '/api/lexis-links/';
33571
+ url: '/api/keys/{uuid}/history/';
33333
33572
  };
33334
- export type LexisLinksListResponses = {
33335
- 200: Array<LexisLink>;
33573
+ export type KeysHistoryListResponses = {
33574
+ 200: Array<VersionHistory>;
33336
33575
  };
33337
- export type LexisLinksListResponse = LexisLinksListResponses[keyof LexisLinksListResponses];
33338
- export type LexisLinksCountData = {
33576
+ export type KeysHistoryListResponse = KeysHistoryListResponses[keyof KeysHistoryListResponses];
33577
+ export type KeysHistoryAtRetrieveData = {
33578
+ body?: never;
33579
+ path: {
33580
+ uuid: string;
33581
+ };
33582
+ query: {
33583
+ /**
33584
+ * ISO 8601 timestamp to query the object state at
33585
+ */
33586
+ timestamp: string;
33587
+ };
33588
+ url: '/api/keys/{uuid}/history/at/';
33589
+ };
33590
+ export type KeysHistoryAtRetrieveErrors = {
33591
+ 400: {
33592
+ [key: string]: unknown;
33593
+ };
33594
+ 404: {
33595
+ [key: string]: unknown;
33596
+ };
33597
+ };
33598
+ export type KeysHistoryAtRetrieveError = KeysHistoryAtRetrieveErrors[keyof KeysHistoryAtRetrieveErrors];
33599
+ export type KeysHistoryAtRetrieveResponses = {
33600
+ 200: VersionHistory;
33601
+ };
33602
+ export type KeysHistoryAtRetrieveResponse = KeysHistoryAtRetrieveResponses[keyof KeysHistoryAtRetrieveResponses];
33603
+ export type LexisLinksListData = {
33604
+ body?: never;
33605
+ path?: never;
33606
+ query?: {
33607
+ customer_uuid?: string;
33608
+ /**
33609
+ * A page number within the paginated result set.
33610
+ */
33611
+ page?: number;
33612
+ /**
33613
+ * Number of results to return per page.
33614
+ */
33615
+ page_size?: number;
33616
+ project_uuid?: string;
33617
+ /**
33618
+ * Filter by robot account username or type
33619
+ */
33620
+ query?: string;
33621
+ resource_uuid?: string;
33622
+ uuid?: string;
33623
+ };
33624
+ url: '/api/lexis-links/';
33625
+ };
33626
+ export type LexisLinksListResponses = {
33627
+ 200: Array<LexisLink>;
33628
+ };
33629
+ export type LexisLinksListResponse = LexisLinksListResponses[keyof LexisLinksListResponses];
33630
+ export type LexisLinksCountData = {
33339
33631
  body?: never;
33340
33632
  path?: never;
33341
33633
  query?: {
@@ -38369,6 +38661,71 @@ export type MarketplacePlansDeleteOrganizationGroupsResponses = {
38369
38661
  204: void;
38370
38662
  };
38371
38663
  export type MarketplacePlansDeleteOrganizationGroupsResponse = MarketplacePlansDeleteOrganizationGroupsResponses[keyof MarketplacePlansDeleteOrganizationGroupsResponses];
38664
+ export type MarketplacePlansHistoryListData = {
38665
+ body?: never;
38666
+ path: {
38667
+ uuid: string;
38668
+ };
38669
+ query?: {
38670
+ /**
38671
+ * Filter versions created after this timestamp (ISO 8601)
38672
+ */
38673
+ created_after?: string;
38674
+ /**
38675
+ * Filter versions created before this timestamp (ISO 8601)
38676
+ */
38677
+ created_before?: string;
38678
+ offering?: string;
38679
+ /**
38680
+ * Multiple values may be separated by commas.
38681
+ */
38682
+ offering_slug?: Array<string>;
38683
+ /**
38684
+ * Offering UUID
38685
+ */
38686
+ offering_uuid?: string;
38687
+ /**
38688
+ * A page number within the paginated result set.
38689
+ */
38690
+ page?: number;
38691
+ /**
38692
+ * Number of results to return per page.
38693
+ */
38694
+ page_size?: number;
38695
+ parent_offering_uuid?: string;
38696
+ };
38697
+ url: '/api/marketplace-plans/{uuid}/history/';
38698
+ };
38699
+ export type MarketplacePlansHistoryListResponses = {
38700
+ 200: Array<VersionHistory>;
38701
+ };
38702
+ export type MarketplacePlansHistoryListResponse = MarketplacePlansHistoryListResponses[keyof MarketplacePlansHistoryListResponses];
38703
+ export type MarketplacePlansHistoryAtRetrieveData = {
38704
+ body?: never;
38705
+ path: {
38706
+ uuid: string;
38707
+ };
38708
+ query: {
38709
+ /**
38710
+ * ISO 8601 timestamp to query the object state at
38711
+ */
38712
+ timestamp: string;
38713
+ };
38714
+ url: '/api/marketplace-plans/{uuid}/history/at/';
38715
+ };
38716
+ export type MarketplacePlansHistoryAtRetrieveErrors = {
38717
+ 400: {
38718
+ [key: string]: unknown;
38719
+ };
38720
+ 404: {
38721
+ [key: string]: unknown;
38722
+ };
38723
+ };
38724
+ export type MarketplacePlansHistoryAtRetrieveError = MarketplacePlansHistoryAtRetrieveErrors[keyof MarketplacePlansHistoryAtRetrieveErrors];
38725
+ export type MarketplacePlansHistoryAtRetrieveResponses = {
38726
+ 200: VersionHistory;
38727
+ };
38728
+ export type MarketplacePlansHistoryAtRetrieveResponse = MarketplacePlansHistoryAtRetrieveResponses[keyof MarketplacePlansHistoryAtRetrieveResponses];
38372
38729
  export type MarketplacePlansUpdateDiscountsData = {
38373
38730
  body: DiscountsUpdateRequest;
38374
38731
  path: {
@@ -40023,6 +40380,206 @@ export type MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses = {
40023
40380
  200: string;
40024
40381
  };
40025
40382
  export type MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponse = MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses[keyof MarketplaceProviderOfferingsGlauthUsersConfigRetrieveResponses];
40383
+ export type MarketplaceProviderOfferingsHistoryListData = {
40384
+ body?: never;
40385
+ path: {
40386
+ uuid: string;
40387
+ };
40388
+ query?: {
40389
+ /**
40390
+ * Accessible via calls
40391
+ */
40392
+ accessible_via_calls?: boolean;
40393
+ /**
40394
+ * Allowed customer UUID
40395
+ */
40396
+ allowed_customer_uuid?: string;
40397
+ /**
40398
+ * Offering attributes (JSON)
40399
+ */
40400
+ attributes?: string;
40401
+ /**
40402
+ * Billable
40403
+ */
40404
+ billable?: boolean;
40405
+ can_create_offering_user?: boolean;
40406
+ /**
40407
+ * Category group UUID
40408
+ */
40409
+ category_group_uuid?: string;
40410
+ /**
40411
+ * Category UUID
40412
+ */
40413
+ category_uuid?: string;
40414
+ /**
40415
+ * Created after
40416
+ */
40417
+ created?: string;
40418
+ /**
40419
+ * Filter versions created after this timestamp (ISO 8601)
40420
+ */
40421
+ created_after?: string;
40422
+ /**
40423
+ * Filter versions created before this timestamp (ISO 8601)
40424
+ */
40425
+ created_before?: string;
40426
+ /**
40427
+ * Customer URL
40428
+ */
40429
+ customer?: string;
40430
+ /**
40431
+ * Customer UUID
40432
+ */
40433
+ customer_uuid?: string;
40434
+ /**
40435
+ * Description contains
40436
+ */
40437
+ description?: string;
40438
+ /**
40439
+ * Has Active Terms of Service
40440
+ */
40441
+ has_active_terms_of_service?: boolean;
40442
+ /**
40443
+ * Has Terms of Service
40444
+ */
40445
+ has_terms_of_service?: boolean;
40446
+ /**
40447
+ * Keyword
40448
+ */
40449
+ keyword?: string;
40450
+ /**
40451
+ * Modified after
40452
+ */
40453
+ modified?: string;
40454
+ /**
40455
+ * Name
40456
+ */
40457
+ name?: string;
40458
+ /**
40459
+ * Name (exact)
40460
+ */
40461
+ name_exact?: string;
40462
+ /**
40463
+ * Ordering
40464
+ *
40465
+ *
40466
+ */
40467
+ o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
40468
+ /**
40469
+ * Organization group UUID
40470
+ */
40471
+ organization_group_uuid?: Array<string>;
40472
+ /**
40473
+ * A page number within the paginated result set.
40474
+ */
40475
+ page?: number;
40476
+ /**
40477
+ * Number of results to return per page.
40478
+ */
40479
+ page_size?: number;
40480
+ /**
40481
+ * Parent offering UUID
40482
+ */
40483
+ parent_uuid?: string;
40484
+ /**
40485
+ * Project UUID
40486
+ */
40487
+ project_uuid?: string;
40488
+ /**
40489
+ * Search by offering name, slug or description
40490
+ */
40491
+ query?: string;
40492
+ /**
40493
+ * Resource customer UUID
40494
+ */
40495
+ resource_customer_uuid?: string;
40496
+ /**
40497
+ * Resource project UUID
40498
+ */
40499
+ resource_project_uuid?: string;
40500
+ /**
40501
+ * Scope UUID
40502
+ */
40503
+ scope_uuid?: string;
40504
+ /**
40505
+ * Service manager UUID
40506
+ */
40507
+ service_manager_uuid?: string;
40508
+ /**
40509
+ * Shared
40510
+ */
40511
+ shared?: boolean;
40512
+ /**
40513
+ * Offering state
40514
+ *
40515
+ *
40516
+ */
40517
+ state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
40518
+ /**
40519
+ * Tag UUID (OR logic)
40520
+ */
40521
+ tag?: Array<string>;
40522
+ /**
40523
+ * Tag name (OR logic)
40524
+ */
40525
+ tag_name?: Array<string>;
40526
+ /**
40527
+ * Tag names with AND logic (comma-separated)
40528
+ */
40529
+ tag_names_and?: string;
40530
+ /**
40531
+ * Tag UUIDs with AND logic (comma-separated)
40532
+ */
40533
+ tags_and?: string;
40534
+ /**
40535
+ * Offering type
40536
+ */
40537
+ type?: Array<string>;
40538
+ /**
40539
+ * User Has Consent
40540
+ */
40541
+ user_has_consent?: boolean;
40542
+ /**
40543
+ * User Has Offering User
40544
+ */
40545
+ user_has_offering_user?: boolean;
40546
+ /**
40547
+ * Comma-separated offering UUIDs
40548
+ */
40549
+ uuid_list?: string;
40550
+ };
40551
+ url: '/api/marketplace-provider-offerings/{uuid}/history/';
40552
+ };
40553
+ export type MarketplaceProviderOfferingsHistoryListResponses = {
40554
+ 200: Array<VersionHistory>;
40555
+ };
40556
+ export type MarketplaceProviderOfferingsHistoryListResponse = MarketplaceProviderOfferingsHistoryListResponses[keyof MarketplaceProviderOfferingsHistoryListResponses];
40557
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveData = {
40558
+ body?: never;
40559
+ path: {
40560
+ uuid: string;
40561
+ };
40562
+ query: {
40563
+ /**
40564
+ * ISO 8601 timestamp to query the object state at
40565
+ */
40566
+ timestamp: string;
40567
+ };
40568
+ url: '/api/marketplace-provider-offerings/{uuid}/history/at/';
40569
+ };
40570
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveErrors = {
40571
+ 400: {
40572
+ [key: string]: unknown;
40573
+ };
40574
+ 404: {
40575
+ [key: string]: unknown;
40576
+ };
40577
+ };
40578
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveError = MarketplaceProviderOfferingsHistoryAtRetrieveErrors[keyof MarketplaceProviderOfferingsHistoryAtRetrieveErrors];
40579
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveResponses = {
40580
+ 200: VersionHistory;
40581
+ };
40582
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveResponse = MarketplaceProviderOfferingsHistoryAtRetrieveResponses[keyof MarketplaceProviderOfferingsHistoryAtRetrieveResponses];
40026
40583
  export type MarketplaceProviderOfferingsImportResourceData = {
40027
40584
  body: ImportResourceRequest;
40028
40585
  path: {
@@ -42094,7 +42651,7 @@ export type MarketplaceProviderResourcesHistoryListData = {
42094
42651
  url: '/api/marketplace-provider-resources/{uuid}/history/';
42095
42652
  };
42096
42653
  export type MarketplaceProviderResourcesHistoryListResponses = {
42097
- 200: Array<ResourceVersion>;
42654
+ 200: Array<VersionHistory>;
42098
42655
  };
42099
42656
  export type MarketplaceProviderResourcesHistoryListResponse = MarketplaceProviderResourcesHistoryListResponses[keyof MarketplaceProviderResourcesHistoryListResponses];
42100
42657
  export type MarketplaceProviderResourcesHistoryAtRetrieveData = {
@@ -42104,7 +42661,7 @@ export type MarketplaceProviderResourcesHistoryAtRetrieveData = {
42104
42661
  };
42105
42662
  query: {
42106
42663
  /**
42107
- * ISO 8601 timestamp to query the resource state at
42664
+ * ISO 8601 timestamp to query the object state at
42108
42665
  */
42109
42666
  timestamp: string;
42110
42667
  };
@@ -42120,7 +42677,7 @@ export type MarketplaceProviderResourcesHistoryAtRetrieveErrors = {
42120
42677
  };
42121
42678
  export type MarketplaceProviderResourcesHistoryAtRetrieveError = MarketplaceProviderResourcesHistoryAtRetrieveErrors[keyof MarketplaceProviderResourcesHistoryAtRetrieveErrors];
42122
42679
  export type MarketplaceProviderResourcesHistoryAtRetrieveResponses = {
42123
- 200: ResourceVersion;
42680
+ 200: VersionHistory;
42124
42681
  };
42125
42682
  export type MarketplaceProviderResourcesHistoryAtRetrieveResponse = MarketplaceProviderResourcesHistoryAtRetrieveResponses[keyof MarketplaceProviderResourcesHistoryAtRetrieveResponses];
42126
42683
  export type MarketplaceProviderResourcesMoveResourceData = {
@@ -43726,7 +44283,7 @@ export type MarketplaceResourcesHistoryListData = {
43726
44283
  url: '/api/marketplace-resources/{uuid}/history/';
43727
44284
  };
43728
44285
  export type MarketplaceResourcesHistoryListResponses = {
43729
- 200: Array<ResourceVersion>;
44286
+ 200: Array<VersionHistory>;
43730
44287
  };
43731
44288
  export type MarketplaceResourcesHistoryListResponse = MarketplaceResourcesHistoryListResponses[keyof MarketplaceResourcesHistoryListResponses];
43732
44289
  export type MarketplaceResourcesHistoryAtRetrieveData = {
@@ -43736,7 +44293,7 @@ export type MarketplaceResourcesHistoryAtRetrieveData = {
43736
44293
  };
43737
44294
  query: {
43738
44295
  /**
43739
- * ISO 8601 timestamp to query the resource state at
44296
+ * ISO 8601 timestamp to query the object state at
43740
44297
  */
43741
44298
  timestamp: string;
43742
44299
  };
@@ -43752,7 +44309,7 @@ export type MarketplaceResourcesHistoryAtRetrieveErrors = {
43752
44309
  };
43753
44310
  export type MarketplaceResourcesHistoryAtRetrieveError = MarketplaceResourcesHistoryAtRetrieveErrors[keyof MarketplaceResourcesHistoryAtRetrieveErrors];
43754
44311
  export type MarketplaceResourcesHistoryAtRetrieveResponses = {
43755
- 200: ResourceVersion;
44312
+ 200: VersionHistory;
43756
44313
  };
43757
44314
  export type MarketplaceResourcesHistoryAtRetrieveResponse = MarketplaceResourcesHistoryAtRetrieveResponses[keyof MarketplaceResourcesHistoryAtRetrieveResponses];
43758
44315
  export type MarketplaceResourcesMoveResourceData = {
@@ -48454,6 +49011,46 @@ export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
48454
49011
  */
48455
49012
  200: unknown;
48456
49013
  };
49014
+ export type MarketplaceStatsUserJobTitleCountListData = {
49015
+ body?: never;
49016
+ path?: never;
49017
+ query?: {
49018
+ /**
49019
+ * A page number within the paginated result set.
49020
+ */
49021
+ page?: number;
49022
+ /**
49023
+ * Number of results to return per page.
49024
+ */
49025
+ page_size?: number;
49026
+ };
49027
+ url: '/api/marketplace-stats/user_job_title_count/';
49028
+ };
49029
+ export type MarketplaceStatsUserJobTitleCountListResponses = {
49030
+ 200: Array<UserJobTitleCount>;
49031
+ };
49032
+ export type MarketplaceStatsUserJobTitleCountListResponse = MarketplaceStatsUserJobTitleCountListResponses[keyof MarketplaceStatsUserJobTitleCountListResponses];
49033
+ export type MarketplaceStatsUserJobTitleCountCountData = {
49034
+ body?: never;
49035
+ path?: never;
49036
+ query?: {
49037
+ /**
49038
+ * A page number within the paginated result set.
49039
+ */
49040
+ page?: number;
49041
+ /**
49042
+ * Number of results to return per page.
49043
+ */
49044
+ page_size?: number;
49045
+ };
49046
+ url: '/api/marketplace-stats/user_job_title_count/';
49047
+ };
49048
+ export type MarketplaceStatsUserJobTitleCountCountResponses = {
49049
+ /**
49050
+ * No response body
49051
+ */
49052
+ 200: unknown;
49053
+ };
48457
49054
  export type MarketplaceStatsUserOrganizationCountListData = {
48458
49055
  body?: never;
48459
49056
  path?: never;
@@ -48494,6 +49091,46 @@ export type MarketplaceStatsUserOrganizationCountCountResponses = {
48494
49091
  */
48495
49092
  200: unknown;
48496
49093
  };
49094
+ export type MarketplaceStatsUserOrganizationTypeCountListData = {
49095
+ body?: never;
49096
+ path?: never;
49097
+ query?: {
49098
+ /**
49099
+ * A page number within the paginated result set.
49100
+ */
49101
+ page?: number;
49102
+ /**
49103
+ * Number of results to return per page.
49104
+ */
49105
+ page_size?: number;
49106
+ };
49107
+ url: '/api/marketplace-stats/user_organization_type_count/';
49108
+ };
49109
+ export type MarketplaceStatsUserOrganizationTypeCountListResponses = {
49110
+ 200: Array<UserOrganizationTypeCount>;
49111
+ };
49112
+ export type MarketplaceStatsUserOrganizationTypeCountListResponse = MarketplaceStatsUserOrganizationTypeCountListResponses[keyof MarketplaceStatsUserOrganizationTypeCountListResponses];
49113
+ export type MarketplaceStatsUserOrganizationTypeCountCountData = {
49114
+ body?: never;
49115
+ path?: never;
49116
+ query?: {
49117
+ /**
49118
+ * A page number within the paginated result set.
49119
+ */
49120
+ page?: number;
49121
+ /**
49122
+ * Number of results to return per page.
49123
+ */
49124
+ page_size?: number;
49125
+ };
49126
+ url: '/api/marketplace-stats/user_organization_type_count/';
49127
+ };
49128
+ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
49129
+ /**
49130
+ * No response body
49131
+ */
49132
+ 200: unknown;
49133
+ };
48497
49134
  export type MarketplaceTagsListData = {
48498
49135
  body?: never;
48499
49136
  path?: never;
@@ -68694,6 +69331,147 @@ export type UsersDataAccessHistoryListResponses = {
68694
69331
  200: Array<UserDataAccessLog>;
68695
69332
  };
68696
69333
  export type UsersDataAccessHistoryListResponse = UsersDataAccessHistoryListResponses[keyof UsersDataAccessHistoryListResponses];
69334
+ export type UsersHistoryListData = {
69335
+ body?: never;
69336
+ path: {
69337
+ uuid: string;
69338
+ };
69339
+ query?: {
69340
+ /**
69341
+ * Agreement date after
69342
+ */
69343
+ agreement_date?: string;
69344
+ civil_number?: string;
69345
+ /**
69346
+ * Filter versions created after this timestamp (ISO 8601)
69347
+ */
69348
+ created_after?: string;
69349
+ /**
69350
+ * Filter versions created before this timestamp (ISO 8601)
69351
+ */
69352
+ created_before?: string;
69353
+ /**
69354
+ * Customer UUID
69355
+ */
69356
+ customer_uuid?: string;
69357
+ /**
69358
+ * Date joined after
69359
+ */
69360
+ date_joined?: string;
69361
+ description?: string;
69362
+ /**
69363
+ * Email
69364
+ */
69365
+ email?: string;
69366
+ /**
69367
+ * Full name
69368
+ */
69369
+ full_name?: string;
69370
+ /**
69371
+ * Is active
69372
+ */
69373
+ is_active?: boolean;
69374
+ /**
69375
+ * Is staff
69376
+ */
69377
+ is_staff?: boolean;
69378
+ /**
69379
+ * Is support
69380
+ */
69381
+ is_support?: boolean;
69382
+ /**
69383
+ * Job title
69384
+ */
69385
+ job_title?: string;
69386
+ /**
69387
+ * Date modified after
69388
+ */
69389
+ modified?: string;
69390
+ /**
69391
+ * Native name
69392
+ */
69393
+ native_name?: string;
69394
+ /**
69395
+ * Ordering
69396
+ *
69397
+ *
69398
+ */
69399
+ o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
69400
+ /**
69401
+ * Organization
69402
+ */
69403
+ organization?: string;
69404
+ /**
69405
+ * Organization roles
69406
+ */
69407
+ organization_roles?: string;
69408
+ /**
69409
+ * A page number within the paginated result set.
69410
+ */
69411
+ page?: number;
69412
+ /**
69413
+ * Number of results to return per page.
69414
+ */
69415
+ page_size?: number;
69416
+ phone_number?: string;
69417
+ /**
69418
+ * Project roles
69419
+ */
69420
+ project_roles?: string;
69421
+ /**
69422
+ * Project UUID
69423
+ */
69424
+ project_uuid?: string;
69425
+ /**
69426
+ * Filter by first name, last name, civil number, username or email
69427
+ */
69428
+ query?: string;
69429
+ registration_method?: string;
69430
+ /**
69431
+ * User keyword
69432
+ */
69433
+ user_keyword?: string;
69434
+ /**
69435
+ * Username (exact)
69436
+ */
69437
+ username?: string;
69438
+ /**
69439
+ * Comma-separated usernames
69440
+ */
69441
+ username_list?: string;
69442
+ };
69443
+ url: '/api/users/{uuid}/history/';
69444
+ };
69445
+ export type UsersHistoryListResponses = {
69446
+ 200: Array<VersionHistory>;
69447
+ };
69448
+ export type UsersHistoryListResponse = UsersHistoryListResponses[keyof UsersHistoryListResponses];
69449
+ export type UsersHistoryAtRetrieveData = {
69450
+ body?: never;
69451
+ path: {
69452
+ uuid: string;
69453
+ };
69454
+ query: {
69455
+ /**
69456
+ * ISO 8601 timestamp to query the object state at
69457
+ */
69458
+ timestamp: string;
69459
+ };
69460
+ url: '/api/users/{uuid}/history/at/';
69461
+ };
69462
+ export type UsersHistoryAtRetrieveErrors = {
69463
+ 400: {
69464
+ [key: string]: unknown;
69465
+ };
69466
+ 404: {
69467
+ [key: string]: unknown;
69468
+ };
69469
+ };
69470
+ export type UsersHistoryAtRetrieveError = UsersHistoryAtRetrieveErrors[keyof UsersHistoryAtRetrieveErrors];
69471
+ export type UsersHistoryAtRetrieveResponses = {
69472
+ 200: VersionHistory;
69473
+ };
69474
+ export type UsersHistoryAtRetrieveResponse = UsersHistoryAtRetrieveResponses[keyof UsersHistoryAtRetrieveResponses];
68697
69475
  export type UsersPullRemoteUserData = {
68698
69476
  body?: never;
68699
69477
  path: {