@bprotsyk/aso-core 2.1.113 → 2.1.115

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.
@@ -0,0 +1,212 @@
1
+ apple
2
+ banana
3
+ cherry
4
+ dragon
5
+ eagle
6
+ forest
7
+ garden
8
+ hammer
9
+ island
10
+ jungle
11
+ kitten
12
+ lemon
13
+ mountain
14
+ ocean
15
+ pencil
16
+ queen
17
+ river
18
+ sunset
19
+ tiger
20
+ umbrella
21
+ village
22
+ window
23
+ xylophone
24
+ yellow
25
+ zebra
26
+ adventure
27
+ beautiful
28
+ creative
29
+ delicious
30
+ excellent
31
+ fantastic
32
+ gorgeous
33
+ handsome
34
+ incredible
35
+ joyful
36
+ knowledge
37
+ luminous
38
+ magnificent
39
+ natural
40
+ outstanding
41
+ perfect
42
+ quality
43
+ radiant
44
+ spectacular
45
+ tremendous
46
+ ultimate
47
+ valuable
48
+ wonderful
49
+ amazing
50
+ brilliant
51
+ charming
52
+ delightful
53
+ elegant
54
+ fascinating
55
+ graceful
56
+ harmonious
57
+ inspiring
58
+ jubilant
59
+ kindhearted
60
+ loving
61
+ mysterious
62
+ nurturing
63
+ optimistic
64
+ peaceful
65
+ quintessential
66
+ radiant
67
+ serene
68
+ tranquil
69
+ uplifting
70
+ vibrant
71
+ whimsical
72
+ abundant
73
+ blessed
74
+ cheerful
75
+ dazzling
76
+ energetic
77
+ friendly
78
+ generous
79
+ hopeful
80
+ imaginative
81
+ jovial
82
+ knowledgeable
83
+ lively
84
+ majestic
85
+ noble
86
+ outstanding
87
+ passionate
88
+ quintessential
89
+ remarkable
90
+ splendid
91
+ treasured
92
+ unique
93
+ valuable
94
+ warmhearted
95
+ authentic
96
+ benevolent
97
+ charismatic
98
+ determined
99
+ enthusiastic
100
+ faithful
101
+ gracious
102
+ humble
103
+ inspiring
104
+ joyful
105
+ kind
106
+ loyal
107
+ magnificent
108
+ nurturing
109
+ optimistic
110
+ patient
111
+ quintessential
112
+ resilient
113
+ sincere
114
+ trustworthy
115
+ understanding
116
+ virtuous
117
+ wise
118
+ zealous
119
+ abundant
120
+ blessed
121
+ cheerful
122
+ dazzling
123
+ energetic
124
+ friendly
125
+ generous
126
+ hopeful
127
+ imaginative
128
+ jovial
129
+ knowledgeable
130
+ lively
131
+ majestic
132
+ noble
133
+ outstanding
134
+ passionate
135
+ quintessential
136
+ remarkable
137
+ splendid
138
+ treasured
139
+ unique
140
+ valuable
141
+ warmhearted
142
+ authentic
143
+ benevolent
144
+ charismatic
145
+ determined
146
+ enthusiastic
147
+ faithful
148
+ gracious
149
+ humble
150
+ inspiring
151
+ joyful
152
+ kind
153
+ loyal
154
+ magnificent
155
+ nurturing
156
+ optimistic
157
+ patient
158
+ quintessential
159
+ resilient
160
+ sincere
161
+ trustworthy
162
+ understanding
163
+ virtuous
164
+ wise
165
+ zealous
166
+ abundant
167
+ blessed
168
+ cheerful
169
+ dazzling
170
+ energetic
171
+ friendly
172
+ generous
173
+ hopeful
174
+ imaginative
175
+ jovial
176
+ knowledgeable
177
+ lively
178
+ majestic
179
+ noble
180
+ outstanding
181
+ passionate
182
+ quintessential
183
+ remarkable
184
+ splendid
185
+ treasured
186
+ unique
187
+ valuable
188
+ warmhearted
189
+ authentic
190
+ benevolent
191
+ charismatic
192
+ determined
193
+ enthusiastic
194
+ faithful
195
+ gracious
196
+ humble
197
+ inspiring
198
+ joyful
199
+ kind
200
+ loyal
201
+ magnificent
202
+ nurturing
203
+ optimistic
204
+ patient
205
+ quintessential
206
+ resilient
207
+ sincere
208
+ trustworthy
209
+ understanding
210
+ virtuous
211
+ wise
212
+ zealous
package/test-keitaro.js CHANGED
@@ -3,9 +3,9 @@ const { EPlatform } = require('./lib/app/app');
3
3
 
4
4
  async function testClone() {
5
5
  try {
6
- // Тестові дані для створення кампанії
6
+ // Тестові дані для створення кампанії з trackingParams
7
7
  const testApp = {
8
- id: 901,
8
+ id: 9999,
9
9
  bundle: "com.test.app",
10
10
  name: "Test App",
11
11
  platforms: {
@@ -14,6 +14,21 @@ async function testClone() {
14
14
  appsflyerParams: {
15
15
  apiToken: "test_token",
16
16
  devKey: "test_dev_key"
17
+ },
18
+ direct: {
19
+ enabled: true,
20
+ keitaroData: {
21
+ trackingCampaignAlias: "test123",
22
+ trackingCampaignId: 9999,
23
+ trackingCampaignName: "[9999] Test App ET [com.test.app] [Android] test.com",
24
+ trackingDomainName: "test.com",
25
+ campingToken: "test_token_123",
26
+ trackingParams: {
27
+
28
+ advertising_id: "old_advertising_id",
29
+ appsflyer_device_id: "old_device_id"
30
+ }
31
+ }
17
32
  }
18
33
  }
19
34
  },
@@ -30,7 +45,10 @@ async function testClone() {
30
45
  );
31
46
 
32
47
  console.log('Cloned campaign:', result);
33
- console.log(`domain`, result.domain.split('/')[2])
48
+ console.log(`domain`, result.domain.split('/')[2]);
49
+
50
+ // Показуємо оновлені trackingParams
51
+ console.log('Updated trackingParams:', testApp.platforms['@'].direct.keitaroData.trackingParams);
34
52
  } catch (error) {
35
53
  console.error('Error:', error);
36
54
  }