Auto-commit 2026-04-29 16:31

This commit is contained in:
2026-04-29 16:31:27 -04:00
parent e8687bb6b2
commit 0495ee5bd2
19691 changed files with 3272886 additions and 138 deletions

49
node_modules/twilio/lib/rest/Supersim.d.ts generated vendored Normal file
View File

@@ -0,0 +1,49 @@
import { EsimProfileListInstance } from "./supersim/v1/esimProfile";
import { FleetListInstance } from "./supersim/v1/fleet";
import { IpCommandListInstance } from "./supersim/v1/ipCommand";
import { NetworkListInstance } from "./supersim/v1/network";
import { NetworkAccessProfileListInstance } from "./supersim/v1/networkAccessProfile";
import { SettingsUpdateListInstance } from "./supersim/v1/settingsUpdate";
import { SimListInstance } from "./supersim/v1/sim";
import { SmsCommandListInstance } from "./supersim/v1/smsCommand";
import { UsageRecordListInstance } from "./supersim/v1/usageRecord";
import SupersimBase from "./SupersimBase";
declare class Supersim extends SupersimBase {
/**
* @deprecated - Use v1.esimProfiles instead
*/
get esimProfiles(): EsimProfileListInstance;
/**
* @deprecated - Use v1.fleets instead
*/
get fleets(): FleetListInstance;
/**
* @deprecated - Use v1.ipCommands instead
*/
get ipCommands(): IpCommandListInstance;
/**
* @deprecated - Use v1.networks instead
*/
get networks(): NetworkListInstance;
/**
* @deprecated - Use v1.settingsUpdates instead
*/
get settingsUpdates(): SettingsUpdateListInstance;
/**
* @deprecated - Use v1.networkAccessProfiles instead
*/
get networkAccessProfiles(): NetworkAccessProfileListInstance;
/**
* @deprecated - Use v1.sims instead
*/
get sims(): SimListInstance;
/**
* @deprecated - Use v1.smsCommands instead
*/
get smsCommands(): SmsCommandListInstance;
/**
* @deprecated - Use v1.usageRecords instead
*/
get usageRecords(): UsageRecordListInstance;
}
export = Supersim;