@opusdns/api 0.81.0 → 0.83.0
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/package.json +1 -1
- package/src/helpers/keys.ts +798 -0
- package/src/helpers/requests.d.ts +319 -1
- package/src/helpers/responses.d.ts +1062 -47
- package/src/helpers/schemas-arrays.d.ts +43 -1
- package/src/helpers/schemas.d.ts +112 -0
- package/src/openapi.yaml +917 -77
- package/src/schema.d.ts +1135 -127
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
import { DomainDnssecDataArray, OrganizationAttribute2Array, IpRestrictionArray, TldResponseShortArray } from './schemas-arrays.d';
|
|
36
36
|
|
|
37
|
-
import { Problem, HTTPValidationError, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DnsZoneSummary, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, DomainSummary, Pagination_EmailForwardAlias, EmailForwardAlias, Pagination_Event, EventSchema, Pagination_Organization, Organization, OrganizationWithBillingData, GetPrices, Pagination_BillingTransaction, BillingTransaction, IpRestriction, Pagination_User, TldSpecification, User, UserWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
|
|
37
|
+
import { Problem, HTTPValidationError, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DnsZoneSummary, Pagination_Redirect, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, DomainSummary, Pagination_EmailForwardAlias, EmailForwardAlias, Pagination_Event, EventSchema, Pagination_Organization, Organization, OrganizationWithBillingData, GetPrices, Pagination_BillingTransaction, BillingTransaction, IpRestriction, Pagination_User, TldSpecification, User, UserWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Response types for POST AuthToken endpoint
|
|
@@ -1661,6 +1661,334 @@ export type GET_DnsSummary_Response = GET_DnsSummary_Response_200;
|
|
|
1661
1661
|
*/
|
|
1662
1662
|
export type GET_DnsSummary_Response_200 = DnsZoneSummary
|
|
1663
1663
|
|
|
1664
|
+
/**
|
|
1665
|
+
* Response types for PATCH DomainForwards endpoint
|
|
1666
|
+
*
|
|
1667
|
+
* Patch Redirects
|
|
1668
|
+
*
|
|
1669
|
+
* @remarks
|
|
1670
|
+
* This type defines all possible response structures for the PATCH DomainForwards endpoint.
|
|
1671
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
1672
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
1673
|
+
*
|
|
1674
|
+
|
|
1675
|
+
*
|
|
1676
|
+
* @path /v1/domain-forwards
|
|
1677
|
+
*
|
|
1678
|
+
* @see {@link PATCH_DomainForwards_Response_422} - 422 response type
|
|
1679
|
+
*
|
|
1680
|
+
|
|
1681
|
+
*/
|
|
1682
|
+
export type PATCH_DomainForwards_Response = PATCH_DomainForwards_Response_422;
|
|
1683
|
+
|
|
1684
|
+
/**
|
|
1685
|
+
* 422 response for PATCH DomainForwards endpoint
|
|
1686
|
+
*
|
|
1687
|
+
* @remarks
|
|
1688
|
+
* This type defines the response structure for the 422 status code
|
|
1689
|
+
* of the PATCH DomainForwards endpoint.
|
|
1690
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1691
|
+
*
|
|
1692
|
+
|
|
1693
|
+
*
|
|
1694
|
+
* @path /v1/domain-forwards
|
|
1695
|
+
*
|
|
1696
|
+
* @see {@link PATCH_DomainForwards_Response} - The main response type definition
|
|
1697
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1698
|
+
*/
|
|
1699
|
+
export type PATCH_DomainForwards_Response_422 = HTTPValidationError
|
|
1700
|
+
|
|
1701
|
+
/**
|
|
1702
|
+
* Response types for DELETE DomainForwardsByZoneName endpoint
|
|
1703
|
+
*
|
|
1704
|
+
* Delete Redirects
|
|
1705
|
+
*
|
|
1706
|
+
* @remarks
|
|
1707
|
+
* This type defines all possible response structures for the DELETE DomainForwardsByZoneName endpoint.
|
|
1708
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
1709
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
1710
|
+
*
|
|
1711
|
+
|
|
1712
|
+
*
|
|
1713
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1714
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1715
|
+
*
|
|
1716
|
+
* @see {@link DELETE_DomainForwardsByZoneName_Response_422} - 422 response type
|
|
1717
|
+
*
|
|
1718
|
+
|
|
1719
|
+
*/
|
|
1720
|
+
export type DELETE_DomainForwardsByZoneName_Response = DELETE_DomainForwardsByZoneName_Response_422;
|
|
1721
|
+
|
|
1722
|
+
/**
|
|
1723
|
+
* 422 response for DELETE DomainForwardsByZoneName endpoint
|
|
1724
|
+
*
|
|
1725
|
+
* @remarks
|
|
1726
|
+
* This type defines the response structure for the 422 status code
|
|
1727
|
+
* of the DELETE DomainForwardsByZoneName endpoint.
|
|
1728
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1729
|
+
*
|
|
1730
|
+
|
|
1731
|
+
*
|
|
1732
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1733
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1734
|
+
*
|
|
1735
|
+
* @see {@link DELETE_DomainForwardsByZoneName_Response} - The main response type definition
|
|
1736
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1737
|
+
*/
|
|
1738
|
+
export type DELETE_DomainForwardsByZoneName_Response_422 = HTTPValidationError
|
|
1739
|
+
|
|
1740
|
+
/**
|
|
1741
|
+
* Response types for GET DomainForwardsByZoneName endpoint
|
|
1742
|
+
*
|
|
1743
|
+
* Get Redirects
|
|
1744
|
+
*
|
|
1745
|
+
* @remarks
|
|
1746
|
+
* This type defines all possible response structures for the GET DomainForwardsByZoneName endpoint.
|
|
1747
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
1748
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
1749
|
+
*
|
|
1750
|
+
|
|
1751
|
+
*
|
|
1752
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1753
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1754
|
+
*
|
|
1755
|
+
* @see {@link GET_DomainForwardsByZoneName_Response_200} - 200 response type
|
|
1756
|
+
* @see {@link GET_DomainForwardsByZoneName_Response_422} - 422 response type
|
|
1757
|
+
*
|
|
1758
|
+
|
|
1759
|
+
*/
|
|
1760
|
+
export type GET_DomainForwardsByZoneName_Response = GET_DomainForwardsByZoneName_Response_200 | GET_DomainForwardsByZoneName_Response_422;
|
|
1761
|
+
|
|
1762
|
+
/**
|
|
1763
|
+
* 200 response for GET DomainForwardsByZoneName endpoint
|
|
1764
|
+
*
|
|
1765
|
+
* @remarks
|
|
1766
|
+
* This type defines the response structure for the 200 status code
|
|
1767
|
+
* of the GET DomainForwardsByZoneName endpoint.
|
|
1768
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1769
|
+
*
|
|
1770
|
+
|
|
1771
|
+
*
|
|
1772
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1773
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1774
|
+
*
|
|
1775
|
+
* @see {@link GET_DomainForwardsByZoneName_Response} - The main response type definition
|
|
1776
|
+
* @see {@link Pagination_Redirect} - The actual schema type definition
|
|
1777
|
+
*/
|
|
1778
|
+
export type GET_DomainForwardsByZoneName_Response_200 = Pagination_Redirect
|
|
1779
|
+
|
|
1780
|
+
/**
|
|
1781
|
+
* 422 response for GET DomainForwardsByZoneName endpoint
|
|
1782
|
+
*
|
|
1783
|
+
* @remarks
|
|
1784
|
+
* This type defines the response structure for the 422 status code
|
|
1785
|
+
* of the GET DomainForwardsByZoneName endpoint.
|
|
1786
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1787
|
+
*
|
|
1788
|
+
|
|
1789
|
+
*
|
|
1790
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1791
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1792
|
+
*
|
|
1793
|
+
* @see {@link GET_DomainForwardsByZoneName_Response} - The main response type definition
|
|
1794
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1795
|
+
*/
|
|
1796
|
+
export type GET_DomainForwardsByZoneName_Response_422 = HTTPValidationError
|
|
1797
|
+
|
|
1798
|
+
/**
|
|
1799
|
+
* Response types for POST DomainForwardsByZoneName endpoint
|
|
1800
|
+
*
|
|
1801
|
+
* Create Redirects
|
|
1802
|
+
*
|
|
1803
|
+
* @remarks
|
|
1804
|
+
* This type defines all possible response structures for the POST DomainForwardsByZoneName endpoint.
|
|
1805
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
1806
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
1807
|
+
*
|
|
1808
|
+
|
|
1809
|
+
*
|
|
1810
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1811
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1812
|
+
*
|
|
1813
|
+
* @see {@link POST_DomainForwardsByZoneName_Response_409} - 409 response type
|
|
1814
|
+
* @see {@link POST_DomainForwardsByZoneName_Response_422} - 422 response type
|
|
1815
|
+
*
|
|
1816
|
+
|
|
1817
|
+
*/
|
|
1818
|
+
export type POST_DomainForwardsByZoneName_Response = POST_DomainForwardsByZoneName_Response_409 | POST_DomainForwardsByZoneName_Response_422;
|
|
1819
|
+
|
|
1820
|
+
/**
|
|
1821
|
+
* 409 response for POST DomainForwardsByZoneName endpoint
|
|
1822
|
+
*
|
|
1823
|
+
* @remarks
|
|
1824
|
+
* This type defines the response structure for the 409 status code
|
|
1825
|
+
* of the POST DomainForwardsByZoneName endpoint.
|
|
1826
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1827
|
+
*
|
|
1828
|
+
|
|
1829
|
+
*
|
|
1830
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1831
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1832
|
+
*
|
|
1833
|
+
* @see {@link POST_DomainForwardsByZoneName_Response} - The main response type definition
|
|
1834
|
+
* @see {@link Problem} - The actual schema type definition
|
|
1835
|
+
*/
|
|
1836
|
+
export type POST_DomainForwardsByZoneName_Response_409 = Problem
|
|
1837
|
+
|
|
1838
|
+
/**
|
|
1839
|
+
* 422 response for POST DomainForwardsByZoneName endpoint
|
|
1840
|
+
*
|
|
1841
|
+
* @remarks
|
|
1842
|
+
* This type defines the response structure for the 422 status code
|
|
1843
|
+
* of the POST DomainForwardsByZoneName endpoint.
|
|
1844
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1845
|
+
*
|
|
1846
|
+
|
|
1847
|
+
*
|
|
1848
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1849
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1850
|
+
*
|
|
1851
|
+
* @see {@link POST_DomainForwardsByZoneName_Response} - The main response type definition
|
|
1852
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1853
|
+
*/
|
|
1854
|
+
export type POST_DomainForwardsByZoneName_Response_422 = HTTPValidationError
|
|
1855
|
+
|
|
1856
|
+
/**
|
|
1857
|
+
* Response types for PUT DomainForwardsByZoneName endpoint
|
|
1858
|
+
*
|
|
1859
|
+
* Update Redirects
|
|
1860
|
+
*
|
|
1861
|
+
* @remarks
|
|
1862
|
+
* This type defines all possible response structures for the PUT DomainForwardsByZoneName endpoint.
|
|
1863
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
1864
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
1865
|
+
*
|
|
1866
|
+
|
|
1867
|
+
*
|
|
1868
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1869
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1870
|
+
*
|
|
1871
|
+
* @see {@link PUT_DomainForwardsByZoneName_Response_409} - 409 response type
|
|
1872
|
+
* @see {@link PUT_DomainForwardsByZoneName_Response_422} - 422 response type
|
|
1873
|
+
*
|
|
1874
|
+
|
|
1875
|
+
*/
|
|
1876
|
+
export type PUT_DomainForwardsByZoneName_Response = PUT_DomainForwardsByZoneName_Response_409 | PUT_DomainForwardsByZoneName_Response_422;
|
|
1877
|
+
|
|
1878
|
+
/**
|
|
1879
|
+
* 409 response for PUT DomainForwardsByZoneName endpoint
|
|
1880
|
+
*
|
|
1881
|
+
* @remarks
|
|
1882
|
+
* This type defines the response structure for the 409 status code
|
|
1883
|
+
* of the PUT DomainForwardsByZoneName endpoint.
|
|
1884
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1885
|
+
*
|
|
1886
|
+
|
|
1887
|
+
*
|
|
1888
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1889
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1890
|
+
*
|
|
1891
|
+
* @see {@link PUT_DomainForwardsByZoneName_Response} - The main response type definition
|
|
1892
|
+
* @see {@link Problem} - The actual schema type definition
|
|
1893
|
+
*/
|
|
1894
|
+
export type PUT_DomainForwardsByZoneName_Response_409 = Problem
|
|
1895
|
+
|
|
1896
|
+
/**
|
|
1897
|
+
* 422 response for PUT DomainForwardsByZoneName endpoint
|
|
1898
|
+
*
|
|
1899
|
+
* @remarks
|
|
1900
|
+
* This type defines the response structure for the 422 status code
|
|
1901
|
+
* of the PUT DomainForwardsByZoneName endpoint.
|
|
1902
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1903
|
+
*
|
|
1904
|
+
|
|
1905
|
+
*
|
|
1906
|
+
* @path /v1/domain-forwards/{zone_name}
|
|
1907
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1908
|
+
*
|
|
1909
|
+
* @see {@link PUT_DomainForwardsByZoneName_Response} - The main response type definition
|
|
1910
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1911
|
+
*/
|
|
1912
|
+
export type PUT_DomainForwardsByZoneName_Response_422 = HTTPValidationError
|
|
1913
|
+
|
|
1914
|
+
/**
|
|
1915
|
+
* Response types for PATCH DomainForwardsByZoneNameDisable endpoint
|
|
1916
|
+
*
|
|
1917
|
+
* Disable Domain Forward
|
|
1918
|
+
*
|
|
1919
|
+
* @remarks
|
|
1920
|
+
* This type defines all possible response structures for the PATCH DomainForwardsByZoneNameDisable endpoint.
|
|
1921
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
1922
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
1923
|
+
*
|
|
1924
|
+
|
|
1925
|
+
*
|
|
1926
|
+
* @path /v1/domain-forwards/{zone_name}/disable
|
|
1927
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1928
|
+
*
|
|
1929
|
+
* @see {@link PATCH_DomainForwardsByZoneNameDisable_Response_422} - 422 response type
|
|
1930
|
+
*
|
|
1931
|
+
|
|
1932
|
+
*/
|
|
1933
|
+
export type PATCH_DomainForwardsByZoneNameDisable_Response = PATCH_DomainForwardsByZoneNameDisable_Response_422;
|
|
1934
|
+
|
|
1935
|
+
/**
|
|
1936
|
+
* 422 response for PATCH DomainForwardsByZoneNameDisable endpoint
|
|
1937
|
+
*
|
|
1938
|
+
* @remarks
|
|
1939
|
+
* This type defines the response structure for the 422 status code
|
|
1940
|
+
* of the PATCH DomainForwardsByZoneNameDisable endpoint.
|
|
1941
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1942
|
+
*
|
|
1943
|
+
|
|
1944
|
+
*
|
|
1945
|
+
* @path /v1/domain-forwards/{zone_name}/disable
|
|
1946
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1947
|
+
*
|
|
1948
|
+
* @see {@link PATCH_DomainForwardsByZoneNameDisable_Response} - The main response type definition
|
|
1949
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1950
|
+
*/
|
|
1951
|
+
export type PATCH_DomainForwardsByZoneNameDisable_Response_422 = HTTPValidationError
|
|
1952
|
+
|
|
1953
|
+
/**
|
|
1954
|
+
* Response types for PATCH DomainForwardsByZoneNameEnable endpoint
|
|
1955
|
+
*
|
|
1956
|
+
* Enable Domain Forward
|
|
1957
|
+
*
|
|
1958
|
+
* @remarks
|
|
1959
|
+
* This type defines all possible response structures for the PATCH DomainForwardsByZoneNameEnable endpoint.
|
|
1960
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
1961
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
1962
|
+
*
|
|
1963
|
+
|
|
1964
|
+
*
|
|
1965
|
+
* @path /v1/domain-forwards/{zone_name}/enable
|
|
1966
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1967
|
+
*
|
|
1968
|
+
* @see {@link PATCH_DomainForwardsByZoneNameEnable_Response_422} - 422 response type
|
|
1969
|
+
*
|
|
1970
|
+
|
|
1971
|
+
*/
|
|
1972
|
+
export type PATCH_DomainForwardsByZoneNameEnable_Response = PATCH_DomainForwardsByZoneNameEnable_Response_422;
|
|
1973
|
+
|
|
1974
|
+
/**
|
|
1975
|
+
* 422 response for PATCH DomainForwardsByZoneNameEnable endpoint
|
|
1976
|
+
*
|
|
1977
|
+
* @remarks
|
|
1978
|
+
* This type defines the response structure for the 422 status code
|
|
1979
|
+
* of the PATCH DomainForwardsByZoneNameEnable endpoint.
|
|
1980
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
1981
|
+
*
|
|
1982
|
+
|
|
1983
|
+
*
|
|
1984
|
+
* @path /v1/domain-forwards/{zone_name}/enable
|
|
1985
|
+
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1986
|
+
*
|
|
1987
|
+
* @see {@link PATCH_DomainForwardsByZoneNameEnable_Response} - The main response type definition
|
|
1988
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1989
|
+
*/
|
|
1990
|
+
export type PATCH_DomainForwardsByZoneNameEnable_Response_422 = HTTPValidationError
|
|
1991
|
+
|
|
1664
1992
|
/**
|
|
1665
1993
|
* Response types for GET DomainSearchSuggest endpoint
|
|
1666
1994
|
*
|
|
@@ -3505,11 +3833,13 @@ export type PATCH_EventsByEventId_Response_422 = HTTPValidationError
|
|
|
3505
3833
|
* @path /v1/organizations
|
|
3506
3834
|
*
|
|
3507
3835
|
* @see {@link GET_Organizations_Response_200} - 200 response type
|
|
3836
|
+
* @see {@link GET_Organizations_Response_401} - 401 response type
|
|
3837
|
+
* @see {@link GET_Organizations_Response_403} - 403 response type
|
|
3508
3838
|
* @see {@link GET_Organizations_Response_422} - 422 response type
|
|
3509
3839
|
*
|
|
3510
3840
|
|
|
3511
3841
|
*/
|
|
3512
|
-
export type GET_Organizations_Response = GET_Organizations_Response_200 | GET_Organizations_Response_422;
|
|
3842
|
+
export type GET_Organizations_Response = GET_Organizations_Response_200 | GET_Organizations_Response_401 | GET_Organizations_Response_403 | GET_Organizations_Response_422;
|
|
3513
3843
|
|
|
3514
3844
|
/**
|
|
3515
3845
|
* 200 response for GET Organizations endpoint
|
|
@@ -3529,10 +3859,10 @@ export type GET_Organizations_Response = GET_Organizations_Response_200 | GET_Or
|
|
|
3529
3859
|
export type GET_Organizations_Response_200 = Pagination_Organization
|
|
3530
3860
|
|
|
3531
3861
|
/**
|
|
3532
|
-
*
|
|
3862
|
+
* 401 response for GET Organizations endpoint
|
|
3533
3863
|
*
|
|
3534
3864
|
* @remarks
|
|
3535
|
-
* This type defines the response structure for the
|
|
3865
|
+
* This type defines the response structure for the 401 status code
|
|
3536
3866
|
* of the GET Organizations endpoint.
|
|
3537
3867
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3538
3868
|
*
|
|
@@ -3541,34 +3871,70 @@ export type GET_Organizations_Response_200 = Pagination_Organization
|
|
|
3541
3871
|
* @path /v1/organizations
|
|
3542
3872
|
*
|
|
3543
3873
|
* @see {@link GET_Organizations_Response} - The main response type definition
|
|
3544
|
-
* @see {@link
|
|
3874
|
+
* @see {@link Problem} - The actual schema type definition
|
|
3545
3875
|
*/
|
|
3546
|
-
export type
|
|
3876
|
+
export type GET_Organizations_Response_401 = Problem
|
|
3547
3877
|
|
|
3548
3878
|
/**
|
|
3549
|
-
*
|
|
3550
|
-
*
|
|
3551
|
-
* Create an organization
|
|
3552
|
-
* Create a new organization under the current organization
|
|
3879
|
+
* 403 response for GET Organizations endpoint
|
|
3553
3880
|
*
|
|
3554
3881
|
* @remarks
|
|
3555
|
-
* This type defines
|
|
3556
|
-
*
|
|
3557
|
-
*
|
|
3882
|
+
* This type defines the response structure for the 403 status code
|
|
3883
|
+
* of the GET Organizations endpoint.
|
|
3884
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3558
3885
|
*
|
|
3559
3886
|
|
|
3560
3887
|
*
|
|
3561
3888
|
* @path /v1/organizations
|
|
3562
3889
|
*
|
|
3563
|
-
* @see {@link
|
|
3564
|
-
* @see {@link
|
|
3565
|
-
*
|
|
3566
|
-
|
|
3890
|
+
* @see {@link GET_Organizations_Response} - The main response type definition
|
|
3891
|
+
* @see {@link Problem} - The actual schema type definition
|
|
3567
3892
|
*/
|
|
3568
|
-
export type
|
|
3893
|
+
export type GET_Organizations_Response_403 = Problem
|
|
3569
3894
|
|
|
3570
3895
|
/**
|
|
3571
|
-
*
|
|
3896
|
+
* 422 response for GET Organizations endpoint
|
|
3897
|
+
*
|
|
3898
|
+
* @remarks
|
|
3899
|
+
* This type defines the response structure for the 422 status code
|
|
3900
|
+
* of the GET Organizations endpoint.
|
|
3901
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3902
|
+
*
|
|
3903
|
+
|
|
3904
|
+
*
|
|
3905
|
+
* @path /v1/organizations
|
|
3906
|
+
*
|
|
3907
|
+
* @see {@link GET_Organizations_Response} - The main response type definition
|
|
3908
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3909
|
+
*/
|
|
3910
|
+
export type GET_Organizations_Response_422 = HTTPValidationError
|
|
3911
|
+
|
|
3912
|
+
/**
|
|
3913
|
+
* Response types for POST Organizations endpoint
|
|
3914
|
+
*
|
|
3915
|
+
* Create an organization
|
|
3916
|
+
* Create a new organization under the current organization
|
|
3917
|
+
*
|
|
3918
|
+
* @remarks
|
|
3919
|
+
* This type defines all possible response structures for the POST Organizations endpoint.
|
|
3920
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
3921
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
3922
|
+
*
|
|
3923
|
+
|
|
3924
|
+
*
|
|
3925
|
+
* @path /v1/organizations
|
|
3926
|
+
*
|
|
3927
|
+
* @see {@link POST_Organizations_Response_200} - 200 response type
|
|
3928
|
+
* @see {@link POST_Organizations_Response_401} - 401 response type
|
|
3929
|
+
* @see {@link POST_Organizations_Response_403} - 403 response type
|
|
3930
|
+
* @see {@link POST_Organizations_Response_422} - 422 response type
|
|
3931
|
+
*
|
|
3932
|
+
|
|
3933
|
+
*/
|
|
3934
|
+
export type POST_Organizations_Response = POST_Organizations_Response_200 | POST_Organizations_Response_401 | POST_Organizations_Response_403 | POST_Organizations_Response_422;
|
|
3935
|
+
|
|
3936
|
+
/**
|
|
3937
|
+
* 200 response for POST Organizations endpoint
|
|
3572
3938
|
*
|
|
3573
3939
|
* @remarks
|
|
3574
3940
|
* This type defines the response structure for the 200 status code
|
|
@@ -3584,6 +3950,40 @@ export type POST_Organizations_Response = POST_Organizations_Response_200 | POST
|
|
|
3584
3950
|
*/
|
|
3585
3951
|
export type POST_Organizations_Response_200 = Organization
|
|
3586
3952
|
|
|
3953
|
+
/**
|
|
3954
|
+
* 401 response for POST Organizations endpoint
|
|
3955
|
+
*
|
|
3956
|
+
* @remarks
|
|
3957
|
+
* This type defines the response structure for the 401 status code
|
|
3958
|
+
* of the POST Organizations endpoint.
|
|
3959
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3960
|
+
*
|
|
3961
|
+
|
|
3962
|
+
*
|
|
3963
|
+
* @path /v1/organizations
|
|
3964
|
+
*
|
|
3965
|
+
* @see {@link POST_Organizations_Response} - The main response type definition
|
|
3966
|
+
* @see {@link Problem} - The actual schema type definition
|
|
3967
|
+
*/
|
|
3968
|
+
export type POST_Organizations_Response_401 = Problem
|
|
3969
|
+
|
|
3970
|
+
/**
|
|
3971
|
+
* 403 response for POST Organizations endpoint
|
|
3972
|
+
*
|
|
3973
|
+
* @remarks
|
|
3974
|
+
* This type defines the response structure for the 403 status code
|
|
3975
|
+
* of the POST Organizations endpoint.
|
|
3976
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3977
|
+
*
|
|
3978
|
+
|
|
3979
|
+
*
|
|
3980
|
+
* @path /v1/organizations
|
|
3981
|
+
*
|
|
3982
|
+
* @see {@link POST_Organizations_Response} - The main response type definition
|
|
3983
|
+
* @see {@link Problem} - The actual schema type definition
|
|
3984
|
+
*/
|
|
3985
|
+
export type POST_Organizations_Response_403 = Problem
|
|
3986
|
+
|
|
3587
3987
|
/**
|
|
3588
3988
|
* 422 response for POST Organizations endpoint
|
|
3589
3989
|
*
|
|
@@ -3618,11 +4018,13 @@ export type POST_Organizations_Response_422 = HTTPValidationError
|
|
|
3618
4018
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
3619
4019
|
*
|
|
3620
4020
|
* @see {@link GET_OrganizationsAttributes_Response_200} - 200 response type
|
|
4021
|
+
* @see {@link GET_OrganizationsAttributes_Response_401} - 401 response type
|
|
4022
|
+
* @see {@link GET_OrganizationsAttributes_Response_403} - 403 response type
|
|
3621
4023
|
* @see {@link GET_OrganizationsAttributes_Response_422} - 422 response type
|
|
3622
4024
|
*
|
|
3623
4025
|
|
|
3624
4026
|
*/
|
|
3625
|
-
export type GET_OrganizationsAttributes_Response = GET_OrganizationsAttributes_Response_200 | GET_OrganizationsAttributes_Response_422;
|
|
4027
|
+
export type GET_OrganizationsAttributes_Response = GET_OrganizationsAttributes_Response_200 | GET_OrganizationsAttributes_Response_401 | GET_OrganizationsAttributes_Response_403 | GET_OrganizationsAttributes_Response_422;
|
|
3626
4028
|
|
|
3627
4029
|
/**
|
|
3628
4030
|
* 200 response for GET OrganizationsAttributes endpoint
|
|
@@ -3642,6 +4044,42 @@ export type GET_OrganizationsAttributes_Response = GET_OrganizationsAttributes_R
|
|
|
3642
4044
|
*/
|
|
3643
4045
|
export type GET_OrganizationsAttributes_Response_200 = OrganizationAttribute2Array
|
|
3644
4046
|
|
|
4047
|
+
/**
|
|
4048
|
+
* 401 response for GET OrganizationsAttributes endpoint
|
|
4049
|
+
*
|
|
4050
|
+
* @remarks
|
|
4051
|
+
* This type defines the response structure for the 401 status code
|
|
4052
|
+
* of the GET OrganizationsAttributes endpoint.
|
|
4053
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4054
|
+
*
|
|
4055
|
+
|
|
4056
|
+
*
|
|
4057
|
+
* @path /v1/organizations/attributes
|
|
4058
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
4059
|
+
*
|
|
4060
|
+
* @see {@link GET_OrganizationsAttributes_Response} - The main response type definition
|
|
4061
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4062
|
+
*/
|
|
4063
|
+
export type GET_OrganizationsAttributes_Response_401 = Problem
|
|
4064
|
+
|
|
4065
|
+
/**
|
|
4066
|
+
* 403 response for GET OrganizationsAttributes endpoint
|
|
4067
|
+
*
|
|
4068
|
+
* @remarks
|
|
4069
|
+
* This type defines the response structure for the 403 status code
|
|
4070
|
+
* of the GET OrganizationsAttributes endpoint.
|
|
4071
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4072
|
+
*
|
|
4073
|
+
|
|
4074
|
+
*
|
|
4075
|
+
* @path /v1/organizations/attributes
|
|
4076
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
4077
|
+
*
|
|
4078
|
+
* @see {@link GET_OrganizationsAttributes_Response} - The main response type definition
|
|
4079
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4080
|
+
*/
|
|
4081
|
+
export type GET_OrganizationsAttributes_Response_403 = Problem
|
|
4082
|
+
|
|
3645
4083
|
/**
|
|
3646
4084
|
* 422 response for GET OrganizationsAttributes endpoint
|
|
3647
4085
|
*
|
|
@@ -3676,11 +4114,13 @@ export type GET_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
3676
4114
|
* @path /v1/organizations/attributes
|
|
3677
4115
|
*
|
|
3678
4116
|
* @see {@link PATCH_OrganizationsAttributes_Response_200} - 200 response type
|
|
4117
|
+
* @see {@link PATCH_OrganizationsAttributes_Response_401} - 401 response type
|
|
4118
|
+
* @see {@link PATCH_OrganizationsAttributes_Response_403} - 403 response type
|
|
3679
4119
|
* @see {@link PATCH_OrganizationsAttributes_Response_422} - 422 response type
|
|
3680
4120
|
*
|
|
3681
4121
|
|
|
3682
4122
|
*/
|
|
3683
|
-
export type PATCH_OrganizationsAttributes_Response = PATCH_OrganizationsAttributes_Response_200 | PATCH_OrganizationsAttributes_Response_422;
|
|
4123
|
+
export type PATCH_OrganizationsAttributes_Response = PATCH_OrganizationsAttributes_Response_200 | PATCH_OrganizationsAttributes_Response_401 | PATCH_OrganizationsAttributes_Response_403 | PATCH_OrganizationsAttributes_Response_422;
|
|
3684
4124
|
|
|
3685
4125
|
/**
|
|
3686
4126
|
* 200 response for PATCH OrganizationsAttributes endpoint
|
|
@@ -3699,6 +4139,40 @@ export type PATCH_OrganizationsAttributes_Response = PATCH_OrganizationsAttribut
|
|
|
3699
4139
|
*/
|
|
3700
4140
|
export type PATCH_OrganizationsAttributes_Response_200 = OrganizationAttribute2Array
|
|
3701
4141
|
|
|
4142
|
+
/**
|
|
4143
|
+
* 401 response for PATCH OrganizationsAttributes endpoint
|
|
4144
|
+
*
|
|
4145
|
+
* @remarks
|
|
4146
|
+
* This type defines the response structure for the 401 status code
|
|
4147
|
+
* of the PATCH OrganizationsAttributes endpoint.
|
|
4148
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4149
|
+
*
|
|
4150
|
+
|
|
4151
|
+
*
|
|
4152
|
+
* @path /v1/organizations/attributes
|
|
4153
|
+
*
|
|
4154
|
+
* @see {@link PATCH_OrganizationsAttributes_Response} - The main response type definition
|
|
4155
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4156
|
+
*/
|
|
4157
|
+
export type PATCH_OrganizationsAttributes_Response_401 = Problem
|
|
4158
|
+
|
|
4159
|
+
/**
|
|
4160
|
+
* 403 response for PATCH OrganizationsAttributes endpoint
|
|
4161
|
+
*
|
|
4162
|
+
* @remarks
|
|
4163
|
+
* This type defines the response structure for the 403 status code
|
|
4164
|
+
* of the PATCH OrganizationsAttributes endpoint.
|
|
4165
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4166
|
+
*
|
|
4167
|
+
|
|
4168
|
+
*
|
|
4169
|
+
* @path /v1/organizations/attributes
|
|
4170
|
+
*
|
|
4171
|
+
* @see {@link PATCH_OrganizationsAttributes_Response} - The main response type definition
|
|
4172
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4173
|
+
*/
|
|
4174
|
+
export type PATCH_OrganizationsAttributes_Response_403 = Problem
|
|
4175
|
+
|
|
3702
4176
|
/**
|
|
3703
4177
|
* 422 response for PATCH OrganizationsAttributes endpoint
|
|
3704
4178
|
*
|
|
@@ -3733,11 +4207,13 @@ export type PATCH_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
3733
4207
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
3734
4208
|
*
|
|
3735
4209
|
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response_200} - 200 response type
|
|
4210
|
+
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response_401} - 401 response type
|
|
4211
|
+
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response_403} - 403 response type
|
|
3736
4212
|
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response_422} - 422 response type
|
|
3737
4213
|
*
|
|
3738
4214
|
|
|
3739
4215
|
*/
|
|
3740
|
-
export type GET_OrganizationsAttributesByOrganizationId_Response = GET_OrganizationsAttributesByOrganizationId_Response_200 | GET_OrganizationsAttributesByOrganizationId_Response_422;
|
|
4216
|
+
export type GET_OrganizationsAttributesByOrganizationId_Response = GET_OrganizationsAttributesByOrganizationId_Response_200 | GET_OrganizationsAttributesByOrganizationId_Response_401 | GET_OrganizationsAttributesByOrganizationId_Response_403 | GET_OrganizationsAttributesByOrganizationId_Response_422;
|
|
3741
4217
|
|
|
3742
4218
|
/**
|
|
3743
4219
|
* 200 response for GET OrganizationsAttributesByOrganizationId endpoint
|
|
@@ -3757,6 +4233,42 @@ export type GET_OrganizationsAttributesByOrganizationId_Response = GET_Organizat
|
|
|
3757
4233
|
*/
|
|
3758
4234
|
export type GET_OrganizationsAttributesByOrganizationId_Response_200 = OrganizationAttribute2Array
|
|
3759
4235
|
|
|
4236
|
+
/**
|
|
4237
|
+
* 401 response for GET OrganizationsAttributesByOrganizationId endpoint
|
|
4238
|
+
*
|
|
4239
|
+
* @remarks
|
|
4240
|
+
* This type defines the response structure for the 401 status code
|
|
4241
|
+
* of the GET OrganizationsAttributesByOrganizationId endpoint.
|
|
4242
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4243
|
+
*
|
|
4244
|
+
|
|
4245
|
+
*
|
|
4246
|
+
* @path /v1/organizations/attributes/{organization_id}
|
|
4247
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
4248
|
+
*
|
|
4249
|
+
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4250
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4251
|
+
*/
|
|
4252
|
+
export type GET_OrganizationsAttributesByOrganizationId_Response_401 = Problem
|
|
4253
|
+
|
|
4254
|
+
/**
|
|
4255
|
+
* 403 response for GET OrganizationsAttributesByOrganizationId endpoint
|
|
4256
|
+
*
|
|
4257
|
+
* @remarks
|
|
4258
|
+
* This type defines the response structure for the 403 status code
|
|
4259
|
+
* of the GET OrganizationsAttributesByOrganizationId endpoint.
|
|
4260
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4261
|
+
*
|
|
4262
|
+
|
|
4263
|
+
*
|
|
4264
|
+
* @path /v1/organizations/attributes/{organization_id}
|
|
4265
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
4266
|
+
*
|
|
4267
|
+
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4268
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4269
|
+
*/
|
|
4270
|
+
export type GET_OrganizationsAttributesByOrganizationId_Response_403 = Problem
|
|
4271
|
+
|
|
3760
4272
|
/**
|
|
3761
4273
|
* 422 response for GET OrganizationsAttributesByOrganizationId endpoint
|
|
3762
4274
|
*
|
|
@@ -3791,11 +4303,13 @@ export type GET_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValid
|
|
|
3791
4303
|
* @path /v1/organizations/attributes/{organization_id}
|
|
3792
4304
|
*
|
|
3793
4305
|
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response_200} - 200 response type
|
|
4306
|
+
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response_401} - 401 response type
|
|
4307
|
+
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response_403} - 403 response type
|
|
3794
4308
|
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response_422} - 422 response type
|
|
3795
4309
|
*
|
|
3796
4310
|
|
|
3797
4311
|
*/
|
|
3798
|
-
export type PATCH_OrganizationsAttributesByOrganizationId_Response = PATCH_OrganizationsAttributesByOrganizationId_Response_200 | PATCH_OrganizationsAttributesByOrganizationId_Response_422;
|
|
4312
|
+
export type PATCH_OrganizationsAttributesByOrganizationId_Response = PATCH_OrganizationsAttributesByOrganizationId_Response_200 | PATCH_OrganizationsAttributesByOrganizationId_Response_401 | PATCH_OrganizationsAttributesByOrganizationId_Response_403 | PATCH_OrganizationsAttributesByOrganizationId_Response_422;
|
|
3799
4313
|
|
|
3800
4314
|
/**
|
|
3801
4315
|
* 200 response for PATCH OrganizationsAttributesByOrganizationId endpoint
|
|
@@ -3814,6 +4328,40 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response = PATCH_Organ
|
|
|
3814
4328
|
*/
|
|
3815
4329
|
export type PATCH_OrganizationsAttributesByOrganizationId_Response_200 = OrganizationAttribute2Array
|
|
3816
4330
|
|
|
4331
|
+
/**
|
|
4332
|
+
* 401 response for PATCH OrganizationsAttributesByOrganizationId endpoint
|
|
4333
|
+
*
|
|
4334
|
+
* @remarks
|
|
4335
|
+
* This type defines the response structure for the 401 status code
|
|
4336
|
+
* of the PATCH OrganizationsAttributesByOrganizationId endpoint.
|
|
4337
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4338
|
+
*
|
|
4339
|
+
|
|
4340
|
+
*
|
|
4341
|
+
* @path /v1/organizations/attributes/{organization_id}
|
|
4342
|
+
*
|
|
4343
|
+
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4344
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4345
|
+
*/
|
|
4346
|
+
export type PATCH_OrganizationsAttributesByOrganizationId_Response_401 = Problem
|
|
4347
|
+
|
|
4348
|
+
/**
|
|
4349
|
+
* 403 response for PATCH OrganizationsAttributesByOrganizationId endpoint
|
|
4350
|
+
*
|
|
4351
|
+
* @remarks
|
|
4352
|
+
* This type defines the response structure for the 403 status code
|
|
4353
|
+
* of the PATCH OrganizationsAttributesByOrganizationId endpoint.
|
|
4354
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4355
|
+
*
|
|
4356
|
+
|
|
4357
|
+
*
|
|
4358
|
+
* @path /v1/organizations/attributes/{organization_id}
|
|
4359
|
+
*
|
|
4360
|
+
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4361
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4362
|
+
*/
|
|
4363
|
+
export type PATCH_OrganizationsAttributesByOrganizationId_Response_403 = Problem
|
|
4364
|
+
|
|
3817
4365
|
/**
|
|
3818
4366
|
* 422 response for PATCH OrganizationsAttributesByOrganizationId endpoint
|
|
3819
4367
|
*
|
|
@@ -3846,11 +4394,47 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response_422 = HTTPVal
|
|
|
3846
4394
|
*
|
|
3847
4395
|
* @path /v1/organizations/{organization_id}
|
|
3848
4396
|
*
|
|
4397
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response_401} - 401 response type
|
|
4398
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response_403} - 403 response type
|
|
3849
4399
|
* @see {@link DELETE_OrganizationsByOrganizationId_Response_422} - 422 response type
|
|
3850
4400
|
*
|
|
3851
4401
|
|
|
3852
4402
|
*/
|
|
3853
|
-
export type DELETE_OrganizationsByOrganizationId_Response = DELETE_OrganizationsByOrganizationId_Response_422;
|
|
4403
|
+
export type DELETE_OrganizationsByOrganizationId_Response = DELETE_OrganizationsByOrganizationId_Response_401 | DELETE_OrganizationsByOrganizationId_Response_403 | DELETE_OrganizationsByOrganizationId_Response_422;
|
|
4404
|
+
|
|
4405
|
+
/**
|
|
4406
|
+
* 401 response for DELETE OrganizationsByOrganizationId endpoint
|
|
4407
|
+
*
|
|
4408
|
+
* @remarks
|
|
4409
|
+
* This type defines the response structure for the 401 status code
|
|
4410
|
+
* of the DELETE OrganizationsByOrganizationId endpoint.
|
|
4411
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4412
|
+
*
|
|
4413
|
+
|
|
4414
|
+
*
|
|
4415
|
+
* @path /v1/organizations/{organization_id}
|
|
4416
|
+
*
|
|
4417
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4418
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4419
|
+
*/
|
|
4420
|
+
export type DELETE_OrganizationsByOrganizationId_Response_401 = Problem
|
|
4421
|
+
|
|
4422
|
+
/**
|
|
4423
|
+
* 403 response for DELETE OrganizationsByOrganizationId endpoint
|
|
4424
|
+
*
|
|
4425
|
+
* @remarks
|
|
4426
|
+
* This type defines the response structure for the 403 status code
|
|
4427
|
+
* of the DELETE OrganizationsByOrganizationId endpoint.
|
|
4428
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4429
|
+
*
|
|
4430
|
+
|
|
4431
|
+
*
|
|
4432
|
+
* @path /v1/organizations/{organization_id}
|
|
4433
|
+
*
|
|
4434
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4435
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4436
|
+
*/
|
|
4437
|
+
export type DELETE_OrganizationsByOrganizationId_Response_403 = Problem
|
|
3854
4438
|
|
|
3855
4439
|
/**
|
|
3856
4440
|
* 422 response for DELETE OrganizationsByOrganizationId endpoint
|
|
@@ -3885,11 +4469,13 @@ export type DELETE_OrganizationsByOrganizationId_Response_422 = HTTPValidationEr
|
|
|
3885
4469
|
* @path /v1/organizations/{organization_id}
|
|
3886
4470
|
*
|
|
3887
4471
|
* @see {@link GET_OrganizationsByOrganizationId_Response_200} - 200 response type
|
|
4472
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response_401} - 401 response type
|
|
4473
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response_403} - 403 response type
|
|
3888
4474
|
* @see {@link GET_OrganizationsByOrganizationId_Response_422} - 422 response type
|
|
3889
4475
|
*
|
|
3890
4476
|
|
|
3891
4477
|
*/
|
|
3892
|
-
export type GET_OrganizationsByOrganizationId_Response = GET_OrganizationsByOrganizationId_Response_200 | GET_OrganizationsByOrganizationId_Response_422;
|
|
4478
|
+
export type GET_OrganizationsByOrganizationId_Response = GET_OrganizationsByOrganizationId_Response_200 | GET_OrganizationsByOrganizationId_Response_401 | GET_OrganizationsByOrganizationId_Response_403 | GET_OrganizationsByOrganizationId_Response_422;
|
|
3893
4479
|
|
|
3894
4480
|
/**
|
|
3895
4481
|
* 200 response for GET OrganizationsByOrganizationId endpoint
|
|
@@ -3908,6 +4494,40 @@ export type GET_OrganizationsByOrganizationId_Response = GET_OrganizationsByOrga
|
|
|
3908
4494
|
*/
|
|
3909
4495
|
export type GET_OrganizationsByOrganizationId_Response_200 = OrganizationWithBillingData
|
|
3910
4496
|
|
|
4497
|
+
/**
|
|
4498
|
+
* 401 response for GET OrganizationsByOrganizationId endpoint
|
|
4499
|
+
*
|
|
4500
|
+
* @remarks
|
|
4501
|
+
* This type defines the response structure for the 401 status code
|
|
4502
|
+
* of the GET OrganizationsByOrganizationId endpoint.
|
|
4503
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4504
|
+
*
|
|
4505
|
+
|
|
4506
|
+
*
|
|
4507
|
+
* @path /v1/organizations/{organization_id}
|
|
4508
|
+
*
|
|
4509
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4510
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4511
|
+
*/
|
|
4512
|
+
export type GET_OrganizationsByOrganizationId_Response_401 = Problem
|
|
4513
|
+
|
|
4514
|
+
/**
|
|
4515
|
+
* 403 response for GET OrganizationsByOrganizationId endpoint
|
|
4516
|
+
*
|
|
4517
|
+
* @remarks
|
|
4518
|
+
* This type defines the response structure for the 403 status code
|
|
4519
|
+
* of the GET OrganizationsByOrganizationId endpoint.
|
|
4520
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4521
|
+
*
|
|
4522
|
+
|
|
4523
|
+
*
|
|
4524
|
+
* @path /v1/organizations/{organization_id}
|
|
4525
|
+
*
|
|
4526
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4527
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4528
|
+
*/
|
|
4529
|
+
export type GET_OrganizationsByOrganizationId_Response_403 = Problem
|
|
4530
|
+
|
|
3911
4531
|
/**
|
|
3912
4532
|
* 422 response for GET OrganizationsByOrganizationId endpoint
|
|
3913
4533
|
*
|
|
@@ -3941,11 +4561,13 @@ export type GET_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
|
3941
4561
|
* @path /v1/organizations/{organization_id}
|
|
3942
4562
|
*
|
|
3943
4563
|
* @see {@link PATCH_OrganizationsByOrganizationId_Response_200} - 200 response type
|
|
4564
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response_401} - 401 response type
|
|
4565
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response_403} - 403 response type
|
|
3944
4566
|
* @see {@link PATCH_OrganizationsByOrganizationId_Response_422} - 422 response type
|
|
3945
4567
|
*
|
|
3946
4568
|
|
|
3947
4569
|
*/
|
|
3948
|
-
export type PATCH_OrganizationsByOrganizationId_Response = PATCH_OrganizationsByOrganizationId_Response_200 | PATCH_OrganizationsByOrganizationId_Response_422;
|
|
4570
|
+
export type PATCH_OrganizationsByOrganizationId_Response = PATCH_OrganizationsByOrganizationId_Response_200 | PATCH_OrganizationsByOrganizationId_Response_401 | PATCH_OrganizationsByOrganizationId_Response_403 | PATCH_OrganizationsByOrganizationId_Response_422;
|
|
3949
4571
|
|
|
3950
4572
|
/**
|
|
3951
4573
|
* 200 response for PATCH OrganizationsByOrganizationId endpoint
|
|
@@ -3964,6 +4586,40 @@ export type PATCH_OrganizationsByOrganizationId_Response = PATCH_OrganizationsBy
|
|
|
3964
4586
|
*/
|
|
3965
4587
|
export type PATCH_OrganizationsByOrganizationId_Response_200 = Organization
|
|
3966
4588
|
|
|
4589
|
+
/**
|
|
4590
|
+
* 401 response for PATCH OrganizationsByOrganizationId endpoint
|
|
4591
|
+
*
|
|
4592
|
+
* @remarks
|
|
4593
|
+
* This type defines the response structure for the 401 status code
|
|
4594
|
+
* of the PATCH OrganizationsByOrganizationId endpoint.
|
|
4595
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4596
|
+
*
|
|
4597
|
+
|
|
4598
|
+
*
|
|
4599
|
+
* @path /v1/organizations/{organization_id}
|
|
4600
|
+
*
|
|
4601
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4602
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4603
|
+
*/
|
|
4604
|
+
export type PATCH_OrganizationsByOrganizationId_Response_401 = Problem
|
|
4605
|
+
|
|
4606
|
+
/**
|
|
4607
|
+
* 403 response for PATCH OrganizationsByOrganizationId endpoint
|
|
4608
|
+
*
|
|
4609
|
+
* @remarks
|
|
4610
|
+
* This type defines the response structure for the 403 status code
|
|
4611
|
+
* of the PATCH OrganizationsByOrganizationId endpoint.
|
|
4612
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4613
|
+
*
|
|
4614
|
+
|
|
4615
|
+
*
|
|
4616
|
+
* @path /v1/organizations/{organization_id}
|
|
4617
|
+
*
|
|
4618
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4619
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4620
|
+
*/
|
|
4621
|
+
export type PATCH_OrganizationsByOrganizationId_Response_403 = Problem
|
|
4622
|
+
|
|
3967
4623
|
/**
|
|
3968
4624
|
* 422 response for PATCH OrganizationsByOrganizationId endpoint
|
|
3969
4625
|
*
|
|
@@ -3997,11 +4653,13 @@ export type PATCH_OrganizationsByOrganizationId_Response_422 = HTTPValidationErr
|
|
|
3997
4653
|
* @path /v1/organizations/{organization_id}/pricing/product-type/{product_type}
|
|
3998
4654
|
*
|
|
3999
4655
|
* @see {@link GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_200} - 200 response type
|
|
4656
|
+
* @see {@link GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_401} - 401 response type
|
|
4657
|
+
* @see {@link GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_403} - 403 response type
|
|
4000
4658
|
* @see {@link GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_422} - 422 response type
|
|
4001
4659
|
*
|
|
4002
4660
|
|
|
4003
4661
|
*/
|
|
4004
|
-
export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response = GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_200 | GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_422;
|
|
4662
|
+
export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response = GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_200 | GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_401 | GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_403 | GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_422;
|
|
4005
4663
|
|
|
4006
4664
|
/**
|
|
4007
4665
|
* 200 response for GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint
|
|
@@ -4020,6 +4678,40 @@ export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Res
|
|
|
4020
4678
|
*/
|
|
4021
4679
|
export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_200 = GetPrices
|
|
4022
4680
|
|
|
4681
|
+
/**
|
|
4682
|
+
* 401 response for GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint
|
|
4683
|
+
*
|
|
4684
|
+
* @remarks
|
|
4685
|
+
* This type defines the response structure for the 401 status code
|
|
4686
|
+
* of the GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint.
|
|
4687
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4688
|
+
*
|
|
4689
|
+
|
|
4690
|
+
*
|
|
4691
|
+
* @path /v1/organizations/{organization_id}/pricing/product-type/{product_type}
|
|
4692
|
+
*
|
|
4693
|
+
* @see {@link GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response} - The main response type definition
|
|
4694
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4695
|
+
*/
|
|
4696
|
+
export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_401 = Problem
|
|
4697
|
+
|
|
4698
|
+
/**
|
|
4699
|
+
* 403 response for GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint
|
|
4700
|
+
*
|
|
4701
|
+
* @remarks
|
|
4702
|
+
* This type defines the response structure for the 403 status code
|
|
4703
|
+
* of the GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint.
|
|
4704
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4705
|
+
*
|
|
4706
|
+
|
|
4707
|
+
*
|
|
4708
|
+
* @path /v1/organizations/{organization_id}/pricing/product-type/{product_type}
|
|
4709
|
+
*
|
|
4710
|
+
* @see {@link GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response} - The main response type definition
|
|
4711
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4712
|
+
*/
|
|
4713
|
+
export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Response_403 = Problem
|
|
4714
|
+
|
|
4023
4715
|
/**
|
|
4024
4716
|
* 422 response for GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint
|
|
4025
4717
|
*
|
|
@@ -4044,26 +4736,62 @@ export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Res
|
|
|
4044
4736
|
* Retrieves a paginated list of transactions for an organization
|
|
4045
4737
|
*
|
|
4046
4738
|
* @remarks
|
|
4047
|
-
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdTransactions endpoint.
|
|
4048
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
4049
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
4739
|
+
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdTransactions endpoint.
|
|
4740
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
4741
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
4742
|
+
*
|
|
4743
|
+
|
|
4744
|
+
*
|
|
4745
|
+
* @path /v1/organizations/{organization_id}/transactions
|
|
4746
|
+
*
|
|
4747
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactions_Response_200} - 200 response type
|
|
4748
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactions_Response_401} - 401 response type
|
|
4749
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactions_Response_403} - 403 response type
|
|
4750
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactions_Response_422} - 422 response type
|
|
4751
|
+
*
|
|
4752
|
+
|
|
4753
|
+
*/
|
|
4754
|
+
export type GET_OrganizationsByOrganizationIdTransactions_Response = GET_OrganizationsByOrganizationIdTransactions_Response_200 | GET_OrganizationsByOrganizationIdTransactions_Response_401 | GET_OrganizationsByOrganizationIdTransactions_Response_403 | GET_OrganizationsByOrganizationIdTransactions_Response_422;
|
|
4755
|
+
|
|
4756
|
+
/**
|
|
4757
|
+
* 200 response for GET OrganizationsByOrganizationIdTransactions endpoint
|
|
4758
|
+
*
|
|
4759
|
+
* @remarks
|
|
4760
|
+
* This type defines the response structure for the 200 status code
|
|
4761
|
+
* of the GET OrganizationsByOrganizationIdTransactions endpoint.
|
|
4762
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4763
|
+
*
|
|
4764
|
+
|
|
4765
|
+
*
|
|
4766
|
+
* @path /v1/organizations/{organization_id}/transactions
|
|
4767
|
+
*
|
|
4768
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactions_Response} - The main response type definition
|
|
4769
|
+
* @see {@link Pagination_BillingTransaction} - The actual schema type definition
|
|
4770
|
+
*/
|
|
4771
|
+
export type GET_OrganizationsByOrganizationIdTransactions_Response_200 = Pagination_BillingTransaction
|
|
4772
|
+
|
|
4773
|
+
/**
|
|
4774
|
+
* 401 response for GET OrganizationsByOrganizationIdTransactions endpoint
|
|
4775
|
+
*
|
|
4776
|
+
* @remarks
|
|
4777
|
+
* This type defines the response structure for the 401 status code
|
|
4778
|
+
* of the GET OrganizationsByOrganizationIdTransactions endpoint.
|
|
4779
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4050
4780
|
*
|
|
4051
4781
|
|
|
4052
4782
|
*
|
|
4053
4783
|
* @path /v1/organizations/{organization_id}/transactions
|
|
4054
4784
|
*
|
|
4055
|
-
* @see {@link
|
|
4056
|
-
* @see {@link
|
|
4057
|
-
*
|
|
4058
|
-
|
|
4785
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactions_Response} - The main response type definition
|
|
4786
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4059
4787
|
*/
|
|
4060
|
-
export type
|
|
4788
|
+
export type GET_OrganizationsByOrganizationIdTransactions_Response_401 = Problem
|
|
4061
4789
|
|
|
4062
4790
|
/**
|
|
4063
|
-
*
|
|
4791
|
+
* 403 response for GET OrganizationsByOrganizationIdTransactions endpoint
|
|
4064
4792
|
*
|
|
4065
4793
|
* @remarks
|
|
4066
|
-
* This type defines the response structure for the
|
|
4794
|
+
* This type defines the response structure for the 403 status code
|
|
4067
4795
|
* of the GET OrganizationsByOrganizationIdTransactions endpoint.
|
|
4068
4796
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4069
4797
|
*
|
|
@@ -4072,9 +4800,9 @@ export type GET_OrganizationsByOrganizationIdTransactions_Response = GET_Organiz
|
|
|
4072
4800
|
* @path /v1/organizations/{organization_id}/transactions
|
|
4073
4801
|
*
|
|
4074
4802
|
* @see {@link GET_OrganizationsByOrganizationIdTransactions_Response} - The main response type definition
|
|
4075
|
-
* @see {@link
|
|
4803
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4076
4804
|
*/
|
|
4077
|
-
export type
|
|
4805
|
+
export type GET_OrganizationsByOrganizationIdTransactions_Response_403 = Problem
|
|
4078
4806
|
|
|
4079
4807
|
/**
|
|
4080
4808
|
* 422 response for GET OrganizationsByOrganizationIdTransactions endpoint
|
|
@@ -4109,11 +4837,13 @@ export type GET_OrganizationsByOrganizationIdTransactions_Response_422 = HTTPVal
|
|
|
4109
4837
|
* @path /v1/organizations/{organization_id}/transactions/{transaction_id}
|
|
4110
4838
|
*
|
|
4111
4839
|
* @see {@link GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_200} - 200 response type
|
|
4840
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_401} - 401 response type
|
|
4841
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_403} - 403 response type
|
|
4112
4842
|
* @see {@link GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_422} - 422 response type
|
|
4113
4843
|
*
|
|
4114
4844
|
|
|
4115
4845
|
*/
|
|
4116
|
-
export type GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response = GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_200 | GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_422;
|
|
4846
|
+
export type GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response = GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_200 | GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_401 | GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_403 | GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_422;
|
|
4117
4847
|
|
|
4118
4848
|
/**
|
|
4119
4849
|
* 200 response for GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint
|
|
@@ -4132,6 +4862,40 @@ export type GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Respons
|
|
|
4132
4862
|
*/
|
|
4133
4863
|
export type GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_200 = BillingTransaction
|
|
4134
4864
|
|
|
4865
|
+
/**
|
|
4866
|
+
* 401 response for GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint
|
|
4867
|
+
*
|
|
4868
|
+
* @remarks
|
|
4869
|
+
* This type defines the response structure for the 401 status code
|
|
4870
|
+
* of the GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint.
|
|
4871
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4872
|
+
*
|
|
4873
|
+
|
|
4874
|
+
*
|
|
4875
|
+
* @path /v1/organizations/{organization_id}/transactions/{transaction_id}
|
|
4876
|
+
*
|
|
4877
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response} - The main response type definition
|
|
4878
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4879
|
+
*/
|
|
4880
|
+
export type GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_401 = Problem
|
|
4881
|
+
|
|
4882
|
+
/**
|
|
4883
|
+
* 403 response for GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint
|
|
4884
|
+
*
|
|
4885
|
+
* @remarks
|
|
4886
|
+
* This type defines the response structure for the 403 status code
|
|
4887
|
+
* of the GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint.
|
|
4888
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4889
|
+
*
|
|
4890
|
+
|
|
4891
|
+
*
|
|
4892
|
+
* @path /v1/organizations/{organization_id}/transactions/{transaction_id}
|
|
4893
|
+
*
|
|
4894
|
+
* @see {@link GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response} - The main response type definition
|
|
4895
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4896
|
+
*/
|
|
4897
|
+
export type GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Response_403 = Problem
|
|
4898
|
+
|
|
4135
4899
|
/**
|
|
4136
4900
|
* 422 response for GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint
|
|
4137
4901
|
*
|
|
@@ -4168,10 +4932,12 @@ Single IP addresses are returned with CIDR notation (/32 for IPv4, /128 for IPv6
|
|
|
4168
4932
|
* @path /v1/organizations/ip-restrictions
|
|
4169
4933
|
*
|
|
4170
4934
|
* @see {@link GET_OrganizationsIpRestrictions_Response_200} - 200 response type
|
|
4935
|
+
* @see {@link GET_OrganizationsIpRestrictions_Response_401} - 401 response type
|
|
4936
|
+
* @see {@link GET_OrganizationsIpRestrictions_Response_403} - 403 response type
|
|
4171
4937
|
*
|
|
4172
4938
|
|
|
4173
4939
|
*/
|
|
4174
|
-
export type GET_OrganizationsIpRestrictions_Response = GET_OrganizationsIpRestrictions_Response_200;
|
|
4940
|
+
export type GET_OrganizationsIpRestrictions_Response = GET_OrganizationsIpRestrictions_Response_200 | GET_OrganizationsIpRestrictions_Response_401 | GET_OrganizationsIpRestrictions_Response_403;
|
|
4175
4941
|
|
|
4176
4942
|
/**
|
|
4177
4943
|
* 200 response for GET OrganizationsIpRestrictions endpoint
|
|
@@ -4190,6 +4956,40 @@ export type GET_OrganizationsIpRestrictions_Response = GET_OrganizationsIpRestri
|
|
|
4190
4956
|
*/
|
|
4191
4957
|
export type GET_OrganizationsIpRestrictions_Response_200 = IpRestrictionArray
|
|
4192
4958
|
|
|
4959
|
+
/**
|
|
4960
|
+
* 401 response for GET OrganizationsIpRestrictions endpoint
|
|
4961
|
+
*
|
|
4962
|
+
* @remarks
|
|
4963
|
+
* This type defines the response structure for the 401 status code
|
|
4964
|
+
* of the GET OrganizationsIpRestrictions endpoint.
|
|
4965
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4966
|
+
*
|
|
4967
|
+
|
|
4968
|
+
*
|
|
4969
|
+
* @path /v1/organizations/ip-restrictions
|
|
4970
|
+
*
|
|
4971
|
+
* @see {@link GET_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
4972
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4973
|
+
*/
|
|
4974
|
+
export type GET_OrganizationsIpRestrictions_Response_401 = Problem
|
|
4975
|
+
|
|
4976
|
+
/**
|
|
4977
|
+
* 403 response for GET OrganizationsIpRestrictions endpoint
|
|
4978
|
+
*
|
|
4979
|
+
* @remarks
|
|
4980
|
+
* This type defines the response structure for the 403 status code
|
|
4981
|
+
* of the GET OrganizationsIpRestrictions endpoint.
|
|
4982
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4983
|
+
*
|
|
4984
|
+
|
|
4985
|
+
*
|
|
4986
|
+
* @path /v1/organizations/ip-restrictions
|
|
4987
|
+
*
|
|
4988
|
+
* @see {@link GET_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
4989
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4990
|
+
*/
|
|
4991
|
+
export type GET_OrganizationsIpRestrictions_Response_403 = Problem
|
|
4992
|
+
|
|
4193
4993
|
/**
|
|
4194
4994
|
* Response types for POST OrganizationsIpRestrictions endpoint
|
|
4195
4995
|
*
|
|
@@ -4209,11 +5009,13 @@ Individual IP addresses are stored and returned with CIDR notation (/32 for IPv4
|
|
|
4209
5009
|
* @path /v1/organizations/ip-restrictions
|
|
4210
5010
|
*
|
|
4211
5011
|
* @see {@link POST_OrganizationsIpRestrictions_Response_200} - 200 response type
|
|
5012
|
+
* @see {@link POST_OrganizationsIpRestrictions_Response_401} - 401 response type
|
|
5013
|
+
* @see {@link POST_OrganizationsIpRestrictions_Response_403} - 403 response type
|
|
4212
5014
|
* @see {@link POST_OrganizationsIpRestrictions_Response_422} - 422 response type
|
|
4213
5015
|
*
|
|
4214
5016
|
|
|
4215
5017
|
*/
|
|
4216
|
-
export type POST_OrganizationsIpRestrictions_Response = POST_OrganizationsIpRestrictions_Response_200 | POST_OrganizationsIpRestrictions_Response_422;
|
|
5018
|
+
export type POST_OrganizationsIpRestrictions_Response = POST_OrganizationsIpRestrictions_Response_200 | POST_OrganizationsIpRestrictions_Response_401 | POST_OrganizationsIpRestrictions_Response_403 | POST_OrganizationsIpRestrictions_Response_422;
|
|
4217
5019
|
|
|
4218
5020
|
/**
|
|
4219
5021
|
* 200 response for POST OrganizationsIpRestrictions endpoint
|
|
@@ -4232,6 +5034,40 @@ export type POST_OrganizationsIpRestrictions_Response = POST_OrganizationsIpRest
|
|
|
4232
5034
|
*/
|
|
4233
5035
|
export type POST_OrganizationsIpRestrictions_Response_200 = IpRestriction
|
|
4234
5036
|
|
|
5037
|
+
/**
|
|
5038
|
+
* 401 response for POST OrganizationsIpRestrictions endpoint
|
|
5039
|
+
*
|
|
5040
|
+
* @remarks
|
|
5041
|
+
* This type defines the response structure for the 401 status code
|
|
5042
|
+
* of the POST OrganizationsIpRestrictions endpoint.
|
|
5043
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5044
|
+
*
|
|
5045
|
+
|
|
5046
|
+
*
|
|
5047
|
+
* @path /v1/organizations/ip-restrictions
|
|
5048
|
+
*
|
|
5049
|
+
* @see {@link POST_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
5050
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5051
|
+
*/
|
|
5052
|
+
export type POST_OrganizationsIpRestrictions_Response_401 = Problem
|
|
5053
|
+
|
|
5054
|
+
/**
|
|
5055
|
+
* 403 response for POST OrganizationsIpRestrictions endpoint
|
|
5056
|
+
*
|
|
5057
|
+
* @remarks
|
|
5058
|
+
* This type defines the response structure for the 403 status code
|
|
5059
|
+
* of the POST OrganizationsIpRestrictions endpoint.
|
|
5060
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5061
|
+
*
|
|
5062
|
+
|
|
5063
|
+
*
|
|
5064
|
+
* @path /v1/organizations/ip-restrictions
|
|
5065
|
+
*
|
|
5066
|
+
* @see {@link POST_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
5067
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5068
|
+
*/
|
|
5069
|
+
export type POST_OrganizationsIpRestrictions_Response_403 = Problem
|
|
5070
|
+
|
|
4235
5071
|
/**
|
|
4236
5072
|
* 422 response for POST OrganizationsIpRestrictions endpoint
|
|
4237
5073
|
*
|
|
@@ -4266,11 +5102,47 @@ Permanently removes the specified IP restriction from your organization.
|
|
|
4266
5102
|
*
|
|
4267
5103
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4268
5104
|
*
|
|
5105
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_401} - 401 response type
|
|
5106
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_403} - 403 response type
|
|
4269
5107
|
* @see {@link DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422} - 422 response type
|
|
4270
5108
|
*
|
|
4271
5109
|
|
|
4272
5110
|
*/
|
|
4273
|
-
export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response = DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
5111
|
+
export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response = DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_401 | DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_403 | DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
5112
|
+
|
|
5113
|
+
/**
|
|
5114
|
+
* 401 response for DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
5115
|
+
*
|
|
5116
|
+
* @remarks
|
|
5117
|
+
* This type defines the response structure for the 401 status code
|
|
5118
|
+
* of the DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint.
|
|
5119
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5120
|
+
*
|
|
5121
|
+
|
|
5122
|
+
*
|
|
5123
|
+
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
5124
|
+
*
|
|
5125
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
5126
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5127
|
+
*/
|
|
5128
|
+
export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_401 = Problem
|
|
5129
|
+
|
|
5130
|
+
/**
|
|
5131
|
+
* 403 response for DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
5132
|
+
*
|
|
5133
|
+
* @remarks
|
|
5134
|
+
* This type defines the response structure for the 403 status code
|
|
5135
|
+
* of the DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint.
|
|
5136
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5137
|
+
*
|
|
5138
|
+
|
|
5139
|
+
*
|
|
5140
|
+
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
5141
|
+
*
|
|
5142
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
5143
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5144
|
+
*/
|
|
5145
|
+
export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_403 = Problem
|
|
4274
5146
|
|
|
4275
5147
|
/**
|
|
4276
5148
|
* 422 response for DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4308,11 +5180,13 @@ Single IP addresses are returned with CIDR notation (/32 for IPv4, /128 for IPv6
|
|
|
4308
5180
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4309
5181
|
*
|
|
4310
5182
|
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200} - 200 response type
|
|
5183
|
+
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_401} - 401 response type
|
|
5184
|
+
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_403} - 403 response type
|
|
4311
5185
|
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422} - 422 response type
|
|
4312
5186
|
*
|
|
4313
5187
|
|
|
4314
5188
|
*/
|
|
4315
|
-
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response = GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 | GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
5189
|
+
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response = GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 | GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_401 | GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_403 | GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
4316
5190
|
|
|
4317
5191
|
/**
|
|
4318
5192
|
* 200 response for GET OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4331,6 +5205,40 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response = GET_Orga
|
|
|
4331
5205
|
*/
|
|
4332
5206
|
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = IpRestriction
|
|
4333
5207
|
|
|
5208
|
+
/**
|
|
5209
|
+
* 401 response for GET OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
5210
|
+
*
|
|
5211
|
+
* @remarks
|
|
5212
|
+
* This type defines the response structure for the 401 status code
|
|
5213
|
+
* of the GET OrganizationsIpRestrictionsByIpRestrictionId endpoint.
|
|
5214
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5215
|
+
*
|
|
5216
|
+
|
|
5217
|
+
*
|
|
5218
|
+
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
5219
|
+
*
|
|
5220
|
+
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
5221
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5222
|
+
*/
|
|
5223
|
+
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_401 = Problem
|
|
5224
|
+
|
|
5225
|
+
/**
|
|
5226
|
+
* 403 response for GET OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
5227
|
+
*
|
|
5228
|
+
* @remarks
|
|
5229
|
+
* This type defines the response structure for the 403 status code
|
|
5230
|
+
* of the GET OrganizationsIpRestrictionsByIpRestrictionId endpoint.
|
|
5231
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5232
|
+
*
|
|
5233
|
+
|
|
5234
|
+
*
|
|
5235
|
+
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
5236
|
+
*
|
|
5237
|
+
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
5238
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5239
|
+
*/
|
|
5240
|
+
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_403 = Problem
|
|
5241
|
+
|
|
4334
5242
|
/**
|
|
4335
5243
|
* 422 response for GET OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
4336
5244
|
*
|
|
@@ -4367,11 +5275,13 @@ Individual IP addresses are stored and returned with CIDR notation (/32 for IPv4
|
|
|
4367
5275
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4368
5276
|
*
|
|
4369
5277
|
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200} - 200 response type
|
|
5278
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_401} - 401 response type
|
|
5279
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_403} - 403 response type
|
|
4370
5280
|
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422} - 422 response type
|
|
4371
5281
|
*
|
|
4372
5282
|
|
|
4373
5283
|
*/
|
|
4374
|
-
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response = PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 | PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
5284
|
+
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response = PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 | PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_401 | PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_403 | PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
4375
5285
|
|
|
4376
5286
|
/**
|
|
4377
5287
|
* 200 response for PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4390,6 +5300,40 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response = PATCH_
|
|
|
4390
5300
|
*/
|
|
4391
5301
|
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = IpRestriction
|
|
4392
5302
|
|
|
5303
|
+
/**
|
|
5304
|
+
* 401 response for PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
5305
|
+
*
|
|
5306
|
+
* @remarks
|
|
5307
|
+
* This type defines the response structure for the 401 status code
|
|
5308
|
+
* of the PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint.
|
|
5309
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5310
|
+
*
|
|
5311
|
+
|
|
5312
|
+
*
|
|
5313
|
+
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
5314
|
+
*
|
|
5315
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
5316
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5317
|
+
*/
|
|
5318
|
+
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_401 = Problem
|
|
5319
|
+
|
|
5320
|
+
/**
|
|
5321
|
+
* 403 response for PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
5322
|
+
*
|
|
5323
|
+
* @remarks
|
|
5324
|
+
* This type defines the response structure for the 403 status code
|
|
5325
|
+
* of the PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint.
|
|
5326
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5327
|
+
*
|
|
5328
|
+
|
|
5329
|
+
*
|
|
5330
|
+
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
5331
|
+
*
|
|
5332
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
5333
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5334
|
+
*/
|
|
5335
|
+
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_403 = Problem
|
|
5336
|
+
|
|
4393
5337
|
/**
|
|
4394
5338
|
* 422 response for PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
4395
5339
|
*
|
|
@@ -4422,11 +5366,46 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HT
|
|
|
4422
5366
|
*
|
|
4423
5367
|
* @path /v1/organizations/roles
|
|
4424
5368
|
*
|
|
5369
|
+
* @see {@link GET_OrganizationsRoles_Response_401} - 401 response type
|
|
5370
|
+
* @see {@link GET_OrganizationsRoles_Response_403} - 403 response type
|
|
5371
|
+
*
|
|
5372
|
+
|
|
5373
|
+
*/
|
|
5374
|
+
export type GET_OrganizationsRoles_Response = GET_OrganizationsRoles_Response_401 | GET_OrganizationsRoles_Response_403;
|
|
5375
|
+
|
|
5376
|
+
/**
|
|
5377
|
+
* 401 response for GET OrganizationsRoles endpoint
|
|
5378
|
+
*
|
|
5379
|
+
* @remarks
|
|
5380
|
+
* This type defines the response structure for the 401 status code
|
|
5381
|
+
* of the GET OrganizationsRoles endpoint.
|
|
5382
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5383
|
+
*
|
|
5384
|
+
|
|
5385
|
+
*
|
|
5386
|
+
* @path /v1/organizations/roles
|
|
5387
|
+
*
|
|
5388
|
+
* @see {@link GET_OrganizationsRoles_Response} - The main response type definition
|
|
5389
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5390
|
+
*/
|
|
5391
|
+
export type GET_OrganizationsRoles_Response_401 = Problem
|
|
4425
5392
|
|
|
5393
|
+
/**
|
|
5394
|
+
* 403 response for GET OrganizationsRoles endpoint
|
|
5395
|
+
*
|
|
5396
|
+
* @remarks
|
|
5397
|
+
* This type defines the response structure for the 403 status code
|
|
5398
|
+
* of the GET OrganizationsRoles endpoint.
|
|
5399
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4426
5400
|
*
|
|
4427
5401
|
|
|
5402
|
+
*
|
|
5403
|
+
* @path /v1/organizations/roles
|
|
5404
|
+
*
|
|
5405
|
+
* @see {@link GET_OrganizationsRoles_Response} - The main response type definition
|
|
5406
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4428
5407
|
*/
|
|
4429
|
-
export type
|
|
5408
|
+
export type GET_OrganizationsRoles_Response_403 = Problem
|
|
4430
5409
|
|
|
4431
5410
|
/**
|
|
4432
5411
|
* Response types for GET OrganizationsUsers endpoint
|
|
@@ -4444,11 +5423,13 @@ export type GET_OrganizationsRoles_Response = unknown;
|
|
|
4444
5423
|
* @path /v1/organizations/users
|
|
4445
5424
|
*
|
|
4446
5425
|
* @see {@link GET_OrganizationsUsers_Response_200} - 200 response type
|
|
5426
|
+
* @see {@link GET_OrganizationsUsers_Response_401} - 401 response type
|
|
5427
|
+
* @see {@link GET_OrganizationsUsers_Response_403} - 403 response type
|
|
4447
5428
|
* @see {@link GET_OrganizationsUsers_Response_422} - 422 response type
|
|
4448
5429
|
*
|
|
4449
5430
|
|
|
4450
5431
|
*/
|
|
4451
|
-
export type GET_OrganizationsUsers_Response = GET_OrganizationsUsers_Response_200 | GET_OrganizationsUsers_Response_422;
|
|
5432
|
+
export type GET_OrganizationsUsers_Response = GET_OrganizationsUsers_Response_200 | GET_OrganizationsUsers_Response_401 | GET_OrganizationsUsers_Response_403 | GET_OrganizationsUsers_Response_422;
|
|
4452
5433
|
|
|
4453
5434
|
/**
|
|
4454
5435
|
* 200 response for GET OrganizationsUsers endpoint
|
|
@@ -4467,6 +5448,40 @@ export type GET_OrganizationsUsers_Response = GET_OrganizationsUsers_Response_20
|
|
|
4467
5448
|
*/
|
|
4468
5449
|
export type GET_OrganizationsUsers_Response_200 = Pagination_User
|
|
4469
5450
|
|
|
5451
|
+
/**
|
|
5452
|
+
* 401 response for GET OrganizationsUsers endpoint
|
|
5453
|
+
*
|
|
5454
|
+
* @remarks
|
|
5455
|
+
* This type defines the response structure for the 401 status code
|
|
5456
|
+
* of the GET OrganizationsUsers endpoint.
|
|
5457
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5458
|
+
*
|
|
5459
|
+
|
|
5460
|
+
*
|
|
5461
|
+
* @path /v1/organizations/users
|
|
5462
|
+
*
|
|
5463
|
+
* @see {@link GET_OrganizationsUsers_Response} - The main response type definition
|
|
5464
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5465
|
+
*/
|
|
5466
|
+
export type GET_OrganizationsUsers_Response_401 = Problem
|
|
5467
|
+
|
|
5468
|
+
/**
|
|
5469
|
+
* 403 response for GET OrganizationsUsers endpoint
|
|
5470
|
+
*
|
|
5471
|
+
* @remarks
|
|
5472
|
+
* This type defines the response structure for the 403 status code
|
|
5473
|
+
* of the GET OrganizationsUsers endpoint.
|
|
5474
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5475
|
+
*
|
|
5476
|
+
|
|
5477
|
+
*
|
|
5478
|
+
* @path /v1/organizations/users
|
|
5479
|
+
*
|
|
5480
|
+
* @see {@link GET_OrganizationsUsers_Response} - The main response type definition
|
|
5481
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5482
|
+
*/
|
|
5483
|
+
export type GET_OrganizationsUsers_Response_403 = Problem
|
|
5484
|
+
|
|
4470
5485
|
/**
|
|
4471
5486
|
* 422 response for GET OrganizationsUsers endpoint
|
|
4472
5487
|
*
|