@qlever-llc/trellis 0.6.1 → 0.7.0-rc.3
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 +6 -2
- package/esm/auth/device_activation.d.ts +194 -0
- package/esm/auth/device_activation.d.ts.map +1 -0
- package/esm/auth/{workload_activation.js → device_activation.js} +85 -60
- package/esm/auth/mod.d.ts +2 -2
- package/esm/auth/mod.d.ts.map +1 -1
- package/esm/auth/mod.js +2 -2
- package/esm/auth/protocol.d.ts +175 -72
- package/esm/auth/protocol.d.ts.map +1 -1
- package/esm/auth/protocol.js +126 -78
- package/esm/contracts/mod.d.ts +19 -3
- package/esm/contracts/mod.d.ts.map +1 -1
- package/esm/contracts/mod.js +28 -4
- package/esm/contracts/protocol.d.ts +34 -0
- package/esm/contracts/protocol.d.ts.map +1 -1
- package/esm/contracts/protocol.js +15 -0
- package/esm/server/deno.d.ts +1 -6
- package/esm/server/deno.d.ts.map +1 -1
- package/esm/server/deno.js +1 -16
- package/esm/server/mod.d.ts +3 -2
- package/esm/server/mod.d.ts.map +1 -1
- package/esm/server/mod.js +2 -2
- package/esm/server/node.d.ts +1 -6
- package/esm/server/node.d.ts.map +1 -1
- package/esm/server/node.js +1 -16
- package/esm/server/service.d.ts +32 -10
- package/esm/server/service.d.ts.map +1 -1
- package/esm/server/service.js +188 -41
- package/esm/server/transfer.d.ts +41 -0
- package/esm/server/transfer.d.ts.map +1 -0
- package/esm/server/transfer.js +418 -0
- package/esm/telemetry/init.d.ts +4 -0
- package/esm/telemetry/init.d.ts.map +1 -0
- package/esm/telemetry/init.js +7 -0
- package/esm/telemetry/mod.d.ts +1 -2
- package/esm/telemetry/mod.d.ts.map +1 -1
- package/esm/telemetry/mod.js +1 -2
- package/esm/telemetry/runtime.d.ts.map +1 -1
- package/esm/telemetry/runtime.js +9 -5
- package/esm/telemetry/trellis.d.ts +0 -1
- package/esm/telemetry/trellis.d.ts.map +1 -1
- package/esm/telemetry/trellis.js +0 -6
- package/esm/trellis/_sdk/auth/api.d.ts.map +1 -1
- package/esm/trellis/_sdk/auth/api.js +132 -110
- package/esm/trellis/_sdk/auth/contract.d.ts +1 -1
- package/esm/trellis/_sdk/auth/contract.d.ts.map +1 -1
- package/esm/trellis/_sdk/auth/contract.js +2 -2
- package/esm/trellis/_sdk/auth/schemas.d.ts +4212 -3069
- package/esm/trellis/_sdk/auth/schemas.d.ts.map +1 -1
- package/esm/trellis/_sdk/auth/schemas.js +144 -125
- package/esm/trellis/_sdk/auth/types.d.ts +417 -267
- package/esm/trellis/_sdk/auth/types.d.ts.map +1 -1
- package/esm/trellis/_sdk/auth/types.js +1 -1
- package/esm/trellis/_sdk/core/contract.d.ts +1 -1
- package/esm/trellis/_sdk/core/contract.d.ts.map +1 -1
- package/esm/trellis/_sdk/core/contract.js +2 -2
- package/esm/trellis/_sdk/core/schemas.d.ts +122 -0
- package/esm/trellis/_sdk/core/schemas.d.ts.map +1 -1
- package/esm/trellis/_sdk/core/schemas.js +4 -4
- package/esm/trellis/_sdk/core/types.d.ts +18 -1
- package/esm/trellis/_sdk/core/types.d.ts.map +1 -1
- package/esm/trellis/_sdk/core/types.js +1 -1
- package/esm/trellis/_sdk/state/_dnt.polyfills.d.ts +12 -0
- package/esm/trellis/_sdk/state/_dnt.polyfills.d.ts.map +1 -0
- package/esm/trellis/_sdk/state/_dnt.polyfills.js +15 -0
- package/esm/trellis/_sdk/state/api.d.ts +10 -0
- package/esm/trellis/_sdk/state/api.d.ts.map +1 -0
- package/esm/trellis/_sdk/state/api.js +71 -0
- package/esm/trellis/_sdk/state/contract.d.ts +8 -0
- package/esm/trellis/_sdk/state/contract.d.ts.map +1 -0
- package/esm/trellis/_sdk/state/contract.js +59 -0
- package/esm/trellis/_sdk/state/mod.d.ts +7 -0
- package/esm/trellis/_sdk/state/mod.d.ts.map +1 -0
- package/esm/trellis/_sdk/state/mod.js +5 -0
- package/esm/trellis/_sdk/state/package.json +3 -0
- package/esm/trellis/_sdk/state/schemas.d.ts +1437 -0
- package/esm/trellis/_sdk/state/schemas.d.ts.map +1 -0
- package/esm/trellis/_sdk/state/schemas.js +62 -0
- package/esm/trellis/_sdk/state/types.d.ts +206 -0
- package/esm/trellis/_sdk/state/types.d.ts.map +1 -0
- package/esm/trellis/_sdk/state/types.js +3 -0
- package/esm/trellis/client_connect.d.ts +53 -0
- package/esm/trellis/client_connect.d.ts.map +1 -0
- package/esm/trellis/client_connect.js +300 -0
- package/esm/trellis/contract.d.ts +1 -7
- package/esm/trellis/contract.d.ts.map +1 -1
- package/esm/trellis/contract.js +1 -12
- package/esm/trellis/device.d.ts +41 -0
- package/esm/trellis/device.d.ts.map +1 -0
- package/esm/trellis/device.js +209 -0
- package/esm/trellis/errors/AuthError.d.ts +1 -1
- package/esm/trellis/errors/AuthError.js +9 -9
- package/esm/trellis/errors/StoreError.d.ts +22 -0
- package/esm/trellis/errors/StoreError.d.ts.map +1 -0
- package/esm/trellis/errors/StoreError.js +41 -0
- package/esm/trellis/errors/TransferError.d.ts +22 -0
- package/esm/trellis/errors/TransferError.d.ts.map +1 -0
- package/esm/trellis/errors/TransferError.js +41 -0
- package/esm/trellis/errors/index.d.ts +8 -0
- package/esm/trellis/errors/index.d.ts.map +1 -1
- package/esm/trellis/errors/index.js +8 -0
- package/esm/trellis/index.d.ts +10 -4
- package/esm/trellis/index.d.ts.map +1 -1
- package/esm/trellis/index.js +6 -4
- package/esm/trellis/kv.d.ts +2 -0
- package/esm/trellis/kv.d.ts.map +1 -1
- package/esm/trellis/kv.js +6 -0
- package/esm/trellis/models/trellis/TrellisError.d.ts +15 -1
- package/esm/trellis/models/trellis/TrellisError.d.ts.map +1 -1
- package/esm/trellis/models/trellis/TrellisError.js +4 -0
- package/esm/trellis/runtime_transport.d.ts +12 -0
- package/esm/trellis/runtime_transport.d.ts.map +1 -0
- package/esm/trellis/runtime_transport.js +35 -0
- package/esm/trellis/sdk/state.d.ts +4 -0
- package/esm/trellis/sdk/state.d.ts.map +1 -0
- package/esm/trellis/sdk/state.js +3 -0
- package/esm/trellis/store.d.ts +51 -0
- package/esm/trellis/store.d.ts.map +1 -0
- package/esm/trellis/store.js +310 -0
- package/esm/trellis/tracing.js +1 -1
- package/esm/trellis/transfer.d.ts +118 -0
- package/esm/trellis/transfer.d.ts.map +1 -0
- package/esm/trellis/transfer.js +357 -0
- package/esm/trellis/trellis.d.ts +3 -0
- package/esm/trellis/trellis.d.ts.map +1 -1
- package/esm/trellis/trellis.js +48 -17
- package/package.json +7 -2
- package/script/auth/device_activation.d.ts +194 -0
- package/script/auth/device_activation.d.ts.map +1 -0
- package/script/auth/{workload_activation.js → device_activation.js} +99 -74
- package/script/auth/mod.d.ts +2 -2
- package/script/auth/mod.d.ts.map +1 -1
- package/script/auth/mod.js +84 -76
- package/script/auth/protocol.d.ts +175 -72
- package/script/auth/protocol.d.ts.map +1 -1
- package/script/auth/protocol.js +129 -81
- package/script/contracts/mod.d.ts +19 -3
- package/script/contracts/mod.d.ts.map +1 -1
- package/script/contracts/mod.js +30 -4
- package/script/contracts/protocol.d.ts +34 -0
- package/script/contracts/protocol.d.ts.map +1 -1
- package/script/contracts/protocol.js +16 -1
- package/script/telemetry/init.d.ts +4 -0
- package/script/telemetry/init.d.ts.map +1 -0
- package/script/telemetry/init.js +11 -0
- package/script/telemetry/mod.d.ts +1 -2
- package/script/telemetry/mod.d.ts.map +1 -1
- package/script/telemetry/mod.js +1 -4
- package/script/telemetry/runtime.d.ts.map +1 -1
- package/script/telemetry/runtime.js +9 -28
- package/script/telemetry/trellis.d.ts +0 -1
- package/script/telemetry/trellis.d.ts.map +1 -1
- package/script/telemetry/trellis.js +0 -7
- package/script/trellis/_sdk/auth/api.d.ts.map +1 -1
- package/script/trellis/_sdk/auth/api.js +132 -110
- package/script/trellis/_sdk/auth/contract.d.ts +1 -1
- package/script/trellis/_sdk/auth/contract.d.ts.map +1 -1
- package/script/trellis/_sdk/auth/contract.js +2 -2
- package/script/trellis/_sdk/auth/schemas.d.ts +4212 -3069
- package/script/trellis/_sdk/auth/schemas.d.ts.map +1 -1
- package/script/trellis/_sdk/auth/schemas.js +144 -125
- package/script/trellis/_sdk/auth/types.d.ts +417 -267
- package/script/trellis/_sdk/auth/types.d.ts.map +1 -1
- package/script/trellis/_sdk/auth/types.js +1 -1
- package/script/trellis/_sdk/core/contract.d.ts +1 -1
- package/script/trellis/_sdk/core/contract.d.ts.map +1 -1
- package/script/trellis/_sdk/core/contract.js +2 -2
- package/script/trellis/_sdk/core/schemas.d.ts +122 -0
- package/script/trellis/_sdk/core/schemas.d.ts.map +1 -1
- package/script/trellis/_sdk/core/schemas.js +4 -4
- package/script/trellis/_sdk/core/types.d.ts +18 -1
- package/script/trellis/_sdk/core/types.d.ts.map +1 -1
- package/script/trellis/_sdk/core/types.js +1 -1
- package/script/trellis/_sdk/state/_dnt.polyfills.d.ts +12 -0
- package/script/trellis/_sdk/state/_dnt.polyfills.d.ts.map +1 -0
- package/script/trellis/_sdk/state/_dnt.polyfills.js +16 -0
- package/script/trellis/_sdk/state/api.d.ts +10 -0
- package/script/trellis/_sdk/state/api.d.ts.map +1 -0
- package/script/trellis/_sdk/state/api.js +74 -0
- package/script/trellis/_sdk/state/contract.d.ts +8 -0
- package/script/trellis/_sdk/state/contract.d.ts.map +1 -0
- package/script/trellis/_sdk/state/contract.js +62 -0
- package/script/trellis/_sdk/state/mod.d.ts +7 -0
- package/script/trellis/_sdk/state/mod.d.ts.map +1 -0
- package/script/trellis/_sdk/state/mod.js +30 -0
- package/script/trellis/_sdk/state/package.json +3 -0
- package/script/trellis/_sdk/state/schemas.d.ts +1437 -0
- package/script/trellis/_sdk/state/schemas.d.ts.map +1 -0
- package/script/trellis/_sdk/state/schemas.js +65 -0
- package/script/trellis/_sdk/state/types.d.ts +206 -0
- package/script/trellis/_sdk/state/types.d.ts.map +1 -0
- package/script/trellis/_sdk/state/types.js +6 -0
- package/script/trellis/client_connect.d.ts +53 -0
- package/script/trellis/client_connect.d.ts.map +1 -0
- package/script/trellis/client_connect.js +304 -0
- package/script/trellis/contract.d.ts +1 -7
- package/script/trellis/contract.d.ts.map +1 -1
- package/script/trellis/contract.js +1 -12
- package/script/trellis/device.d.ts +41 -0
- package/script/trellis/device.d.ts.map +1 -0
- package/script/trellis/device.js +213 -0
- package/script/trellis/errors/AuthError.d.ts +1 -1
- package/script/trellis/errors/AuthError.js +9 -9
- package/script/trellis/errors/StoreError.d.ts +22 -0
- package/script/trellis/errors/StoreError.d.ts.map +1 -0
- package/script/trellis/errors/StoreError.js +48 -0
- package/script/trellis/errors/TransferError.d.ts +22 -0
- package/script/trellis/errors/TransferError.d.ts.map +1 -0
- package/script/trellis/errors/TransferError.js +48 -0
- package/script/trellis/errors/index.d.ts +8 -0
- package/script/trellis/errors/index.d.ts.map +1 -1
- package/script/trellis/errors/index.js +13 -1
- package/script/trellis/index.d.ts +10 -4
- package/script/trellis/index.d.ts.map +1 -1
- package/script/trellis/index.js +17 -6
- package/script/trellis/kv.d.ts +2 -0
- package/script/trellis/kv.d.ts.map +1 -1
- package/script/trellis/kv.js +6 -0
- package/script/trellis/models/trellis/TrellisError.d.ts +15 -1
- package/script/trellis/models/trellis/TrellisError.d.ts.map +1 -1
- package/script/trellis/models/trellis/TrellisError.js +4 -0
- package/script/trellis/runtime_transport.d.ts +12 -0
- package/script/trellis/runtime_transport.d.ts.map +1 -0
- package/script/trellis/runtime_transport.js +37 -0
- package/script/trellis/store.d.ts +51 -0
- package/script/trellis/store.d.ts.map +1 -0
- package/script/trellis/store.js +316 -0
- package/script/trellis/tracing.js +1 -1
- package/script/trellis/transfer.d.ts +118 -0
- package/script/trellis/transfer.d.ts.map +1 -0
- package/script/trellis/transfer.js +367 -0
- package/script/trellis/trellis.d.ts +3 -0
- package/script/trellis/trellis.d.ts.map +1 -1
- package/script/trellis/trellis.js +48 -17
- package/esm/auth/workload_activation.d.ts +0 -192
- package/esm/auth/workload_activation.d.ts.map +0 -1
- package/esm/trellis/workload.d.ts +0 -45
- package/esm/trellis/workload.d.ts.map +0 -1
- package/esm/trellis/workload.js +0 -144
- package/script/auth/workload_activation.d.ts +0 -192
- package/script/auth/workload_activation.d.ts.map +0 -1
- package/script/trellis/workload.d.ts +0 -45
- package/script/trellis/workload.d.ts.map +0 -1
- package/script/trellis/workload.js +0 -172
package/script/auth/mod.js
CHANGED
|
@@ -9,25 +9,26 @@
|
|
|
9
9
|
* - Services load their session key seed from `TRELLIS_SESSION_KEY_SEED`.
|
|
10
10
|
*/
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
Object.defineProperty(exports, "
|
|
18
|
-
Object.defineProperty(exports, "
|
|
19
|
-
Object.defineProperty(exports, "
|
|
20
|
-
Object.defineProperty(exports, "
|
|
21
|
-
Object.defineProperty(exports, "
|
|
22
|
-
Object.defineProperty(exports, "
|
|
23
|
-
Object.defineProperty(exports, "
|
|
24
|
-
Object.defineProperty(exports, "
|
|
25
|
-
Object.defineProperty(exports, "
|
|
26
|
-
Object.defineProperty(exports, "
|
|
27
|
-
Object.defineProperty(exports, "
|
|
28
|
-
Object.defineProperty(exports, "
|
|
29
|
-
Object.defineProperty(exports, "
|
|
30
|
-
Object.defineProperty(exports, "
|
|
12
|
+
exports.AuthDeviceActivationReviewRequestedEventSchema = exports.AuthDecideDeviceActivationReviewSchema = exports.AuthDecideDeviceActivationReviewResponseSchema = exports.AuthCreatePortalSchema = exports.AuthCreatePortalResponseSchema = exports.AuthCreateDeviceProfileSchema = exports.AuthCreateDeviceProfileResponseSchema = exports.AuthClearLoginPortalSelectionSchema = exports.AuthClearLoginPortalSelectionResponseSchema = exports.AuthClearDevicePortalSelectionSchema = exports.AuthClearDevicePortalSelectionResponseSchema = exports.AuthActivateDeviceSchema = exports.AuthActivateDeviceResponseSchema = exports.ApprovalRecordViewSchema = exports.verifyProof = exports.createProof = exports.buildProofInput = exports.submitPortalApproval = exports.signBytes = exports.portalRedirectLocation = exports.portalProviderLoginUrl = exports.portalFlowIdFromUrl = exports.natsConnectSigForBindingToken = exports.loadSessionKey = exports.isBindSuccessResponse = exports.hasSessionKey = exports.getPublicSessionKey = exports.getOrCreateSessionKey = exports.generateSessionKey = exports.fetchPortalFlowState = exports.createRpcProof = exports.clearSessionKey = exports.buildLoginUrl = exports.bindSession = exports.bindFlow = exports.waitForDeviceActivation = exports.verifyDeviceWaitSignature = exports.verifyDeviceConfirmationCode = exports.signDeviceWaitRequest = exports.parseDeviceActivationPayload = exports.getDeviceConnectInfo = exports.encodeDeviceActivationPayload = exports.deriveDeviceQrMac = exports.deriveDeviceIdentity = exports.deriveDeviceConfirmationCode = exports.createDeviceNatsAuthToken = exports.createDeviceActivationClient = exports.buildDeviceWaitProofInput = exports.buildDeviceActivationUrl = exports.buildDeviceActivationPayload = void 0;
|
|
13
|
+
exports.AuthRevokeApprovalResponseSchema = exports.AuthProvisionDeviceInstanceSchema = exports.AuthProvisionDeviceInstanceResponseSchema = exports.AuthMeSchema = exports.AuthMeResponseSchema = exports.AuthListUsersSchema = exports.AuthListUsersResponseSchema = exports.AuthListServicesSchema = exports.AuthListServicesResponseSchema = exports.AuthListPortalsSchema = exports.AuthListPortalsResponseSchema = exports.AuthListLoginPortalSelectionsSchema = exports.AuthListLoginPortalSelectionsResponseSchema = exports.AuthListInstalledContractsSchema = exports.AuthListInstalledContractsResponseSchema = exports.AuthListDeviceProfilesSchema = exports.AuthListDeviceProfilesResponseSchema = exports.AuthListDevicePortalSelectionsSchema = exports.AuthListDevicePortalSelectionsResponseSchema = exports.AuthListInstanceGrantPoliciesSchema = exports.AuthListInstanceGrantPoliciesResponseSchema = exports.AuthListDeviceInstancesSchema = exports.AuthListDeviceInstancesResponseSchema = exports.AuthListDeviceActivationsSchema = exports.AuthListDeviceActivationsResponseSchema = exports.AuthListDeviceActivationReviewsSchema = exports.AuthListDeviceActivationReviewsResponseSchema = exports.AuthListApprovalsSchema = exports.AuthListApprovalsResponseSchema = exports.AuthInstallServiceSchema = exports.AuthInstallServiceResponseSchema = exports.AuthGetLoginPortalDefaultSchema = exports.AuthGetLoginPortalDefaultResponseSchema = exports.AuthGetInstalledContractSchema = exports.AuthGetInstalledContractResponseSchema = exports.AuthGetDevicePortalDefaultSchema = exports.AuthGetDevicePortalDefaultResponseSchema = exports.AuthGetDeviceConnectInfoSchema = exports.AuthGetDeviceConnectInfoResponseSchema = exports.AuthGetDeviceActivationStatusSchema = exports.AuthGetDeviceActivationStatusResponseSchema = exports.AuthenticatedDeviceSchema = exports.AuthDisablePortalSchema = exports.AuthDisablePortalResponseSchema = exports.AuthDisableDeviceProfileSchema = exports.AuthDisableDeviceProfileResponseSchema = exports.AuthDisableInstanceGrantPolicySchema = exports.AuthDisableInstanceGrantPolicyResponseSchema = exports.AuthDisableDeviceInstanceSchema = exports.AuthDisableDeviceInstanceResponseSchema = void 0;
|
|
14
|
+
exports.createAuth = exports.SentinelCredsSchema = exports.NatsAuthTokenV1Schema = exports.LoginQuerySchema = exports.ContractApprovalSchema = exports.BindSuccessResponseSchema = exports.BindResponseSchema = exports.BindRequestSchema = exports.ApprovalDecisionSchema = exports.WaitForDeviceActivationResponseSchema = exports.UserViewSchema = exports.ServiceViewSchema = exports.PortalSchema = exports.PortalFlowStateSchema = exports.OpenObjectSchema = exports.LoginPortalSelectionSchema = exports.LoginPortalDefaultSchema = exports.InstanceGrantPolicySchema = exports.InstalledContractSchema = exports.InstalledContractDetailSchema = exports.DigestSchema = exports.DeviceSchema = exports.DeviceProfileSchema = exports.DevicePortalSelectionSchema = exports.DevicePortalDefaultSchema = exports.DeviceConnectInfoSchema = exports.DeviceActivationReviewSchema = exports.DeviceActivationRecordSchema = exports.ContractAnalysisSummarySchema = exports.ContractAnalysisSchema = exports.CallerViewSchema = exports.AuthValidateRequestSchema = exports.AuthValidateRequestResponseSchema = exports.AuthUpgradeServiceContractSchema = exports.AuthUpgradeServiceContractResponseSchema = exports.AuthUpdateUserSchema = exports.AuthUpdateUserResponseSchema = exports.AuthSetLoginPortalSelectionSchema = exports.AuthSetLoginPortalSelectionResponseSchema = exports.AuthSetLoginPortalDefaultSchema = exports.AuthSetLoginPortalDefaultResponseSchema = exports.AuthUpsertInstanceGrantPolicySchema = exports.AuthUpsertInstanceGrantPolicyResponseSchema = exports.AuthSetDevicePortalSelectionSchema = exports.AuthSetDevicePortalSelectionResponseSchema = exports.AuthSetDevicePortalDefaultSchema = exports.AuthSetDevicePortalDefaultResponseSchema = exports.AuthRevokeDeviceActivationSchema = exports.AuthRevokeDeviceActivationResponseSchema = exports.AuthRevokeApprovalSchema = void 0;
|
|
15
|
+
exports.utf8 = exports.toArrayBuffer = exports.sha256 = exports.canonicalizeJsonValue = exports.base64urlEncode = exports.base64urlDecode = exports.trellisIdFromOriginId = void 0;
|
|
16
|
+
var device_activation_ts_1 = require("./device_activation.ts");
|
|
17
|
+
Object.defineProperty(exports, "buildDeviceActivationPayload", { enumerable: true, get: function () { return device_activation_ts_1.buildDeviceActivationPayload; } });
|
|
18
|
+
Object.defineProperty(exports, "buildDeviceActivationUrl", { enumerable: true, get: function () { return device_activation_ts_1.buildDeviceActivationUrl; } });
|
|
19
|
+
Object.defineProperty(exports, "buildDeviceWaitProofInput", { enumerable: true, get: function () { return device_activation_ts_1.buildDeviceWaitProofInput; } });
|
|
20
|
+
Object.defineProperty(exports, "createDeviceActivationClient", { enumerable: true, get: function () { return device_activation_ts_1.createDeviceActivationClient; } });
|
|
21
|
+
Object.defineProperty(exports, "createDeviceNatsAuthToken", { enumerable: true, get: function () { return device_activation_ts_1.createDeviceNatsAuthToken; } });
|
|
22
|
+
Object.defineProperty(exports, "deriveDeviceConfirmationCode", { enumerable: true, get: function () { return device_activation_ts_1.deriveDeviceConfirmationCode; } });
|
|
23
|
+
Object.defineProperty(exports, "deriveDeviceIdentity", { enumerable: true, get: function () { return device_activation_ts_1.deriveDeviceIdentity; } });
|
|
24
|
+
Object.defineProperty(exports, "deriveDeviceQrMac", { enumerable: true, get: function () { return device_activation_ts_1.deriveDeviceQrMac; } });
|
|
25
|
+
Object.defineProperty(exports, "encodeDeviceActivationPayload", { enumerable: true, get: function () { return device_activation_ts_1.encodeDeviceActivationPayload; } });
|
|
26
|
+
Object.defineProperty(exports, "getDeviceConnectInfo", { enumerable: true, get: function () { return device_activation_ts_1.getDeviceConnectInfo; } });
|
|
27
|
+
Object.defineProperty(exports, "parseDeviceActivationPayload", { enumerable: true, get: function () { return device_activation_ts_1.parseDeviceActivationPayload; } });
|
|
28
|
+
Object.defineProperty(exports, "signDeviceWaitRequest", { enumerable: true, get: function () { return device_activation_ts_1.signDeviceWaitRequest; } });
|
|
29
|
+
Object.defineProperty(exports, "verifyDeviceConfirmationCode", { enumerable: true, get: function () { return device_activation_ts_1.verifyDeviceConfirmationCode; } });
|
|
30
|
+
Object.defineProperty(exports, "verifyDeviceWaitSignature", { enumerable: true, get: function () { return device_activation_ts_1.verifyDeviceWaitSignature; } });
|
|
31
|
+
Object.defineProperty(exports, "waitForDeviceActivation", { enumerable: true, get: function () { return device_activation_ts_1.waitForDeviceActivation; } });
|
|
31
32
|
var browser_ts_1 = require("./browser.ts");
|
|
32
33
|
Object.defineProperty(exports, "bindFlow", { enumerable: true, get: function () { return browser_ts_1.bindFlow; } });
|
|
33
34
|
Object.defineProperty(exports, "bindSession", { enumerable: true, get: function () { return browser_ts_1.bindSession; } });
|
|
@@ -53,103 +54,110 @@ Object.defineProperty(exports, "createProof", { enumerable: true, get: function
|
|
|
53
54
|
Object.defineProperty(exports, "verifyProof", { enumerable: true, get: function () { return proof_ts_1.verifyProof; } });
|
|
54
55
|
var protocol_ts_1 = require("./protocol.ts");
|
|
55
56
|
Object.defineProperty(exports, "ApprovalRecordViewSchema", { enumerable: true, get: function () { return protocol_ts_1.ApprovalRecordViewSchema; } });
|
|
56
|
-
Object.defineProperty(exports, "
|
|
57
|
-
Object.defineProperty(exports, "
|
|
57
|
+
Object.defineProperty(exports, "AuthActivateDeviceResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthActivateDeviceResponseSchema; } });
|
|
58
|
+
Object.defineProperty(exports, "AuthActivateDeviceSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthActivateDeviceSchema; } });
|
|
59
|
+
Object.defineProperty(exports, "AuthClearDevicePortalSelectionResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthClearDevicePortalSelectionResponseSchema; } });
|
|
60
|
+
Object.defineProperty(exports, "AuthClearDevicePortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthClearDevicePortalSelectionSchema; } });
|
|
58
61
|
Object.defineProperty(exports, "AuthClearLoginPortalSelectionResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthClearLoginPortalSelectionResponseSchema; } });
|
|
59
62
|
Object.defineProperty(exports, "AuthClearLoginPortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthClearLoginPortalSelectionSchema; } });
|
|
60
|
-
Object.defineProperty(exports, "
|
|
61
|
-
Object.defineProperty(exports, "
|
|
63
|
+
Object.defineProperty(exports, "AuthCreateDeviceProfileResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthCreateDeviceProfileResponseSchema; } });
|
|
64
|
+
Object.defineProperty(exports, "AuthCreateDeviceProfileSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthCreateDeviceProfileSchema; } });
|
|
62
65
|
Object.defineProperty(exports, "AuthCreatePortalResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthCreatePortalResponseSchema; } });
|
|
63
66
|
Object.defineProperty(exports, "AuthCreatePortalSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthCreatePortalSchema; } });
|
|
64
|
-
Object.defineProperty(exports, "
|
|
65
|
-
Object.defineProperty(exports, "
|
|
67
|
+
Object.defineProperty(exports, "AuthDecideDeviceActivationReviewResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDecideDeviceActivationReviewResponseSchema; } });
|
|
68
|
+
Object.defineProperty(exports, "AuthDecideDeviceActivationReviewSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDecideDeviceActivationReviewSchema; } });
|
|
69
|
+
Object.defineProperty(exports, "AuthDeviceActivationReviewRequestedEventSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDeviceActivationReviewRequestedEventSchema; } });
|
|
70
|
+
Object.defineProperty(exports, "AuthDisableDeviceInstanceResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDisableDeviceInstanceResponseSchema; } });
|
|
71
|
+
Object.defineProperty(exports, "AuthDisableDeviceInstanceSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDisableDeviceInstanceSchema; } });
|
|
72
|
+
Object.defineProperty(exports, "AuthDisableInstanceGrantPolicyResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDisableInstanceGrantPolicyResponseSchema; } });
|
|
73
|
+
Object.defineProperty(exports, "AuthDisableInstanceGrantPolicySchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDisableInstanceGrantPolicySchema; } });
|
|
74
|
+
Object.defineProperty(exports, "AuthDisableDeviceProfileResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDisableDeviceProfileResponseSchema; } });
|
|
75
|
+
Object.defineProperty(exports, "AuthDisableDeviceProfileSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDisableDeviceProfileSchema; } });
|
|
66
76
|
Object.defineProperty(exports, "AuthDisablePortalResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDisablePortalResponseSchema; } });
|
|
67
77
|
Object.defineProperty(exports, "AuthDisablePortalSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDisablePortalSchema; } });
|
|
68
|
-
Object.defineProperty(exports, "
|
|
69
|
-
Object.defineProperty(exports, "
|
|
70
|
-
Object.defineProperty(exports, "
|
|
71
|
-
Object.defineProperty(exports, "
|
|
72
|
-
Object.defineProperty(exports, "
|
|
73
|
-
Object.defineProperty(exports, "
|
|
74
|
-
Object.defineProperty(exports, "
|
|
75
|
-
Object.defineProperty(exports, "AuthGetWorkloadConnectInfoSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetWorkloadConnectInfoSchema; } });
|
|
76
|
-
Object.defineProperty(exports, "AuthGetWorkloadPortalDefaultResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetWorkloadPortalDefaultResponseSchema; } });
|
|
77
|
-
Object.defineProperty(exports, "AuthGetWorkloadPortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetWorkloadPortalDefaultSchema; } });
|
|
78
|
-
Object.defineProperty(exports, "AuthListLoginPortalSelectionsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListLoginPortalSelectionsResponseSchema; } });
|
|
79
|
-
Object.defineProperty(exports, "AuthListLoginPortalSelectionsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListLoginPortalSelectionsSchema; } });
|
|
80
|
-
Object.defineProperty(exports, "AuthListPortalsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListPortalsResponseSchema; } });
|
|
81
|
-
Object.defineProperty(exports, "AuthListPortalsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListPortalsSchema; } });
|
|
82
|
-
Object.defineProperty(exports, "AuthListWorkloadPortalSelectionsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadPortalSelectionsResponseSchema; } });
|
|
83
|
-
Object.defineProperty(exports, "AuthListWorkloadPortalSelectionsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadPortalSelectionsSchema; } });
|
|
84
|
-
Object.defineProperty(exports, "AuthListWorkloadActivationReviewsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadActivationReviewsResponseSchema; } });
|
|
85
|
-
Object.defineProperty(exports, "AuthListWorkloadActivationReviewsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadActivationReviewsSchema; } });
|
|
86
|
-
Object.defineProperty(exports, "AuthListWorkloadActivationsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadActivationsResponseSchema; } });
|
|
87
|
-
Object.defineProperty(exports, "AuthListWorkloadActivationsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadActivationsSchema; } });
|
|
88
|
-
Object.defineProperty(exports, "AuthGetWorkloadActivationStatusResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetWorkloadActivationStatusResponseSchema; } });
|
|
89
|
-
Object.defineProperty(exports, "AuthGetWorkloadActivationStatusSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetWorkloadActivationStatusSchema; } });
|
|
90
|
-
Object.defineProperty(exports, "AuthListWorkloadInstancesResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadInstancesResponseSchema; } });
|
|
91
|
-
Object.defineProperty(exports, "AuthListWorkloadInstancesSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadInstancesSchema; } });
|
|
92
|
-
Object.defineProperty(exports, "AuthListWorkloadProfilesResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadProfilesResponseSchema; } });
|
|
93
|
-
Object.defineProperty(exports, "AuthListWorkloadProfilesSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListWorkloadProfilesSchema; } });
|
|
94
|
-
Object.defineProperty(exports, "AuthProvisionWorkloadInstanceResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthProvisionWorkloadInstanceResponseSchema; } });
|
|
95
|
-
Object.defineProperty(exports, "AuthProvisionWorkloadInstanceSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthProvisionWorkloadInstanceSchema; } });
|
|
96
|
-
Object.defineProperty(exports, "AuthDecideWorkloadActivationReviewResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDecideWorkloadActivationReviewResponseSchema; } });
|
|
97
|
-
Object.defineProperty(exports, "AuthDecideWorkloadActivationReviewSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthDecideWorkloadActivationReviewSchema; } });
|
|
98
|
-
Object.defineProperty(exports, "AuthWorkloadActivationReviewRequestedEventSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthWorkloadActivationReviewRequestedEventSchema; } });
|
|
99
|
-
Object.defineProperty(exports, "AuthRevokeWorkloadActivationResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthRevokeWorkloadActivationResponseSchema; } });
|
|
100
|
-
Object.defineProperty(exports, "AuthRevokeWorkloadActivationSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthRevokeWorkloadActivationSchema; } });
|
|
101
|
-
Object.defineProperty(exports, "AuthSetLoginPortalDefaultResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetLoginPortalDefaultResponseSchema; } });
|
|
102
|
-
Object.defineProperty(exports, "AuthSetLoginPortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetLoginPortalDefaultSchema; } });
|
|
103
|
-
Object.defineProperty(exports, "AuthSetLoginPortalSelectionResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetLoginPortalSelectionResponseSchema; } });
|
|
104
|
-
Object.defineProperty(exports, "AuthSetLoginPortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetLoginPortalSelectionSchema; } });
|
|
105
|
-
Object.defineProperty(exports, "AuthSetWorkloadPortalDefaultResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetWorkloadPortalDefaultResponseSchema; } });
|
|
106
|
-
Object.defineProperty(exports, "AuthSetWorkloadPortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetWorkloadPortalDefaultSchema; } });
|
|
107
|
-
Object.defineProperty(exports, "AuthSetWorkloadPortalSelectionResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetWorkloadPortalSelectionResponseSchema; } });
|
|
108
|
-
Object.defineProperty(exports, "AuthSetWorkloadPortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetWorkloadPortalSelectionSchema; } });
|
|
78
|
+
Object.defineProperty(exports, "AuthenticatedDeviceSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthenticatedDeviceSchema; } });
|
|
79
|
+
Object.defineProperty(exports, "AuthGetDeviceActivationStatusResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetDeviceActivationStatusResponseSchema; } });
|
|
80
|
+
Object.defineProperty(exports, "AuthGetDeviceActivationStatusSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetDeviceActivationStatusSchema; } });
|
|
81
|
+
Object.defineProperty(exports, "AuthGetDeviceConnectInfoResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetDeviceConnectInfoResponseSchema; } });
|
|
82
|
+
Object.defineProperty(exports, "AuthGetDeviceConnectInfoSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetDeviceConnectInfoSchema; } });
|
|
83
|
+
Object.defineProperty(exports, "AuthGetDevicePortalDefaultResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetDevicePortalDefaultResponseSchema; } });
|
|
84
|
+
Object.defineProperty(exports, "AuthGetDevicePortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetDevicePortalDefaultSchema; } });
|
|
109
85
|
Object.defineProperty(exports, "AuthGetInstalledContractResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetInstalledContractResponseSchema; } });
|
|
110
86
|
Object.defineProperty(exports, "AuthGetInstalledContractSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetInstalledContractSchema; } });
|
|
87
|
+
Object.defineProperty(exports, "AuthGetLoginPortalDefaultResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetLoginPortalDefaultResponseSchema; } });
|
|
88
|
+
Object.defineProperty(exports, "AuthGetLoginPortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthGetLoginPortalDefaultSchema; } });
|
|
111
89
|
Object.defineProperty(exports, "AuthInstallServiceResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthInstallServiceResponseSchema; } });
|
|
112
90
|
Object.defineProperty(exports, "AuthInstallServiceSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthInstallServiceSchema; } });
|
|
113
91
|
Object.defineProperty(exports, "AuthListApprovalsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListApprovalsResponseSchema; } });
|
|
114
92
|
Object.defineProperty(exports, "AuthListApprovalsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListApprovalsSchema; } });
|
|
93
|
+
Object.defineProperty(exports, "AuthListDeviceActivationReviewsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDeviceActivationReviewsResponseSchema; } });
|
|
94
|
+
Object.defineProperty(exports, "AuthListDeviceActivationReviewsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDeviceActivationReviewsSchema; } });
|
|
95
|
+
Object.defineProperty(exports, "AuthListDeviceActivationsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDeviceActivationsResponseSchema; } });
|
|
96
|
+
Object.defineProperty(exports, "AuthListDeviceActivationsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDeviceActivationsSchema; } });
|
|
97
|
+
Object.defineProperty(exports, "AuthListDeviceInstancesResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDeviceInstancesResponseSchema; } });
|
|
98
|
+
Object.defineProperty(exports, "AuthListDeviceInstancesSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDeviceInstancesSchema; } });
|
|
99
|
+
Object.defineProperty(exports, "AuthListInstanceGrantPoliciesResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListInstanceGrantPoliciesResponseSchema; } });
|
|
100
|
+
Object.defineProperty(exports, "AuthListInstanceGrantPoliciesSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListInstanceGrantPoliciesSchema; } });
|
|
101
|
+
Object.defineProperty(exports, "AuthListDevicePortalSelectionsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDevicePortalSelectionsResponseSchema; } });
|
|
102
|
+
Object.defineProperty(exports, "AuthListDevicePortalSelectionsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDevicePortalSelectionsSchema; } });
|
|
103
|
+
Object.defineProperty(exports, "AuthListDeviceProfilesResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDeviceProfilesResponseSchema; } });
|
|
104
|
+
Object.defineProperty(exports, "AuthListDeviceProfilesSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListDeviceProfilesSchema; } });
|
|
115
105
|
Object.defineProperty(exports, "AuthListInstalledContractsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListInstalledContractsResponseSchema; } });
|
|
116
106
|
Object.defineProperty(exports, "AuthListInstalledContractsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListInstalledContractsSchema; } });
|
|
107
|
+
Object.defineProperty(exports, "AuthListLoginPortalSelectionsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListLoginPortalSelectionsResponseSchema; } });
|
|
108
|
+
Object.defineProperty(exports, "AuthListLoginPortalSelectionsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListLoginPortalSelectionsSchema; } });
|
|
109
|
+
Object.defineProperty(exports, "AuthListPortalsResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListPortalsResponseSchema; } });
|
|
110
|
+
Object.defineProperty(exports, "AuthListPortalsSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListPortalsSchema; } });
|
|
117
111
|
Object.defineProperty(exports, "AuthListServicesResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListServicesResponseSchema; } });
|
|
118
112
|
Object.defineProperty(exports, "AuthListServicesSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListServicesSchema; } });
|
|
119
113
|
Object.defineProperty(exports, "AuthListUsersResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListUsersResponseSchema; } });
|
|
120
114
|
Object.defineProperty(exports, "AuthListUsersSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthListUsersSchema; } });
|
|
121
115
|
Object.defineProperty(exports, "AuthMeResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthMeResponseSchema; } });
|
|
122
116
|
Object.defineProperty(exports, "AuthMeSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthMeSchema; } });
|
|
117
|
+
Object.defineProperty(exports, "AuthProvisionDeviceInstanceResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthProvisionDeviceInstanceResponseSchema; } });
|
|
118
|
+
Object.defineProperty(exports, "AuthProvisionDeviceInstanceSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthProvisionDeviceInstanceSchema; } });
|
|
123
119
|
Object.defineProperty(exports, "AuthRevokeApprovalResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthRevokeApprovalResponseSchema; } });
|
|
124
120
|
Object.defineProperty(exports, "AuthRevokeApprovalSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthRevokeApprovalSchema; } });
|
|
121
|
+
Object.defineProperty(exports, "AuthRevokeDeviceActivationResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthRevokeDeviceActivationResponseSchema; } });
|
|
122
|
+
Object.defineProperty(exports, "AuthRevokeDeviceActivationSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthRevokeDeviceActivationSchema; } });
|
|
123
|
+
Object.defineProperty(exports, "AuthSetDevicePortalDefaultResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetDevicePortalDefaultResponseSchema; } });
|
|
124
|
+
Object.defineProperty(exports, "AuthSetDevicePortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetDevicePortalDefaultSchema; } });
|
|
125
|
+
Object.defineProperty(exports, "AuthSetDevicePortalSelectionResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetDevicePortalSelectionResponseSchema; } });
|
|
126
|
+
Object.defineProperty(exports, "AuthSetDevicePortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetDevicePortalSelectionSchema; } });
|
|
127
|
+
Object.defineProperty(exports, "AuthUpsertInstanceGrantPolicyResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthUpsertInstanceGrantPolicyResponseSchema; } });
|
|
128
|
+
Object.defineProperty(exports, "AuthUpsertInstanceGrantPolicySchema", { enumerable: true, get: function () { return protocol_ts_1.AuthUpsertInstanceGrantPolicySchema; } });
|
|
129
|
+
Object.defineProperty(exports, "AuthSetLoginPortalDefaultResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetLoginPortalDefaultResponseSchema; } });
|
|
130
|
+
Object.defineProperty(exports, "AuthSetLoginPortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetLoginPortalDefaultSchema; } });
|
|
131
|
+
Object.defineProperty(exports, "AuthSetLoginPortalSelectionResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetLoginPortalSelectionResponseSchema; } });
|
|
132
|
+
Object.defineProperty(exports, "AuthSetLoginPortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthSetLoginPortalSelectionSchema; } });
|
|
125
133
|
Object.defineProperty(exports, "AuthUpdateUserResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthUpdateUserResponseSchema; } });
|
|
126
134
|
Object.defineProperty(exports, "AuthUpdateUserSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthUpdateUserSchema; } });
|
|
127
135
|
Object.defineProperty(exports, "AuthUpgradeServiceContractResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthUpgradeServiceContractResponseSchema; } });
|
|
128
136
|
Object.defineProperty(exports, "AuthUpgradeServiceContractSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthUpgradeServiceContractSchema; } });
|
|
129
137
|
Object.defineProperty(exports, "AuthValidateRequestResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthValidateRequestResponseSchema; } });
|
|
130
138
|
Object.defineProperty(exports, "AuthValidateRequestSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthValidateRequestSchema; } });
|
|
131
|
-
Object.defineProperty(exports, "AuthenticatedWorkloadSchema", { enumerable: true, get: function () { return protocol_ts_1.AuthenticatedWorkloadSchema; } });
|
|
132
139
|
Object.defineProperty(exports, "CallerViewSchema", { enumerable: true, get: function () { return protocol_ts_1.CallerViewSchema; } });
|
|
133
140
|
Object.defineProperty(exports, "ContractAnalysisSchema", { enumerable: true, get: function () { return protocol_ts_1.ContractAnalysisSchema; } });
|
|
134
141
|
Object.defineProperty(exports, "ContractAnalysisSummarySchema", { enumerable: true, get: function () { return protocol_ts_1.ContractAnalysisSummarySchema; } });
|
|
142
|
+
Object.defineProperty(exports, "DeviceActivationRecordSchema", { enumerable: true, get: function () { return protocol_ts_1.DeviceActivationRecordSchema; } });
|
|
143
|
+
Object.defineProperty(exports, "DeviceActivationReviewSchema", { enumerable: true, get: function () { return protocol_ts_1.DeviceActivationReviewSchema; } });
|
|
144
|
+
Object.defineProperty(exports, "DeviceConnectInfoSchema", { enumerable: true, get: function () { return protocol_ts_1.DeviceConnectInfoSchema; } });
|
|
145
|
+
Object.defineProperty(exports, "DevicePortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.DevicePortalDefaultSchema; } });
|
|
146
|
+
Object.defineProperty(exports, "DevicePortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.DevicePortalSelectionSchema; } });
|
|
147
|
+
Object.defineProperty(exports, "DeviceProfileSchema", { enumerable: true, get: function () { return protocol_ts_1.DeviceProfileSchema; } });
|
|
148
|
+
Object.defineProperty(exports, "DeviceSchema", { enumerable: true, get: function () { return protocol_ts_1.DeviceSchema; } });
|
|
135
149
|
Object.defineProperty(exports, "DigestSchema", { enumerable: true, get: function () { return protocol_ts_1.DigestSchema; } });
|
|
136
150
|
Object.defineProperty(exports, "InstalledContractDetailSchema", { enumerable: true, get: function () { return protocol_ts_1.InstalledContractDetailSchema; } });
|
|
137
151
|
Object.defineProperty(exports, "InstalledContractSchema", { enumerable: true, get: function () { return protocol_ts_1.InstalledContractSchema; } });
|
|
152
|
+
Object.defineProperty(exports, "InstanceGrantPolicySchema", { enumerable: true, get: function () { return protocol_ts_1.InstanceGrantPolicySchema; } });
|
|
138
153
|
Object.defineProperty(exports, "LoginPortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.LoginPortalDefaultSchema; } });
|
|
139
154
|
Object.defineProperty(exports, "LoginPortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.LoginPortalSelectionSchema; } });
|
|
140
155
|
Object.defineProperty(exports, "OpenObjectSchema", { enumerable: true, get: function () { return protocol_ts_1.OpenObjectSchema; } });
|
|
141
|
-
Object.defineProperty(exports, "PortalSchema", { enumerable: true, get: function () { return protocol_ts_1.PortalSchema; } });
|
|
142
156
|
Object.defineProperty(exports, "PortalFlowStateSchema", { enumerable: true, get: function () { return protocol_ts_1.PortalFlowStateSchema; } });
|
|
157
|
+
Object.defineProperty(exports, "PortalSchema", { enumerable: true, get: function () { return protocol_ts_1.PortalSchema; } });
|
|
143
158
|
Object.defineProperty(exports, "ServiceViewSchema", { enumerable: true, get: function () { return protocol_ts_1.ServiceViewSchema; } });
|
|
144
159
|
Object.defineProperty(exports, "UserViewSchema", { enumerable: true, get: function () { return protocol_ts_1.UserViewSchema; } });
|
|
145
|
-
Object.defineProperty(exports, "
|
|
146
|
-
Object.defineProperty(exports, "WorkloadActivationReviewSchema", { enumerable: true, get: function () { return protocol_ts_1.WorkloadActivationReviewSchema; } });
|
|
147
|
-
Object.defineProperty(exports, "WorkloadPortalDefaultSchema", { enumerable: true, get: function () { return protocol_ts_1.WorkloadPortalDefaultSchema; } });
|
|
148
|
-
Object.defineProperty(exports, "WorkloadPortalSelectionSchema", { enumerable: true, get: function () { return protocol_ts_1.WorkloadPortalSelectionSchema; } });
|
|
149
|
-
Object.defineProperty(exports, "WorkloadActivationRecordSchema", { enumerable: true, get: function () { return protocol_ts_1.WorkloadActivationRecordSchema; } });
|
|
150
|
-
Object.defineProperty(exports, "WorkloadConnectInfoSchema", { enumerable: true, get: function () { return protocol_ts_1.WorkloadConnectInfoSchema; } });
|
|
151
|
-
Object.defineProperty(exports, "WorkloadProfileSchema", { enumerable: true, get: function () { return protocol_ts_1.WorkloadProfileSchema; } });
|
|
152
|
-
Object.defineProperty(exports, "WorkloadSchema", { enumerable: true, get: function () { return protocol_ts_1.WorkloadSchema; } });
|
|
160
|
+
Object.defineProperty(exports, "WaitForDeviceActivationResponseSchema", { enumerable: true, get: function () { return protocol_ts_1.WaitForDeviceActivationResponseSchema; } });
|
|
153
161
|
var schemas_ts_1 = require("./schemas.ts");
|
|
154
162
|
Object.defineProperty(exports, "ApprovalDecisionSchema", { enumerable: true, get: function () { return schemas_ts_1.ApprovalDecisionSchema; } });
|
|
155
163
|
Object.defineProperty(exports, "BindRequestSchema", { enumerable: true, get: function () { return schemas_ts_1.BindRequestSchema; } });
|