@mittwald/api-client 4.328.0 → 4.330.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.
@@ -1687,19 +1687,6 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1687
1687
  }>;
1688
1688
  };
1689
1689
  declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1690
- /** List Invites belonging to a Customer. */
1691
- listInvitesForCustomer: (conf: {
1692
- customerId: string;
1693
- headers?: {
1694
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1695
- "x-access-token"?: string | undefined;
1696
- } | undefined;
1697
- queryParameters?: {
1698
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1699
- limit?: number | undefined;
1700
- skip?: number | undefined;
1701
- } | undefined;
1702
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
1703
1690
  /** Get all customer profiles the authenticated user has access to. */
1704
1691
  listCustomers: (conf?: {
1705
1692
  headers?: {
@@ -1728,6 +1715,47 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1728
1715
  recommendationCode?: string | undefined;
1729
1716
  walletId: string;
1730
1717
  }>;
1718
+ /** Get a customer profile. */
1719
+ getCustomer: (conf: {
1720
+ customerId: string;
1721
+ headers?: {
1722
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1723
+ "x-access-token"?: string | undefined;
1724
+ } | undefined;
1725
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1726
+ activeSuspension?: {
1727
+ createdAt: string;
1728
+ } | undefined;
1729
+ avatarRefId?: string | undefined;
1730
+ categoryId?: string | undefined;
1731
+ creationDate: string;
1732
+ customerId: string;
1733
+ customerNumber: string;
1734
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
1735
+ executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
1736
+ flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
1737
+ isAllowedToPlaceOrders?: boolean | undefined;
1738
+ isBanned?: boolean | undefined;
1739
+ isInDefaultOfPayment?: boolean | undefined;
1740
+ isMailAddressInvalid?: boolean | undefined;
1741
+ levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
1742
+ memberCount: number;
1743
+ name: string;
1744
+ owner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerContact | undefined;
1745
+ projectCount: number;
1746
+ vatId?: string | undefined;
1747
+ vatIdValidationState?: "valid" | "invalid" | "pending" | "unspecified" | undefined;
1748
+ }>;
1749
+ /** Check if the customer profile has a valid contract partner configured. */
1750
+ isCustomerLegallyCompetent: (conf: {
1751
+ customerId: string;
1752
+ headers?: {
1753
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1754
+ "x-access-token"?: string | undefined;
1755
+ } | undefined;
1756
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1757
+ isLegallyCompetent?: boolean | undefined;
1758
+ }>;
1731
1759
  /** Get a CustomerInvite. */
1732
1760
  getCustomerInvite: (conf: {
1733
1761
  customerInviteId: string;
@@ -1767,37 +1795,19 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1767
1795
  role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
1768
1796
  userId: string;
1769
1797
  }>;
1770
- /** Get a customer profile. */
1771
- getCustomer: (conf: {
1798
+ /** List Invites belonging to a Customer. */
1799
+ listInvitesForCustomer: (conf: {
1772
1800
  customerId: string;
1773
1801
  headers?: {
1774
1802
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1775
1803
  "x-access-token"?: string | undefined;
1776
1804
  } | undefined;
1777
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1778
- activeSuspension?: {
1779
- createdAt: string;
1805
+ queryParameters?: {
1806
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1807
+ limit?: number | undefined;
1808
+ skip?: number | undefined;
1780
1809
  } | undefined;
1781
- avatarRefId?: string | undefined;
1782
- categoryId?: string | undefined;
1783
- creationDate: string;
1784
- customerId: string;
1785
- customerNumber: string;
1786
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
1787
- executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
1788
- flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
1789
- isAllowedToPlaceOrders?: boolean | undefined;
1790
- isBanned?: boolean | undefined;
1791
- isInDefaultOfPayment?: boolean | undefined;
1792
- isMailAddressInvalid?: boolean | undefined;
1793
- levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
1794
- memberCount: number;
1795
- name: string;
1796
- owner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerContact | undefined;
1797
- projectCount: number;
1798
- vatId?: string | undefined;
1799
- vatIdValidationState?: "valid" | "invalid" | "pending" | "unspecified" | undefined;
1800
- }>;
1810
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
1801
1811
  /** Get a CustomerInvite by token. */
1802
1812
  getCustomerTokenInvite: (conf: {
1803
1813
  headers: {
@@ -1816,29 +1826,6 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1816
1826
  message?: string | undefined;
1817
1827
  role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
1818
1828
  }>;
1819
- /** Check if the customer profile has a valid contract partner configured. */
1820
- isCustomerLegallyCompetent: (conf: {
1821
- customerId: string;
1822
- headers?: {
1823
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1824
- "x-access-token"?: string | undefined;
1825
- } | undefined;
1826
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1827
- isLegallyCompetent?: boolean | undefined;
1828
- }>;
1829
- /** List CustomerInvites belonging to the executing user. */
1830
- listCustomerInvites: (conf?: {
1831
- headers?: {
1832
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1833
- "x-access-token"?: string | undefined;
1834
- } | undefined;
1835
- queryParameters?: {
1836
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1837
- limit?: number | undefined;
1838
- skip?: number | undefined;
1839
- page?: number | undefined;
1840
- } | undefined;
1841
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
1842
1829
  /** List CustomerMemberships belonging to the executing user. */
1843
1830
  listCustomerMemberships: (conf?: {
1844
1831
  headers?: {
@@ -1869,6 +1856,19 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1869
1856
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
1870
1857
  } | undefined;
1871
1858
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
1859
+ /** List CustomerInvites belonging to the executing user. */
1860
+ listCustomerInvites: (conf?: {
1861
+ headers?: {
1862
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1863
+ "x-access-token"?: string | undefined;
1864
+ } | undefined;
1865
+ queryParameters?: {
1866
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1867
+ limit?: number | undefined;
1868
+ skip?: number | undefined;
1869
+ page?: number | undefined;
1870
+ } | undefined;
1871
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
1872
1872
  };
1873
1873
  declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
1874
1874
  /** List MySQLDatabases belonging to a Project. */
@@ -3062,59 +3062,6 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
3062
3062
  }>;
3063
3063
  };
3064
3064
  declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3065
- /** List Invites belonging to a Project. */
3066
- listInvitesForProject: (conf: {
3067
- projectId: string;
3068
- headers?: {
3069
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3070
- "x-access-token"?: string | undefined;
3071
- } | undefined;
3072
- queryParameters?: {
3073
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3074
- limit?: number | undefined;
3075
- skip?: number | undefined;
3076
- } | undefined;
3077
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[]>;
3078
- /** Get a ProjectInvite. */
3079
- getProjectInvite: (conf: {
3080
- projectInviteId: string;
3081
- headers?: {
3082
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3083
- "x-access-token"?: string | undefined;
3084
- } | undefined;
3085
- }) => import("@mittwald/react-use-promise").AsyncResource<{
3086
- avatarRefId?: string | undefined;
3087
- id: string;
3088
- information: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
3089
- mailAddress: string;
3090
- membershipExpiresAt?: string | undefined;
3091
- message?: string | undefined;
3092
- projectDescription: string;
3093
- projectId: string;
3094
- role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
3095
- }>;
3096
- /** Get a ProjectMembership */
3097
- getProjectMembership: (conf: {
3098
- projectMembershipId: string;
3099
- headers?: {
3100
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3101
- "x-access-token"?: string | undefined;
3102
- } | undefined;
3103
- }) => import("@mittwald/react-use-promise").AsyncResource<{
3104
- avatarRef?: string | undefined;
3105
- email: string;
3106
- expiresAt?: string | undefined;
3107
- firstName: string;
3108
- id: string;
3109
- inherited: boolean;
3110
- inviteId?: string | undefined;
3111
- lastName: string;
3112
- memberSince?: string | undefined;
3113
- mfa: boolean;
3114
- projectId: string;
3115
- role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
3116
- userId: string;
3117
- }>;
3118
3065
  /** Get a Project. */
3119
3066
  getProject: (conf: {
3120
3067
  projectId: string;
@@ -3155,46 +3102,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3155
3102
  webStorageUsageInBytes: number;
3156
3103
  webStorageUsageInBytesSetAt: string;
3157
3104
  }>;
3158
- /** Get a ProjectInvite by token. */
3159
- getProjectTokenInvite: (conf: {
3160
- headers: {
3161
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3162
- token: string;
3163
- "x-access-token"?: string | undefined;
3164
- };
3165
- }) => import("@mittwald/react-use-promise").AsyncResource<{
3166
- avatarRefId?: string | undefined;
3167
- id: string;
3168
- information: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
3169
- mailAddress: string;
3170
- membershipExpiresAt?: string | undefined;
3171
- message?: string | undefined;
3172
- projectDescription: string;
3173
- projectId: string;
3174
- role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
3175
- }>;
3176
- /** Get the executing user's membership in a Project. */
3177
- getSelfMembershipForProject: (conf: {
3178
- projectId: string;
3179
- headers?: {
3180
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3181
- "x-access-token"?: string | undefined;
3182
- } | undefined;
3183
- }) => import("@mittwald/react-use-promise").AsyncResource<{
3184
- avatarRef?: string | undefined;
3185
- email: string;
3186
- expiresAt?: string | undefined;
3187
- firstName: string;
3188
- id: string;
3189
- inherited: boolean;
3190
- inviteId?: string | undefined;
3191
- lastName: string;
3192
- memberSince?: string | undefined;
3193
- mfa: boolean;
3194
- projectId: string;
3195
- role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
3196
- userId: string;
3197
- }>;
3198
3105
  /** Get a Server. */
3199
3106
  getServer: (conf: {
3200
3107
  serverId: string;
@@ -3218,52 +3125,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3218
3125
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
3219
3126
  storage: string;
3220
3127
  }>;
3221
- /** List Memberships belonging to a Project. */
3222
- listMembershipsForProject: (conf: {
3223
- projectId: string;
3224
- headers?: {
3225
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3226
- "x-access-token"?: string | undefined;
3227
- } | undefined;
3228
- queryParameters?: {
3229
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3230
- limit?: number | undefined;
3231
- skip?: number | undefined;
3232
- hasExpiry?: boolean | undefined;
3233
- isInherited?: boolean | undefined;
3234
- role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
3235
- hasMfa?: boolean | undefined;
3236
- } | undefined;
3237
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
3238
- /** List ProjectInvites belonging to the executing user. */
3239
- listProjectInvites: (conf?: {
3240
- headers?: {
3241
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3242
- "x-access-token"?: string | undefined;
3243
- } | undefined;
3244
- queryParameters?: {
3245
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3246
- limit?: number | undefined;
3247
- skip?: number | undefined;
3248
- page?: number | undefined;
3249
- } | undefined;
3250
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[]>;
3251
- /** List ProjectMemberships belonging to the executing user. */
3252
- listProjectMemberships: (conf?: {
3253
- headers?: {
3254
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3255
- "x-access-token"?: string | undefined;
3256
- } | undefined;
3257
- queryParameters?: {
3258
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3259
- limit?: number | undefined;
3260
- skip?: number | undefined;
3261
- page?: number | undefined;
3262
- hasExpiry?: boolean | undefined;
3263
- isInherited?: boolean | undefined;
3264
- role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
3265
- } | undefined;
3266
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
3267
3128
  /** List Projects belonging to the executing user. */
3268
3129
  listProjects: (conf?: {
3269
3130
  headers?: {
@@ -3358,6 +3219,145 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3358
3219
  notificationThresholdInBytes?: number | undefined;
3359
3220
  statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
3360
3221
  }>;
3222
+ /** Get a ProjectInvite. */
3223
+ getProjectInvite: (conf: {
3224
+ projectInviteId: string;
3225
+ headers?: {
3226
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3227
+ "x-access-token"?: string | undefined;
3228
+ } | undefined;
3229
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
3230
+ avatarRefId?: string | undefined;
3231
+ id: string;
3232
+ information: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
3233
+ mailAddress: string;
3234
+ membershipExpiresAt?: string | undefined;
3235
+ message?: string | undefined;
3236
+ projectDescription: string;
3237
+ projectId: string;
3238
+ role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
3239
+ }>;
3240
+ /** Get the executing user's membership in a Project. */
3241
+ getSelfMembershipForProject: (conf: {
3242
+ projectId: string;
3243
+ headers?: {
3244
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3245
+ "x-access-token"?: string | undefined;
3246
+ } | undefined;
3247
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
3248
+ avatarRef?: string | undefined;
3249
+ email: string;
3250
+ expiresAt?: string | undefined;
3251
+ firstName: string;
3252
+ id: string;
3253
+ inherited: boolean;
3254
+ inviteId?: string | undefined;
3255
+ lastName: string;
3256
+ memberSince?: string | undefined;
3257
+ mfa: boolean;
3258
+ projectId: string;
3259
+ role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
3260
+ userId: string;
3261
+ }>;
3262
+ /** Get a ProjectMembership */
3263
+ getProjectMembership: (conf: {
3264
+ projectMembershipId: string;
3265
+ headers?: {
3266
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3267
+ "x-access-token"?: string | undefined;
3268
+ } | undefined;
3269
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
3270
+ avatarRef?: string | undefined;
3271
+ email: string;
3272
+ expiresAt?: string | undefined;
3273
+ firstName: string;
3274
+ id: string;
3275
+ inherited: boolean;
3276
+ inviteId?: string | undefined;
3277
+ lastName: string;
3278
+ memberSince?: string | undefined;
3279
+ mfa: boolean;
3280
+ projectId: string;
3281
+ role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
3282
+ userId: string;
3283
+ }>;
3284
+ /** List Invites belonging to a Project. */
3285
+ listInvitesForProject: (conf: {
3286
+ projectId: string;
3287
+ headers?: {
3288
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3289
+ "x-access-token"?: string | undefined;
3290
+ } | undefined;
3291
+ queryParameters?: {
3292
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3293
+ limit?: number | undefined;
3294
+ skip?: number | undefined;
3295
+ } | undefined;
3296
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[]>;
3297
+ /** Get a ProjectInvite by token. */
3298
+ getProjectTokenInvite: (conf: {
3299
+ headers: {
3300
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3301
+ token: string;
3302
+ "x-access-token"?: string | undefined;
3303
+ };
3304
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
3305
+ avatarRefId?: string | undefined;
3306
+ id: string;
3307
+ information: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
3308
+ mailAddress: string;
3309
+ membershipExpiresAt?: string | undefined;
3310
+ message?: string | undefined;
3311
+ projectDescription: string;
3312
+ projectId: string;
3313
+ role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
3314
+ }>;
3315
+ /** List ProjectMemberships belonging to the executing user. */
3316
+ listProjectMemberships: (conf?: {
3317
+ headers?: {
3318
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3319
+ "x-access-token"?: string | undefined;
3320
+ } | undefined;
3321
+ queryParameters?: {
3322
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3323
+ limit?: number | undefined;
3324
+ skip?: number | undefined;
3325
+ page?: number | undefined;
3326
+ hasExpiry?: boolean | undefined;
3327
+ isInherited?: boolean | undefined;
3328
+ role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
3329
+ } | undefined;
3330
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
3331
+ /** List ProjectInvites belonging to the executing user. */
3332
+ listProjectInvites: (conf?: {
3333
+ headers?: {
3334
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3335
+ "x-access-token"?: string | undefined;
3336
+ } | undefined;
3337
+ queryParameters?: {
3338
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3339
+ limit?: number | undefined;
3340
+ skip?: number | undefined;
3341
+ page?: number | undefined;
3342
+ } | undefined;
3343
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[]>;
3344
+ /** List Memberships belonging to a Project. */
3345
+ listMembershipsForProject: (conf: {
3346
+ projectId: string;
3347
+ headers?: {
3348
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3349
+ "x-access-token"?: string | undefined;
3350
+ } | undefined;
3351
+ queryParameters?: {
3352
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3353
+ limit?: number | undefined;
3354
+ skip?: number | undefined;
3355
+ hasExpiry?: boolean | undefined;
3356
+ isInherited?: boolean | undefined;
3357
+ role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
3358
+ hasMfa?: boolean | undefined;
3359
+ } | undefined;
3360
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
3361
3361
  };
3362
3362
  declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
3363
3363
  /** List directories belonging to a Project. */