@adtrackify/at-service-common 1.0.28 → 1.0.29
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/index.d.ts +5 -0
- package/dist/index.js +238 -145
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
- package/src/clients/index.ts +2 -1
- package/src/clients/third-party/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ declare module '@adtrackify/at-service-common/clients/generic/index' {
|
|
|
73
73
|
declare module '@adtrackify/at-service-common/clients/index' {
|
|
74
74
|
export * from '@adtrackify/at-service-common/clients/generic/index';
|
|
75
75
|
export * from '@adtrackify/at-service-common/clients/internal-api/index';
|
|
76
|
+
export * from '@adtrackify/at-service-common/clients/third-party/index';
|
|
76
77
|
|
|
77
78
|
}
|
|
78
79
|
declare module '@adtrackify/at-service-common/clients/internal-api/accounts-client' {
|
|
@@ -187,6 +188,10 @@ declare module '@adtrackify/at-service-common/clients/internal-api/index' {
|
|
|
187
188
|
export * from '@adtrackify/at-service-common/clients/internal-api/destinations-client';
|
|
188
189
|
export * from '@adtrackify/at-service-common/clients/internal-api/accounts-client';
|
|
189
190
|
|
|
191
|
+
}
|
|
192
|
+
declare module '@adtrackify/at-service-common/clients/third-party/index' {
|
|
193
|
+
export * from '@adtrackify/at-service-common/clients/third-party/shopify-client';
|
|
194
|
+
|
|
190
195
|
}
|
|
191
196
|
declare module '@adtrackify/at-service-common/clients/third-party/shopify-client' {
|
|
192
197
|
export class ShopifyClient {
|