@adtrackify/at-service-common 1.2.25 → 1.2.27
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/__tests__/helpers/subscription-helper.spec.d.ts +1 -1
- package/dist/__tests__/helpers/subscription-helper.spec.js +27 -27
- package/dist/clients/generic/cognito-client.d.ts +19 -19
- package/dist/clients/generic/cognito-client.js +139 -139
- package/dist/clients/generic/dynamodb-client.d.ts +15 -15
- package/dist/clients/generic/dynamodb-client.js +122 -122
- package/dist/clients/generic/eventbridge-client.d.ts +14 -14
- package/dist/clients/generic/eventbridge-client.js +45 -45
- package/dist/clients/generic/http-client.d.ts +30 -30
- package/dist/clients/generic/http-client.js +28 -28
- package/dist/clients/generic/index.d.ts +6 -6
- package/dist/clients/generic/index.js +6 -6
- package/dist/clients/generic/s3-client.d.ts +9 -9
- package/dist/clients/generic/s3-client.js +30 -29
- package/dist/clients/generic/s3-client.js.map +1 -1
- package/dist/clients/generic/sqs-client.d.ts +14 -14
- package/dist/clients/generic/sqs-client.js +34 -34
- package/dist/clients/index.d.ts +3 -3
- package/dist/clients/index.js +3 -3
- package/dist/clients/internal-api/accounts-client.d.ts +82 -82
- package/dist/clients/internal-api/accounts-client.js +78 -78
- package/dist/clients/internal-api/destinations-client.d.ts +54 -54
- package/dist/clients/internal-api/destinations-client.js +36 -36
- package/dist/clients/internal-api/index.d.ts +4 -4
- package/dist/clients/internal-api/index.js +4 -4
- package/dist/clients/internal-api/shopify-app-install-client.d.ts +57 -57
- package/dist/clients/internal-api/shopify-app-install-client.js +42 -42
- package/dist/clients/internal-api/users-auth-client.d.ts +61 -61
- package/dist/clients/internal-api/users-auth-client.js +73 -73
- package/dist/clients/third-party/index.d.ts +1 -1
- package/dist/clients/third-party/index.js +1 -1
- package/dist/clients/third-party/shopify-client.d.ts +90 -90
- package/dist/clients/third-party/shopify-client.js +121 -121
- package/dist/helpers/index.d.ts +5 -5
- package/dist/helpers/index.js +5 -5
- package/dist/helpers/input-validation-helper.d.ts +2 -2
- package/dist/helpers/input-validation-helper.js +18 -18
- package/dist/helpers/logging-helper.d.ts +15 -15
- package/dist/helpers/logging-helper.js +53 -53
- package/dist/helpers/response-helper.d.ts +36 -36
- package/dist/helpers/response-helper.js +35 -35
- package/dist/helpers/shopify-helper.d.ts +9 -9
- package/dist/helpers/shopify-helper.js +23 -23
- package/dist/helpers/subscription-helper.d.ts +8 -8
- package/dist/helpers/subscription-helper.js +181 -181
- package/dist/index.d.ts +5 -5
- package/dist/index.esm.js +4 -3
- package/dist/index.esm.js.map +2 -2
- package/dist/index.js +5 -5
- package/dist/libs/crypto.d.ts +1 -1
- package/dist/libs/crypto.js +5 -5
- package/dist/libs/dates.d.ts +3 -3
- package/dist/libs/dates.js +10 -10
- package/dist/libs/http-error.d.ts +21 -21
- package/dist/libs/http-error.js +55 -55
- package/dist/libs/http-status-codes.d.ts +58 -58
- package/dist/libs/http-status-codes.js +59 -59
- package/dist/libs/index.d.ts +6 -6
- package/dist/libs/index.js +6 -6
- package/dist/libs/url.d.ts +1 -1
- package/dist/libs/url.js +9 -9
- package/dist/services/eventbridge-integration-service.d.ts +9 -9
- package/dist/services/eventbridge-integration-service.js +24 -24
- package/dist/services/index.d.ts +1 -1
- package/dist/services/index.js +1 -1
- package/dist/types/api-response.d.ts +6 -6
- package/dist/types/api-response.js +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.js +1 -1
- package/dist/types/internal-events/event-detail-types.d.ts +20 -20
- package/dist/types/internal-events/event-detail-types.js +24 -24
- package/dist/types/internal-events/index.d.ts +1 -1
- package/dist/types/internal-events/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
import { User } from '@adtrackify/at-tracking-event-types';
|
|
2
|
-
import { ApiResponse } from '../../types/api-response.js';
|
|
3
|
-
export interface UserResponseData {
|
|
4
|
-
user: User;
|
|
5
|
-
[key: string]: any;
|
|
6
|
-
}
|
|
7
|
-
export interface UserSignupRequest {
|
|
8
|
-
email: string;
|
|
9
|
-
password: string;
|
|
10
|
-
givenName: string;
|
|
11
|
-
familyName: string;
|
|
12
|
-
}
|
|
13
|
-
export declare class UsersAuthClient {
|
|
14
|
-
SERVICE_API_ROOT_URL: string;
|
|
15
|
-
BASE_API_URL: string;
|
|
16
|
-
USERS_AUTH_API_KEY: string;
|
|
17
|
-
constructor(baseApiUrl: string, usersAuthApiKey?: string);
|
|
18
|
-
getConfig: () => {
|
|
19
|
-
baseURL: string;
|
|
20
|
-
headers: {
|
|
21
|
-
common: {};
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
getClient: () => Promise<{
|
|
25
|
-
instance: () => import("axios").AxiosInstance;
|
|
26
|
-
get: (url: string, config?: any) => Promise<{
|
|
27
|
-
headers: any;
|
|
28
|
-
data: any;
|
|
29
|
-
status: any;
|
|
30
|
-
}>;
|
|
31
|
-
post: (url: string, data?: any, config?: any) => Promise<{
|
|
32
|
-
headers: any;
|
|
33
|
-
data: any;
|
|
34
|
-
status: any;
|
|
35
|
-
}>;
|
|
36
|
-
delete: (url: string, config?: any) => Promise<{
|
|
37
|
-
headers: any;
|
|
38
|
-
data: any;
|
|
39
|
-
status: any;
|
|
40
|
-
}>;
|
|
41
|
-
put: (url: string, data?: any, config?: any) => Promise<{
|
|
42
|
-
headers: any;
|
|
43
|
-
data: any;
|
|
44
|
-
status: any;
|
|
45
|
-
}>;
|
|
46
|
-
patch: (url: string, data?: any, config?: any) => Promise<{
|
|
47
|
-
headers: any;
|
|
48
|
-
data: any;
|
|
49
|
-
status: any;
|
|
50
|
-
}>;
|
|
51
|
-
setBaseUrl: (url: string) => boolean;
|
|
52
|
-
}>;
|
|
53
|
-
signupAndConfirmUser: (userSignupRequest: any) => Promise<any>;
|
|
54
|
-
signupUser: (userSignupRequest: UserSignupRequest) => Promise<any>;
|
|
55
|
-
adminConfirmUser: (email: string) => Promise<{
|
|
56
|
-
headers: any;
|
|
57
|
-
data: any;
|
|
58
|
-
status: any;
|
|
59
|
-
}>;
|
|
60
|
-
getUserByEmail: (email: string) => Promise<ApiResponse<UserResponseData>>;
|
|
61
|
-
}
|
|
1
|
+
import { User } from '@adtrackify/at-tracking-event-types';
|
|
2
|
+
import { ApiResponse } from '../../types/api-response.js';
|
|
3
|
+
export interface UserResponseData {
|
|
4
|
+
user: User;
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
}
|
|
7
|
+
export interface UserSignupRequest {
|
|
8
|
+
email: string;
|
|
9
|
+
password: string;
|
|
10
|
+
givenName: string;
|
|
11
|
+
familyName: string;
|
|
12
|
+
}
|
|
13
|
+
export declare class UsersAuthClient {
|
|
14
|
+
SERVICE_API_ROOT_URL: string;
|
|
15
|
+
BASE_API_URL: string;
|
|
16
|
+
USERS_AUTH_API_KEY: string;
|
|
17
|
+
constructor(baseApiUrl: string, usersAuthApiKey?: string);
|
|
18
|
+
getConfig: () => {
|
|
19
|
+
baseURL: string;
|
|
20
|
+
headers: {
|
|
21
|
+
common: {};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
getClient: () => Promise<{
|
|
25
|
+
instance: () => import("axios").AxiosInstance;
|
|
26
|
+
get: (url: string, config?: any) => Promise<{
|
|
27
|
+
headers: any;
|
|
28
|
+
data: any;
|
|
29
|
+
status: any;
|
|
30
|
+
}>;
|
|
31
|
+
post: (url: string, data?: any, config?: any) => Promise<{
|
|
32
|
+
headers: any;
|
|
33
|
+
data: any;
|
|
34
|
+
status: any;
|
|
35
|
+
}>;
|
|
36
|
+
delete: (url: string, config?: any) => Promise<{
|
|
37
|
+
headers: any;
|
|
38
|
+
data: any;
|
|
39
|
+
status: any;
|
|
40
|
+
}>;
|
|
41
|
+
put: (url: string, data?: any, config?: any) => Promise<{
|
|
42
|
+
headers: any;
|
|
43
|
+
data: any;
|
|
44
|
+
status: any;
|
|
45
|
+
}>;
|
|
46
|
+
patch: (url: string, data?: any, config?: any) => Promise<{
|
|
47
|
+
headers: any;
|
|
48
|
+
data: any;
|
|
49
|
+
status: any;
|
|
50
|
+
}>;
|
|
51
|
+
setBaseUrl: (url: string) => boolean;
|
|
52
|
+
}>;
|
|
53
|
+
signupAndConfirmUser: (userSignupRequest: any) => Promise<any>;
|
|
54
|
+
signupUser: (userSignupRequest: UserSignupRequest) => Promise<any>;
|
|
55
|
+
adminConfirmUser: (email: string) => Promise<{
|
|
56
|
+
headers: any;
|
|
57
|
+
data: any;
|
|
58
|
+
status: any;
|
|
59
|
+
}>;
|
|
60
|
+
getUserByEmail: (email: string) => Promise<ApiResponse<UserResponseData>>;
|
|
61
|
+
}
|
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
import { Logger } from '../../index.js';
|
|
2
|
-
import { HttpError } from '../../libs/http-error.js';
|
|
3
|
-
import { HttpStatusCodes } from '../../libs/http-status-codes.js';
|
|
4
|
-
import { axiosHttpService } from '../generic/http-client.js';
|
|
5
|
-
export class UsersAuthClient {
|
|
6
|
-
SERVICE_API_ROOT_URL;
|
|
7
|
-
BASE_API_URL;
|
|
8
|
-
USERS_AUTH_API_KEY;
|
|
9
|
-
constructor(baseApiUrl, usersAuthApiKey) {
|
|
10
|
-
this.BASE_API_URL = baseApiUrl;
|
|
11
|
-
this.USERS_AUTH_API_KEY = usersAuthApiKey;
|
|
12
|
-
this.SERVICE_API_ROOT_URL = `${this.BASE_API_URL}/auth`;
|
|
13
|
-
}
|
|
14
|
-
getConfig = () => {
|
|
15
|
-
return {
|
|
16
|
-
baseURL: this.SERVICE_API_ROOT_URL,
|
|
17
|
-
headers: {
|
|
18
|
-
common: {}
|
|
19
|
-
}
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
getClient = async () => {
|
|
23
|
-
return axiosHttpService(this.getConfig());
|
|
24
|
-
};
|
|
25
|
-
signupAndConfirmUser = async (userSignupRequest) => {
|
|
26
|
-
const user = await this.signupUser(userSignupRequest);
|
|
27
|
-
await this.adminConfirmUser(user.email);
|
|
28
|
-
return user;
|
|
29
|
-
};
|
|
30
|
-
signupUser = async (userSignupRequest) => {
|
|
31
|
-
Logger.info('Attempting to signup user', { email: userSignupRequest.email });
|
|
32
|
-
const client = await this.getClient();
|
|
33
|
-
const response = await client.post('/signup', userSignupRequest);
|
|
34
|
-
if (response.status !== 200 || !response?.data?.user) {
|
|
35
|
-
const message = 'User Signup Failed';
|
|
36
|
-
Logger.error(message, { response });
|
|
37
|
-
throw new HttpError(HttpStatusCodes.INTERNAL_SERVER_ERROR, message);
|
|
38
|
-
}
|
|
39
|
-
Logger.info('User Signup Successful', { response });
|
|
40
|
-
return response.data.user;
|
|
41
|
-
};
|
|
42
|
-
adminConfirmUser = async (email) => {
|
|
43
|
-
Logger.info('Attempting to admin confirm user', { email });
|
|
44
|
-
const client = await this.getClient();
|
|
45
|
-
const response = await client.post('/admin/confirm', {
|
|
46
|
-
email
|
|
47
|
-
}, {
|
|
48
|
-
headers: {
|
|
49
|
-
'x-api-key': this.USERS_AUTH_API_KEY
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
if (response.status !== 200) {
|
|
53
|
-
const message = 'Admin User Confirmation Failed';
|
|
54
|
-
Logger.error(message, { response });
|
|
55
|
-
throw new HttpError(HttpStatusCodes.INTERNAL_SERVER_ERROR, message);
|
|
56
|
-
}
|
|
57
|
-
Logger.info('Admin User Confirmation Successful', { response });
|
|
58
|
-
return response;
|
|
59
|
-
};
|
|
60
|
-
getUserByEmail = async (email) => {
|
|
61
|
-
const client = await this.getClient();
|
|
62
|
-
const getUserResponse = await client.get('/lookup', {
|
|
63
|
-
headers: {
|
|
64
|
-
'x-api-key': this.USERS_AUTH_API_KEY
|
|
65
|
-
},
|
|
66
|
-
params: {
|
|
67
|
-
email
|
|
68
|
-
}
|
|
69
|
-
});
|
|
70
|
-
Logger.debug('getUserResponse', { getUserResponse });
|
|
71
|
-
return getUserResponse;
|
|
72
|
-
};
|
|
73
|
-
}
|
|
1
|
+
import { Logger } from '../../index.js';
|
|
2
|
+
import { HttpError } from '../../libs/http-error.js';
|
|
3
|
+
import { HttpStatusCodes } from '../../libs/http-status-codes.js';
|
|
4
|
+
import { axiosHttpService } from '../generic/http-client.js';
|
|
5
|
+
export class UsersAuthClient {
|
|
6
|
+
SERVICE_API_ROOT_URL;
|
|
7
|
+
BASE_API_URL;
|
|
8
|
+
USERS_AUTH_API_KEY;
|
|
9
|
+
constructor(baseApiUrl, usersAuthApiKey) {
|
|
10
|
+
this.BASE_API_URL = baseApiUrl;
|
|
11
|
+
this.USERS_AUTH_API_KEY = usersAuthApiKey;
|
|
12
|
+
this.SERVICE_API_ROOT_URL = `${this.BASE_API_URL}/auth`;
|
|
13
|
+
}
|
|
14
|
+
getConfig = () => {
|
|
15
|
+
return {
|
|
16
|
+
baseURL: this.SERVICE_API_ROOT_URL,
|
|
17
|
+
headers: {
|
|
18
|
+
common: {}
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
getClient = async () => {
|
|
23
|
+
return axiosHttpService(this.getConfig());
|
|
24
|
+
};
|
|
25
|
+
signupAndConfirmUser = async (userSignupRequest) => {
|
|
26
|
+
const user = await this.signupUser(userSignupRequest);
|
|
27
|
+
await this.adminConfirmUser(user.email);
|
|
28
|
+
return user;
|
|
29
|
+
};
|
|
30
|
+
signupUser = async (userSignupRequest) => {
|
|
31
|
+
Logger.info('Attempting to signup user', { email: userSignupRequest.email });
|
|
32
|
+
const client = await this.getClient();
|
|
33
|
+
const response = await client.post('/signup', userSignupRequest);
|
|
34
|
+
if (response.status !== 200 || !response?.data?.user) {
|
|
35
|
+
const message = 'User Signup Failed';
|
|
36
|
+
Logger.error(message, { response });
|
|
37
|
+
throw new HttpError(HttpStatusCodes.INTERNAL_SERVER_ERROR, message);
|
|
38
|
+
}
|
|
39
|
+
Logger.info('User Signup Successful', { response });
|
|
40
|
+
return response.data.user;
|
|
41
|
+
};
|
|
42
|
+
adminConfirmUser = async (email) => {
|
|
43
|
+
Logger.info('Attempting to admin confirm user', { email });
|
|
44
|
+
const client = await this.getClient();
|
|
45
|
+
const response = await client.post('/admin/confirm', {
|
|
46
|
+
email
|
|
47
|
+
}, {
|
|
48
|
+
headers: {
|
|
49
|
+
'x-api-key': this.USERS_AUTH_API_KEY
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
if (response.status !== 200) {
|
|
53
|
+
const message = 'Admin User Confirmation Failed';
|
|
54
|
+
Logger.error(message, { response });
|
|
55
|
+
throw new HttpError(HttpStatusCodes.INTERNAL_SERVER_ERROR, message);
|
|
56
|
+
}
|
|
57
|
+
Logger.info('Admin User Confirmation Successful', { response });
|
|
58
|
+
return response;
|
|
59
|
+
};
|
|
60
|
+
getUserByEmail = async (email) => {
|
|
61
|
+
const client = await this.getClient();
|
|
62
|
+
const getUserResponse = await client.get('/lookup', {
|
|
63
|
+
headers: {
|
|
64
|
+
'x-api-key': this.USERS_AUTH_API_KEY
|
|
65
|
+
},
|
|
66
|
+
params: {
|
|
67
|
+
email
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
Logger.debug('getUserResponse', { getUserResponse });
|
|
71
|
+
return getUserResponse;
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
74
|
//# sourceMappingURL=users-auth-client.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './shopify-client.js';
|
|
1
|
+
export * from './shopify-client.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './shopify-client.js';
|
|
1
|
+
export * from './shopify-client.js';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
export declare class ShopifyClient {
|
|
2
|
-
static _shopify_api_version: string;
|
|
3
|
-
static getConfig: (shopifyDomain: string, accessToken: string) => {
|
|
4
|
-
baseURL: string;
|
|
5
|
-
headers: {
|
|
6
|
-
common: {
|
|
7
|
-
'X-Shopify-Access-Token': string;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
static getClient: (shopifyDomain: string, accessToken: string) => {
|
|
12
|
-
instance: () => import("axios").AxiosInstance;
|
|
13
|
-
get: (url: string, config?: any) => Promise<{
|
|
14
|
-
headers: any;
|
|
15
|
-
data: any;
|
|
16
|
-
status: any;
|
|
17
|
-
}>;
|
|
18
|
-
post: (url: string, data?: any, config?: any) => Promise<{
|
|
19
|
-
headers: any;
|
|
20
|
-
data: any;
|
|
21
|
-
status: any;
|
|
22
|
-
}>;
|
|
23
|
-
delete: (url: string, config?: any) => Promise<{
|
|
24
|
-
headers: any;
|
|
25
|
-
data: any;
|
|
26
|
-
status: any;
|
|
27
|
-
}>;
|
|
28
|
-
put: (url: string, data?: any, config?: any) => Promise<{
|
|
29
|
-
headers: any;
|
|
30
|
-
data: any;
|
|
31
|
-
status: any;
|
|
32
|
-
}>;
|
|
33
|
-
patch: (url: string, data?: any, config?: any) => Promise<{
|
|
34
|
-
headers: any;
|
|
35
|
-
data: any;
|
|
36
|
-
status: any;
|
|
37
|
-
}>;
|
|
38
|
-
setBaseUrl: (url: string) => boolean;
|
|
39
|
-
};
|
|
40
|
-
static registerApp: (shop: string, code: string, appKey: string, appSecret: string) => Promise<{
|
|
41
|
-
headers: any;
|
|
42
|
-
data: any;
|
|
43
|
-
status: any;
|
|
44
|
-
}>;
|
|
45
|
-
static registerWebhookTopic: (shop: string, accessToken: string, eventBridgeArn: string, topic: string) => Promise<{
|
|
46
|
-
headers: any;
|
|
47
|
-
data: any;
|
|
48
|
-
status: any;
|
|
49
|
-
}>;
|
|
50
|
-
static updateShopifyAppMetafield: (shop: string, accessToken: string, pixelId: string) => Promise<{
|
|
51
|
-
headers: any;
|
|
52
|
-
data: any;
|
|
53
|
-
status: any;
|
|
54
|
-
}>;
|
|
55
|
-
static getShopifyStoreProperties: (shop: string, accessToken: string) => Promise<{
|
|
56
|
-
headers: any;
|
|
57
|
-
data: any;
|
|
58
|
-
status: any;
|
|
59
|
-
}>;
|
|
60
|
-
static createAppSubscription: (shop: string, accessToken: string, planName: string, price: number, returnUrl: string, trialDays: number, test?: boolean) => Promise<{
|
|
61
|
-
headers: any;
|
|
62
|
-
data: any;
|
|
63
|
-
status: any;
|
|
64
|
-
}>;
|
|
65
|
-
static cancelAppSubscription: (shop: string, accessToken: string, chargeId: string) => Promise<{
|
|
66
|
-
headers: any;
|
|
67
|
-
data: any;
|
|
68
|
-
status: any;
|
|
69
|
-
}>;
|
|
70
|
-
static listAppSubscriptions: (shop: string, accessToken: string) => Promise<{
|
|
71
|
-
headers: any;
|
|
72
|
-
data: any;
|
|
73
|
-
status: any;
|
|
74
|
-
}>;
|
|
75
|
-
static genericShopifyPost: (url: string, accessToken: string, payload: any) => Promise<{
|
|
76
|
-
headers: any;
|
|
77
|
-
data: any;
|
|
78
|
-
status: any;
|
|
79
|
-
}>;
|
|
80
|
-
static genericShopifyGet: (url: string, accessToken: string) => Promise<{
|
|
81
|
-
headers: any;
|
|
82
|
-
data: any;
|
|
83
|
-
status: any;
|
|
84
|
-
}>;
|
|
85
|
-
static genericShopifyPut: (url: string, accessToken: string, payload: any) => Promise<{
|
|
86
|
-
headers: any;
|
|
87
|
-
data: any;
|
|
88
|
-
status: any;
|
|
89
|
-
}>;
|
|
90
|
-
}
|
|
1
|
+
export declare class ShopifyClient {
|
|
2
|
+
static _shopify_api_version: string;
|
|
3
|
+
static getConfig: (shopifyDomain: string, accessToken: string) => {
|
|
4
|
+
baseURL: string;
|
|
5
|
+
headers: {
|
|
6
|
+
common: {
|
|
7
|
+
'X-Shopify-Access-Token': string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
static getClient: (shopifyDomain: string, accessToken: string) => {
|
|
12
|
+
instance: () => import("axios").AxiosInstance;
|
|
13
|
+
get: (url: string, config?: any) => Promise<{
|
|
14
|
+
headers: any;
|
|
15
|
+
data: any;
|
|
16
|
+
status: any;
|
|
17
|
+
}>;
|
|
18
|
+
post: (url: string, data?: any, config?: any) => Promise<{
|
|
19
|
+
headers: any;
|
|
20
|
+
data: any;
|
|
21
|
+
status: any;
|
|
22
|
+
}>;
|
|
23
|
+
delete: (url: string, config?: any) => Promise<{
|
|
24
|
+
headers: any;
|
|
25
|
+
data: any;
|
|
26
|
+
status: any;
|
|
27
|
+
}>;
|
|
28
|
+
put: (url: string, data?: any, config?: any) => Promise<{
|
|
29
|
+
headers: any;
|
|
30
|
+
data: any;
|
|
31
|
+
status: any;
|
|
32
|
+
}>;
|
|
33
|
+
patch: (url: string, data?: any, config?: any) => Promise<{
|
|
34
|
+
headers: any;
|
|
35
|
+
data: any;
|
|
36
|
+
status: any;
|
|
37
|
+
}>;
|
|
38
|
+
setBaseUrl: (url: string) => boolean;
|
|
39
|
+
};
|
|
40
|
+
static registerApp: (shop: string, code: string, appKey: string, appSecret: string) => Promise<{
|
|
41
|
+
headers: any;
|
|
42
|
+
data: any;
|
|
43
|
+
status: any;
|
|
44
|
+
}>;
|
|
45
|
+
static registerWebhookTopic: (shop: string, accessToken: string, eventBridgeArn: string, topic: string) => Promise<{
|
|
46
|
+
headers: any;
|
|
47
|
+
data: any;
|
|
48
|
+
status: any;
|
|
49
|
+
}>;
|
|
50
|
+
static updateShopifyAppMetafield: (shop: string, accessToken: string, pixelId: string) => Promise<{
|
|
51
|
+
headers: any;
|
|
52
|
+
data: any;
|
|
53
|
+
status: any;
|
|
54
|
+
}>;
|
|
55
|
+
static getShopifyStoreProperties: (shop: string, accessToken: string) => Promise<{
|
|
56
|
+
headers: any;
|
|
57
|
+
data: any;
|
|
58
|
+
status: any;
|
|
59
|
+
}>;
|
|
60
|
+
static createAppSubscription: (shop: string, accessToken: string, planName: string, price: number, returnUrl: string, trialDays: number, test?: boolean) => Promise<{
|
|
61
|
+
headers: any;
|
|
62
|
+
data: any;
|
|
63
|
+
status: any;
|
|
64
|
+
}>;
|
|
65
|
+
static cancelAppSubscription: (shop: string, accessToken: string, chargeId: string) => Promise<{
|
|
66
|
+
headers: any;
|
|
67
|
+
data: any;
|
|
68
|
+
status: any;
|
|
69
|
+
}>;
|
|
70
|
+
static listAppSubscriptions: (shop: string, accessToken: string) => Promise<{
|
|
71
|
+
headers: any;
|
|
72
|
+
data: any;
|
|
73
|
+
status: any;
|
|
74
|
+
}>;
|
|
75
|
+
static genericShopifyPost: (url: string, accessToken: string, payload: any) => Promise<{
|
|
76
|
+
headers: any;
|
|
77
|
+
data: any;
|
|
78
|
+
status: any;
|
|
79
|
+
}>;
|
|
80
|
+
static genericShopifyGet: (url: string, accessToken: string) => Promise<{
|
|
81
|
+
headers: any;
|
|
82
|
+
data: any;
|
|
83
|
+
status: any;
|
|
84
|
+
}>;
|
|
85
|
+
static genericShopifyPut: (url: string, accessToken: string, payload: any) => Promise<{
|
|
86
|
+
headers: any;
|
|
87
|
+
data: any;
|
|
88
|
+
status: any;
|
|
89
|
+
}>;
|
|
90
|
+
}
|