@mittwald/api-client 0.0.0-development-1eef98f-20260826 → 0.0.0-development-5fdc155-20260827

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.
@@ -444,6 +444,8 @@ const buildUserApi = (baseClient) => ({
444
444
  oauthGetAuthorization: new ApiCallAsyncResourceFactory(descriptors.userOauthGetAuthorization, baseClient.user.oauthGetAuthorization).getApiResource,
445
445
  /** Request a support code. */
446
446
  supportCodeRequest: new ApiCallAsyncResourceFactory(descriptors.userSupportCodeRequest, baseClient.user.supportCodeRequest).getApiResource,
447
+ /** Submitted feedback of the given user. */
448
+ getSpotlightInfo: new ApiCallAsyncResourceFactory(descriptors.userGetSpotlightInfo, baseClient.user.getSpotlightInfo).getApiResource,
447
449
  });
448
450
  const buildProjectApi = (baseClient) => ({
449
451
  /** List Invites belonging to a Project. */
@@ -856,6 +856,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
856
856
  verifyPhoneNumber: this.requestFunctionFactory(descriptors.userVerifyPhoneNumber),
857
857
  /** Verify your registration. */
858
858
  verifyRegistration: this.requestFunctionFactory(descriptors.userVerifyRegistration),
859
+ /** Submitted feedback of the given user. */
860
+ getSpotlightInfo: this.requestFunctionFactory(descriptors.userGetSpotlightInfo),
859
861
  };
860
862
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
861
863
  file = {
@@ -2914,3 +2914,9 @@ export const appRequestAppinstallationStaging = {
2914
2914
  method: "POST",
2915
2915
  operationId: "app-request-appinstallation-staging",
2916
2916
  };
2917
+ /** Submitted feedback of the given user. */
2918
+ export const userGetSpotlightInfo = {
2919
+ path: "/v2/users/self/spotlights/{spotlightId}",
2920
+ method: "GET",
2921
+ operationId: "user-get-spotlight-info",
2922
+ };
@@ -444,6 +444,8 @@ const buildUserApi = (baseClient) => ({
444
444
  oauthGetAuthorization: new ApiCallAsyncResourceFactory(descriptors.userOauthGetAuthorization, baseClient.user.oauthGetAuthorization).getApiResource,
445
445
  /** Request a support code. */
446
446
  supportCodeRequest: new ApiCallAsyncResourceFactory(descriptors.userSupportCodeRequest, baseClient.user.supportCodeRequest).getApiResource,
447
+ /** Submitted feedback of the given user. */
448
+ getSpotlightInfo: new ApiCallAsyncResourceFactory(descriptors.userGetSpotlightInfo, baseClient.user.getSpotlightInfo).getApiResource,
447
449
  });
448
450
  const buildProjectApi = (baseClient) => ({
449
451
  /** List Invites belonging to a Project. */
@@ -856,6 +856,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
856
856
  verifyPhoneNumber: this.requestFunctionFactory(descriptors.userVerifyPhoneNumber),
857
857
  /** Verify your registration. */
858
858
  verifyRegistration: this.requestFunctionFactory(descriptors.userVerifyRegistration),
859
+ /** Submitted feedback of the given user. */
860
+ getSpotlightInfo: this.requestFunctionFactory(descriptors.userGetSpotlightInfo),
859
861
  };
860
862
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
861
863
  file = {
@@ -2914,3 +2914,9 @@ export const appRequestAppinstallationStaging = {
2914
2914
  method: "POST",
2915
2915
  operationId: "app-request-appinstallation-staging",
2916
2916
  };
2917
+ /** Submitted feedback of the given user. */
2918
+ export const userGetSpotlightInfo = {
2919
+ path: "/v3-next/users/self/spotlights/{spotlightId}",
2920
+ method: "GET",
2921
+ operationId: "user-get-spotlight-info",
2922
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.448.0';
1
+ export const MittwaldAPIClientVersion = '0.0.0-development-f13d74a-20260826';
@@ -2062,7 +2062,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
2062
2062
  creationDate: string;
2063
2063
  customerId: string;
2064
2064
  customerNumber: string;
2065
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
2065
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
2066
2066
  executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
2067
2067
  flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
2068
2068
  isAllowedToPlaceOrders?: boolean | undefined;
@@ -3175,6 +3175,9 @@ declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
3175
3175
  severity?: ("success" | "info" | "warning" | "error")[] | undefined;
3176
3176
  type?: string[] | undefined;
3177
3177
  "type-not"?: string[] | undefined;
3178
+ referenceId?: string | undefined;
3179
+ referenceDomain?: string | undefined;
3180
+ referenceAggregate?: string | undefined;
3178
3181
  limit?: number | undefined;
3179
3182
  skip?: number | undefined;
3180
3183
  page?: number | undefined;
@@ -3470,6 +3473,21 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
3470
3473
  expiresAt: string;
3471
3474
  supportCode: string;
3472
3475
  }>;
3476
+ /** Submitted feedback of the given user. */
3477
+ getSpotlightInfo: (conf: {
3478
+ spotlightId: string;
3479
+ headers?: {
3480
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3481
+ "x-access-token"?: string | undefined;
3482
+ } | undefined;
3483
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
3484
+ acknowledged: {
3485
+ [k: string]: unknown;
3486
+ };
3487
+ decision?: "keep" | "kill" | "ignore" | undefined;
3488
+ spotlightId: string;
3489
+ used: boolean;
3490
+ }>;
3473
3491
  };
3474
3492
  declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3475
3493
  /** List Invites belonging to a Project. */
@@ -15736,7 +15736,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
15736
15736
  creationDate: string;
15737
15737
  customerId: string;
15738
15738
  customerNumber: string;
15739
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
15739
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
15740
15740
  executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
15741
15741
  flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
15742
15742
  isAllowedToPlaceOrders?: boolean | undefined;
@@ -15781,7 +15781,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
15781
15781
  creationDate: string;
15782
15782
  customerId: string;
15783
15783
  customerNumber: string;
15784
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
15784
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
15785
15785
  executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
15786
15786
  flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
15787
15787
  isAllowedToPlaceOrders?: boolean | undefined;
@@ -23591,6 +23591,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23591
23591
  severity?: ("success" | "info" | "warning" | "error")[] | undefined;
23592
23592
  type?: string[] | undefined;
23593
23593
  "type-not"?: string[] | undefined;
23594
+ referenceId?: string | undefined;
23595
+ referenceDomain?: string | undefined;
23596
+ referenceAggregate?: string | undefined;
23594
23597
  limit?: number | undefined;
23595
23598
  skip?: number | undefined;
23596
23599
  page?: number | undefined;
@@ -23605,6 +23608,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23605
23608
  severity?: ("success" | "info" | "warning" | "error")[] | undefined;
23606
23609
  type?: string[] | undefined;
23607
23610
  "type-not"?: string[] | undefined;
23611
+ referenceId?: string | undefined;
23612
+ referenceDomain?: string | undefined;
23613
+ referenceAggregate?: string | undefined;
23608
23614
  limit?: number | undefined;
23609
23615
  skip?: number | undefined;
23610
23616
  page?: number | undefined;
@@ -23629,6 +23635,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23629
23635
  severity?: ("success" | "info" | "warning" | "error")[] | undefined;
23630
23636
  type?: string[] | undefined;
23631
23637
  "type-not"?: string[] | undefined;
23638
+ referenceId?: string | undefined;
23639
+ referenceDomain?: string | undefined;
23640
+ referenceAggregate?: string | undefined;
23632
23641
  limit?: number | undefined;
23633
23642
  skip?: number | undefined;
23634
23643
  page?: number | undefined;
@@ -26599,6 +26608,60 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26599
26608
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
26600
26609
  [x: string]: unknown;
26601
26610
  }, 429, "application/json">>>;
26611
+ /** Submitted feedback of the given user. */
26612
+ getSpotlightInfo: (request: {
26613
+ spotlightId: string;
26614
+ headers?: {
26615
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26616
+ "x-access-token"?: string | undefined;
26617
+ } | undefined;
26618
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26619
+ headers?: Partial<{
26620
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26621
+ }>;
26622
+ } & {
26623
+ pathParameters: {
26624
+ spotlightId: string;
26625
+ };
26626
+ } & {
26627
+ headers: {
26628
+ "x-access-token"?: string | undefined;
26629
+ } & Partial<{
26630
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26631
+ }>;
26632
+ }, import("@mittwald/api-client-commons").Response<{
26633
+ acknowledged: {
26634
+ [k: string]: unknown;
26635
+ };
26636
+ decision?: "keep" | "kill" | "ignore" | undefined;
26637
+ spotlightId: string;
26638
+ used: boolean;
26639
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26640
+ [x: string]: unknown;
26641
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26642
+ headers?: Partial<{
26643
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26644
+ }>;
26645
+ } & {
26646
+ pathParameters: {
26647
+ spotlightId: string;
26648
+ };
26649
+ } & {
26650
+ headers: {
26651
+ "x-access-token"?: string | undefined;
26652
+ } & Partial<{
26653
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26654
+ }>;
26655
+ }, import("@mittwald/api-client-commons").Response<{
26656
+ acknowledged: {
26657
+ [k: string]: unknown;
26658
+ };
26659
+ decision?: "keep" | "kill" | "ignore" | undefined;
26660
+ spotlightId: string;
26661
+ used: boolean;
26662
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26663
+ [x: string]: unknown;
26664
+ }, 429, "application/json">>>;
26602
26665
  };
26603
26666
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
26604
26667
  readonly file: {
@@ -975,3 +975,5 @@ export declare const appDetachAppinstallationStaging: OpenAPIOperation<RequestTy
975
975
  export declare const appPromoteAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
976
976
  /** Request a staging for an AppInstallation. */
977
977
  export declare const appRequestAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
978
+ /** Submitted feedback of the given user. */
979
+ export declare const userGetSpotlightInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1946,6 +1946,10 @@ export declare namespace MittwaldAPIV2 {
1946
1946
  type RequestData = InferredRequestData<typeof descriptors.appRequestAppinstallationStaging>;
1947
1947
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appRequestAppinstallationStaging, TStatus>;
1948
1948
  }
1949
+ namespace UserGetSpotlightInfo {
1950
+ type RequestData = InferredRequestData<typeof descriptors.userGetSpotlightInfo>;
1951
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetSpotlightInfo, TStatus>;
1952
+ }
1949
1953
  }
1950
1954
  namespace Components {
1951
1955
  namespace Schemas {
@@ -3657,7 +3661,7 @@ export declare namespace MittwaldAPIV2 {
3657
3661
  creationDate: string;
3658
3662
  customerId: string;
3659
3663
  customerNumber: string;
3660
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[];
3664
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[];
3661
3665
  executingUserRoles?: MittwaldAPIV2.Components.Schemas.CustomerRole[];
3662
3666
  flags?: MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[];
3663
3667
  isAllowedToPlaceOrders?: boolean;
@@ -7457,12 +7461,12 @@ export declare namespace MittwaldAPIV2 {
7457
7461
  interface DnsZoneImportPreview {
7458
7462
  alreadyExists: boolean;
7459
7463
  /**
7460
- * Fully-qualified name of the target zone. Every distinct owner name becomes its own zone.
7464
+ * Fully-qualified name of the target zone. Every distinct owner name becomes its own zone. Only importable zones are listed; a zone named by a conflict is omitted.
7461
7465
  */
7462
7466
  name: string;
7463
7467
  recordSets: MittwaldAPIV2.Components.Schemas.DnsImportRecordSet[];
7464
7468
  /**
7465
- * Project the zone would be created in. Empty when the zone is not importable (a conflict names it).
7469
+ * Project the zone would be created in. Always set, since only importable zones are listed.
7466
7470
  */
7467
7471
  targetProjectId?: string;
7468
7472
  }
@@ -26200,6 +26204,9 @@ export declare namespace MittwaldAPIV2 {
26200
26204
  severity?: ("success" | "info" | "warning" | "error")[];
26201
26205
  type?: string[];
26202
26206
  "type-not"?: string[];
26207
+ referenceId?: string;
26208
+ referenceDomain?: string;
26209
+ referenceAggregate?: string;
26203
26210
  limit?: number;
26204
26211
  skip?: number;
26205
26212
  page?: number;
@@ -32732,5 +32739,44 @@ export declare namespace MittwaldAPIV2 {
32732
32739
  }
32733
32740
  }
32734
32741
  }
32742
+ namespace V2UsersSelfSpotlightsSpotlightId {
32743
+ namespace Get {
32744
+ namespace Parameters {
32745
+ type Path = {
32746
+ spotlightId: string;
32747
+ };
32748
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
32749
+ type Query = {};
32750
+ }
32751
+ namespace Responses {
32752
+ namespace $200 {
32753
+ namespace Content {
32754
+ interface ApplicationJson {
32755
+ acknowledged: {
32756
+ [k: string]: unknown;
32757
+ };
32758
+ decision?: "keep" | "kill" | "ignore";
32759
+ spotlightId: string;
32760
+ used: boolean;
32761
+ }
32762
+ }
32763
+ }
32764
+ namespace $429 {
32765
+ namespace Content {
32766
+ interface ApplicationJson {
32767
+ [k: string]: unknown;
32768
+ }
32769
+ }
32770
+ }
32771
+ namespace Default {
32772
+ namespace Content {
32773
+ interface ApplicationJson {
32774
+ [k: string]: unknown;
32775
+ }
32776
+ }
32777
+ }
32778
+ }
32779
+ }
32780
+ }
32735
32781
  }
32736
32782
  }
@@ -2062,7 +2062,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV3NextClient) => {
2062
2062
  creationDate: string;
2063
2063
  customerId: string;
2064
2064
  customerNumber: string;
2065
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
2065
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
2066
2066
  executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
2067
2067
  flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
2068
2068
  isAllowedToPlaceOrders?: boolean | undefined;
@@ -3172,6 +3172,9 @@ declare const buildNotificationApi: (baseClient: MittwaldAPIV3NextClient) => {
3172
3172
  severity?: ("success" | "info" | "warning" | "error")[] | undefined;
3173
3173
  type?: string[] | undefined;
3174
3174
  "type-not"?: string[] | undefined;
3175
+ referenceId?: string | undefined;
3176
+ referenceDomain?: string | undefined;
3177
+ referenceAggregate?: string | undefined;
3175
3178
  limit?: number | undefined;
3176
3179
  skip?: number | undefined;
3177
3180
  page?: number | undefined;
@@ -3467,6 +3470,21 @@ declare const buildUserApi: (baseClient: MittwaldAPIV3NextClient) => {
3467
3470
  expiresAt: string;
3468
3471
  supportCode: string;
3469
3472
  }>;
3473
+ /** Submitted feedback of the given user. */
3474
+ getSpotlightInfo: (conf: {
3475
+ spotlightId: string;
3476
+ headers?: {
3477
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3478
+ "x-access-token"?: string | undefined;
3479
+ } | undefined;
3480
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
3481
+ acknowledged: {
3482
+ [k: string]: unknown;
3483
+ };
3484
+ decision?: "keep" | "kill" | "ignore" | undefined;
3485
+ spotlightId: string;
3486
+ used: boolean;
3487
+ }>;
3470
3488
  };
3471
3489
  declare const buildProjectApi: (baseClient: MittwaldAPIV3NextClient) => {
3472
3490
  /** List Invites belonging to a Project. */
@@ -15736,7 +15736,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
15736
15736
  creationDate: string;
15737
15737
  customerId: string;
15738
15738
  customerNumber: string;
15739
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
15739
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
15740
15740
  executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
15741
15741
  flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
15742
15742
  isAllowedToPlaceOrders?: boolean | undefined;
@@ -15781,7 +15781,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
15781
15781
  creationDate: string;
15782
15782
  customerId: string;
15783
15783
  customerNumber: string;
15784
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
15784
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
15785
15785
  executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
15786
15786
  flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
15787
15787
  isAllowedToPlaceOrders?: boolean | undefined;
@@ -23590,6 +23590,9 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
23590
23590
  severity?: ("success" | "info" | "warning" | "error")[] | undefined;
23591
23591
  type?: string[] | undefined;
23592
23592
  "type-not"?: string[] | undefined;
23593
+ referenceId?: string | undefined;
23594
+ referenceDomain?: string | undefined;
23595
+ referenceAggregate?: string | undefined;
23593
23596
  limit?: number | undefined;
23594
23597
  skip?: number | undefined;
23595
23598
  page?: number | undefined;
@@ -23604,6 +23607,9 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
23604
23607
  severity?: ("success" | "info" | "warning" | "error")[] | undefined;
23605
23608
  type?: string[] | undefined;
23606
23609
  "type-not"?: string[] | undefined;
23610
+ referenceId?: string | undefined;
23611
+ referenceDomain?: string | undefined;
23612
+ referenceAggregate?: string | undefined;
23607
23613
  limit?: number | undefined;
23608
23614
  skip?: number | undefined;
23609
23615
  page?: number | undefined;
@@ -23628,6 +23634,9 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
23628
23634
  severity?: ("success" | "info" | "warning" | "error")[] | undefined;
23629
23635
  type?: string[] | undefined;
23630
23636
  "type-not"?: string[] | undefined;
23637
+ referenceId?: string | undefined;
23638
+ referenceDomain?: string | undefined;
23639
+ referenceAggregate?: string | undefined;
23631
23640
  limit?: number | undefined;
23632
23641
  skip?: number | undefined;
23633
23642
  page?: number | undefined;
@@ -26598,6 +26607,60 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
26598
26607
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
26599
26608
  [x: string]: unknown;
26600
26609
  }, 429, "application/json">>>;
26610
+ /** Submitted feedback of the given user. */
26611
+ getSpotlightInfo: (request: {
26612
+ spotlightId: string;
26613
+ headers?: {
26614
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26615
+ "x-access-token"?: string | undefined;
26616
+ } | undefined;
26617
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26618
+ headers?: Partial<{
26619
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26620
+ }>;
26621
+ } & {
26622
+ pathParameters: {
26623
+ spotlightId: string;
26624
+ };
26625
+ } & {
26626
+ headers: {
26627
+ "x-access-token"?: string | undefined;
26628
+ } & Partial<{
26629
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26630
+ }>;
26631
+ }, import("@mittwald/api-client-commons").Response<{
26632
+ acknowledged: {
26633
+ [k: string]: unknown;
26634
+ };
26635
+ decision?: "keep" | "kill" | "ignore" | undefined;
26636
+ spotlightId: string;
26637
+ used: boolean;
26638
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26639
+ [x: string]: unknown;
26640
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26641
+ headers?: Partial<{
26642
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26643
+ }>;
26644
+ } & {
26645
+ pathParameters: {
26646
+ spotlightId: string;
26647
+ };
26648
+ } & {
26649
+ headers: {
26650
+ "x-access-token"?: string | undefined;
26651
+ } & Partial<{
26652
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26653
+ }>;
26654
+ }, import("@mittwald/api-client-commons").Response<{
26655
+ acknowledged: {
26656
+ [k: string]: unknown;
26657
+ };
26658
+ decision?: "keep" | "kill" | "ignore" | undefined;
26659
+ spotlightId: string;
26660
+ used: boolean;
26661
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26662
+ [x: string]: unknown;
26663
+ }, 429, "application/json">>>;
26601
26664
  };
26602
26665
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
26603
26666
  readonly file: {
@@ -975,3 +975,5 @@ export declare const appDetachAppinstallationStaging: OpenAPIOperation<RequestTy
975
975
  export declare const appPromoteAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
976
976
  /** Request a staging for an AppInstallation. */
977
977
  export declare const appRequestAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
978
+ /** Submitted feedback of the given user. */
979
+ export declare const userGetSpotlightInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1946,6 +1946,10 @@ export declare namespace MittwaldAPIV3Next {
1946
1946
  type RequestData = InferredRequestData<typeof descriptors.appRequestAppinstallationStaging>;
1947
1947
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appRequestAppinstallationStaging, TStatus>;
1948
1948
  }
1949
+ namespace UserGetSpotlightInfo {
1950
+ type RequestData = InferredRequestData<typeof descriptors.userGetSpotlightInfo>;
1951
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetSpotlightInfo, TStatus>;
1952
+ }
1949
1953
  }
1950
1954
  namespace Components {
1951
1955
  namespace Schemas {
@@ -3657,7 +3661,7 @@ export declare namespace MittwaldAPIV3Next {
3657
3661
  creationDate: string;
3658
3662
  customerId: string;
3659
3663
  customerNumber: string;
3660
- deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[];
3664
+ deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[];
3661
3665
  executingUserRoles?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[];
3662
3666
  flags?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[];
3663
3667
  isAllowedToPlaceOrders?: boolean;
@@ -7458,27 +7462,27 @@ export declare namespace MittwaldAPIV3Next {
7458
7462
  conflicts: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDnsImportConflict[];
7459
7463
  zones: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDnsZoneImportPreview[];
7460
7464
  }
7465
+ interface DeMittwaldDnsImportRecordSet {
7466
+ records: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDnsImportRecord[];
7467
+ ttlNormalized: boolean;
7468
+ ttlSeconds: number;
7469
+ /**
7470
+ * Record-set type: A_AAAA, MX, TXT, CNAME, SRV or CAA.
7471
+ */
7472
+ type: string;
7473
+ }
7461
7474
  interface DeMittwaldDnsZoneImportPreview {
7462
7475
  alreadyExists: boolean;
7463
7476
  /**
7464
- * Fully-qualified name of the target zone. Every distinct owner name becomes its own zone.
7477
+ * Fully-qualified name of the target zone. Every distinct owner name becomes its own zone. Only importable zones are listed; a zone named by a conflict is omitted.
7465
7478
  */
7466
7479
  name: string;
7467
7480
  recordSets: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDnsImportRecordSet[];
7468
7481
  /**
7469
- * Project the zone would be created in. Empty when the zone is not importable (a conflict names it).
7482
+ * Project the zone would be created in. Always set, since only importable zones are listed.
7470
7483
  */
7471
7484
  targetProjectId?: string;
7472
7485
  }
7473
- interface DeMittwaldDnsImportRecordSet {
7474
- records: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDnsImportRecord[];
7475
- ttlNormalized: boolean;
7476
- ttlSeconds: number;
7477
- /**
7478
- * Record-set type: A_AAAA, MX, TXT, CNAME, SRV or CAA.
7479
- */
7480
- type: string;
7481
- }
7482
7486
  interface DeMittwaldDnsImportRecord {
7483
7487
  flags?: number;
7484
7488
  port?: number;
@@ -26212,6 +26216,9 @@ export declare namespace MittwaldAPIV3Next {
26212
26216
  severity?: ("success" | "info" | "warning" | "error")[];
26213
26217
  type?: string[];
26214
26218
  "type-not"?: string[];
26219
+ referenceId?: string;
26220
+ referenceDomain?: string;
26221
+ referenceAggregate?: string;
26215
26222
  limit?: number;
26216
26223
  skip?: number;
26217
26224
  page?: number;
@@ -32744,5 +32751,44 @@ export declare namespace MittwaldAPIV3Next {
32744
32751
  }
32745
32752
  }
32746
32753
  }
32754
+ namespace V3NextUsersSelfSpotlightsSpotlightId {
32755
+ namespace Get {
32756
+ namespace Parameters {
32757
+ type Path = {
32758
+ spotlightId: string;
32759
+ };
32760
+ type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
32761
+ type Query = {};
32762
+ }
32763
+ namespace Responses {
32764
+ namespace $200 {
32765
+ namespace Content {
32766
+ interface ApplicationJson {
32767
+ acknowledged: {
32768
+ [k: string]: unknown;
32769
+ };
32770
+ decision?: "keep" | "kill" | "ignore";
32771
+ spotlightId: string;
32772
+ used: boolean;
32773
+ }
32774
+ }
32775
+ }
32776
+ namespace $429 {
32777
+ namespace Content {
32778
+ interface ApplicationJson {
32779
+ [k: string]: unknown;
32780
+ }
32781
+ }
32782
+ }
32783
+ namespace Default {
32784
+ namespace Content {
32785
+ interface ApplicationJson {
32786
+ [k: string]: unknown;
32787
+ }
32788
+ }
32789
+ }
32790
+ }
32791
+ }
32792
+ }
32747
32793
  }
32748
32794
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.448.0';
1
+ export declare const MittwaldAPIClientVersion = '0.0.0-development-f13d74a-20260826';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-1eef98f-20260826",
3
+ "version": "0.0.0-development-5fdc155-20260827",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -72,11 +72,11 @@
72
72
  "test:compile": "run tsc --noEmit"
73
73
  },
74
74
  "dependencies": {
75
- "@mittwald/api-client-commons": "^0.0.0-development-1eef98f-20260826",
75
+ "@mittwald/api-client-commons": "^0.0.0-development-5fdc155-20260827",
76
76
  "browser-or-node": "^3.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@mittwald/api-code-generator": "^0.0.0-development-1eef98f-20260826",
79
+ "@mittwald/api-code-generator": "^0.0.0-development-5fdc155-20260827",
80
80
  "@mittwald/react-use-promise": "^2.6.2",
81
81
  "@types/node": "^22.18.11",
82
82
  "@types/react": "^18.3.26",
@@ -106,5 +106,5 @@
106
106
  "optional": true
107
107
  }
108
108
  },
109
- "gitHead": "54b1387341b520604f2fea6b0e970678c305720f"
109
+ "gitHead": "cfa9905a98b1f8a56aa040df94e90b47c8c0f94e"
110
110
  }