@ua/capacitor-airship 1.0.0
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/README.md +12 -0
- package/UaCapacitorAirship.podspec +18 -0
- package/android/build.gradle +72 -0
- package/android/src/main/AndroidManifest.xml +33 -0
- package/android/src/main/java/com/airship/capacitor/AirshipCapacitorVersion.kt +7 -0
- package/android/src/main/java/com/airship/capacitor/AirshipPlugin.kt +331 -0
- package/android/src/main/java/com/airship/capacitor/CapacitorAutopilot.kt +39 -0
- package/android/src/main/res/.gitkeep +0 -0
- package/dist/esm/AirshipActions.d.ts +18 -0
- package/dist/esm/AirshipActions.js +20 -0
- package/dist/esm/AirshipActions.js.map +1 -0
- package/dist/esm/AirshipAnalytics.d.ts +30 -0
- package/dist/esm/AirshipAnalytics.js +39 -0
- package/dist/esm/AirshipAnalytics.js.map +1 -0
- package/dist/esm/AirshipChannel.d.ts +61 -0
- package/dist/esm/AirshipChannel.js +87 -0
- package/dist/esm/AirshipChannel.js.map +1 -0
- package/dist/esm/AirshipContact.d.ts +48 -0
- package/dist/esm/AirshipContact.js +68 -0
- package/dist/esm/AirshipContact.js.map +1 -0
- package/dist/esm/AirshipFeatureFlagManager.d.ts +24 -0
- package/dist/esm/AirshipFeatureFlagManager.js +28 -0
- package/dist/esm/AirshipFeatureFlagManager.js.map +1 -0
- package/dist/esm/AirshipInApp.d.ts +30 -0
- package/dist/esm/AirshipInApp.js +39 -0
- package/dist/esm/AirshipInApp.js.map +1 -0
- package/dist/esm/AirshipLocale.d.ts +24 -0
- package/dist/esm/AirshipLocale.js +31 -0
- package/dist/esm/AirshipLocale.js.map +1 -0
- package/dist/esm/AirshipMessageCenter.d.ts +77 -0
- package/dist/esm/AirshipMessageCenter.js +99 -0
- package/dist/esm/AirshipMessageCenter.js.map +1 -0
- package/dist/esm/AirshipPlugin.d.ts +31 -0
- package/dist/esm/AirshipPlugin.js +15 -0
- package/dist/esm/AirshipPlugin.js.map +1 -0
- package/dist/esm/AirshipPreferenceCenter.d.ts +38 -0
- package/dist/esm/AirshipPreferenceCenter.js +49 -0
- package/dist/esm/AirshipPreferenceCenter.js.map +1 -0
- package/dist/esm/AirshipPrivacyManager.d.ts +38 -0
- package/dist/esm/AirshipPrivacyManager.js +48 -0
- package/dist/esm/AirshipPrivacyManager.js.map +1 -0
- package/dist/esm/AirshipPush.d.ts +184 -0
- package/dist/esm/AirshipPush.js +232 -0
- package/dist/esm/AirshipPush.js.map +1 -0
- package/dist/esm/AirshipRoot.d.ts +49 -0
- package/dist/esm/AirshipRoot.js +55 -0
- package/dist/esm/AirshipRoot.js.map +1 -0
- package/dist/esm/AttributeEditor.d.ts +54 -0
- package/dist/esm/AttributeEditor.js +76 -0
- package/dist/esm/AttributeEditor.js.map +1 -0
- package/dist/esm/EventType.d.ts +25 -0
- package/dist/esm/EventType.js +14 -0
- package/dist/esm/EventType.js.map +1 -0
- package/dist/esm/ScopedSubscriptionListEditor.d.ts +59 -0
- package/dist/esm/ScopedSubscriptionListEditor.js +62 -0
- package/dist/esm/ScopedSubscriptionListEditor.js.map +1 -0
- package/dist/esm/SubscriptionListEditor.d.ts +50 -0
- package/dist/esm/SubscriptionListEditor.js +56 -0
- package/dist/esm/SubscriptionListEditor.js.map +1 -0
- package/dist/esm/TagEditor.d.ts +46 -0
- package/dist/esm/TagEditor.js +46 -0
- package/dist/esm/TagEditor.js.map +1 -0
- package/dist/esm/TagGroupEditor.d.ts +60 -0
- package/dist/esm/TagGroupEditor.js +60 -0
- package/dist/esm/TagGroupEditor.js.map +1 -0
- package/dist/esm/index.d.ts +20 -0
- package/dist/esm/index.js +25 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/types.d.ts +651 -0
- package/dist/esm/types.js +167 -0
- package/dist/esm/types.js.map +1 -0
- package/dist/plugin.cjs.js +1278 -0
- package/dist/plugin.cjs.js.map +1 -0
- package/dist/plugin.js +1281 -0
- package/dist/plugin.js.map +1 -0
- package/ios/Plugin/AirshipCapacitorAutopilot.swift +94 -0
- package/ios/Plugin/AirshipCapacitorBootstrap.h +8 -0
- package/ios/Plugin/AirshipCapacitorBootstrap.m +24 -0
- package/ios/Plugin/AirshipCapacitorVersion.swift +7 -0
- package/ios/Plugin/AirshipPlugin.h +7 -0
- package/ios/Plugin/AirshipPlugin.m +9 -0
- package/ios/Plugin/AirshipPlugin.swift +557 -0
- package/ios/Plugin/Info.plist +24 -0
- package/package.json +75 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* Copyright Airship and Contributors */
|
|
2
|
+
'use strict';
|
|
3
|
+
/**
|
|
4
|
+
* Editor for device tags.
|
|
5
|
+
*/
|
|
6
|
+
export class TagEditor {
|
|
7
|
+
/**
|
|
8
|
+
* TagEditor constructor
|
|
9
|
+
*
|
|
10
|
+
* @hidden
|
|
11
|
+
* @param onApply The apply function
|
|
12
|
+
*/
|
|
13
|
+
constructor(onApply) {
|
|
14
|
+
this.onApply = onApply;
|
|
15
|
+
this.operations = [];
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Adds tags to a channel.
|
|
19
|
+
*
|
|
20
|
+
* @param tags Tags to add.
|
|
21
|
+
* @return The tag editor instance.
|
|
22
|
+
*/
|
|
23
|
+
addTags(tags) {
|
|
24
|
+
const operation = { operationType: 'add', tags: tags };
|
|
25
|
+
this.operations.push(operation);
|
|
26
|
+
return this;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Removes tags from the channel.
|
|
30
|
+
*
|
|
31
|
+
* @param tags Tags to remove.
|
|
32
|
+
* @return The tag editor instance.
|
|
33
|
+
*/
|
|
34
|
+
removeTags(tags) {
|
|
35
|
+
const operation = { operationType: 'remove', tags: tags };
|
|
36
|
+
this.operations.push(operation);
|
|
37
|
+
return this;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Applies the tag changes.
|
|
41
|
+
*/
|
|
42
|
+
apply() {
|
|
43
|
+
return this.onApply(this.operations);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
//# sourceMappingURL=TagEditor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagEditor.js","sourceRoot":"","sources":["../../src/TagEditor.ts"],"names":[],"mappings":"AAAA,wCAAwC;AAExC,YAAY,CAAC;AAiBb;;GAEG;AACH,MAAM,OAAO,SAAS;IAIpB;;;;;OAKG;IACH,YAAY,OAAsD;QAChE,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;IACvB,CAAC;IAED;;;;;OAKG;IACH,OAAO,CAAC,IAAc;QACpB,MAAM,SAAS,GAAG,EAAE,aAAa,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;QACvD,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;OAKG;IACH,UAAU,CAAC,IAAc;QACvB,MAAM,SAAS,GAAG,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;QAC1D,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACH,KAAK;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IACvC,CAAC;CACF","sourcesContent":["/* Copyright Airship and Contributors */\n\n'use strict';\n\n/**\n * Tag operation.\n * @hidden\n */\nexport interface TagOperation {\n /**\n * The operation name\n */\n operationType: string;\n /**\n * An array of tags.\n */\n tags: string[];\n}\n\n/**\n * Editor for device tags.\n */\nexport class TagEditor {\n onApply: (operations: TagOperation[]) => Promise<void>;\n operations: TagOperation[];\n\n /**\n * TagEditor constructor\n *\n * @hidden\n * @param onApply The apply function\n */\n constructor(onApply: (operations: TagOperation[]) => Promise<void>) {\n this.onApply = onApply;\n this.operations = [];\n }\n\n /**\n * Adds tags to a channel.\n *\n * @param tags Tags to add.\n * @return The tag editor instance.\n */\n addTags(tags: string[]): TagEditor {\n const operation = { operationType: 'add', tags: tags };\n this.operations.push(operation);\n return this;\n }\n\n /**\n * Removes tags from the channel.\n *\n * @param tags Tags to remove.\n * @return The tag editor instance.\n */\n removeTags(tags: string[]): TagEditor {\n const operation = { operationType: 'remove', tags: tags };\n this.operations.push(operation);\n return this;\n }\n\n /**\n * Applies the tag changes.\n */\n apply(): Promise<void> {\n return this.onApply(this.operations);\n }\n}\n"]}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tag group operation.
|
|
3
|
+
* @hidden
|
|
4
|
+
*/
|
|
5
|
+
export interface TagGroupOperation {
|
|
6
|
+
/**
|
|
7
|
+
* The operation name
|
|
8
|
+
*/
|
|
9
|
+
operationType: string;
|
|
10
|
+
/**
|
|
11
|
+
* The tag group name
|
|
12
|
+
*/
|
|
13
|
+
group: string;
|
|
14
|
+
/**
|
|
15
|
+
* An array of tags.
|
|
16
|
+
*/
|
|
17
|
+
tags: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Editor for tag groups.
|
|
21
|
+
*/
|
|
22
|
+
export declare class TagGroupEditor {
|
|
23
|
+
onApply: (operations: TagGroupOperation[]) => Promise<void>;
|
|
24
|
+
operations: TagGroupOperation[];
|
|
25
|
+
/**
|
|
26
|
+
* TagGroupEditor constructor
|
|
27
|
+
*
|
|
28
|
+
* @hidden
|
|
29
|
+
* @param onApply The apply function
|
|
30
|
+
*/
|
|
31
|
+
constructor(onApply: (operations: TagGroupOperation[]) => Promise<void>);
|
|
32
|
+
/**
|
|
33
|
+
* Adds tags to a tag group.
|
|
34
|
+
*
|
|
35
|
+
* @param tagGroup The tag group.
|
|
36
|
+
* @param tags Tags to add.
|
|
37
|
+
* @return The tag group editor instance.
|
|
38
|
+
*/
|
|
39
|
+
addTags(group: string, tags: string[]): TagGroupEditor;
|
|
40
|
+
/**
|
|
41
|
+
* Removes tags from the tag group.
|
|
42
|
+
*
|
|
43
|
+
* @param tagGroup The tag group.
|
|
44
|
+
* @param tags Tags to remove.
|
|
45
|
+
* @return The tag group editor instance.
|
|
46
|
+
*/
|
|
47
|
+
removeTags(group: string, tags: string[]): TagGroupEditor;
|
|
48
|
+
/**
|
|
49
|
+
* Overwrite the current set of tags on the Tag Group.
|
|
50
|
+
*
|
|
51
|
+
* @param tagGroup The tag group.
|
|
52
|
+
* @param tags Tags to set.
|
|
53
|
+
* @return The tag group editor instance.
|
|
54
|
+
*/
|
|
55
|
+
setTags(group: string, tags: string[]): TagGroupEditor;
|
|
56
|
+
/**
|
|
57
|
+
* Applies the tag changes.
|
|
58
|
+
*/
|
|
59
|
+
apply(): Promise<void>;
|
|
60
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* Copyright Airship and Contributors */
|
|
2
|
+
'use strict';
|
|
3
|
+
/**
|
|
4
|
+
* Editor for tag groups.
|
|
5
|
+
*/
|
|
6
|
+
export class TagGroupEditor {
|
|
7
|
+
/**
|
|
8
|
+
* TagGroupEditor constructor
|
|
9
|
+
*
|
|
10
|
+
* @hidden
|
|
11
|
+
* @param onApply The apply function
|
|
12
|
+
*/
|
|
13
|
+
constructor(onApply) {
|
|
14
|
+
this.onApply = onApply;
|
|
15
|
+
this.operations = [];
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Adds tags to a tag group.
|
|
19
|
+
*
|
|
20
|
+
* @param tagGroup The tag group.
|
|
21
|
+
* @param tags Tags to add.
|
|
22
|
+
* @return The tag group editor instance.
|
|
23
|
+
*/
|
|
24
|
+
addTags(group, tags) {
|
|
25
|
+
const operation = { operationType: 'add', group: group, tags: tags };
|
|
26
|
+
this.operations.push(operation);
|
|
27
|
+
return this;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Removes tags from the tag group.
|
|
31
|
+
*
|
|
32
|
+
* @param tagGroup The tag group.
|
|
33
|
+
* @param tags Tags to remove.
|
|
34
|
+
* @return The tag group editor instance.
|
|
35
|
+
*/
|
|
36
|
+
removeTags(group, tags) {
|
|
37
|
+
const operation = { operationType: 'remove', group: group, tags: tags };
|
|
38
|
+
this.operations.push(operation);
|
|
39
|
+
return this;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Overwrite the current set of tags on the Tag Group.
|
|
43
|
+
*
|
|
44
|
+
* @param tagGroup The tag group.
|
|
45
|
+
* @param tags Tags to set.
|
|
46
|
+
* @return The tag group editor instance.
|
|
47
|
+
*/
|
|
48
|
+
setTags(group, tags) {
|
|
49
|
+
const operation = { operationType: 'set', group: group, tags: tags };
|
|
50
|
+
this.operations.push(operation);
|
|
51
|
+
return this;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Applies the tag changes.
|
|
55
|
+
*/
|
|
56
|
+
apply() {
|
|
57
|
+
return this.onApply(this.operations);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=TagGroupEditor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagGroupEditor.js","sourceRoot":"","sources":["../../src/TagGroupEditor.ts"],"names":[],"mappings":"AAAA,wCAAwC;AAExC,YAAY,CAAC;AAqBb;;GAEG;AACH,MAAM,OAAO,cAAc;IAIzB;;;;;OAKG;IACH,YAAY,OAA2D;QACrE,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;IACvB,CAAC;IAED;;;;;;OAMG;IACH,OAAO,CAAC,KAAa,EAAE,IAAc;QACnC,MAAM,SAAS,GAAG,EAAE,aAAa,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;QACrE,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;OAMG;IACH,UAAU,CAAC,KAAa,EAAE,IAAc;QACtC,MAAM,SAAS,GAAG,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;QACxE,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;OAMG;IACH,OAAO,CAAC,KAAa,EAAE,IAAc;QACnC,MAAM,SAAS,GAAG,EAAE,aAAa,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;QACrE,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACH,KAAK;QACH,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IACvC,CAAC;CACF","sourcesContent":["/* Copyright Airship and Contributors */\n\n'use strict';\n\n/**\n * Tag group operation.\n * @hidden\n */\nexport interface TagGroupOperation {\n /**\n * The operation name\n */\n operationType: string;\n /**\n * The tag group name\n */\n group: string;\n /**\n * An array of tags.\n */\n tags: string[];\n}\n\n/**\n * Editor for tag groups.\n */\nexport class TagGroupEditor {\n onApply: (operations: TagGroupOperation[]) => Promise<void>;\n operations: TagGroupOperation[];\n\n /**\n * TagGroupEditor constructor\n *\n * @hidden\n * @param onApply The apply function\n */\n constructor(onApply: (operations: TagGroupOperation[]) => Promise<void>) {\n this.onApply = onApply;\n this.operations = [];\n }\n\n /**\n * Adds tags to a tag group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to add.\n * @return The tag group editor instance.\n */\n addTags(group: string, tags: string[]): TagGroupEditor {\n const operation = { operationType: 'add', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n\n /**\n * Removes tags from the tag group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to remove.\n * @return The tag group editor instance.\n */\n removeTags(group: string, tags: string[]): TagGroupEditor {\n const operation = { operationType: 'remove', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n\n /**\n * Overwrite the current set of tags on the Tag Group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to set.\n * @return The tag group editor instance.\n */\n setTags(group: string, tags: string[]): TagGroupEditor {\n const operation = { operationType: 'set', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n\n /**\n * Applies the tag changes.\n */\n apply(): Promise<void> {\n return this.onApply(this.operations);\n }\n}\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AirshipRoot } from './AirshipRoot';
|
|
2
|
+
export { AirshipRoot } from './AirshipRoot';
|
|
3
|
+
export { AirshipActions } from './AirshipActions';
|
|
4
|
+
export { AirshipAnalytics } from './AirshipAnalytics';
|
|
5
|
+
export { AirshipChannel } from './AirshipChannel';
|
|
6
|
+
export { AirshipContact } from './AirshipContact';
|
|
7
|
+
export { AirshipInApp } from './AirshipInApp';
|
|
8
|
+
export { AirshipLocale } from './AirshipLocale';
|
|
9
|
+
export { AirshipMessageCenter } from './AirshipMessageCenter';
|
|
10
|
+
export { AirshipPreferenceCenter } from './AirshipPreferenceCenter';
|
|
11
|
+
export { AirshipPrivacyManager } from './AirshipPrivacyManager';
|
|
12
|
+
export { AirshipFeatureFlagManager } from './AirshipFeatureFlagManager';
|
|
13
|
+
export { AirshipPush, AirshipPushAndroid, AirshipPushIOS } from './AirshipPush';
|
|
14
|
+
export { SubscriptionListEditor } from './SubscriptionListEditor';
|
|
15
|
+
export { TagGroupEditor } from './TagGroupEditor';
|
|
16
|
+
export { ScopedSubscriptionListEditor } from './ScopedSubscriptionListEditor';
|
|
17
|
+
export { AttributeEditor } from './AttributeEditor';
|
|
18
|
+
export * from './types';
|
|
19
|
+
declare const Airship: AirshipRoot;
|
|
20
|
+
export { Airship };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { registerPlugin } from '@capacitor/core';
|
|
2
|
+
import { AirshipRoot } from './AirshipRoot';
|
|
3
|
+
import { AirshipPluginWrapper } from './AirshipPlugin';
|
|
4
|
+
export { AirshipRoot } from './AirshipRoot';
|
|
5
|
+
export { AirshipActions } from './AirshipActions';
|
|
6
|
+
export { AirshipAnalytics } from './AirshipAnalytics';
|
|
7
|
+
export { AirshipChannel } from './AirshipChannel';
|
|
8
|
+
export { AirshipContact } from './AirshipContact';
|
|
9
|
+
export { AirshipInApp } from './AirshipInApp';
|
|
10
|
+
export { AirshipLocale } from './AirshipLocale';
|
|
11
|
+
export { AirshipMessageCenter } from './AirshipMessageCenter';
|
|
12
|
+
export { AirshipPreferenceCenter } from './AirshipPreferenceCenter';
|
|
13
|
+
export { AirshipPrivacyManager } from './AirshipPrivacyManager';
|
|
14
|
+
export { AirshipFeatureFlagManager } from './AirshipFeatureFlagManager';
|
|
15
|
+
export { AirshipPush, AirshipPushAndroid, AirshipPushIOS } from './AirshipPush';
|
|
16
|
+
export { SubscriptionListEditor } from './SubscriptionListEditor';
|
|
17
|
+
export { TagGroupEditor } from './TagGroupEditor';
|
|
18
|
+
export { ScopedSubscriptionListEditor } from './ScopedSubscriptionListEditor';
|
|
19
|
+
export { AttributeEditor } from './AttributeEditor';
|
|
20
|
+
export * from './types';
|
|
21
|
+
const plugin = registerPlugin('Airship', {});
|
|
22
|
+
const sharedAirship = new AirshipRoot(new AirshipPluginWrapper(plugin));
|
|
23
|
+
const Airship = sharedAirship;
|
|
24
|
+
export { Airship };
|
|
25
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEjD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAEvD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AAExE,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,cAAc,SAAS,CAAC;AAExB,MAAM,MAAM,GAAG,cAAc,CAAgB,SAAS,EAAE,EAAE,CAAC,CAAC;AAE5D,MAAM,aAAa,GAAG,IAAI,WAAW,CAAC,IAAI,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC;AAExE,MAAM,OAAO,GAAG,aAAa,CAAC;AAC9B,OAAO,EAAE,OAAO,EAAE,CAAC","sourcesContent":["\nimport { registerPlugin } from '@capacitor/core';\n\nimport { AirshipRoot } from './AirshipRoot';\nimport type { AirshipPlugin } from './AirshipPlugin';\nimport { AirshipPluginWrapper } from './AirshipPlugin';\n\nexport { AirshipRoot } from './AirshipRoot';\nexport { AirshipActions } from './AirshipActions';\nexport { AirshipAnalytics } from './AirshipAnalytics';\nexport { AirshipChannel } from './AirshipChannel';\nexport { AirshipContact } from './AirshipContact';\nexport { AirshipInApp } from './AirshipInApp';\nexport { AirshipLocale } from './AirshipLocale';\nexport { AirshipMessageCenter } from './AirshipMessageCenter';\nexport { AirshipPreferenceCenter } from './AirshipPreferenceCenter';\nexport { AirshipPrivacyManager } from './AirshipPrivacyManager';\nexport { AirshipFeatureFlagManager } from './AirshipFeatureFlagManager';\n\nexport { AirshipPush, AirshipPushAndroid, AirshipPushIOS } from './AirshipPush';\nexport { SubscriptionListEditor } from './SubscriptionListEditor';\nexport { TagGroupEditor } from './TagGroupEditor';\nexport { ScopedSubscriptionListEditor } from './ScopedSubscriptionListEditor';\nexport { AttributeEditor } from './AttributeEditor';\n\nexport * from './types';\n\nconst plugin = registerPlugin<AirshipPlugin>('Airship', {});\n\nconst sharedAirship = new AirshipRoot(new AirshipPluginWrapper(plugin));\n\nconst Airship = sharedAirship;\nexport { Airship };\n"]}
|