@mittwald/api-client 4.236.0 → 4.238.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/generated/v2/client.js +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +1 -0
- package/dist/types/generated/v2/client.d.ts +53 -0
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +47 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -231,6 +231,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
231
231
|
contributorResetContributorAvatar: this.requestFunctionFactory(descriptors.contributorResetContributorAvatar),
|
|
232
232
|
/** Start the verification process of a contributor. */
|
|
233
233
|
contributorRequestVerification: this.requestFunctionFactory(descriptors.contributorRequestVerification),
|
|
234
|
+
/** Cancel the verification-process of a contributor. */
|
|
235
|
+
contributorCancelVerification: this.requestFunctionFactory(descriptors.contributorCancelVerification),
|
|
234
236
|
/** Rotate the secret for an extension instance. */
|
|
235
237
|
contributorRotateSecretForExtensionInstance: this.requestFunctionFactory(descriptors.contributorRotateSecretForExtensionInstance),
|
|
236
238
|
/** Authenticate your external application using the extensionInstanceSecret. */
|
|
@@ -544,6 +544,12 @@ export const contributorRequestVerification = {
|
|
|
544
544
|
method: "POST",
|
|
545
545
|
operationId: "contributor-request-verification",
|
|
546
546
|
};
|
|
547
|
+
/** Cancel the verification-process of a contributor. */
|
|
548
|
+
export const contributorCancelVerification = {
|
|
549
|
+
path: "/v2/contributors/{contributorId}/verification-process",
|
|
550
|
+
method: "DELETE",
|
|
551
|
+
operationId: "contributor-cancel-verification",
|
|
552
|
+
};
|
|
547
553
|
/** Rotate the secret for an extension instance. */
|
|
548
554
|
export const contributorRotateSecretForExtensionInstance = {
|
|
549
555
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.237.0';
|
|
@@ -26,6 +26,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
26
26
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
27
27
|
createdAt: string;
|
|
28
28
|
customDocumentRoot?: string | undefined;
|
|
29
|
+
deletionRequested?: boolean | undefined;
|
|
29
30
|
description: string;
|
|
30
31
|
disabled: boolean;
|
|
31
32
|
id: string;
|
|
@@ -116,6 +116,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
116
116
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
117
117
|
createdAt: string;
|
|
118
118
|
customDocumentRoot?: string | undefined;
|
|
119
|
+
deletionRequested?: boolean | undefined;
|
|
119
120
|
description: string;
|
|
120
121
|
disabled: boolean;
|
|
121
122
|
id: string;
|
|
@@ -155,6 +156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
155
156
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
156
157
|
createdAt: string;
|
|
157
158
|
customDocumentRoot?: string | undefined;
|
|
159
|
+
deletionRequested?: boolean | undefined;
|
|
158
160
|
description: string;
|
|
159
161
|
disabled: boolean;
|
|
160
162
|
id: string;
|
|
@@ -4232,6 +4234,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4232
4234
|
}, import("@mittwald/api-client-commons").Response<{
|
|
4233
4235
|
contractId?: string | undefined;
|
|
4234
4236
|
contractItemId?: string | undefined;
|
|
4237
|
+
explanation?: string | undefined;
|
|
4235
4238
|
reason?: string | undefined;
|
|
4236
4239
|
terminationTargetDate?: string | undefined;
|
|
4237
4240
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -4263,6 +4266,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4263
4266
|
}, import("@mittwald/api-client-commons").Response<{
|
|
4264
4267
|
contractId?: string | undefined;
|
|
4265
4268
|
contractItemId?: string | undefined;
|
|
4269
|
+
explanation?: string | undefined;
|
|
4266
4270
|
reason?: string | undefined;
|
|
4267
4271
|
terminationTargetDate?: string | undefined;
|
|
4268
4272
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -4394,6 +4398,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4394
4398
|
terminateContract: (request: {
|
|
4395
4399
|
contractId: string;
|
|
4396
4400
|
data?: {
|
|
4401
|
+
explanation?: string | undefined;
|
|
4397
4402
|
reason?: string | undefined;
|
|
4398
4403
|
terminationTargetDate?: string | undefined;
|
|
4399
4404
|
} | undefined;
|
|
@@ -4403,6 +4408,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4403
4408
|
} | undefined;
|
|
4404
4409
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4405
4410
|
data: {
|
|
4411
|
+
explanation?: string | undefined;
|
|
4406
4412
|
reason?: string | undefined;
|
|
4407
4413
|
terminationTargetDate?: string | undefined;
|
|
4408
4414
|
};
|
|
@@ -4422,6 +4428,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4422
4428
|
}>;
|
|
4423
4429
|
}, import("@mittwald/api-client-commons").Response<{
|
|
4424
4430
|
contractId?: string | undefined;
|
|
4431
|
+
explanation?: string | undefined;
|
|
4425
4432
|
itemsScheduledForTermination?: string[] | undefined;
|
|
4426
4433
|
reason?: string | undefined;
|
|
4427
4434
|
terminationTargetDate?: string | undefined;
|
|
@@ -4433,6 +4440,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4433
4440
|
[x: string]: unknown;
|
|
4434
4441
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4435
4442
|
data: {
|
|
4443
|
+
explanation?: string | undefined;
|
|
4436
4444
|
reason?: string | undefined;
|
|
4437
4445
|
terminationTargetDate?: string | undefined;
|
|
4438
4446
|
};
|
|
@@ -4452,6 +4460,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4452
4460
|
}>;
|
|
4453
4461
|
}, import("@mittwald/api-client-commons").Response<{
|
|
4454
4462
|
contractId?: string | undefined;
|
|
4463
|
+
explanation?: string | undefined;
|
|
4455
4464
|
itemsScheduledForTermination?: string[] | undefined;
|
|
4456
4465
|
reason?: string | undefined;
|
|
4457
4466
|
terminationTargetDate?: string | undefined;
|
|
@@ -7250,6 +7259,50 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7250
7259
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7251
7260
|
[x: string]: unknown;
|
|
7252
7261
|
}, 429, "application/json">>>;
|
|
7262
|
+
/** Cancel the verification-process of a contributor. */
|
|
7263
|
+
contributorCancelVerification: (request: {
|
|
7264
|
+
contributorId: string;
|
|
7265
|
+
headers?: {
|
|
7266
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7267
|
+
"x-access-token"?: string | undefined;
|
|
7268
|
+
} | undefined;
|
|
7269
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7270
|
+
headers?: Partial<{
|
|
7271
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7272
|
+
}>;
|
|
7273
|
+
} & {
|
|
7274
|
+
pathParameters: {
|
|
7275
|
+
contributorId: string;
|
|
7276
|
+
};
|
|
7277
|
+
} & {
|
|
7278
|
+
headers: {
|
|
7279
|
+
"x-access-token"?: string | undefined;
|
|
7280
|
+
} & Partial<{
|
|
7281
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7282
|
+
}>;
|
|
7283
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7284
|
+
[x: string]: unknown;
|
|
7285
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7286
|
+
[x: string]: unknown;
|
|
7287
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7288
|
+
headers?: Partial<{
|
|
7289
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7290
|
+
}>;
|
|
7291
|
+
} & {
|
|
7292
|
+
pathParameters: {
|
|
7293
|
+
contributorId: string;
|
|
7294
|
+
};
|
|
7295
|
+
} & {
|
|
7296
|
+
headers: {
|
|
7297
|
+
"x-access-token"?: string | undefined;
|
|
7298
|
+
} & Partial<{
|
|
7299
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7300
|
+
}>;
|
|
7301
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7302
|
+
[x: string]: unknown;
|
|
7303
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7304
|
+
[x: string]: unknown;
|
|
7305
|
+
}, 429, "application/json">>>;
|
|
7253
7306
|
/** Rotate the secret for an extension instance. */
|
|
7254
7307
|
contributorRotateSecretForExtensionInstance: (request: {
|
|
7255
7308
|
contributorId: string;
|
|
@@ -185,6 +185,8 @@ export declare const contributorRequestDeviatingContributorAvatarUpload: OpenAPI
|
|
|
185
185
|
export declare const contributorResetContributorAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
186
186
|
/** Start the verification process of a contributor. */
|
|
187
187
|
export declare const contributorRequestVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
188
|
+
/** Cancel the verification-process of a contributor. */
|
|
189
|
+
export declare const contributorCancelVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
188
190
|
/** Rotate the secret for an extension instance. */
|
|
189
191
|
export declare const contributorRotateSecretForExtensionInstance: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
190
192
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -366,6 +366,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
366
366
|
type RequestData = InferredRequestData<typeof descriptors.contributorRequestVerification>;
|
|
367
367
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRequestVerification, TStatus>;
|
|
368
368
|
}
|
|
369
|
+
namespace ContributorCancelVerification {
|
|
370
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorCancelVerification>;
|
|
371
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorCancelVerification, TStatus>;
|
|
372
|
+
}
|
|
369
373
|
namespace ContributorRotateSecretForExtensionInstance {
|
|
370
374
|
type RequestData = InferredRequestData<typeof descriptors.contributorRotateSecretForExtensionInstance>;
|
|
371
375
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRotateSecretForExtensionInstance, TStatus>;
|
|
@@ -1780,6 +1784,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1780
1784
|
appVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
1781
1785
|
createdAt: string;
|
|
1782
1786
|
customDocumentRoot?: string;
|
|
1787
|
+
deletionRequested?: boolean;
|
|
1783
1788
|
description: string;
|
|
1784
1789
|
disabled: boolean;
|
|
1785
1790
|
id: string;
|
|
@@ -2380,6 +2385,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2380
2385
|
* Indicates whether the User is allowed to cancel the Termination.
|
|
2381
2386
|
*/
|
|
2382
2387
|
cancellationForbidden?: boolean;
|
|
2388
|
+
explanation?: string;
|
|
2383
2389
|
reason?: string;
|
|
2384
2390
|
scheduledAtDate: string;
|
|
2385
2391
|
scheduledByUserId?: string;
|
|
@@ -3427,6 +3433,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3427
3433
|
*/
|
|
3428
3434
|
type MarketplaceMonthlyPricePlanStrategy = {
|
|
3429
3435
|
description?: string;
|
|
3436
|
+
isBookingStopped: boolean;
|
|
3430
3437
|
key: string;
|
|
3431
3438
|
name?: string;
|
|
3432
3439
|
/**
|
|
@@ -8760,6 +8767,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8760
8767
|
interface ApplicationJson {
|
|
8761
8768
|
contractId?: string;
|
|
8762
8769
|
contractItemId?: string;
|
|
8770
|
+
explanation?: string;
|
|
8763
8771
|
reason?: string;
|
|
8764
8772
|
terminationTargetDate?: string;
|
|
8765
8773
|
}
|
|
@@ -8903,6 +8911,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8903
8911
|
contractId: string;
|
|
8904
8912
|
};
|
|
8905
8913
|
interface RequestBody {
|
|
8914
|
+
explanation?: string;
|
|
8906
8915
|
/**
|
|
8907
8916
|
* A reason for the termination can be given as plain text.
|
|
8908
8917
|
*/
|
|
@@ -8920,6 +8929,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8920
8929
|
namespace Content {
|
|
8921
8930
|
interface ApplicationJson {
|
|
8922
8931
|
contractId?: string;
|
|
8932
|
+
explanation?: string;
|
|
8923
8933
|
itemsScheduledForTermination?: string[];
|
|
8924
8934
|
reason?: string;
|
|
8925
8935
|
terminationTargetDate?: string;
|
|
@@ -10205,6 +10215,43 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10205
10215
|
}
|
|
10206
10216
|
}
|
|
10207
10217
|
}
|
|
10218
|
+
namespace Delete {
|
|
10219
|
+
namespace Parameters {
|
|
10220
|
+
type Path = {
|
|
10221
|
+
contributorId: string;
|
|
10222
|
+
};
|
|
10223
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
10224
|
+
type Query = {};
|
|
10225
|
+
}
|
|
10226
|
+
namespace Responses {
|
|
10227
|
+
namespace $204 {
|
|
10228
|
+
namespace Content {
|
|
10229
|
+
type Empty = unknown;
|
|
10230
|
+
}
|
|
10231
|
+
}
|
|
10232
|
+
namespace $400 {
|
|
10233
|
+
namespace Content {
|
|
10234
|
+
interface ApplicationJson {
|
|
10235
|
+
[k: string]: unknown;
|
|
10236
|
+
}
|
|
10237
|
+
}
|
|
10238
|
+
}
|
|
10239
|
+
namespace $429 {
|
|
10240
|
+
namespace Content {
|
|
10241
|
+
interface ApplicationJson {
|
|
10242
|
+
[k: string]: unknown;
|
|
10243
|
+
}
|
|
10244
|
+
}
|
|
10245
|
+
}
|
|
10246
|
+
namespace Default {
|
|
10247
|
+
namespace Content {
|
|
10248
|
+
interface ApplicationJson {
|
|
10249
|
+
[k: string]: unknown;
|
|
10250
|
+
}
|
|
10251
|
+
}
|
|
10252
|
+
}
|
|
10253
|
+
}
|
|
10254
|
+
}
|
|
10208
10255
|
}
|
|
10209
10256
|
namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret {
|
|
10210
10257
|
namespace Put {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.237.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.238.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": "0af4310b03b0b69fe5c3c95a1048008ba7136e4f"
|
|
84
84
|
}
|