@mittwald/api-client 4.212.0 → 4.214.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/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.213.0';
|
|
@@ -4778,6 +4778,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4778
4778
|
*/
|
|
4779
4779
|
index: number;
|
|
4780
4780
|
}
|
|
4781
|
+
interface MarketplaceExtensionInstance {
|
|
4782
|
+
aggregateReference: {
|
|
4783
|
+
aggregate: string;
|
|
4784
|
+
domain: string;
|
|
4785
|
+
id: string;
|
|
4786
|
+
};
|
|
4787
|
+
chargeability?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
4788
|
+
consentedScopes: string[];
|
|
4789
|
+
contributorId: string;
|
|
4790
|
+
contributorName: string;
|
|
4791
|
+
createdAt?: string;
|
|
4792
|
+
disabled: boolean;
|
|
4793
|
+
extensionId: string;
|
|
4794
|
+
extensionName: string;
|
|
4795
|
+
extensionSubTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
4796
|
+
id: string;
|
|
4797
|
+
pendingInstallation: boolean;
|
|
4798
|
+
pendingRemoval: boolean;
|
|
4799
|
+
}
|
|
4781
4800
|
interface MarketplaceContractOwner {
|
|
4782
4801
|
contact: MittwaldAPIV2.Components.Schemas.CommonsContact;
|
|
4783
4802
|
inherited: boolean;
|
|
@@ -4796,6 +4815,32 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4796
4815
|
markdown: string;
|
|
4797
4816
|
plain?: string;
|
|
4798
4817
|
}
|
|
4818
|
+
interface MarketplaceWebhookUrls {
|
|
4819
|
+
extensionAddedToContext: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrl;
|
|
4820
|
+
extensionInstanceRemovedFromContext: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrl;
|
|
4821
|
+
extensionInstanceSecretRotated: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrl;
|
|
4822
|
+
extensionInstanceUpdated: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrl;
|
|
4823
|
+
}
|
|
4824
|
+
type MarketplaceWebhookKind = "extension-added-to-context" | "extension-instance-updated" | "extension-instance-secret-rotated" | "extension-instance-removed-from-context";
|
|
4825
|
+
interface MarketplaceAggregateReferenceFilter {
|
|
4826
|
+
aggregate?: "project" | "customer";
|
|
4827
|
+
domain?: "project" | "customer";
|
|
4828
|
+
id?: string;
|
|
4829
|
+
}
|
|
4830
|
+
/**
|
|
4831
|
+
* @deprecated
|
|
4832
|
+
*/
|
|
4833
|
+
interface MarketplaceBackendComponents {
|
|
4834
|
+
extensionAddedToContext?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
4835
|
+
extensionInstanceRemovedFromContext?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
4836
|
+
extensionInstanceSecretRotated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
4837
|
+
extensionInstanceUpdated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
4838
|
+
}
|
|
4839
|
+
type MarketplaceFrontendFragment = {
|
|
4840
|
+
additionalProperties?: {
|
|
4841
|
+
[k: string]: string;
|
|
4842
|
+
};
|
|
4843
|
+
} & MittwaldAPIV2.Components.Schemas.MarketplaceUrlFrontendFragment;
|
|
4799
4844
|
interface MarketplaceExtensionInstanceChargeability {
|
|
4800
4845
|
isChargeable: boolean;
|
|
4801
4846
|
reasons: {
|
|
@@ -4931,52 +4976,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4931
4976
|
extensionInstanceId: string;
|
|
4932
4977
|
parentCustomerId: string;
|
|
4933
4978
|
}
|
|
4934
|
-
type MarketplaceContributorState = "enabled" | "disabled";
|
|
4935
|
-
interface MarketplaceWebhookUrls {
|
|
4936
|
-
extensionAddedToContext: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrl;
|
|
4937
|
-
extensionInstanceRemovedFromContext: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrl;
|
|
4938
|
-
extensionInstanceSecretRotated: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrl;
|
|
4939
|
-
extensionInstanceUpdated: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrl;
|
|
4940
|
-
}
|
|
4941
|
-
interface MarketplaceExtensionInstance {
|
|
4942
|
-
aggregateReference: {
|
|
4943
|
-
aggregate: string;
|
|
4944
|
-
domain: string;
|
|
4945
|
-
id: string;
|
|
4946
|
-
};
|
|
4947
|
-
chargeability?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
4948
|
-
consentedScopes: string[];
|
|
4949
|
-
contributorId: string;
|
|
4950
|
-
contributorName: string;
|
|
4951
|
-
createdAt?: string;
|
|
4952
|
-
disabled: boolean;
|
|
4953
|
-
extensionId: string;
|
|
4954
|
-
extensionName: string;
|
|
4955
|
-
extensionSubTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
4956
|
-
id: string;
|
|
4957
|
-
pendingInstallation: boolean;
|
|
4958
|
-
pendingRemoval: boolean;
|
|
4959
|
-
}
|
|
4960
|
-
type MarketplaceWebhookKind = "extension-added-to-context" | "extension-instance-updated" | "extension-instance-secret-rotated" | "extension-instance-removed-from-context";
|
|
4961
|
-
/**
|
|
4962
|
-
* @deprecated
|
|
4963
|
-
*/
|
|
4964
|
-
interface MarketplaceBackendComponents {
|
|
4965
|
-
extensionAddedToContext?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
4966
|
-
extensionInstanceRemovedFromContext?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
4967
|
-
extensionInstanceSecretRotated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
4968
|
-
extensionInstanceUpdated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
4969
|
-
}
|
|
4970
|
-
interface MarketplaceAggregateReferenceFilter {
|
|
4971
|
-
aggregate?: "project" | "customer";
|
|
4972
|
-
domain?: "project" | "customer";
|
|
4973
|
-
id?: string;
|
|
4974
|
-
}
|
|
4975
|
-
type MarketplaceFrontendFragment = {
|
|
4976
|
-
additionalProperties?: {
|
|
4977
|
-
[k: string]: string;
|
|
4978
|
-
};
|
|
4979
|
-
} & MittwaldAPIV2.Components.Schemas.MarketplaceUrlFrontendFragment;
|
|
4980
4979
|
interface MarketplaceContributor {
|
|
4981
4980
|
customerId: string;
|
|
4982
4981
|
description?: string;
|
|
@@ -5006,54 +5005,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5006
5005
|
*/
|
|
5007
5006
|
url?: string;
|
|
5008
5007
|
}
|
|
5009
|
-
|
|
5010
|
-
contactPersonUserId: string;
|
|
5011
|
-
contractOwner: MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
|
|
5012
|
-
contributorNumber: string;
|
|
5013
|
-
customerId: string;
|
|
5014
|
-
description?: string;
|
|
5015
|
-
descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
|
|
5016
|
-
/**
|
|
5017
|
-
* @deprecated
|
|
5018
|
-
*/
|
|
5019
|
-
email: string;
|
|
5020
|
-
homepage?: string;
|
|
5021
|
-
id: string;
|
|
5022
|
-
imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
|
|
5023
|
-
logoRefId?: string;
|
|
5024
|
-
name: string;
|
|
5025
|
-
nameInherited: boolean;
|
|
5026
|
-
/**
|
|
5027
|
-
* @deprecated
|
|
5028
|
-
*/
|
|
5029
|
-
phone?: string;
|
|
5030
|
-
state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
|
|
5031
|
-
supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
5032
|
-
/**
|
|
5033
|
-
* Whether the support information is inherited from the customer.
|
|
5034
|
-
*/
|
|
5035
|
-
inherited: boolean;
|
|
5036
|
-
};
|
|
5037
|
-
/**
|
|
5038
|
-
* @deprecated
|
|
5039
|
-
*/
|
|
5040
|
-
url?: string;
|
|
5041
|
-
}
|
|
5042
|
-
/**
|
|
5043
|
-
* A few words about the introduction as a contributor
|
|
5044
|
-
*/
|
|
5045
|
-
interface MarketplaceLocalizedDescription {
|
|
5046
|
-
de: string;
|
|
5047
|
-
en?: string;
|
|
5048
|
-
}
|
|
5008
|
+
type MarketplaceContributorState = "enabled" | "disabled";
|
|
5049
5009
|
type MarketplaceContributorImprint = {
|
|
5050
5010
|
text: string;
|
|
5051
5011
|
} | {
|
|
5052
5012
|
url: string;
|
|
5053
5013
|
};
|
|
5054
|
-
interface MarketplaceUrlFrontendFragment {
|
|
5055
|
-
url: string;
|
|
5056
|
-
}
|
|
5057
5014
|
/**
|
|
5058
5015
|
* A few words to promote your Extension.
|
|
5059
5016
|
*/
|
|
@@ -5070,6 +5027,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5070
5027
|
*/
|
|
5071
5028
|
netPrice: number;
|
|
5072
5029
|
}
|
|
5030
|
+
interface MarketplaceUrlFrontendFragment {
|
|
5031
|
+
url: string;
|
|
5032
|
+
}
|
|
5073
5033
|
interface MarketplaceOwnExtension {
|
|
5074
5034
|
assets: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
5075
5035
|
backendComponents?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents;
|
|
@@ -5127,14 +5087,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5127
5087
|
verified: boolean;
|
|
5128
5088
|
webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
5129
5089
|
}
|
|
5130
|
-
interface MarketplaceExtensionHealth {
|
|
5131
|
-
extensionInstances: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
|
|
5132
|
-
functional: boolean;
|
|
5133
|
-
id: string;
|
|
5134
|
-
inoperableReason?: string;
|
|
5135
|
-
published: boolean;
|
|
5136
|
-
withdrawalReason?: string;
|
|
5137
|
-
}
|
|
5138
5090
|
interface MarketplaceExtension {
|
|
5139
5091
|
/**
|
|
5140
5092
|
* The assets/media (images and videos) of the extension.
|
|
@@ -5206,6 +5158,54 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5206
5158
|
*/
|
|
5207
5159
|
tags: string[];
|
|
5208
5160
|
}
|
|
5161
|
+
/**
|
|
5162
|
+
* A few words about the introduction as a contributor
|
|
5163
|
+
*/
|
|
5164
|
+
interface MarketplaceLocalizedDescription {
|
|
5165
|
+
de: string;
|
|
5166
|
+
en?: string;
|
|
5167
|
+
}
|
|
5168
|
+
interface MarketplaceExtensionHealth {
|
|
5169
|
+
extensionInstances: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
|
|
5170
|
+
functional: boolean;
|
|
5171
|
+
id: string;
|
|
5172
|
+
inoperableReason?: string;
|
|
5173
|
+
published: boolean;
|
|
5174
|
+
withdrawalReason?: string;
|
|
5175
|
+
}
|
|
5176
|
+
interface MarketplaceOwnContributor {
|
|
5177
|
+
contactPersonUserId: string;
|
|
5178
|
+
contractOwner: MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
|
|
5179
|
+
contributorNumber: string;
|
|
5180
|
+
customerId: string;
|
|
5181
|
+
description?: string;
|
|
5182
|
+
descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
|
|
5183
|
+
/**
|
|
5184
|
+
* @deprecated
|
|
5185
|
+
*/
|
|
5186
|
+
email: string;
|
|
5187
|
+
homepage?: string;
|
|
5188
|
+
id: string;
|
|
5189
|
+
imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
|
|
5190
|
+
logoRefId?: string;
|
|
5191
|
+
name: string;
|
|
5192
|
+
nameInherited: boolean;
|
|
5193
|
+
/**
|
|
5194
|
+
* @deprecated
|
|
5195
|
+
*/
|
|
5196
|
+
phone?: string;
|
|
5197
|
+
state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
|
|
5198
|
+
supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
5199
|
+
/**
|
|
5200
|
+
* Whether the support information is inherited from the customer.
|
|
5201
|
+
*/
|
|
5202
|
+
inherited: boolean;
|
|
5203
|
+
};
|
|
5204
|
+
/**
|
|
5205
|
+
* @deprecated
|
|
5206
|
+
*/
|
|
5207
|
+
url?: string;
|
|
5208
|
+
}
|
|
5209
5209
|
/**
|
|
5210
5210
|
* AdditionalValidationSchema is a stringified custom validation schema, e.g password rules.
|
|
5211
5211
|
*/
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.213.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.214.0",
|
|
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",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "cbadb0080fd8c40cb291f38861d2abdabdeab48b"
|
|
84
84
|
}
|