moss-partner-sdk 0.4.0 → 0.4.1
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/http.d.ts +1 -1
- package/dist/http.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/http.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export interface HTTPResponse<T = any> {
|
|
|
11
11
|
status: number;
|
|
12
12
|
headers: Record<string, string>;
|
|
13
13
|
}
|
|
14
|
-
export declare const SDK_VERSION = "0.
|
|
14
|
+
export declare const SDK_VERSION = "0.4.0";
|
|
15
15
|
export declare class HTTPClient {
|
|
16
16
|
private baseUrl;
|
|
17
17
|
private apiKey;
|
package/dist/http.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.HTTPClient = exports.SDK_VERSION = void 0;
|
|
4
4
|
const types_1 = require("./types");
|
|
5
|
-
exports.SDK_VERSION = '0.
|
|
5
|
+
exports.SDK_VERSION = '0.4.0';
|
|
6
6
|
class HTTPClient {
|
|
7
7
|
constructor(config) {
|
|
8
8
|
this.baseUrl = (config.baseUrl || 'https://api.mosscomputing.com').replace(/\/$/, '');
|
package/dist/index.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ export type { FrameworksParams } from './frameworks';
|
|
|
18
18
|
export { HTTPClient, SDK_VERSION } from './http';
|
|
19
19
|
export type { HTTPRequestOptions, HTTPResponse } from './http';
|
|
20
20
|
export type { MossPartnerConfig, Customer, CustomerStatus, Governance, ResourceLimits, CustomerCredentials, TransitionRecord, SuspensionRecord, AttestationRecord, KycRecord, BillingInfo, BillingEarnings, BillingTierBreakdown, CreateCustomerRequest, UpdateCustomerRequest, ListCustomersParams, ListCustomersResponse, PromoteCustomerRequest, SuspendCustomerRequest, ReactivateCustomerRequest, InviteCustomerRequest, InviteCustomerResponse, PromotionReadinessResponse, SessionResponse, ComplianceReportResponse, Webhook, CreateWebhookRequest, WebhookListResponse, WebhookDelivery, WebhookDeliveriesResponse, WebhookEvent, AnalyticsResponse, UsageSummary, UsageCustomer, UsageCustomersResponse, TierInfo, TiersResponse, MossError, MossAPIError, MossNetworkError, MossValidationError, MossParseError, RegulatoryFramework, FrameworkStats, FrameworksResponse, } from './types';
|
|
21
|
-
export declare const VERSION = "0.4.
|
|
21
|
+
export declare const VERSION = "0.4.1";
|
|
22
22
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -26,5 +26,5 @@ Object.defineProperty(exports, "FrameworksResource", { enumerable: true, get: fu
|
|
|
26
26
|
var http_1 = require("./http");
|
|
27
27
|
Object.defineProperty(exports, "HTTPClient", { enumerable: true, get: function () { return http_1.HTTPClient; } });
|
|
28
28
|
Object.defineProperty(exports, "SDK_VERSION", { enumerable: true, get: function () { return http_1.SDK_VERSION; } });
|
|
29
|
-
exports.VERSION = '0.4.
|
|
29
|
+
exports.VERSION = '0.4.1';
|
|
30
30
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED