@otr-app/shared-backend-generated-client 2.3.181 → 2.3.182
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/angular/api/stripeWebhookController.service.ts +65 -0
- package/dist/otrBackendService.js +32 -0
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/StripeWebhookControllerApi.d.ts +6 -0
- package/dist/typescript/api/StripeWebhookControllerApi.js +21 -0
- package/package.json +1 -1
|
@@ -17,6 +17,12 @@ export declare class StripeWebhookControllerApi {
|
|
|
17
17
|
defaultHeaders: any;
|
|
18
18
|
static $inject: string[];
|
|
19
19
|
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @summary handleStripeWebhookForConnectedAccounts
|
|
23
|
+
* @param request request
|
|
24
|
+
*/
|
|
25
|
+
handleStripeWebhookForConnectedAccountsUsingPOST(request?: string, extraHttpRequestParams?: any): ng.IHttpPromise<string>;
|
|
20
26
|
/**
|
|
21
27
|
*
|
|
22
28
|
* @summary handleStripeWebhookFromLawfirmAccount
|
|
@@ -23,6 +23,27 @@ var StripeWebhookControllerApi = /** @class */ (function () {
|
|
|
23
23
|
this.basePath = basePath;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @summary handleStripeWebhookForConnectedAccounts
|
|
29
|
+
* @param request request
|
|
30
|
+
*/
|
|
31
|
+
StripeWebhookControllerApi.prototype.handleStripeWebhookForConnectedAccountsUsingPOST = function (request, extraHttpRequestParams) {
|
|
32
|
+
var localVarPath = this.basePath + '/api/v1/stripe/acct_15jGdjA1uVHZiLuV/webhook/connected-account';
|
|
33
|
+
var queryParameters = {};
|
|
34
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
35
|
+
var httpRequestParams = {
|
|
36
|
+
method: 'POST',
|
|
37
|
+
url: localVarPath,
|
|
38
|
+
data: request,
|
|
39
|
+
params: queryParameters,
|
|
40
|
+
headers: headerParams
|
|
41
|
+
};
|
|
42
|
+
if (extraHttpRequestParams) {
|
|
43
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
44
|
+
}
|
|
45
|
+
return this.$http(httpRequestParams);
|
|
46
|
+
};
|
|
26
47
|
/**
|
|
27
48
|
*
|
|
28
49
|
* @summary handleStripeWebhookFromLawfirmAccount
|