Skip to content

Commit 6352e9d

Browse files
author
Tony Smith
authored
Merge pull request #4 from electricimp/swiftpm-beta
Migrate to Swift Package Manager
2 parents 55f2504 + 2c86fb4 commit 6352e9d

File tree

136 files changed

+464
-2074
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+464
-2074
lines changed

Diff for: .gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
swiftpm
3+
xcuserdata
4+
/.build

Diff for: Package.swift

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// swift-tools-version:5.3
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "BlinkUp",
6+
products: [
7+
.library(
8+
name: "BlinkUp",
9+
targets: ["BlinkUp"]),
10+
],
11+
targets: [
12+
.binaryTarget(
13+
name: "BlinkUp",
14+
url: "https://github.com/electricimp/BlinkUpSDK-iOS/releases/download/20.1.1/blinkup_sdk_ios_v20.1.1.xcframework.zip",
15+
checksum: "7487b4c0dda1ce5b6092995f8a8e09631220d7e119bddc50f31eeb2197a085e4"),
16+
]
17+
)
18+

Diff for: README.md

+31-16
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,38 @@
11
# The Electric Imp BlinkUp SDK for iOS #
22

3-
This repo contains the Electric Imp BlinkUp™ SDK for iOS as it is made available to Electric Imp customers. It mirrors the downloadable files hosted by the [Dev Center](https://developer.electricimp.com/manufacturing/sdkdocs), but in a form that allows developers to add the SDK to their app project repos as a sub-module. This will allow them to pull in SDK changes manually at build time, or automatically through their own build scripts.
3+
This repo contains the Electric Imp BlinkUp™ SDK for iOS as it is made available to Electric Imp customers. It mirrors the downloadable files hosted by the [Dev Center](https://developer.electricimp.com/manufacturing/sdkdocs), but in a form that allows developers to add the SDK to their iOS app projects as a Swift Package.
4+
5+
**Note** The SDK was previously made available as a Git sub-module. This mode is now deprecated and will shortly be removed. We strongly recommend customers add the SDK to their iOS app projects using Xcode’s Swift Package Manager as outlined below.
6+
7+
## Swift Package Installation ##
8+
9+
1. Open your project in Xcode.
10+
1. Go to **File > Swift Packages > Add Package Dependency...** and add this repo as a dependency.
11+
1. Apply your preferred dependency rules.
12+
1. Ensure that your targets `Build Settings` has `-ObjC` set for `Other Linker Flags`
13+
14+
## Moving to Swift Package Manager from a manual install or sub-module ##
15+
16+
1. If you have previously had the SDK installed via sub-module, you can remove the sub-module reference in your git repository.
17+
1. The `BlinkUp.embeddedframework` can be deleted from your Xcode Project.
18+
1. If you wish, you can remove your targets `Build Settings` for the `Framework Search Paths` that references the old framework.
19+
20+
## BlinkUp SDK Documentation ##
21+
22+
To learn how to use the BlinkUp SDK in your app, please see [the SDK documentation](./docs/html/index.html) (HTML).
23+
24+
## Release Notes and Known Issues ##
25+
26+
Please see the [Dev Center SDK page](https://developer.electricimp.com/manufacturing/sdkdocs), or the [SDK documentation in this repo](./docs/html/index.html).
27+
28+
## Pull Requests ##
29+
30+
The BlinkUp SDK repo is considered solely for consumption by a customer’s project. We will not be accepting pull requests made to this repo. If you have support or related questions concerning the SDK, please submit them through your customer account’s [Electric Imp Support access](https://support.electricimp.com/).
431

532
## Sub-module Installation ##
633

34+
**Important** This mode is deprecated and will shortly be removed.
35+
736
To install the SDK as a sub-module, navigate to your project repo directory and then enter the following command:
837

938
```
@@ -22,20 +51,6 @@ To update the sub-module contents at any time, eg. in a build script, call:
2251
git submodule update --remote
2352
```
2453

25-
## BlinkUp SDK Installation ##
26-
27-
To learn how to add the BlinkUp SDK files to your app project, please see the relevant documentation included with each of the SDK:
28-
29-
- [iOS SDK Installation](./sdk/Documentation/html/index.html) (HTML)
30-
31-
## Release Notes and Known Issues ##
32-
33-
Please see the [Dev Center SDK page](https://developer.electricimp.com/manufacturing/sdkdocs), or the [SDK documentation in this repo](./sdk/Documentation/html).
34-
35-
## Pull Requests ##
36-
37-
The BlinkUp SDK repo is considered solely for consumption by a customer’s project. We will not be accepting pull requests made to this repo. If you have support or related questions concerning the SDK, please submit them through your customer account’s [Electric Imp Support access](https://support.electricimp.com/).
38-
3954
---
4055

41-
The BlinkUp SDK is copyright © 2020, Twilio, Inc.
56+
The BlinkUp SDK is copyright © 2023, KORE Wireless.

Diff for: sdk/Documentation/html/Blocks/BUConfigIdCompletionHandler.html renamed to docs/html/Blocks/BUConfigIdCompletionHandler.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h4 class="method-subtitle">Declared In</h4>
112112
<footer>
113113
<div class="footer-copyright">
114114

115-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
115+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
116116

117117

118118
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Blocks/BUDevicePollingDidCompleteBlock.html renamed to docs/html/Blocks/BUDevicePollingDidCompleteBlock.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h4 class="method-subtitle">Declared In</h4>
112112
<footer>
113113
<div class="footer-copyright">
114114

115-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
115+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
116116

117117

118118
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Blocks/BUResignActiveBlock.html renamed to docs/html/Blocks/BUResignActiveBlock.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ <h4 class="method-subtitle">Declared In</h4>
117117
<footer>
118118
<div class="footer-copyright">
119119

120-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
120+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
121121

122122

123123
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Blocks/DevicePollingDidCompleteBlock.html renamed to docs/html/Blocks/DevicePollingDidCompleteBlock.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h4 class="method-subtitle">Declared In</h4>
112112
<footer>
113113
<div class="footer-copyright">
114114

115-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
115+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
116116

117117

118118
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Blocks/FlashResignActiveBlock.html renamed to docs/html/Blocks/FlashResignActiveBlock.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h4 class="method-subtitle">Declared In</h4>
112112
<footer>
113113
<div class="footer-copyright">
114114

115-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
115+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
116116

117117

118118
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUBasicController.html renamed to docs/html/Classes/BUBasicController.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ <h4 class="method-subtitle">Declared In</h4>
576576
<footer>
577577
<div class="footer-copyright">
578578

579-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
579+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
580580

581581

582582
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUConfigId.html renamed to docs/html/Classes/BUConfigId.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ <h4 class="method-subtitle">Declared In</h4>
515515
<footer>
516516
<div class="footer-copyright">
517517

518-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
518+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
519519

520520

521521
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUDHCPAddressing.html renamed to docs/html/Classes/BUDHCPAddressing.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ <h4 class="method-subtitle">Declared In</h4>
174174
<footer>
175175
<div class="footer-copyright">
176176

177-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
177+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
178178

179179

180180
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUDeviceInfo.html renamed to docs/html/Classes/BUDeviceInfo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ <h4 class="method-subtitle">Declared In</h4>
296296
<footer>
297297
<div class="footer-copyright">
298298

299-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
299+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
300300

301301

302302
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUDevicePoller.html renamed to docs/html/Classes/BUDevicePoller.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ <h4 class="method-subtitle">Declared In</h4>
446446
<footer>
447447
<div class="footer-copyright">
448448

449-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
449+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
450450

451451

452452
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUErrorStringParameters.html renamed to docs/html/Classes/BUErrorStringParameters.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ <h4 class="method-subtitle">Declared In</h4>
522522
<footer>
523523
<div class="footer-copyright">
524524

525-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
525+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
526526

527527

528528
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUEthernetConfig.html renamed to docs/html/Classes/BUEthernetConfig.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ <h4 class="method-subtitle">Declared In</h4>
174174
<footer>
175175
<div class="footer-copyright">
176176

177-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
177+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
178178

179179

180180
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUFlashController.html renamed to docs/html/Classes/BUFlashController.html

+54-2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ <h1 id="library-title">
7272

7373
<option value="//api/name/torchOnFlashComplete">torchOnFlashComplete</option>
7474

75+
<option value="//api/name/useTriLevel">useTriLevel</option>
76+
7577
<option value="//api/name/vibrateOnFlashComplete">vibrateOnFlashComplete</option>
7678

7779
</optgroup>
@@ -273,7 +275,7 @@ <h3 class="method-title"><code><a href="#//api/name/interstitialImage">&nbsp;&nb
273275

274276
<p>Suggested iPhone image size of 280x380 pixels \@1x and 560x760 pixels \@2x (retina)
275277
The image will be resized to AspectFit the area up to its instrinsic size
276-
If you are supporting iOS 8+ you can utilize Image Asset Size Classes to
278+
If you are supporting iOS 11+ you can utilize Image Asset Size Classes to
277279
automatically choose an appropriate image for the size class</p>
278280
</div>
279281

@@ -586,6 +588,56 @@ <h4 class="method-subtitle">Discussion</h4>
586588

587589

588590

591+
<div class="method-subsection declared-in-section">
592+
<h4 class="method-subtitle">Declared In</h4>
593+
<p><code class="declared-in-ref">BUFlashController.h</code></p>
594+
</div>
595+
596+
597+
</div>
598+
</div>
599+
</div><div class="section-method">
600+
<a name="//api/name/useTriLevel" title="useTriLevel"></a>
601+
<h3 class="method-title"><code><a href="#//api/name/useTriLevel">&nbsp;&nbsp;useTriLevel</a></code>
602+
</h3>
603+
604+
<div class="method-info">
605+
<div class="pointy-thing"></div>
606+
607+
<div class="method-info-container">
608+
609+
610+
<div class="method-subsection brief-description">
611+
<p>When set to true, BlinkUp will use a tri-level flash pattern rather than a 60hz pattern.
612+
This improves reliability of the process, but increases the time to perform the flash
613+
Defaults to false</p>
614+
</div>
615+
616+
617+
618+
<div class="method-subsection method-declaration"><code>@property (nonatomic, assign) BOOL useTriLevel</code></div>
619+
620+
621+
622+
623+
624+
625+
626+
627+
628+
<div class="method-subsection discussion-section">
629+
<h4 class="method-subtitle">Discussion</h4>
630+
<p>When set to true, BlinkUp will use a tri-level flash pattern rather than a 60hz pattern.
631+
This improves reliability of the process, but increases the time to perform the flash
632+
Defaults to false</p>
633+
</div>
634+
635+
636+
637+
638+
639+
640+
589641
<div class="method-subsection declared-in-section">
590642
<h4 class="method-subtitle">Declared In</h4>
591643
<p><code class="declared-in-ref">BUFlashController.h</code></p>
@@ -719,7 +771,7 @@ <h4 class="method-subtitle">Declared In</h4>
719771
<footer>
720772
<div class="footer-copyright">
721773

722-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
774+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
723775

724776

725777
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUFlashStringParameters.html renamed to docs/html/Classes/BUFlashStringParameters.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ <h4 class="method-subtitle">Declared In</h4>
230230
<footer>
231231
<div class="footer-copyright">
232232

233-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
233+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
234234

235235

236236
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUHelper.html renamed to docs/html/Classes/BUHelper.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ <h4 class="method-subtitle">Declared In</h4>
440440
<footer>
441441
<div class="footer-copyright">
442442

443-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
443+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
444444

445445

446446
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUNetworkAddressing.html renamed to docs/html/Classes/BUNetworkAddressing.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ <h2 class="subtitle subtitle-overview">Overview</h2>
107107
<footer>
108108
<div class="footer-copyright">
109109

110-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
110+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
111111

112112

113113
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUNetworkConfig.html renamed to docs/html/Classes/BUNetworkConfig.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ <h4 class="method-subtitle">Declared In</h4>
314314
<footer>
315315
<div class="footer-copyright">
316316

317-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
317+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
318318

319319

320320
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUNetworkManager.html renamed to docs/html/Classes/BUNetworkManager.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ <h4 class="method-subtitle">Declared In</h4>
386386
<footer>
387387
<div class="footer-copyright">
388388

389-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
389+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
390390

391391

392392
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUNetworkProxy.html renamed to docs/html/Classes/BUNetworkProxy.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ <h4 class="method-subtitle">Declared In</h4>
444444
<footer>
445445
<div class="footer-copyright">
446446

447-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
447+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
448448

449449

450450
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUNetworkSelectController.html renamed to docs/html/Classes/BUNetworkSelectController.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ <h4 class="method-subtitle">Declared In</h4>
408408
<footer>
409409
<div class="footer-copyright">
410410

411-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
411+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
412412

413413

414414
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUNetworkSelectStringParameters.html renamed to docs/html/Classes/BUNetworkSelectStringParameters.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ <h4 class="method-subtitle">Declared In</h4>
12141214
<footer>
12151215
<div class="footer-copyright">
12161216

1217-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
1217+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
12181218

12191219

12201220
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUPinningDescription.html renamed to docs/html/Classes/BUPinningDescription.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ <h4 class="method-subtitle">Declared In</h4>
413413
<footer>
414414
<div class="footer-copyright">
415415

416-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
416+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
417417

418418

419419
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUPinningSPKIData.html renamed to docs/html/Classes/BUPinningSPKIData.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ <h4 class="method-subtitle">Declared In</h4>
480480
<footer>
481481
<div class="footer-copyright">
482482

483-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
483+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
484484

485485

486486
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUSDK.html renamed to docs/html/Classes/BUSDK.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ <h4 class="method-subtitle">Declared In</h4>
727727
<footer>
728728
<div class="footer-copyright">
729729

730-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
730+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
731731

732732

733733
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUStaticAddressing.html renamed to docs/html/Classes/BUStaticAddressing.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ <h4 class="method-subtitle">Declared In</h4>
505505
<footer>
506506
<div class="footer-copyright">
507507

508-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
508+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
509509

510510

511511
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

Diff for: sdk/Documentation/html/Classes/BUWPSConfig.html renamed to docs/html/Classes/BUWPSConfig.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ <h4 class="method-subtitle">Declared In</h4>
236236
<footer>
237237
<div class="footer-copyright">
238238

239-
<p class="copyright">Copyright &copy; 2020 Twilio. All rights reserved. Updated: 2020-07-07</p>
239+
<p class="copyright">Copyright &copy; 2023 KORE Wireless. All rights reserved. Updated: 2023-07-13</p>
240240

241241

242242
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

0 commit comments

Comments
 (0)