@tap-payments/apple-pay-button 0.0.65-development → 0.0.66-development
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/build/@types/ApplePayButtonProps.d.ts +1 -2
- package/build/@types/enums.d.ts +2 -8
- package/build/@types/enums.js +1 -8
- package/build/api.d.ts +34 -0
- package/build/{api/app.service.js → api.js} +36 -107
- package/build/constants/index.d.ts +2 -7
- package/build/constants/index.js +2 -7
- package/build/features/ApplePayButton/ApplePayButton.d.ts +0 -1
- package/build/features/ApplePayButton/ApplePayButton.js +9 -8
- package/build/hooks/index.d.ts +0 -1
- package/build/hooks/index.js +0 -1
- package/build/hooks/useApplePay.d.ts +9 -13
- package/build/hooks/useApplePay.js +23 -57
- package/build/hooks/useMerchantApplePay.js +2 -2
- package/build/index.d.ts +2 -2
- package/build/index.js +2 -3
- package/build/utils/config.d.ts +0 -2
- package/build/utils/config.js +0 -18
- package/build/utils/defaultValues.d.ts +1 -71
- package/build/utils/defaultValues.js +1 -23
- package/package.json +3 -4
- package/build/api/app.service.d.ts +0 -27
- package/build/api/base.d.ts +0 -9
- package/build/api/base.js +0 -45
- package/build/api/httpClient.d.ts +0 -22
- package/build/api/httpClient.js +0 -36
- package/build/assets/gif/error-black.gif +0 -0
- package/build/assets/gif/error-white.gif +0 -0
- package/build/assets/gif/success-black.gif +0 -0
- package/build/assets/gif/success-white.gif +0 -0
- package/build/assets/lottie/Dark_Mode_Loader.json +0 -255
- package/build/assets/lottie/Light_Mode_Loader.json +0 -255
- package/build/components/ActionButton/ActionButton.d.ts +0 -24
- package/build/components/ActionButton/ActionButton.js +0 -62
- package/build/components/ActionButton/index.d.ts +0 -2
- package/build/components/ActionButton/index.js +0 -2
- package/build/components/InitialLoader/InitialLoader.d.ts +0 -9
- package/build/components/InitialLoader/InitialLoader.js +0 -26
- package/build/components/InitialLoader/index.d.ts +0 -2
- package/build/components/InitialLoader/index.js +0 -2
- package/build/components/Loader/Loader.d.ts +0 -24
- package/build/components/Loader/Loader.js +0 -48
- package/build/components/Loader/index.d.ts +0 -2
- package/build/components/Loader/index.js +0 -2
- package/build/components/PayButton/PayButton.d.ts +0 -16
- package/build/components/PayButton/PayButton.js +0 -40
- package/build/components/PayButton/index.d.ts +0 -2
- package/build/components/PayButton/index.js +0 -2
- package/build/components/PayButton/style.d.ts +0 -5
- package/build/components/PayButton/style.js +0 -19
- package/build/features/ApplePayButton/ApplePayButton.css +0 -21
- package/build/features/ApplePayButton/style.d.ts +0 -5
- package/build/features/ApplePayButton/style.js +0 -20
- package/build/hooks/useScript.d.ts +0 -3
- package/build/hooks/useScript.js +0 -40
package/build/utils/config.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { JSEncrypt } from 'jsencrypt';
|
|
2
1
|
import { getMerchantCapabilities } from './defaultValues';
|
|
3
2
|
export var validateSupportedNetworks = function (supportedNetworksOptions, merchantSupportedNetworks) {
|
|
4
3
|
var toLowerCase = function (item) { return item.toLowerCase(); };
|
|
@@ -46,23 +45,6 @@ export var getApplePayRequest = function (_a) {
|
|
|
46
45
|
}
|
|
47
46
|
};
|
|
48
47
|
};
|
|
49
|
-
export var rsaSetup = function (key) {
|
|
50
|
-
var rsa = new JSEncrypt();
|
|
51
|
-
rsa.setPublicKey(key);
|
|
52
|
-
return function (string) {
|
|
53
|
-
if (typeof string !== 'string')
|
|
54
|
-
throw new Error('string should be from type string');
|
|
55
|
-
var encrypted = rsa.encrypt(string);
|
|
56
|
-
if (!encrypted)
|
|
57
|
-
throw new Error('encryption data reached max allowed length');
|
|
58
|
-
return encrypted;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
export function generateApplicationHeader(obj) {
|
|
62
|
-
return Object.keys(obj)
|
|
63
|
-
.map(function (key) { return "".concat(key, "=").concat(obj[key]); })
|
|
64
|
-
.join('|');
|
|
65
|
-
}
|
|
66
48
|
export var prepareApplePayRequest = function (_a) {
|
|
67
49
|
var payment_options = _a.payment_options, merchant = _a.merchant, order = _a.order, customer = _a.customer, acceptance = _a.acceptance;
|
|
68
50
|
var paymentMethod = getApplePayPaymentMethod(payment_options.payment_methods || []);
|
|
@@ -1,72 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ThemeMode, Locale, ButtonType, Edges, MerchantCapabilities } from '../@types/enums';
|
|
3
|
-
export declare const getDefaultValues: (mainObject: ApplePayButtonProps) => {
|
|
4
|
-
interface: {
|
|
5
|
-
locale?: Locale | undefined;
|
|
6
|
-
theme?: ThemeMode | undefined;
|
|
7
|
-
edges?: Edges | undefined;
|
|
8
|
-
type?: ButtonType | undefined;
|
|
9
|
-
colorStyle?: import("../@types").ColorStyle | undefined;
|
|
10
|
-
loader?: boolean | undefined;
|
|
11
|
-
};
|
|
12
|
-
operator: {
|
|
13
|
-
publicKey: string;
|
|
14
|
-
hashstring?: string | undefined;
|
|
15
|
-
};
|
|
16
|
-
merchant: {
|
|
17
|
-
id: string;
|
|
18
|
-
};
|
|
19
|
-
scope: import("../@types").Scope;
|
|
20
|
-
environment: import("../@types").Environment;
|
|
21
|
-
customer?: import("../@types").Customer | undefined;
|
|
22
|
-
acceptance?: import("../@types").Acceptance | undefined;
|
|
23
|
-
transaction?: {
|
|
24
|
-
authentication?: boolean | undefined;
|
|
25
|
-
authorize?: {
|
|
26
|
-
auto: {
|
|
27
|
-
type: string;
|
|
28
|
-
time: number;
|
|
29
|
-
};
|
|
30
|
-
} | undefined;
|
|
31
|
-
metadata?: Record<string, string> | undefined;
|
|
32
|
-
reference?: string | undefined;
|
|
33
|
-
paymentAgreement?: {
|
|
34
|
-
id: string;
|
|
35
|
-
contract?: {
|
|
36
|
-
id: string;
|
|
37
|
-
} | undefined;
|
|
38
|
-
} | undefined;
|
|
39
|
-
destinations?: Record<string, any> | undefined;
|
|
40
|
-
} | undefined;
|
|
41
|
-
invoice?: {
|
|
42
|
-
id: string;
|
|
43
|
-
} | undefined;
|
|
44
|
-
order: {
|
|
45
|
-
amount: number;
|
|
46
|
-
currency: string;
|
|
47
|
-
id?: string | undefined;
|
|
48
|
-
description?: string | undefined;
|
|
49
|
-
metadata?: Record<string, string> | undefined;
|
|
50
|
-
reference?: string | undefined;
|
|
51
|
-
};
|
|
52
|
-
post?: {
|
|
53
|
-
url: string;
|
|
54
|
-
} | undefined;
|
|
55
|
-
redirect?: {
|
|
56
|
-
url: string;
|
|
57
|
-
} | undefined;
|
|
58
|
-
onOrderCreated?: ((orderId: string) => void) | undefined;
|
|
59
|
-
onCancel?: (() => void) | undefined;
|
|
60
|
-
onError?: ((error: any) => void) | undefined;
|
|
61
|
-
onSuccess?: ((data: Record<string, any>) => void) | undefined;
|
|
62
|
-
onClick?: ((data?: import("../@types").ApplePayDataToLunchSDKFromMerchantSide | undefined) => void) | undefined;
|
|
63
|
-
onReady?: (() => void) | undefined;
|
|
64
|
-
metaData?: import("../@types").MetaData | undefined;
|
|
65
|
-
debug?: boolean | undefined;
|
|
66
|
-
integration?: "sdk" | "iframe" | undefined;
|
|
67
|
-
headers?: {
|
|
68
|
-
mdn: string;
|
|
69
|
-
application: string;
|
|
70
|
-
} | undefined;
|
|
71
|
-
};
|
|
1
|
+
import { MerchantCapabilities } from '../@types/enums';
|
|
72
2
|
export declare const getMerchantCapabilities: (supportedCards?: Array<string>) => MerchantCapabilities[];
|
|
@@ -1,14 +1,3 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
1
|
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
13
2
|
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
14
3
|
if (ar || !(i in from)) {
|
|
@@ -18,18 +7,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
18
7
|
}
|
|
19
8
|
return to.concat(ar || Array.prototype.slice.call(from));
|
|
20
9
|
};
|
|
21
|
-
import {
|
|
22
|
-
export var getDefaultValues = function (mainObject) {
|
|
23
|
-
var userThemeMode = window.matchMedia('(prefers-color-scheme: light)').matches ? ThemeMode.LIGHT : ThemeMode.DARK;
|
|
24
|
-
var userLang = navigator.language.toLowerCase().includes(Locale.AR) ? Locale.AR : Locale.EN;
|
|
25
|
-
var defaultInterface = {
|
|
26
|
-
locale: userLang,
|
|
27
|
-
theme: userThemeMode,
|
|
28
|
-
type: ButtonType.PLAIN,
|
|
29
|
-
edges: Edges.CURVED
|
|
30
|
-
};
|
|
31
|
-
return __assign(__assign({}, mainObject), { interface: __assign(__assign({}, defaultInterface), mainObject.interface) });
|
|
32
|
-
};
|
|
10
|
+
import { MerchantCapabilities } from '../@types/enums';
|
|
33
11
|
export var getMerchantCapabilities = function (supportedCards) {
|
|
34
12
|
var merchantCapabilities = [MerchantCapabilities.Supports3DS];
|
|
35
13
|
if (!supportedCards) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tap-payments/apple-pay-button",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.66-development",
|
|
4
4
|
"description": "Apple Pay Button React Component",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"module": "build/index.js",
|
|
@@ -29,10 +29,9 @@
|
|
|
29
29
|
},
|
|
30
30
|
"license": "ISC",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@
|
|
33
|
-
"@emotion/styled": "^11.11.0",
|
|
34
|
-
"@mui/material": "^5.14.12",
|
|
32
|
+
"@tap-payments/acceptance-sdk": "^0.0.11",
|
|
35
33
|
"@tap-payments/browser-info": "^1.0.2",
|
|
34
|
+
"@tap-payments/web-error-handing": "^1.0.1",
|
|
36
35
|
"axios": "^1.2.2",
|
|
37
36
|
"framer-motion": "^10.16.5",
|
|
38
37
|
"jsencrypt": "^3.3.2",
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { MerchantResponse, ApplePayButtonProps, CheckoutProfileRequest, ChargeRequestBody, AuthorizeRequestBody } from '../@types';
|
|
2
|
-
import BaseService from './base';
|
|
3
|
-
declare class APPService extends BaseService {
|
|
4
|
-
private baseUrl;
|
|
5
|
-
private env;
|
|
6
|
-
constructor();
|
|
7
|
-
setEnv(env: ApplePayButtonProps['environment']): void;
|
|
8
|
-
setBaseUrl(): void;
|
|
9
|
-
getHeaderPublicKey(): "" | "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8AX++RtxPZFtns4XzXFlDIxPBh0umN4qRXZaKDIlb6a3MknaB7psJWmf2l+e4Cfh9b5tey/+rZqpQ065eXTZfGCAuBLt+fYLQBhLfjRpk8S6hlIzc1Kdjg65uqzMwcTd0p7I4KLwHk1I0oXzuEu53fU1LSZhWp4Mnd6wjVgXAsQIDAQAB\n-----END PUBLIC KEY-----" | "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9hSRms7Ir1HmzdZxGXFYgmpi3\nez7VBFje0f8wwrxYS9oVoBtN4iAt0DOs3DbeuqtueI31wtpFVUMGg8W7R0SbtkZd\nGzszQNqt/wyqxpDC9q+97XdXwkWQFA72s76ud7eMXQlsWKsvgwhY+Ywzt0KlpNC3\nHj+N6UWFOYK98Xi+sQIDAQAB\n-----END PUBLIC KEY-----" | "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCi9W5jyTvA4Iwv3V5sfNQ7VdSz\n7WqwBbnWFbIUL/GjaaE93mvDv4zbgRSznHaHQPH6pxrMhMh0tV58njkvjHvQ/tvg\npwM8SemNPKEEAPl69tnMvCrJRPh2dWL3OHY8yCW4c38Hyx4fy56Zd5cdoVWfCReu\njCsvASLGz+cfRrj2swIDAQAB\n-----END PUBLIC KEY-----";
|
|
10
|
-
getBaseUrl(): string;
|
|
11
|
-
setHttpHeaders(headers: Record<string, string>): Promise<void>;
|
|
12
|
-
setBrowserHeaders({ locale, pk, domain }: {
|
|
13
|
-
locale: string;
|
|
14
|
-
pk: string;
|
|
15
|
-
domain: string;
|
|
16
|
-
}): Promise<void>;
|
|
17
|
-
checkoutProfile(request: CheckoutProfileRequest): Promise<{
|
|
18
|
-
merchant: any;
|
|
19
|
-
payment_options: any;
|
|
20
|
-
}>;
|
|
21
|
-
appleSession(merchant: Pick<MerchantResponse, 'name' | 'id'>, validationURL: string, merchantRegisteredDomain: string): Promise<any>;
|
|
22
|
-
tapTokenization(applePaymentData: Record<string, string>): Promise<any>;
|
|
23
|
-
createCharge(request: ChargeRequestBody): Promise<any>;
|
|
24
|
-
createAuthorize(request: AuthorizeRequestBody): Promise<any>;
|
|
25
|
-
}
|
|
26
|
-
declare const appService: APPService;
|
|
27
|
-
export default appService;
|
package/build/api/base.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
2
|
-
export default class BaseService {
|
|
3
|
-
httpClient: AxiosInstance;
|
|
4
|
-
constructor(httpClient: AxiosInstance);
|
|
5
|
-
get(url: string, config?: AxiosRequestConfig<any>): Promise<import("axios").AxiosResponse<any, any>>;
|
|
6
|
-
post(url: string, data?: any, config?: AxiosRequestConfig<any>): Promise<import("axios").AxiosResponse<any, any>>;
|
|
7
|
-
put(url: string, data?: any, config?: AxiosRequestConfig<any>): Promise<import("axios").AxiosResponse<any, any>>;
|
|
8
|
-
delete(url: string, config?: AxiosRequestConfig<any>): Promise<import("axios").AxiosResponse<any, any>>;
|
|
9
|
-
}
|
package/build/api/base.js
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
var BaseService = (function () {
|
|
2
|
-
function BaseService(httpClient) {
|
|
3
|
-
Object.defineProperty(this, "httpClient", {
|
|
4
|
-
enumerable: true,
|
|
5
|
-
configurable: true,
|
|
6
|
-
writable: true,
|
|
7
|
-
value: void 0
|
|
8
|
-
});
|
|
9
|
-
this.httpClient = httpClient;
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(BaseService.prototype, "get", {
|
|
12
|
-
enumerable: false,
|
|
13
|
-
configurable: true,
|
|
14
|
-
writable: true,
|
|
15
|
-
value: function (url, config) {
|
|
16
|
-
return this.httpClient.get(url, config);
|
|
17
|
-
}
|
|
18
|
-
});
|
|
19
|
-
Object.defineProperty(BaseService.prototype, "post", {
|
|
20
|
-
enumerable: false,
|
|
21
|
-
configurable: true,
|
|
22
|
-
writable: true,
|
|
23
|
-
value: function (url, data, config) {
|
|
24
|
-
return this.httpClient.post(url, data, config);
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
Object.defineProperty(BaseService.prototype, "put", {
|
|
28
|
-
enumerable: false,
|
|
29
|
-
configurable: true,
|
|
30
|
-
writable: true,
|
|
31
|
-
value: function (url, data, config) {
|
|
32
|
-
return this.httpClient.put(url, data, config);
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
Object.defineProperty(BaseService.prototype, "delete", {
|
|
36
|
-
enumerable: false,
|
|
37
|
-
configurable: true,
|
|
38
|
-
writable: true,
|
|
39
|
-
value: function (url, config) {
|
|
40
|
-
return this.httpClient.delete(url, config);
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
return BaseService;
|
|
44
|
-
}());
|
|
45
|
-
export default BaseService;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export declare const MW_BASE_LIVE_URL = "https://mw-sdk.tap.company/v2/checkout";
|
|
2
|
-
export declare const MW_BASE_STAGING_URL = "https://mw-sdk.staging.tap.company/v2/checkout";
|
|
3
|
-
export declare const MW_BASE_DEV_URL = "https://mw-sdk.dev.tap.company/v2/checkout";
|
|
4
|
-
export declare const MW_BASE_BETA_URL = "https://mw-sdk.beta.tap.company/v2/checkout";
|
|
5
|
-
export declare const MW_BASE_SANDBOX_URL = "https://mw-sdk.sandbox.tap.company/v2/checkout";
|
|
6
|
-
declare const httpClient: import("axios").AxiosInstance;
|
|
7
|
-
export declare const setAxiosGlobalHeaders: (headers: Record<string, string>) => void;
|
|
8
|
-
export declare const getAxiosGlobalHeaders: () => {
|
|
9
|
-
[x: string]: (string | number | boolean | string[] | import("axios").AxiosHeaders | null) | undefined;
|
|
10
|
-
head?: import("axios").AxiosHeaders | undefined;
|
|
11
|
-
link?: import("axios").AxiosHeaders | undefined;
|
|
12
|
-
post?: import("axios").AxiosHeaders | undefined;
|
|
13
|
-
get?: import("axios").AxiosHeaders | undefined;
|
|
14
|
-
delete?: import("axios").AxiosHeaders | undefined;
|
|
15
|
-
options?: import("axios").AxiosHeaders | undefined;
|
|
16
|
-
put?: import("axios").AxiosHeaders | undefined;
|
|
17
|
-
patch?: import("axios").AxiosHeaders | undefined;
|
|
18
|
-
purge?: import("axios").AxiosHeaders | undefined;
|
|
19
|
-
unlink?: import("axios").AxiosHeaders | undefined;
|
|
20
|
-
common?: import("axios").AxiosHeaders | undefined;
|
|
21
|
-
};
|
|
22
|
-
export default httpClient;
|
package/build/api/httpClient.js
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import axios from 'axios';
|
|
13
|
-
export var MW_BASE_LIVE_URL = 'https://mw-sdk.tap.company/v2/checkout';
|
|
14
|
-
export var MW_BASE_STAGING_URL = 'https://mw-sdk.staging.tap.company/v2/checkout';
|
|
15
|
-
export var MW_BASE_DEV_URL = 'https://mw-sdk.dev.tap.company/v2/checkout';
|
|
16
|
-
export var MW_BASE_BETA_URL = 'https://mw-sdk.beta.tap.company/v2/checkout';
|
|
17
|
-
export var MW_BASE_SANDBOX_URL = 'https://mw-sdk.sandbox.tap.company/v2/checkout';
|
|
18
|
-
var httpClient = axios.create({
|
|
19
|
-
headers: {
|
|
20
|
-
'Content-Type': 'application/json',
|
|
21
|
-
Accept: 'application/json'
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
httpClient.interceptors.request.use(function (config) {
|
|
25
|
-
return config;
|
|
26
|
-
});
|
|
27
|
-
httpClient.interceptors.response.use(function (response) {
|
|
28
|
-
return response;
|
|
29
|
-
});
|
|
30
|
-
export var setAxiosGlobalHeaders = function (headers) {
|
|
31
|
-
httpClient.defaults.headers.common = __assign(__assign({}, httpClient.defaults.headers.common), headers);
|
|
32
|
-
};
|
|
33
|
-
export var getAxiosGlobalHeaders = function () {
|
|
34
|
-
return __assign({}, httpClient.defaults.headers.common);
|
|
35
|
-
};
|
|
36
|
-
export default httpClient;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,255 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"ddd": 0,
|
|
3
|
-
"h": 48,
|
|
4
|
-
"w": 358,
|
|
5
|
-
"meta": { "g": "LottieFiles Figma v41" },
|
|
6
|
-
"layers": [
|
|
7
|
-
{
|
|
8
|
-
"ty": 4,
|
|
9
|
-
"sr": 1,
|
|
10
|
-
"st": 0,
|
|
11
|
-
"op": 22,
|
|
12
|
-
"ip": 0,
|
|
13
|
-
"hasMask": false,
|
|
14
|
-
"ao": 0,
|
|
15
|
-
"ks": {
|
|
16
|
-
"a": {
|
|
17
|
-
"a": 1,
|
|
18
|
-
"k": [
|
|
19
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [90, 179.92], "t": 0 },
|
|
20
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [90, 179.92], "t": 3 },
|
|
21
|
-
{ "s": [90, 179.92], "t": 21 }
|
|
22
|
-
]
|
|
23
|
-
},
|
|
24
|
-
"s": {
|
|
25
|
-
"a": 1,
|
|
26
|
-
"k": [
|
|
27
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [100, 100], "t": 0 },
|
|
28
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [100, 100], "t": 3 },
|
|
29
|
-
{ "s": [100, 100], "t": 21 }
|
|
30
|
-
]
|
|
31
|
-
},
|
|
32
|
-
"p": {
|
|
33
|
-
"a": 1,
|
|
34
|
-
"k": [
|
|
35
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [-114, 44.63], "t": 0 },
|
|
36
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [-114, 44.63], "t": 3 },
|
|
37
|
-
{ "s": [476, 44.63], "t": 21 }
|
|
38
|
-
]
|
|
39
|
-
},
|
|
40
|
-
"r": {
|
|
41
|
-
"a": 1,
|
|
42
|
-
"k": [
|
|
43
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [0], "t": 0 },
|
|
44
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [0], "t": 3 },
|
|
45
|
-
{ "s": [0], "t": 21 }
|
|
46
|
-
]
|
|
47
|
-
},
|
|
48
|
-
"o": {
|
|
49
|
-
"a": 1,
|
|
50
|
-
"k": [
|
|
51
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [100], "t": 0 },
|
|
52
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [100], "t": 3 },
|
|
53
|
-
{ "s": [100], "t": 21 }
|
|
54
|
-
]
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"shapes": [
|
|
58
|
-
{
|
|
59
|
-
"ty": "sh",
|
|
60
|
-
"d": 1,
|
|
61
|
-
"ks": {
|
|
62
|
-
"a": 1,
|
|
63
|
-
"k": [
|
|
64
|
-
{
|
|
65
|
-
"o": { "x": 0, "y": 0 },
|
|
66
|
-
"i": { "x": 1, "y": 1 },
|
|
67
|
-
"s": [
|
|
68
|
-
{
|
|
69
|
-
"c": true,
|
|
70
|
-
"i": [
|
|
71
|
-
[0, 0],
|
|
72
|
-
[0, 0],
|
|
73
|
-
[0, 0],
|
|
74
|
-
[0, 0]
|
|
75
|
-
],
|
|
76
|
-
"o": [
|
|
77
|
-
[0, 0],
|
|
78
|
-
[0, 0],
|
|
79
|
-
[0, 0],
|
|
80
|
-
[0, 0]
|
|
81
|
-
],
|
|
82
|
-
"v": [
|
|
83
|
-
[0, 0],
|
|
84
|
-
[180, 0],
|
|
85
|
-
[180, 359.85],
|
|
86
|
-
[0, 359.85]
|
|
87
|
-
]
|
|
88
|
-
}
|
|
89
|
-
],
|
|
90
|
-
"t": 0
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"o": { "x": 0, "y": 0 },
|
|
94
|
-
"i": { "x": 1, "y": 1 },
|
|
95
|
-
"s": [
|
|
96
|
-
{
|
|
97
|
-
"c": true,
|
|
98
|
-
"i": [
|
|
99
|
-
[0, 0],
|
|
100
|
-
[0, 0],
|
|
101
|
-
[0, 0],
|
|
102
|
-
[0, 0]
|
|
103
|
-
],
|
|
104
|
-
"o": [
|
|
105
|
-
[0, 0],
|
|
106
|
-
[0, 0],
|
|
107
|
-
[0, 0],
|
|
108
|
-
[0, 0]
|
|
109
|
-
],
|
|
110
|
-
"v": [
|
|
111
|
-
[0, 0],
|
|
112
|
-
[180, 0],
|
|
113
|
-
[180, 359.85],
|
|
114
|
-
[0, 359.85]
|
|
115
|
-
]
|
|
116
|
-
}
|
|
117
|
-
],
|
|
118
|
-
"t": 3
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"s": [
|
|
122
|
-
{
|
|
123
|
-
"c": true,
|
|
124
|
-
"i": [
|
|
125
|
-
[0, 0],
|
|
126
|
-
[0, 0],
|
|
127
|
-
[0, 0],
|
|
128
|
-
[0, 0]
|
|
129
|
-
],
|
|
130
|
-
"o": [
|
|
131
|
-
[0, 0],
|
|
132
|
-
[0, 0],
|
|
133
|
-
[0, 0],
|
|
134
|
-
[0, 0]
|
|
135
|
-
],
|
|
136
|
-
"v": [
|
|
137
|
-
[0, 0],
|
|
138
|
-
[180, 0],
|
|
139
|
-
[180, 359.85],
|
|
140
|
-
[0, 359.85]
|
|
141
|
-
]
|
|
142
|
-
}
|
|
143
|
-
],
|
|
144
|
-
"t": 21
|
|
145
|
-
}
|
|
146
|
-
]
|
|
147
|
-
}
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"ty": "gf",
|
|
151
|
-
"e": {
|
|
152
|
-
"a": 1,
|
|
153
|
-
"k": [
|
|
154
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [180.1510009765625, 158.0290069580078], "t": 0 },
|
|
155
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [180.1510009765625, 158.0290069580078], "t": 3 },
|
|
156
|
-
{ "s": [180.1510009765625, 158.0290069580078], "t": 21 }
|
|
157
|
-
]
|
|
158
|
-
},
|
|
159
|
-
"g": {
|
|
160
|
-
"p": 3,
|
|
161
|
-
"k": {
|
|
162
|
-
"a": 1,
|
|
163
|
-
"k": [
|
|
164
|
-
{
|
|
165
|
-
"o": { "x": 0, "y": 0 },
|
|
166
|
-
"i": { "x": 1, "y": 1 },
|
|
167
|
-
"s": [
|
|
168
|
-
0, 0.41960784792900085, 0.41960784792900085, 0.41960784792900085, 0.5101056694984436,
|
|
169
|
-
0.37254902720451355, 0.37254902720451355, 0.37254902720451355, 1, 0.41960784792900085,
|
|
170
|
-
0.41960784792900085, 0.41960784792900085
|
|
171
|
-
],
|
|
172
|
-
"t": 0
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"o": { "x": 0, "y": 0 },
|
|
176
|
-
"i": { "x": 1, "y": 1 },
|
|
177
|
-
"s": [
|
|
178
|
-
0, 0.41960784792900085, 0.41960784792900085, 0.41960784792900085, 0.5101056694984436,
|
|
179
|
-
0.37254902720451355, 0.37254902720451355, 0.37254902720451355, 1, 0.41960784792900085,
|
|
180
|
-
0.41960784792900085, 0.41960784792900085
|
|
181
|
-
],
|
|
182
|
-
"t": 3
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"s": [
|
|
186
|
-
0, 0.41960784792900085, 0.41960784792900085, 0.41960784792900085, 0.5101056694984436,
|
|
187
|
-
0.37254902720451355, 0.37254902720451355, 0.37254902720451355, 1, 0.41960784792900085,
|
|
188
|
-
0.41960784792900085, 0.41960784792900085
|
|
189
|
-
],
|
|
190
|
-
"t": 21
|
|
191
|
-
}
|
|
192
|
-
]
|
|
193
|
-
}
|
|
194
|
-
},
|
|
195
|
-
"t": 1,
|
|
196
|
-
"a": { "a": 0, "k": 0 },
|
|
197
|
-
"h": { "a": 0, "k": 0 },
|
|
198
|
-
"s": {
|
|
199
|
-
"a": 1,
|
|
200
|
-
"k": [
|
|
201
|
-
{
|
|
202
|
-
"o": { "x": 0, "y": 0 },
|
|
203
|
-
"i": { "x": 1, "y": 1 },
|
|
204
|
-
"s": [-1.0300099849700928, 158.0290069580078],
|
|
205
|
-
"t": 0
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"o": { "x": 0, "y": 0 },
|
|
209
|
-
"i": { "x": 1, "y": 1 },
|
|
210
|
-
"s": [-1.0300099849700928, 158.0290069580078],
|
|
211
|
-
"t": 3
|
|
212
|
-
},
|
|
213
|
-
{ "s": [-1.0300099849700928, 158.0290069580078], "t": 21 }
|
|
214
|
-
]
|
|
215
|
-
},
|
|
216
|
-
"r": 1,
|
|
217
|
-
"o": {
|
|
218
|
-
"a": 1,
|
|
219
|
-
"k": [
|
|
220
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [100], "t": 0 },
|
|
221
|
-
{ "o": { "x": 0, "y": 0 }, "i": { "x": 1, "y": 1 }, "s": [100], "t": 3 },
|
|
222
|
-
{ "s": [100], "t": 21 }
|
|
223
|
-
]
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
],
|
|
227
|
-
"ind": 1
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"ty": 1,
|
|
231
|
-
"sr": 1,
|
|
232
|
-
"st": 0,
|
|
233
|
-
"op": 22.00000075995922,
|
|
234
|
-
"ip": 0,
|
|
235
|
-
"hasMask": false,
|
|
236
|
-
"ao": 0,
|
|
237
|
-
"ks": {
|
|
238
|
-
"a": { "a": 0, "k": [0, 0] },
|
|
239
|
-
"s": { "a": 0, "k": [100, 100] },
|
|
240
|
-
"p": { "a": 0, "k": [0, 0] },
|
|
241
|
-
"r": { "a": 0, "k": 0 },
|
|
242
|
-
"o": { "a": 0, "k": 100 }
|
|
243
|
-
},
|
|
244
|
-
"sc": "#6b6b6b",
|
|
245
|
-
"sh": 48,
|
|
246
|
-
"sw": 358,
|
|
247
|
-
"ind": 2
|
|
248
|
-
}
|
|
249
|
-
],
|
|
250
|
-
"v": "5.7.0",
|
|
251
|
-
"fr": 30,
|
|
252
|
-
"op": 21.00000075995922,
|
|
253
|
-
"ip": 0,
|
|
254
|
-
"assets": []
|
|
255
|
-
}
|