@doorstepai/dropoff-sdk 1.0.8 → 1.0.10

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.
Files changed (27) hide show
  1. package/README.md +33 -19
  2. package/android/build.gradle +1 -1
  3. package/android/src/main/java/com/doorstepai/dropoffsdk/DoorstepAIModule.kt +5 -15
  4. package/ios/DoorstepDropoffSDK.xcframework/Info.plist +5 -5
  5. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/DoorstepDropoffSDK +0 -0
  6. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.abi.json +33 -26
  7. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/_CodeSignature/CodeResources +4 -4
  8. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/DWARF/DoorstepDropoffSDK +0 -0
  9. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/aarch64/DoorstepDropoffSDK.yml +797 -734
  10. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/DoorstepDropoffSDK +0 -0
  11. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +33 -26
  12. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +33 -26
  13. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/_CodeSignature/CodeResources +8 -8
  14. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/DWARF/DoorstepDropoffSDK +0 -0
  15. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/aarch64/DoorstepDropoffSDK.yml +822 -759
  16. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/x86_64/DoorstepDropoffSDK.yml +822 -759
  17. package/lib/module/DoorstepAI.js +2 -2
  18. package/lib/module/DoorstepAI.js.map +1 -1
  19. package/lib/module/RootDoorstepAI.js +1 -1
  20. package/lib/module/RootDoorstepAI.js.map +1 -1
  21. package/lib/typescript/src/DoorstepAI.d.ts +1 -1
  22. package/lib/typescript/src/DoorstepAI.d.ts.map +1 -1
  23. package/lib/typescript/src/RootDoorstepAI.d.ts +2 -0
  24. package/lib/typescript/src/RootDoorstepAI.d.ts.map +1 -1
  25. package/package.json +1 -1
  26. package/src/DoorstepAI.tsx +2 -2
  27. package/src/RootDoorstepAI.tsx +2 -2
package/README.md CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  # DoorstepAI Dropoff SDK for React Native
3
2
 
4
3
  The `@doorstepai/dropoff-sdk` provides a set of tools to integrate delivery tracking into your React Native application. This SDK enables seamless coordination between your delivery interface and DoorstepAI's backend systems.
@@ -52,22 +51,35 @@ import { DoorstepAI } from "@doorstepai/dropoff-sdk"
52
51
 
53
52
  // Start a delivery using a Google Place ID
54
53
  <Button title="Start Delivery" onPress={() => {
55
- DoorstepAI.startDeliveryByPlaceID("213");
54
+ DoorstepAI.startDeliveryByPlaceID('destination_place_id', 'delivery_id_1');
55
+ }} />
56
+
57
+ // Start a delivery using an address
58
+ <Button title="Start Delivery by Address" onPress={() => {
59
+ const address = {
60
+ streetNumber: '123',
61
+ route: 'Main St',
62
+ subPremise: 'Apt 4B',
63
+ locality: 'New York',
64
+ administrativeAreaLevel1: 'NY',
65
+ postalCode: '10001'
66
+ };
67
+ DoorstepAI.startDeliveryByAddress(address, 'delivery_id_1');
56
68
  }} />
57
69
 
58
70
  // Send "taking_pod" event
59
71
  <Button title="Taking POD" onPress={() => {
60
- DoorstepAI.newEvent("taking_pod");
72
+ DoorstepAI.newEvent('taking_pod', 'delivery_id_1');
61
73
  }} />
62
74
 
63
75
  // Send "pod_captured" event
64
76
  <Button title="POD Captured" onPress={() => {
65
- DoorstepAI.newEvent("pod_captured");
77
+ DoorstepAI.newEvent('pod_captured', 'delivery_id_1');
66
78
  }} />
67
79
 
68
80
  // End the delivery
69
81
  <Button title="End Delivery" onPress={() => {
70
- DoorstepAI.stopDelivery();
82
+ DoorstepAI.stopDelivery('delivery_id_1');
71
83
  }} />
72
84
  ```
73
85
 
@@ -89,43 +101,44 @@ Sets the API key to authenticate SDK usage.
89
101
 
90
102
  ---
91
103
 
92
- ### `DoorstepAI.startDeliveryByPlaceID(placeID: string): Promise<void>`
104
+ ### `DoorstepAI.startDeliveryByPlaceID(placeID: string, deliveryId: string): Promise<string>`
93
105
 
94
- Starts a delivery using a Google Place ID.
106
+ Starts a delivery using a Google Place ID. Returns a session ID on success.
95
107
 
96
108
  ---
97
109
 
98
- ### `DoorstepAI.startDeliveryByPlusCode(plusCode: string): Promise<void>`
110
+ ### `DoorstepAI.startDeliveryByPlusCode(plusCode: string, deliveryId: string): Promise<string>`
99
111
 
100
- Starts a delivery using a Google Plus Code.
112
+ Starts a delivery using a Google Plus Code. Returns a session ID on success.
101
113
 
102
114
  ---
103
115
 
104
- ### `DoorstepAI.startDeliveryByAddress(address: AddressType): Promise<void>`
116
+ ### `DoorstepAI.startDeliveryByAddress(address: AddressType, deliveryId: string): Promise<string>`
105
117
 
106
- Starts a delivery using a structured address object.
118
+ Starts a delivery using a structured address object. Returns a session ID on success.
107
119
 
108
120
  ```ts
109
121
  type AddressType = {
110
122
  streetNumber: string;
111
123
  route: string;
112
- locality: string;
113
- administrativeAreaLevel1: string;
124
+ subPremise: string; // Apartment, suite, unit, etc.
125
+ locality: string; // City
126
+ administrativeAreaLevel1: string; // State/Province
114
127
  postalCode: string;
115
128
  }
116
129
  ```
117
130
 
118
131
  ---
119
132
 
120
- ### `DoorstepAI.stopDelivery(): Promise<void>`
133
+ ### `DoorstepAI.stopDelivery(deliveryId: string): Promise<void>`
121
134
 
122
- Stops the current delivery.
135
+ Stops the specified delivery.
123
136
 
124
137
  ---
125
138
 
126
- ### `DoorstepAI.newEvent(eventName: string): Promise<void>`
139
+ ### `DoorstepAI.newEvent(eventName: string, deliveryId: string): Promise<void>`
127
140
 
128
- Sends a delivery-related event. Supported events include:
141
+ Sends a delivery-related event for the specified delivery. Supported events include:
129
142
  - `"taking_pod"`
130
143
  - `"pod_captured"`
131
144
 
@@ -138,6 +151,8 @@ More can be added per vender/customer relationship.
138
151
  - Always wrap `DoorstepAI` API calls in `try/catch` or use `.catch()` for better error handling when applicable.
139
152
  - Use the `RootDoorstepAI` component only **once** at the **root** of your app.
140
153
  - Ensure your API key is securely stored and never hardcoded in production.
154
+ - Always provide a unique `deliveryId` for each delivery session.
155
+ - Keep track of the `deliveryId` throughout the delivery lifecycle as it's required for all operations.
141
156
 
142
157
  ---
143
158
 
@@ -148,8 +163,7 @@ If something isn't working as expected:
148
163
  - Check console logs for `DoorstepAI initialized` or error messages.
149
164
  - Verify that the API key is valid and accepted by the SDK.
150
165
  - Ensure your permissions (e.g., location) are correctly set up on the device.
151
-
152
- ---
166
+ - Verify that you're using the correct `deliveryId` for each operation.
153
167
 
154
168
  ---
155
169
 
@@ -86,7 +86,7 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
86
86
  dependencies {
87
87
  implementation "com.facebook.react:react-android"
88
88
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
89
- implementation("ai.doorstep.com:doorstepai-dropoff-sdk:1.0.1")
89
+ implementation("ai.doorstep.com:doorstepai-dropoff-sdk:1.0.3")
90
90
  api "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1"
91
91
  }
92
92
 
@@ -18,13 +18,13 @@ class DoorstepAIModule(private val reactContext: ReactApplicationContext) :
18
18
  }
19
19
 
20
20
  @ReactMethod
21
- fun init(promise: Promise) {
21
+ fun init(notificationTitle: String?, notificationText: String?, promise: Promise) {
22
22
  try {
23
- DoorstepAI.init(reactContext) { result ->
23
+ DoorstepAI.init(reactContext, notificationTitle, notificationText) { result ->
24
24
  result.onSuccess {
25
25
  promise.resolve(true)
26
26
  }.onFailure { error ->
27
- promise.reject("INIT_ERROR", error.message ?: "Promise Rejection: Failed to initialize DoorstepAI")
27
+ promise.reject("INIT_ERROR", error.message ?: "Failed to initialize DoorstepAI")
28
28
  }
29
29
  }
30
30
  } catch (e: Exception) {
@@ -100,13 +100,8 @@ class DoorstepAIModule(private val reactContext: ReactApplicationContext) :
100
100
  @ReactMethod
101
101
  fun newEvent(eventName: String, deliveryId: String, promise: Promise) {
102
102
  try {
103
- DoorstepAI.newEvent(eventName, deliveryId) { result ->
104
- result.onSuccess { eventResponse ->
105
- promise.resolve(eventResponse)
106
- }.onFailure { error ->
107
- promise.reject("EVENT_CREATION_ERROR", error.message ?: "Promise Rejection: Failed to save event")
108
- }
109
- }
103
+ DoorstepAI.newEvent(eventName, deliveryId) { /* Callback might not be invoked or provide useful data */ }
104
+ promise.resolve("Event $eventName triggered for $deliveryId")
110
105
  } catch (e: Exception) {
111
106
  promise.reject("EVENT_CREATION_ERROR", e.message ?: "Failed to save event")
112
107
  }
@@ -127,11 +122,6 @@ class DoorstepAIModule(private val reactContext: ReactApplicationContext) :
127
122
  DoorstepAI.setAPIKey(key)
128
123
  }
129
124
 
130
- @ReactMethod
131
- fun setDevMode(devModeEnabled: Boolean) {
132
- DoorstepAI.devMode = devModeEnabled
133
- }
134
-
135
125
  companion object {
136
126
  const val NAME = "DoorstepAI"
137
127
  }
@@ -10,18 +10,15 @@
10
10
  <key>DebugSymbolsPath</key>
11
11
  <string>dSYMs</string>
12
12
  <key>LibraryIdentifier</key>
13
- <string>ios-arm64_x86_64-simulator</string>
13
+ <string>ios-arm64</string>
14
14
  <key>LibraryPath</key>
15
15
  <string>DoorstepDropoffSDK.framework</string>
16
16
  <key>SupportedArchitectures</key>
17
17
  <array>
18
18
  <string>arm64</string>
19
- <string>x86_64</string>
20
19
  </array>
21
20
  <key>SupportedPlatform</key>
22
21
  <string>ios</string>
23
- <key>SupportedPlatformVariant</key>
24
- <string>simulator</string>
25
22
  </dict>
26
23
  <dict>
27
24
  <key>BinaryPath</key>
@@ -29,15 +26,18 @@
29
26
  <key>DebugSymbolsPath</key>
30
27
  <string>dSYMs</string>
31
28
  <key>LibraryIdentifier</key>
32
- <string>ios-arm64</string>
29
+ <string>ios-arm64_x86_64-simulator</string>
33
30
  <key>LibraryPath</key>
34
31
  <string>DoorstepDropoffSDK.framework</string>
35
32
  <key>SupportedArchitectures</key>
36
33
  <array>
37
34
  <string>arm64</string>
35
+ <string>x86_64</string>
38
36
  </array>
39
37
  <key>SupportedPlatform</key>
40
38
  <string>ios</string>
39
+ <key>SupportedPlatformVariant</key>
40
+ <string>simulator</string>
41
41
  </dict>
42
42
  </array>
43
43
  <key>CFBundlePackageType</key>
@@ -1879,93 +1879,100 @@
1879
1879
  "value": "\"DoorstepDropoffSDK.LocationManager\""
1880
1880
  },
1881
1881
  {
1882
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1882
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1883
1883
  "kind": "StringLiteral",
1884
- "offset": 2177,
1884
+ "offset": 2175,
1885
1885
  "length": 21,
1886
1886
  "value": "\"NetworkMonitorQueue\""
1887
1887
  },
1888
1888
  {
1889
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1889
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1890
1890
  "kind": "BooleanLiteral",
1891
- "offset": 2230,
1891
+ "offset": 2228,
1892
1892
  "length": 4,
1893
1893
  "value": "true"
1894
1894
  },
1895
1895
  {
1896
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1896
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1897
1897
  "kind": "IntegerLiteral",
1898
- "offset": 2275,
1898
+ "offset": 2273,
1899
1899
  "length": 1,
1900
1900
  "value": "5"
1901
1901
  },
1902
1902
  {
1903
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1903
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1904
1904
  "kind": "IntegerLiteral",
1905
- "offset": 2320,
1905
+ "offset": 2318,
1906
1906
  "length": 2,
1907
1907
  "value": "20"
1908
1908
  },
1909
1909
  {
1910
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1910
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1911
1911
  "kind": "Array",
1912
- "offset": 2410,
1912
+ "offset": 2408,
1913
1913
  "length": 2,
1914
1914
  "value": "[]"
1915
1915
  },
1916
1916
  {
1917
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1917
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1918
1918
  "kind": "StringLiteral",
1919
- "offset": 2465,
1919
+ "offset": 2463,
1920
1920
  "length": 24,
1921
1921
  "value": "\"RequestQueueProcessing\""
1922
1922
  },
1923
1923
  {
1924
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1924
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1925
1925
  "kind": "StringLiteral",
1926
- "offset": 2543,
1926
+ "offset": 2541,
1927
1927
  "length": 24,
1928
1928
  "value": "\"pendingNetworkRequests\""
1929
1929
  },
1930
1930
  {
1931
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1931
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1932
1932
  "kind": "StringLiteral",
1933
- "offset": 2652,
1933
+ "offset": 2650,
1934
1934
  "length": 9,
1935
1935
  "value": "\"network\""
1936
1936
  },
1937
1937
  {
1938
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1938
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1939
1939
  "kind": "BooleanLiteral",
1940
- "offset": 2706,
1940
+ "offset": 2704,
1941
1941
  "length": 4,
1942
1942
  "value": "true"
1943
1943
  },
1944
1944
  {
1945
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1945
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1946
+ "kind": "BooleanLiteral",
1947
+ "offset": 2780,
1948
+ "length": 5,
1949
+ "value": "false"
1950
+ },
1951
+ {
1952
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1946
1953
  "kind": "StringLiteral",
1947
- "offset": 2775,
1954
+ "offset": 2856,
1948
1955
  "length": 2,
1949
1956
  "value": "\"\""
1950
1957
  },
1951
1958
  {
1952
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1959
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1953
1960
  "kind": "Dictionary",
1954
- "offset": 2828,
1961
+ "offset": 2909,
1955
1962
  "length": 3,
1956
1963
  "value": "[]"
1957
1964
  },
1958
1965
  {
1959
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1966
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1960
1967
  "kind": "IntegerLiteral",
1961
- "offset": 13918,
1968
+ "offset": 22877,
1962
1969
  "length": 1,
1963
1970
  "value": "0"
1964
1971
  },
1965
1972
  {
1966
- "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/c.swift",
1973
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1967
1974
  "kind": "IntegerLiteral",
1968
- "offset": 15083,
1975
+ "offset": 25323,
1969
1976
  "length": 1,
1970
1977
  "value": "0"
1971
1978
  },
@@ -14,7 +14,7 @@
14
14
  </data>
15
15
  <key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.abi.json</key>
16
16
  <data>
17
- UpBoOWEU7IEc9MPvU0Tnt8S5LBY=
17
+ Bti4hQv8H3LnIo370ur2hjsg1tM=
18
18
  </data>
19
19
  <key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
20
20
  <data>
@@ -30,7 +30,7 @@
30
30
  </data>
31
31
  <key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
32
32
  <data>
33
- CuN7R2E1ZUinItd8jwKXetvftq0=
33
+ pNdE+zFGYbgP5r0L4uMOH8Gx19Q=
34
34
  </data>
35
35
  <key>Modules/module.modulemap</key>
36
36
  <data>
@@ -50,7 +50,7 @@
50
50
  <dict>
51
51
  <key>hash2</key>
52
52
  <data>
53
- Q62L0T5iYTT6nkMFA5sEwyTUT8LIV2FyLvmH+Gj8bsU=
53
+ lX5ArHpFBCSmgrQ6G4S8UJv2EL9AMg7iCdAiFzySMPw=
54
54
  </data>
55
55
  </dict>
56
56
  <key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
@@ -78,7 +78,7 @@
78
78
  <dict>
79
79
  <key>hash2</key>
80
80
  <data>
81
- f42WeWmfXqqOeD93SkdzR3RifgdC5zXeVOkOHuzJ55o=
81
+ 6lxkCUecX0GS3/kRqxBDgSqHGwxzu+OjrnpizRTBhtA=
82
82
  </data>
83
83
  </dict>
84
84
  <key>Modules/module.modulemap</key>