FRE-709: Document duplicate recovery wake - FRE-635 already recovered via FRE-708
This commit is contained in:
7
node_modules/svix/dist/models/adobeSignConfig.d.ts
generated
vendored
Normal file
7
node_modules/svix/dist/models/adobeSignConfig.d.ts
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface AdobeSignConfig {
|
||||
clientId: string;
|
||||
}
|
||||
export declare const AdobeSignConfigSerializer: {
|
||||
_fromJsonObject(object: any): AdobeSignConfig;
|
||||
_toJsonObject(self: AdobeSignConfig): any;
|
||||
};
|
||||
16
node_modules/svix/dist/models/adobeSignConfig.js
generated
vendored
Normal file
16
node_modules/svix/dist/models/adobeSignConfig.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AdobeSignConfigSerializer = void 0;
|
||||
exports.AdobeSignConfigSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
clientId: object["clientId"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
clientId: self.clientId,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=adobeSignConfig.js.map
|
||||
1
node_modules/svix/dist/models/adobeSignConfig.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/adobeSignConfig.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"adobeSignConfig.js","sourceRoot":"","sources":["../../src/models/adobeSignConfig.ts"],"names":[],"mappings":";;;AAMa,QAAA,yBAAyB,GAAG;IACvC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAC;SAC7B,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAqB;QACjC,OAAO;YACL,QAAQ,EAAE,IAAI,CAAC,QAAQ;SACxB,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
6
node_modules/svix/dist/models/adobeSignConfigOut.d.ts
generated
vendored
Normal file
6
node_modules/svix/dist/models/adobeSignConfigOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface AdobeSignConfigOut {
|
||||
}
|
||||
export declare const AdobeSignConfigOutSerializer: {
|
||||
_fromJsonObject(_object: any): AdobeSignConfigOut;
|
||||
_toJsonObject(_self: AdobeSignConfigOut): any;
|
||||
};
|
||||
12
node_modules/svix/dist/models/adobeSignConfigOut.js
generated
vendored
Normal file
12
node_modules/svix/dist/models/adobeSignConfigOut.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AdobeSignConfigOutSerializer = void 0;
|
||||
exports.AdobeSignConfigOutSerializer = {
|
||||
_fromJsonObject(_object) {
|
||||
return {};
|
||||
},
|
||||
_toJsonObject(_self) {
|
||||
return {};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=adobeSignConfigOut.js.map
|
||||
1
node_modules/svix/dist/models/adobeSignConfigOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/adobeSignConfigOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"adobeSignConfigOut.js","sourceRoot":"","sources":["../../src/models/adobeSignConfigOut.ts"],"names":[],"mappings":";;;AAMa,QAAA,4BAA4B,GAAG;IAC1C,eAAe,CAAC,OAAY;QAC1B,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,aAAa,CAAC,KAAyB;QACrC,OAAO,EAAE,CAAC;IACZ,CAAC;CACF,CAAC"}
|
||||
12
node_modules/svix/dist/models/aggregateEventTypesOut.d.ts
generated
vendored
Normal file
12
node_modules/svix/dist/models/aggregateEventTypesOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import { type BackgroundTaskStatus } from "./backgroundTaskStatus";
|
||||
import { type BackgroundTaskType } from "./backgroundTaskType";
|
||||
export interface AggregateEventTypesOut {
|
||||
id: string;
|
||||
status: BackgroundTaskStatus;
|
||||
task: BackgroundTaskType;
|
||||
updatedAt: Date;
|
||||
}
|
||||
export declare const AggregateEventTypesOutSerializer: {
|
||||
_fromJsonObject(object: any): AggregateEventTypesOut;
|
||||
_toJsonObject(self: AggregateEventTypesOut): any;
|
||||
};
|
||||
24
node_modules/svix/dist/models/aggregateEventTypesOut.js
generated
vendored
Normal file
24
node_modules/svix/dist/models/aggregateEventTypesOut.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AggregateEventTypesOutSerializer = void 0;
|
||||
const backgroundTaskStatus_1 = require("./backgroundTaskStatus");
|
||||
const backgroundTaskType_1 = require("./backgroundTaskType");
|
||||
exports.AggregateEventTypesOutSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
id: object["id"],
|
||||
status: backgroundTaskStatus_1.BackgroundTaskStatusSerializer._fromJsonObject(object["status"]),
|
||||
task: backgroundTaskType_1.BackgroundTaskTypeSerializer._fromJsonObject(object["task"]),
|
||||
updatedAt: new Date(object["updatedAt"]),
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
id: self.id,
|
||||
status: backgroundTaskStatus_1.BackgroundTaskStatusSerializer._toJsonObject(self.status),
|
||||
task: backgroundTaskType_1.BackgroundTaskTypeSerializer._toJsonObject(self.task),
|
||||
updatedAt: self.updatedAt,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=aggregateEventTypesOut.js.map
|
||||
1
node_modules/svix/dist/models/aggregateEventTypesOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/aggregateEventTypesOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"aggregateEventTypesOut.js","sourceRoot":"","sources":["../../src/models/aggregateEventTypesOut.ts"],"names":[],"mappings":";;;AACA,iEAGgC;AAChC,6DAG8B;AAUjB,QAAA,gCAAgC,GAAG;IAC9C,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC;YAChB,MAAM,EAAE,qDAA8B,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YACxE,IAAI,EAAE,iDAA4B,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAClE,SAAS,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;SACzC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAA4B;QACxC,OAAO;YACL,EAAE,EAAE,IAAI,CAAC,EAAE;YACX,MAAM,EAAE,qDAA8B,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC;YACjE,IAAI,EAAE,iDAA4B,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;YAC3D,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
7
node_modules/svix/dist/models/airwallexConfig.d.ts
generated
vendored
Normal file
7
node_modules/svix/dist/models/airwallexConfig.d.ts
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface AirwallexConfig {
|
||||
secret: string;
|
||||
}
|
||||
export declare const AirwallexConfigSerializer: {
|
||||
_fromJsonObject(object: any): AirwallexConfig;
|
||||
_toJsonObject(self: AirwallexConfig): any;
|
||||
};
|
||||
16
node_modules/svix/dist/models/airwallexConfig.js
generated
vendored
Normal file
16
node_modules/svix/dist/models/airwallexConfig.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AirwallexConfigSerializer = void 0;
|
||||
exports.AirwallexConfigSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
secret: object["secret"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
secret: self.secret,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=airwallexConfig.js.map
|
||||
1
node_modules/svix/dist/models/airwallexConfig.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/airwallexConfig.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"airwallexConfig.js","sourceRoot":"","sources":["../../src/models/airwallexConfig.ts"],"names":[],"mappings":";;;AAMa,QAAA,yBAAyB,GAAG;IACvC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;SACzB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAqB;QACjC,OAAO;YACL,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
6
node_modules/svix/dist/models/airwallexConfigOut.d.ts
generated
vendored
Normal file
6
node_modules/svix/dist/models/airwallexConfigOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface AirwallexConfigOut {
|
||||
}
|
||||
export declare const AirwallexConfigOutSerializer: {
|
||||
_fromJsonObject(_object: any): AirwallexConfigOut;
|
||||
_toJsonObject(_self: AirwallexConfigOut): any;
|
||||
};
|
||||
12
node_modules/svix/dist/models/airwallexConfigOut.js
generated
vendored
Normal file
12
node_modules/svix/dist/models/airwallexConfigOut.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AirwallexConfigOutSerializer = void 0;
|
||||
exports.AirwallexConfigOutSerializer = {
|
||||
_fromJsonObject(_object) {
|
||||
return {};
|
||||
},
|
||||
_toJsonObject(_self) {
|
||||
return {};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=airwallexConfigOut.js.map
|
||||
1
node_modules/svix/dist/models/airwallexConfigOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/airwallexConfigOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"airwallexConfigOut.js","sourceRoot":"","sources":["../../src/models/airwallexConfigOut.ts"],"names":[],"mappings":";;;AAMa,QAAA,4BAA4B,GAAG;IAC1C,eAAe,CAAC,OAAY;QAC1B,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,aAAa,CAAC,KAAyB;QACrC,OAAO,EAAE,CAAC;IACZ,CAAC;CACF,CAAC"}
|
||||
11
node_modules/svix/dist/models/amazonS3PatchConfig.d.ts
generated
vendored
Normal file
11
node_modules/svix/dist/models/amazonS3PatchConfig.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
export interface AmazonS3PatchConfig {
|
||||
accessKeyId?: string;
|
||||
bucket?: string;
|
||||
endpointUrl?: string;
|
||||
region?: string;
|
||||
secretAccessKey?: string;
|
||||
}
|
||||
export declare const AmazonS3PatchConfigSerializer: {
|
||||
_fromJsonObject(object: any): AmazonS3PatchConfig;
|
||||
_toJsonObject(self: AmazonS3PatchConfig): any;
|
||||
};
|
||||
24
node_modules/svix/dist/models/amazonS3PatchConfig.js
generated
vendored
Normal file
24
node_modules/svix/dist/models/amazonS3PatchConfig.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AmazonS3PatchConfigSerializer = void 0;
|
||||
exports.AmazonS3PatchConfigSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
accessKeyId: object["accessKeyId"],
|
||||
bucket: object["bucket"],
|
||||
endpointUrl: object["endpointUrl"],
|
||||
region: object["region"],
|
||||
secretAccessKey: object["secretAccessKey"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
accessKeyId: self.accessKeyId,
|
||||
bucket: self.bucket,
|
||||
endpointUrl: self.endpointUrl,
|
||||
region: self.region,
|
||||
secretAccessKey: self.secretAccessKey,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=amazonS3PatchConfig.js.map
|
||||
1
node_modules/svix/dist/models/amazonS3PatchConfig.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/amazonS3PatchConfig.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"amazonS3PatchConfig.js","sourceRoot":"","sources":["../../src/models/amazonS3PatchConfig.ts"],"names":[],"mappings":";;;AAUa,QAAA,6BAA6B,GAAG;IAC3C,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,WAAW,EAAE,MAAM,CAAC,aAAa,CAAC;YAClC,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;YACxB,WAAW,EAAE,MAAM,CAAC,aAAa,CAAC;YAClC,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;YACxB,eAAe,EAAE,MAAM,CAAC,iBAAiB,CAAC;SAC3C,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAyB;QACrC,OAAO;YACL,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,eAAe,EAAE,IAAI,CAAC,eAAe;SACtC,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
12
node_modules/svix/dist/models/apiTokenOut.d.ts
generated
vendored
Normal file
12
node_modules/svix/dist/models/apiTokenOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface ApiTokenOut {
|
||||
createdAt: Date;
|
||||
expiresAt?: Date | null;
|
||||
id: string;
|
||||
name?: string | null;
|
||||
scopes?: string[] | null;
|
||||
token: string;
|
||||
}
|
||||
export declare const ApiTokenOutSerializer: {
|
||||
_fromJsonObject(object: any): ApiTokenOut;
|
||||
_toJsonObject(self: ApiTokenOut): any;
|
||||
};
|
||||
26
node_modules/svix/dist/models/apiTokenOut.js
generated
vendored
Normal file
26
node_modules/svix/dist/models/apiTokenOut.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ApiTokenOutSerializer = void 0;
|
||||
exports.ApiTokenOutSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
createdAt: new Date(object["createdAt"]),
|
||||
expiresAt: object["expiresAt"] ? new Date(object["expiresAt"]) : null,
|
||||
id: object["id"],
|
||||
name: object["name"],
|
||||
scopes: object["scopes"],
|
||||
token: object["token"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
createdAt: self.createdAt,
|
||||
expiresAt: self.expiresAt,
|
||||
id: self.id,
|
||||
name: self.name,
|
||||
scopes: self.scopes,
|
||||
token: self.token,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=apiTokenOut.js.map
|
||||
1
node_modules/svix/dist/models/apiTokenOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/apiTokenOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"apiTokenOut.js","sourceRoot":"","sources":["../../src/models/apiTokenOut.ts"],"names":[],"mappings":";;;AAWa,QAAA,qBAAqB,GAAG;IACnC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,SAAS,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;YACxC,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI;YACrE,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC;YAChB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;YACxB,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC;SACvB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAiB;QAC7B,OAAO;YACL,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,EAAE,EAAE,IAAI,CAAC,EAAE;YACX,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,KAAK,EAAE,IAAI,CAAC,KAAK;SAClB,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
14
node_modules/svix/dist/models/appPortalAccessIn.d.ts
generated
vendored
Normal file
14
node_modules/svix/dist/models/appPortalAccessIn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import { type AppPortalCapability } from "./appPortalCapability";
|
||||
import { type ApplicationIn } from "./applicationIn";
|
||||
export interface AppPortalAccessIn {
|
||||
application?: ApplicationIn | null;
|
||||
capabilities?: AppPortalCapability[] | null;
|
||||
expiry?: number | null;
|
||||
featureFlags?: string[];
|
||||
readOnly?: boolean | null;
|
||||
sessionId?: string | null;
|
||||
}
|
||||
export declare const AppPortalAccessInSerializer: {
|
||||
_fromJsonObject(object: any): AppPortalAccessIn;
|
||||
_toJsonObject(self: AppPortalAccessIn): any;
|
||||
};
|
||||
34
node_modules/svix/dist/models/appPortalAccessIn.js
generated
vendored
Normal file
34
node_modules/svix/dist/models/appPortalAccessIn.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppPortalAccessInSerializer = void 0;
|
||||
const appPortalCapability_1 = require("./appPortalCapability");
|
||||
const applicationIn_1 = require("./applicationIn");
|
||||
exports.AppPortalAccessInSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
var _a;
|
||||
return {
|
||||
application: object["application"] != null
|
||||
? applicationIn_1.ApplicationInSerializer._fromJsonObject(object["application"])
|
||||
: undefined,
|
||||
capabilities: (_a = object["capabilities"]) === null || _a === void 0 ? void 0 : _a.map((item) => appPortalCapability_1.AppPortalCapabilitySerializer._fromJsonObject(item)),
|
||||
expiry: object["expiry"],
|
||||
featureFlags: object["featureFlags"],
|
||||
readOnly: object["readOnly"],
|
||||
sessionId: object["sessionId"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
var _a;
|
||||
return {
|
||||
application: self.application != null
|
||||
? applicationIn_1.ApplicationInSerializer._toJsonObject(self.application)
|
||||
: undefined,
|
||||
capabilities: (_a = self.capabilities) === null || _a === void 0 ? void 0 : _a.map((item) => appPortalCapability_1.AppPortalCapabilitySerializer._toJsonObject(item)),
|
||||
expiry: self.expiry,
|
||||
featureFlags: self.featureFlags,
|
||||
readOnly: self.readOnly,
|
||||
sessionId: self.sessionId,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=appPortalAccessIn.js.map
|
||||
1
node_modules/svix/dist/models/appPortalAccessIn.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/appPortalAccessIn.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"appPortalAccessIn.js","sourceRoot":"","sources":["../../src/models/appPortalAccessIn.ts"],"names":[],"mappings":";;;AACA,+DAG+B;AAC/B,mDAA8E;AAmDjE,QAAA,2BAA2B,GAAG;IACzC,eAAe,CAAC,MAAW;;QACzB,OAAO;YACL,WAAW,EACT,MAAM,CAAC,aAAa,CAAC,IAAI,IAAI;gBAC3B,CAAC,CAAC,uCAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;gBAChE,CAAC,CAAC,SAAS;YACf,YAAY,EAAE,MAAA,MAAM,CAAC,cAAc,CAAC,0CAAE,GAAG,CAAC,CAAC,IAAyB,EAAE,EAAE,CACtE,mDAA6B,CAAC,eAAe,CAAC,IAAI,CAAC,CACpD;YACD,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;YACxB,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAC;YAC5B,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;SAC/B,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAuB;;QACnC,OAAO;YACL,WAAW,EACT,IAAI,CAAC,WAAW,IAAI,IAAI;gBACtB,CAAC,CAAC,uCAAuB,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC;gBACzD,CAAC,CAAC,SAAS;YACf,YAAY,EAAE,MAAA,IAAI,CAAC,YAAY,0CAAE,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAC5C,mDAA6B,CAAC,aAAa,CAAC,IAAI,CAAC,CAClD;YACD,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
8
node_modules/svix/dist/models/appPortalAccessOut.d.ts
generated
vendored
Normal file
8
node_modules/svix/dist/models/appPortalAccessOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export interface AppPortalAccessOut {
|
||||
token: string;
|
||||
url: string;
|
||||
}
|
||||
export declare const AppPortalAccessOutSerializer: {
|
||||
_fromJsonObject(object: any): AppPortalAccessOut;
|
||||
_toJsonObject(self: AppPortalAccessOut): any;
|
||||
};
|
||||
18
node_modules/svix/dist/models/appPortalAccessOut.js
generated
vendored
Normal file
18
node_modules/svix/dist/models/appPortalAccessOut.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppPortalAccessOutSerializer = void 0;
|
||||
exports.AppPortalAccessOutSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
token: object["token"],
|
||||
url: object["url"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
token: self.token,
|
||||
url: self.url,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=appPortalAccessOut.js.map
|
||||
1
node_modules/svix/dist/models/appPortalAccessOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/appPortalAccessOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"appPortalAccessOut.js","sourceRoot":"","sources":["../../src/models/appPortalAccessOut.ts"],"names":[],"mappings":";;;AAOa,QAAA,4BAA4B,GAAG;IAC1C,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC;YACtB,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC;SACnB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAwB;QACpC,OAAO;YACL,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,GAAG,EAAE,IAAI,CAAC,GAAG;SACd,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
12
node_modules/svix/dist/models/appPortalCapability.d.ts
generated
vendored
Normal file
12
node_modules/svix/dist/models/appPortalCapability.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
export declare enum AppPortalCapability {
|
||||
ViewBase = "ViewBase",
|
||||
ViewEndpointSecret = "ViewEndpointSecret",
|
||||
ManageEndpointSecret = "ManageEndpointSecret",
|
||||
ManageTransformations = "ManageTransformations",
|
||||
CreateAttempts = "CreateAttempts",
|
||||
ManageEndpoint = "ManageEndpoint"
|
||||
}
|
||||
export declare const AppPortalCapabilitySerializer: {
|
||||
_fromJsonObject(object: any): AppPortalCapability;
|
||||
_toJsonObject(self: AppPortalCapability): any;
|
||||
};
|
||||
21
node_modules/svix/dist/models/appPortalCapability.js
generated
vendored
Normal file
21
node_modules/svix/dist/models/appPortalCapability.js
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppPortalCapabilitySerializer = exports.AppPortalCapability = void 0;
|
||||
var AppPortalCapability;
|
||||
(function (AppPortalCapability) {
|
||||
AppPortalCapability["ViewBase"] = "ViewBase";
|
||||
AppPortalCapability["ViewEndpointSecret"] = "ViewEndpointSecret";
|
||||
AppPortalCapability["ManageEndpointSecret"] = "ManageEndpointSecret";
|
||||
AppPortalCapability["ManageTransformations"] = "ManageTransformations";
|
||||
AppPortalCapability["CreateAttempts"] = "CreateAttempts";
|
||||
AppPortalCapability["ManageEndpoint"] = "ManageEndpoint";
|
||||
})(AppPortalCapability = exports.AppPortalCapability || (exports.AppPortalCapability = {}));
|
||||
exports.AppPortalCapabilitySerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return object;
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return self;
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=appPortalCapability.js.map
|
||||
1
node_modules/svix/dist/models/appPortalCapability.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/appPortalCapability.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"appPortalCapability.js","sourceRoot":"","sources":["../../src/models/appPortalCapability.ts"],"names":[],"mappings":";;;AAEA,IAAY,mBAOX;AAPD,WAAY,mBAAmB;IAC7B,4CAAqB,CAAA;IACrB,gEAAyC,CAAA;IACzC,oEAA6C,CAAA;IAC7C,sEAA+C,CAAA;IAC/C,wDAAiC,CAAA;IACjC,wDAAiC,CAAA;AACnC,CAAC,EAPW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAO9B;AAEY,QAAA,6BAA6B,GAAG;IAC3C,eAAe,CAAC,MAAW;QACzB,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,aAAa,CAAC,IAAyB;QACrC,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAC"}
|
||||
9
node_modules/svix/dist/models/appUsageStatsIn.d.ts
generated
vendored
Normal file
9
node_modules/svix/dist/models/appUsageStatsIn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface AppUsageStatsIn {
|
||||
appIds?: string[] | null;
|
||||
since: Date;
|
||||
until: Date;
|
||||
}
|
||||
export declare const AppUsageStatsInSerializer: {
|
||||
_fromJsonObject(object: any): AppUsageStatsIn;
|
||||
_toJsonObject(self: AppUsageStatsIn): any;
|
||||
};
|
||||
20
node_modules/svix/dist/models/appUsageStatsIn.js
generated
vendored
Normal file
20
node_modules/svix/dist/models/appUsageStatsIn.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppUsageStatsInSerializer = void 0;
|
||||
exports.AppUsageStatsInSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
appIds: object["appIds"],
|
||||
since: new Date(object["since"]),
|
||||
until: new Date(object["until"]),
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
appIds: self.appIds,
|
||||
since: self.since,
|
||||
until: self.until,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=appUsageStatsIn.js.map
|
||||
1
node_modules/svix/dist/models/appUsageStatsIn.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/appUsageStatsIn.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"appUsageStatsIn.js","sourceRoot":"","sources":["../../src/models/appUsageStatsIn.ts"],"names":[],"mappings":";;;AAaa,QAAA,yBAAyB,GAAG;IACvC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;YACxB,KAAK,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YAChC,KAAK,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;SACjC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAqB;QACjC,OAAO;YACL,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,KAAK,EAAE,IAAI,CAAC,KAAK;SAClB,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
13
node_modules/svix/dist/models/appUsageStatsOut.d.ts
generated
vendored
Normal file
13
node_modules/svix/dist/models/appUsageStatsOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { type BackgroundTaskStatus } from "./backgroundTaskStatus";
|
||||
import { type BackgroundTaskType } from "./backgroundTaskType";
|
||||
export interface AppUsageStatsOut {
|
||||
id: string;
|
||||
status: BackgroundTaskStatus;
|
||||
task: BackgroundTaskType;
|
||||
unresolvedAppIds: string[];
|
||||
updatedAt: Date;
|
||||
}
|
||||
export declare const AppUsageStatsOutSerializer: {
|
||||
_fromJsonObject(object: any): AppUsageStatsOut;
|
||||
_toJsonObject(self: AppUsageStatsOut): any;
|
||||
};
|
||||
26
node_modules/svix/dist/models/appUsageStatsOut.js
generated
vendored
Normal file
26
node_modules/svix/dist/models/appUsageStatsOut.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppUsageStatsOutSerializer = void 0;
|
||||
const backgroundTaskStatus_1 = require("./backgroundTaskStatus");
|
||||
const backgroundTaskType_1 = require("./backgroundTaskType");
|
||||
exports.AppUsageStatsOutSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
id: object["id"],
|
||||
status: backgroundTaskStatus_1.BackgroundTaskStatusSerializer._fromJsonObject(object["status"]),
|
||||
task: backgroundTaskType_1.BackgroundTaskTypeSerializer._fromJsonObject(object["task"]),
|
||||
unresolvedAppIds: object["unresolvedAppIds"],
|
||||
updatedAt: new Date(object["updatedAt"]),
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
id: self.id,
|
||||
status: backgroundTaskStatus_1.BackgroundTaskStatusSerializer._toJsonObject(self.status),
|
||||
task: backgroundTaskType_1.BackgroundTaskTypeSerializer._toJsonObject(self.task),
|
||||
unresolvedAppIds: self.unresolvedAppIds,
|
||||
updatedAt: self.updatedAt,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=appUsageStatsOut.js.map
|
||||
1
node_modules/svix/dist/models/appUsageStatsOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/appUsageStatsOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"appUsageStatsOut.js","sourceRoot":"","sources":["../../src/models/appUsageStatsOut.ts"],"names":[],"mappings":";;;AACA,iEAGgC;AAChC,6DAG8B;AAgBjB,QAAA,0BAA0B,GAAG;IACxC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC;YAChB,MAAM,EAAE,qDAA8B,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YACxE,IAAI,EAAE,iDAA4B,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAClE,gBAAgB,EAAE,MAAM,CAAC,kBAAkB,CAAC;YAC5C,SAAS,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;SACzC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAsB;QAClC,OAAO;YACL,EAAE,EAAE,IAAI,CAAC,EAAE;YACX,MAAM,EAAE,qDAA8B,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC;YACjE,IAAI,EAAE,iDAA4B,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;YAC3D,gBAAgB,EAAE,IAAI,CAAC,gBAAgB;YACvC,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
13
node_modules/svix/dist/models/applicationIn.d.ts
generated
vendored
Normal file
13
node_modules/svix/dist/models/applicationIn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
export interface ApplicationIn {
|
||||
metadata?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
name: string;
|
||||
rateLimit?: number | null;
|
||||
throttleRate?: number | null;
|
||||
uid?: string | null;
|
||||
}
|
||||
export declare const ApplicationInSerializer: {
|
||||
_fromJsonObject(object: any): ApplicationIn;
|
||||
_toJsonObject(self: ApplicationIn): any;
|
||||
};
|
||||
24
node_modules/svix/dist/models/applicationIn.js
generated
vendored
Normal file
24
node_modules/svix/dist/models/applicationIn.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ApplicationInSerializer = void 0;
|
||||
exports.ApplicationInSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
metadata: object["metadata"],
|
||||
name: object["name"],
|
||||
rateLimit: object["rateLimit"],
|
||||
throttleRate: object["throttleRate"],
|
||||
uid: object["uid"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
metadata: self.metadata,
|
||||
name: self.name,
|
||||
rateLimit: self.rateLimit,
|
||||
throttleRate: self.throttleRate,
|
||||
uid: self.uid,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=applicationIn.js.map
|
||||
1
node_modules/svix/dist/models/applicationIn.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/applicationIn.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"applicationIn.js","sourceRoot":"","sources":["../../src/models/applicationIn.ts"],"names":[],"mappings":";;;AAsBa,QAAA,uBAAuB,GAAG;IACrC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAC;YAC5B,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;YAC9B,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC;SACnB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAmB;QAC/B,OAAO;YACL,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,GAAG,EAAE,IAAI,CAAC,GAAG;SACd,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
16
node_modules/svix/dist/models/applicationOut.d.ts
generated
vendored
Normal file
16
node_modules/svix/dist/models/applicationOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
export interface ApplicationOut {
|
||||
createdAt: Date;
|
||||
id: string;
|
||||
metadata: {
|
||||
[key: string]: string;
|
||||
};
|
||||
name: string;
|
||||
rateLimit?: number | null;
|
||||
throttleRate?: number | null;
|
||||
uid?: string | null;
|
||||
updatedAt: Date;
|
||||
}
|
||||
export declare const ApplicationOutSerializer: {
|
||||
_fromJsonObject(object: any): ApplicationOut;
|
||||
_toJsonObject(self: ApplicationOut): any;
|
||||
};
|
||||
30
node_modules/svix/dist/models/applicationOut.js
generated
vendored
Normal file
30
node_modules/svix/dist/models/applicationOut.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ApplicationOutSerializer = void 0;
|
||||
exports.ApplicationOutSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
createdAt: new Date(object["createdAt"]),
|
||||
id: object["id"],
|
||||
metadata: object["metadata"],
|
||||
name: object["name"],
|
||||
rateLimit: object["rateLimit"],
|
||||
throttleRate: object["throttleRate"],
|
||||
uid: object["uid"],
|
||||
updatedAt: new Date(object["updatedAt"]),
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
createdAt: self.createdAt,
|
||||
id: self.id,
|
||||
metadata: self.metadata,
|
||||
name: self.name,
|
||||
rateLimit: self.rateLimit,
|
||||
throttleRate: self.throttleRate,
|
||||
uid: self.uid,
|
||||
updatedAt: self.updatedAt,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=applicationOut.js.map
|
||||
1
node_modules/svix/dist/models/applicationOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/applicationOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"applicationOut.js","sourceRoot":"","sources":["../../src/models/applicationOut.ts"],"names":[],"mappings":";;;AA0Ba,QAAA,wBAAwB,GAAG;IACtC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,SAAS,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;YACxC,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC;YAChB,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAC;YAC5B,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;YAC9B,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC;YAClB,SAAS,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;SACzC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAoB;QAChC,OAAO;YACL,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,EAAE,EAAE,IAAI,CAAC,EAAE;YACX,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
12
node_modules/svix/dist/models/applicationPatch.d.ts
generated
vendored
Normal file
12
node_modules/svix/dist/models/applicationPatch.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface ApplicationPatch {
|
||||
metadata?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
name?: string;
|
||||
rateLimit?: number | null;
|
||||
uid?: string | null;
|
||||
}
|
||||
export declare const ApplicationPatchSerializer: {
|
||||
_fromJsonObject(object: any): ApplicationPatch;
|
||||
_toJsonObject(self: ApplicationPatch): any;
|
||||
};
|
||||
22
node_modules/svix/dist/models/applicationPatch.js
generated
vendored
Normal file
22
node_modules/svix/dist/models/applicationPatch.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ApplicationPatchSerializer = void 0;
|
||||
exports.ApplicationPatchSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
metadata: object["metadata"],
|
||||
name: object["name"],
|
||||
rateLimit: object["rateLimit"],
|
||||
uid: object["uid"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
metadata: self.metadata,
|
||||
name: self.name,
|
||||
rateLimit: self.rateLimit,
|
||||
uid: self.uid,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=applicationPatch.js.map
|
||||
1
node_modules/svix/dist/models/applicationPatch.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/applicationPatch.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"applicationPatch.js","sourceRoot":"","sources":["../../src/models/applicationPatch.ts"],"names":[],"mappings":";;;AAUa,QAAA,0BAA0B,GAAG;IACxC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAC;YAC5B,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;YAC9B,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC;SACnB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAsB;QAClC,OAAO;YACL,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,GAAG,EAAE,IAAI,CAAC,GAAG;SACd,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
8
node_modules/svix/dist/models/applicationTokenExpireIn.d.ts
generated
vendored
Normal file
8
node_modules/svix/dist/models/applicationTokenExpireIn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export interface ApplicationTokenExpireIn {
|
||||
expiry?: number | null;
|
||||
sessionIds?: string[];
|
||||
}
|
||||
export declare const ApplicationTokenExpireInSerializer: {
|
||||
_fromJsonObject(object: any): ApplicationTokenExpireIn;
|
||||
_toJsonObject(self: ApplicationTokenExpireIn): any;
|
||||
};
|
||||
18
node_modules/svix/dist/models/applicationTokenExpireIn.js
generated
vendored
Normal file
18
node_modules/svix/dist/models/applicationTokenExpireIn.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ApplicationTokenExpireInSerializer = void 0;
|
||||
exports.ApplicationTokenExpireInSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
expiry: object["expiry"],
|
||||
sessionIds: object["sessionIds"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
expiry: self.expiry,
|
||||
sessionIds: self.sessionIds,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=applicationTokenExpireIn.js.map
|
||||
1
node_modules/svix/dist/models/applicationTokenExpireIn.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/applicationTokenExpireIn.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"applicationTokenExpireIn.js","sourceRoot":"","sources":["../../src/models/applicationTokenExpireIn.ts"],"names":[],"mappings":";;;AAaa,QAAA,kCAAkC,GAAG;IAChD,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;YACxB,UAAU,EAAE,MAAM,CAAC,YAAY,CAAC;SACjC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAA8B;QAC1C,OAAO;YACL,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,UAAU,EAAE,IAAI,CAAC,UAAU;SAC5B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
9
node_modules/svix/dist/models/azureBlobStorageConfig.d.ts
generated
vendored
Normal file
9
node_modules/svix/dist/models/azureBlobStorageConfig.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface AzureBlobStorageConfig {
|
||||
accessKey: string;
|
||||
account: string;
|
||||
container: string;
|
||||
}
|
||||
export declare const AzureBlobStorageConfigSerializer: {
|
||||
_fromJsonObject(object: any): AzureBlobStorageConfig;
|
||||
_toJsonObject(self: AzureBlobStorageConfig): any;
|
||||
};
|
||||
20
node_modules/svix/dist/models/azureBlobStorageConfig.js
generated
vendored
Normal file
20
node_modules/svix/dist/models/azureBlobStorageConfig.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AzureBlobStorageConfigSerializer = void 0;
|
||||
exports.AzureBlobStorageConfigSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
accessKey: object["accessKey"],
|
||||
account: object["account"],
|
||||
container: object["container"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
accessKey: self.accessKey,
|
||||
account: self.account,
|
||||
container: self.container,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=azureBlobStorageConfig.js.map
|
||||
1
node_modules/svix/dist/models/azureBlobStorageConfig.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/azureBlobStorageConfig.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"azureBlobStorageConfig.js","sourceRoot":"","sources":["../../src/models/azureBlobStorageConfig.ts"],"names":[],"mappings":";;;AAQa,QAAA,gCAAgC,GAAG;IAC9C,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;YAC9B,OAAO,EAAE,MAAM,CAAC,SAAS,CAAC;YAC1B,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;SAC/B,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAA4B;QACxC,OAAO;YACL,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
9
node_modules/svix/dist/models/azureBlobStoragePatchConfig.d.ts
generated
vendored
Normal file
9
node_modules/svix/dist/models/azureBlobStoragePatchConfig.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface AzureBlobStoragePatchConfig {
|
||||
accessKey?: string;
|
||||
account?: string;
|
||||
container?: string;
|
||||
}
|
||||
export declare const AzureBlobStoragePatchConfigSerializer: {
|
||||
_fromJsonObject(object: any): AzureBlobStoragePatchConfig;
|
||||
_toJsonObject(self: AzureBlobStoragePatchConfig): any;
|
||||
};
|
||||
20
node_modules/svix/dist/models/azureBlobStoragePatchConfig.js
generated
vendored
Normal file
20
node_modules/svix/dist/models/azureBlobStoragePatchConfig.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AzureBlobStoragePatchConfigSerializer = void 0;
|
||||
exports.AzureBlobStoragePatchConfigSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
accessKey: object["accessKey"],
|
||||
account: object["account"],
|
||||
container: object["container"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
accessKey: self.accessKey,
|
||||
account: self.account,
|
||||
container: self.container,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=azureBlobStoragePatchConfig.js.map
|
||||
1
node_modules/svix/dist/models/azureBlobStoragePatchConfig.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/azureBlobStoragePatchConfig.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"azureBlobStoragePatchConfig.js","sourceRoot":"","sources":["../../src/models/azureBlobStoragePatchConfig.ts"],"names":[],"mappings":";;;AAQa,QAAA,qCAAqC,GAAG;IACnD,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;YAC9B,OAAO,EAAE,MAAM,CAAC,SAAS,CAAC;YAC1B,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;SAC/B,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAiC;QAC7C,OAAO;YACL,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
9
node_modules/svix/dist/models/backgroundTaskFinishedEvent.d.ts
generated
vendored
Normal file
9
node_modules/svix/dist/models/backgroundTaskFinishedEvent.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import { type BackgroundTaskFinishedEvent2 } from "./backgroundTaskFinishedEvent2";
|
||||
export interface BackgroundTaskFinishedEvent {
|
||||
data: BackgroundTaskFinishedEvent2;
|
||||
type: string;
|
||||
}
|
||||
export declare const BackgroundTaskFinishedEventSerializer: {
|
||||
_fromJsonObject(object: any): BackgroundTaskFinishedEvent;
|
||||
_toJsonObject(self: BackgroundTaskFinishedEvent): any;
|
||||
};
|
||||
19
node_modules/svix/dist/models/backgroundTaskFinishedEvent.js
generated
vendored
Normal file
19
node_modules/svix/dist/models/backgroundTaskFinishedEvent.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BackgroundTaskFinishedEventSerializer = void 0;
|
||||
const backgroundTaskFinishedEvent2_1 = require("./backgroundTaskFinishedEvent2");
|
||||
exports.BackgroundTaskFinishedEventSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
data: backgroundTaskFinishedEvent2_1.BackgroundTaskFinishedEvent2Serializer._fromJsonObject(object["data"]),
|
||||
type: object["type"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
data: backgroundTaskFinishedEvent2_1.BackgroundTaskFinishedEvent2Serializer._toJsonObject(self.data),
|
||||
type: self.type,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=backgroundTaskFinishedEvent.js.map
|
||||
1
node_modules/svix/dist/models/backgroundTaskFinishedEvent.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/backgroundTaskFinishedEvent.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"backgroundTaskFinishedEvent.js","sourceRoot":"","sources":["../../src/models/backgroundTaskFinishedEvent.ts"],"names":[],"mappings":";;;AACA,iFAGwC;AAQ3B,QAAA,qCAAqC,GAAG;IACnD,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,IAAI,EAAE,qEAAsC,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAC5E,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;SACrB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAiC;QAC7C,OAAO;YACL,IAAI,EAAE,qEAAsC,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;YACrE,IAAI,EAAE,IAAI,CAAC,IAAI;SAChB,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
12
node_modules/svix/dist/models/backgroundTaskFinishedEvent2.d.ts
generated
vendored
Normal file
12
node_modules/svix/dist/models/backgroundTaskFinishedEvent2.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import { type BackgroundTaskStatus } from "./backgroundTaskStatus";
|
||||
import { type BackgroundTaskType } from "./backgroundTaskType";
|
||||
export interface BackgroundTaskFinishedEvent2 {
|
||||
data: any;
|
||||
status: BackgroundTaskStatus;
|
||||
task: BackgroundTaskType;
|
||||
taskId: string;
|
||||
}
|
||||
export declare const BackgroundTaskFinishedEvent2Serializer: {
|
||||
_fromJsonObject(object: any): BackgroundTaskFinishedEvent2;
|
||||
_toJsonObject(self: BackgroundTaskFinishedEvent2): any;
|
||||
};
|
||||
24
node_modules/svix/dist/models/backgroundTaskFinishedEvent2.js
generated
vendored
Normal file
24
node_modules/svix/dist/models/backgroundTaskFinishedEvent2.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BackgroundTaskFinishedEvent2Serializer = void 0;
|
||||
const backgroundTaskStatus_1 = require("./backgroundTaskStatus");
|
||||
const backgroundTaskType_1 = require("./backgroundTaskType");
|
||||
exports.BackgroundTaskFinishedEvent2Serializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
data: object["data"],
|
||||
status: backgroundTaskStatus_1.BackgroundTaskStatusSerializer._fromJsonObject(object["status"]),
|
||||
task: backgroundTaskType_1.BackgroundTaskTypeSerializer._fromJsonObject(object["task"]),
|
||||
taskId: object["taskId"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
data: self.data,
|
||||
status: backgroundTaskStatus_1.BackgroundTaskStatusSerializer._toJsonObject(self.status),
|
||||
task: backgroundTaskType_1.BackgroundTaskTypeSerializer._toJsonObject(self.task),
|
||||
taskId: self.taskId,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=backgroundTaskFinishedEvent2.js.map
|
||||
1
node_modules/svix/dist/models/backgroundTaskFinishedEvent2.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/backgroundTaskFinishedEvent2.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"backgroundTaskFinishedEvent2.js","sourceRoot":"","sources":["../../src/models/backgroundTaskFinishedEvent2.ts"],"names":[],"mappings":";;;AACA,iEAGgC;AAChC,6DAG8B;AAUjB,QAAA,sCAAsC,GAAG;IACpD,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,MAAM,EAAE,qDAA8B,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YACxE,IAAI,EAAE,iDAA4B,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAClE,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;SACzB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAkC;QAC9C,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,MAAM,EAAE,qDAA8B,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC;YACjE,IAAI,EAAE,iDAA4B,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;YAC3D,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
13
node_modules/svix/dist/models/backgroundTaskOut.d.ts
generated
vendored
Normal file
13
node_modules/svix/dist/models/backgroundTaskOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { type BackgroundTaskStatus } from "./backgroundTaskStatus";
|
||||
import { type BackgroundTaskType } from "./backgroundTaskType";
|
||||
export interface BackgroundTaskOut {
|
||||
data: any;
|
||||
id: string;
|
||||
status: BackgroundTaskStatus;
|
||||
task: BackgroundTaskType;
|
||||
updatedAt: Date;
|
||||
}
|
||||
export declare const BackgroundTaskOutSerializer: {
|
||||
_fromJsonObject(object: any): BackgroundTaskOut;
|
||||
_toJsonObject(self: BackgroundTaskOut): any;
|
||||
};
|
||||
26
node_modules/svix/dist/models/backgroundTaskOut.js
generated
vendored
Normal file
26
node_modules/svix/dist/models/backgroundTaskOut.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BackgroundTaskOutSerializer = void 0;
|
||||
const backgroundTaskStatus_1 = require("./backgroundTaskStatus");
|
||||
const backgroundTaskType_1 = require("./backgroundTaskType");
|
||||
exports.BackgroundTaskOutSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
data: object["data"],
|
||||
id: object["id"],
|
||||
status: backgroundTaskStatus_1.BackgroundTaskStatusSerializer._fromJsonObject(object["status"]),
|
||||
task: backgroundTaskType_1.BackgroundTaskTypeSerializer._fromJsonObject(object["task"]),
|
||||
updatedAt: new Date(object["updatedAt"]),
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
data: self.data,
|
||||
id: self.id,
|
||||
status: backgroundTaskStatus_1.BackgroundTaskStatusSerializer._toJsonObject(self.status),
|
||||
task: backgroundTaskType_1.BackgroundTaskTypeSerializer._toJsonObject(self.task),
|
||||
updatedAt: self.updatedAt,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=backgroundTaskOut.js.map
|
||||
1
node_modules/svix/dist/models/backgroundTaskOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/backgroundTaskOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"backgroundTaskOut.js","sourceRoot":"","sources":["../../src/models/backgroundTaskOut.ts"],"names":[],"mappings":";;;AACA,iEAGgC;AAChC,6DAG8B;AAWjB,QAAA,2BAA2B,GAAG;IACzC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC;YAChB,MAAM,EAAE,qDAA8B,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YACxE,IAAI,EAAE,iDAA4B,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAClE,SAAS,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;SACzC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAuB;QACnC,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,EAAE,EAAE,IAAI,CAAC,EAAE;YACX,MAAM,EAAE,qDAA8B,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC;YACjE,IAAI,EAAE,iDAA4B,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;YAC3D,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
9
node_modules/svix/dist/models/backgroundTaskStatus.d.ts
generated
vendored
Normal file
9
node_modules/svix/dist/models/backgroundTaskStatus.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
export declare enum BackgroundTaskStatus {
|
||||
Running = "running",
|
||||
Finished = "finished",
|
||||
Failed = "failed"
|
||||
}
|
||||
export declare const BackgroundTaskStatusSerializer: {
|
||||
_fromJsonObject(object: any): BackgroundTaskStatus;
|
||||
_toJsonObject(self: BackgroundTaskStatus): any;
|
||||
};
|
||||
18
node_modules/svix/dist/models/backgroundTaskStatus.js
generated
vendored
Normal file
18
node_modules/svix/dist/models/backgroundTaskStatus.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BackgroundTaskStatusSerializer = exports.BackgroundTaskStatus = void 0;
|
||||
var BackgroundTaskStatus;
|
||||
(function (BackgroundTaskStatus) {
|
||||
BackgroundTaskStatus["Running"] = "running";
|
||||
BackgroundTaskStatus["Finished"] = "finished";
|
||||
BackgroundTaskStatus["Failed"] = "failed";
|
||||
})(BackgroundTaskStatus = exports.BackgroundTaskStatus || (exports.BackgroundTaskStatus = {}));
|
||||
exports.BackgroundTaskStatusSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return object;
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return self;
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=backgroundTaskStatus.js.map
|
||||
1
node_modules/svix/dist/models/backgroundTaskStatus.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/backgroundTaskStatus.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"backgroundTaskStatus.js","sourceRoot":"","sources":["../../src/models/backgroundTaskStatus.ts"],"names":[],"mappings":";;;AAEA,IAAY,oBAIX;AAJD,WAAY,oBAAoB;IAC9B,2CAAmB,CAAA;IACnB,6CAAqB,CAAA;IACrB,yCAAiB,CAAA;AACnB,CAAC,EAJW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAI/B;AAEY,QAAA,8BAA8B,GAAG;IAC5C,eAAe,CAAC,MAAW;QACzB,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,aAAa,CAAC,IAA0B;QACtC,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAC"}
|
||||
14
node_modules/svix/dist/models/backgroundTaskType.d.ts
generated
vendored
Normal file
14
node_modules/svix/dist/models/backgroundTaskType.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export declare enum BackgroundTaskType {
|
||||
EndpointReplay = "endpoint.replay",
|
||||
EndpointRecover = "endpoint.recover",
|
||||
ApplicationStats = "application.stats",
|
||||
MessageBroadcast = "message.broadcast",
|
||||
SdkGenerate = "sdk.generate",
|
||||
EventTypeAggregate = "event-type.aggregate",
|
||||
ApplicationPurgeContent = "application.purge_content",
|
||||
EndpointBulkReplay = "endpoint.bulk-replay"
|
||||
}
|
||||
export declare const BackgroundTaskTypeSerializer: {
|
||||
_fromJsonObject(object: any): BackgroundTaskType;
|
||||
_toJsonObject(self: BackgroundTaskType): any;
|
||||
};
|
||||
23
node_modules/svix/dist/models/backgroundTaskType.js
generated
vendored
Normal file
23
node_modules/svix/dist/models/backgroundTaskType.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BackgroundTaskTypeSerializer = exports.BackgroundTaskType = void 0;
|
||||
var BackgroundTaskType;
|
||||
(function (BackgroundTaskType) {
|
||||
BackgroundTaskType["EndpointReplay"] = "endpoint.replay";
|
||||
BackgroundTaskType["EndpointRecover"] = "endpoint.recover";
|
||||
BackgroundTaskType["ApplicationStats"] = "application.stats";
|
||||
BackgroundTaskType["MessageBroadcast"] = "message.broadcast";
|
||||
BackgroundTaskType["SdkGenerate"] = "sdk.generate";
|
||||
BackgroundTaskType["EventTypeAggregate"] = "event-type.aggregate";
|
||||
BackgroundTaskType["ApplicationPurgeContent"] = "application.purge_content";
|
||||
BackgroundTaskType["EndpointBulkReplay"] = "endpoint.bulk-replay";
|
||||
})(BackgroundTaskType = exports.BackgroundTaskType || (exports.BackgroundTaskType = {}));
|
||||
exports.BackgroundTaskTypeSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return object;
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return self;
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=backgroundTaskType.js.map
|
||||
1
node_modules/svix/dist/models/backgroundTaskType.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/backgroundTaskType.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"backgroundTaskType.js","sourceRoot":"","sources":["../../src/models/backgroundTaskType.ts"],"names":[],"mappings":";;;AAEA,IAAY,kBASX;AATD,WAAY,kBAAkB;IAC5B,wDAAkC,CAAA;IAClC,0DAAoC,CAAA;IACpC,4DAAsC,CAAA;IACtC,4DAAsC,CAAA;IACtC,kDAA4B,CAAA;IAC5B,iEAA2C,CAAA;IAC3C,2EAAqD,CAAA;IACrD,iEAA2C,CAAA;AAC7C,CAAC,EATW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAS7B;AAEY,QAAA,4BAA4B,GAAG;IAC1C,eAAe,CAAC,MAAW;QACzB,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,aAAa,CAAC,IAAwB;QACpC,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAC"}
|
||||
15
node_modules/svix/dist/models/bulkReplayIn.d.ts
generated
vendored
Normal file
15
node_modules/svix/dist/models/bulkReplayIn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { type MessageStatus } from "./messageStatus";
|
||||
import { type StatusCodeClass } from "./statusCodeClass";
|
||||
export interface BulkReplayIn {
|
||||
channel?: string | null;
|
||||
eventTypes?: string[] | null;
|
||||
since: Date;
|
||||
status?: MessageStatus | null;
|
||||
statusCodeClass?: StatusCodeClass | null;
|
||||
tag?: string | null;
|
||||
until?: Date | null;
|
||||
}
|
||||
export declare const BulkReplayInSerializer: {
|
||||
_fromJsonObject(object: any): BulkReplayIn;
|
||||
_toJsonObject(self: BulkReplayIn): any;
|
||||
};
|
||||
38
node_modules/svix/dist/models/bulkReplayIn.js
generated
vendored
Normal file
38
node_modules/svix/dist/models/bulkReplayIn.js
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BulkReplayInSerializer = void 0;
|
||||
const messageStatus_1 = require("./messageStatus");
|
||||
const statusCodeClass_1 = require("./statusCodeClass");
|
||||
exports.BulkReplayInSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
channel: object["channel"],
|
||||
eventTypes: object["eventTypes"],
|
||||
since: new Date(object["since"]),
|
||||
status: object["status"] != null
|
||||
? messageStatus_1.MessageStatusSerializer._fromJsonObject(object["status"])
|
||||
: undefined,
|
||||
statusCodeClass: object["statusCodeClass"] != null
|
||||
? statusCodeClass_1.StatusCodeClassSerializer._fromJsonObject(object["statusCodeClass"])
|
||||
: undefined,
|
||||
tag: object["tag"],
|
||||
until: object["until"] ? new Date(object["until"]) : null,
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
channel: self.channel,
|
||||
eventTypes: self.eventTypes,
|
||||
since: self.since,
|
||||
status: self.status != null
|
||||
? messageStatus_1.MessageStatusSerializer._toJsonObject(self.status)
|
||||
: undefined,
|
||||
statusCodeClass: self.statusCodeClass != null
|
||||
? statusCodeClass_1.StatusCodeClassSerializer._toJsonObject(self.statusCodeClass)
|
||||
: undefined,
|
||||
tag: self.tag,
|
||||
until: self.until,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=bulkReplayIn.js.map
|
||||
1
node_modules/svix/dist/models/bulkReplayIn.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/bulkReplayIn.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"bulkReplayIn.js","sourceRoot":"","sources":["../../src/models/bulkReplayIn.ts"],"names":[],"mappings":";;;AACA,mDAA8E;AAC9E,uDAAoF;AAYvE,QAAA,sBAAsB,GAAG;IACpC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,OAAO,EAAE,MAAM,CAAC,SAAS,CAAC;YAC1B,UAAU,EAAE,MAAM,CAAC,YAAY,CAAC;YAChC,KAAK,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YAChC,MAAM,EACJ,MAAM,CAAC,QAAQ,CAAC,IAAI,IAAI;gBACtB,CAAC,CAAC,uCAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBAC3D,CAAC,CAAC,SAAS;YACf,eAAe,EACb,MAAM,CAAC,iBAAiB,CAAC,IAAI,IAAI;gBAC/B,CAAC,CAAC,2CAAyB,CAAC,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC;gBACtE,CAAC,CAAC,SAAS;YACf,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC;YAClB,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI;SAC1D,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAkB;QAC9B,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,MAAM,EACJ,IAAI,CAAC,MAAM,IAAI,IAAI;gBACjB,CAAC,CAAC,uCAAuB,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC;gBACpD,CAAC,CAAC,SAAS;YACf,eAAe,EACb,IAAI,CAAC,eAAe,IAAI,IAAI;gBAC1B,CAAC,CAAC,2CAAyB,CAAC,aAAa,CAAC,IAAI,CAAC,eAAe,CAAC;gBAC/D,CAAC,CAAC,SAAS;YACf,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,KAAK,EAAE,IAAI,CAAC,KAAK;SAClB,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
7
node_modules/svix/dist/models/checkbookConfig.d.ts
generated
vendored
Normal file
7
node_modules/svix/dist/models/checkbookConfig.d.ts
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface CheckbookConfig {
|
||||
secret: string;
|
||||
}
|
||||
export declare const CheckbookConfigSerializer: {
|
||||
_fromJsonObject(object: any): CheckbookConfig;
|
||||
_toJsonObject(self: CheckbookConfig): any;
|
||||
};
|
||||
16
node_modules/svix/dist/models/checkbookConfig.js
generated
vendored
Normal file
16
node_modules/svix/dist/models/checkbookConfig.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CheckbookConfigSerializer = void 0;
|
||||
exports.CheckbookConfigSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
secret: object["secret"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
secret: self.secret,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=checkbookConfig.js.map
|
||||
1
node_modules/svix/dist/models/checkbookConfig.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/checkbookConfig.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"checkbookConfig.js","sourceRoot":"","sources":["../../src/models/checkbookConfig.ts"],"names":[],"mappings":";;;AAMa,QAAA,yBAAyB,GAAG;IACvC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC;SACzB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAqB;QACjC,OAAO;YACL,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
6
node_modules/svix/dist/models/checkbookConfigOut.d.ts
generated
vendored
Normal file
6
node_modules/svix/dist/models/checkbookConfigOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface CheckbookConfigOut {
|
||||
}
|
||||
export declare const CheckbookConfigOutSerializer: {
|
||||
_fromJsonObject(_object: any): CheckbookConfigOut;
|
||||
_toJsonObject(_self: CheckbookConfigOut): any;
|
||||
};
|
||||
12
node_modules/svix/dist/models/checkbookConfigOut.js
generated
vendored
Normal file
12
node_modules/svix/dist/models/checkbookConfigOut.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CheckbookConfigOutSerializer = void 0;
|
||||
exports.CheckbookConfigOutSerializer = {
|
||||
_fromJsonObject(_object) {
|
||||
return {};
|
||||
},
|
||||
_toJsonObject(_self) {
|
||||
return {};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=checkbookConfigOut.js.map
|
||||
1
node_modules/svix/dist/models/checkbookConfigOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/checkbookConfigOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"checkbookConfigOut.js","sourceRoot":"","sources":["../../src/models/checkbookConfigOut.ts"],"names":[],"mappings":";;;AAMa,QAAA,4BAA4B,GAAG;IAC1C,eAAe,CAAC,OAAY;QAC1B,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,aAAa,CAAC,KAAyB;QACrC,OAAO,EAAE,CAAC;IACZ,CAAC;CACF,CAAC"}
|
||||
18
node_modules/svix/dist/models/connectorIn.d.ts
generated
vendored
Normal file
18
node_modules/svix/dist/models/connectorIn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import { type ConnectorKind } from "./connectorKind";
|
||||
import { type ConnectorProduct } from "./connectorProduct";
|
||||
export interface ConnectorIn {
|
||||
allowedEventTypes?: string[] | null;
|
||||
description?: string;
|
||||
featureFlags?: string[] | null;
|
||||
instructions?: string;
|
||||
kind?: ConnectorKind;
|
||||
logo?: string | null;
|
||||
name: string;
|
||||
productType?: ConnectorProduct | null;
|
||||
transformation: string;
|
||||
uid?: string | null;
|
||||
}
|
||||
export declare const ConnectorInSerializer: {
|
||||
_fromJsonObject(object: any): ConnectorIn;
|
||||
_toJsonObject(self: ConnectorIn): any;
|
||||
};
|
||||
42
node_modules/svix/dist/models/connectorIn.js
generated
vendored
Normal file
42
node_modules/svix/dist/models/connectorIn.js
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ConnectorInSerializer = void 0;
|
||||
const connectorKind_1 = require("./connectorKind");
|
||||
const connectorProduct_1 = require("./connectorProduct");
|
||||
exports.ConnectorInSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
allowedEventTypes: object["allowedEventTypes"],
|
||||
description: object["description"],
|
||||
featureFlags: object["featureFlags"],
|
||||
instructions: object["instructions"],
|
||||
kind: object["kind"] != null
|
||||
? connectorKind_1.ConnectorKindSerializer._fromJsonObject(object["kind"])
|
||||
: undefined,
|
||||
logo: object["logo"],
|
||||
name: object["name"],
|
||||
productType: object["productType"] != null
|
||||
? connectorProduct_1.ConnectorProductSerializer._fromJsonObject(object["productType"])
|
||||
: undefined,
|
||||
transformation: object["transformation"],
|
||||
uid: object["uid"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
allowedEventTypes: self.allowedEventTypes,
|
||||
description: self.description,
|
||||
featureFlags: self.featureFlags,
|
||||
instructions: self.instructions,
|
||||
kind: self.kind != null ? connectorKind_1.ConnectorKindSerializer._toJsonObject(self.kind) : undefined,
|
||||
logo: self.logo,
|
||||
name: self.name,
|
||||
productType: self.productType != null
|
||||
? connectorProduct_1.ConnectorProductSerializer._toJsonObject(self.productType)
|
||||
: undefined,
|
||||
transformation: self.transformation,
|
||||
uid: self.uid,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=connectorIn.js.map
|
||||
1
node_modules/svix/dist/models/connectorIn.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/connectorIn.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"connectorIn.js","sourceRoot":"","sources":["../../src/models/connectorIn.ts"],"names":[],"mappings":";;;AACA,mDAA8E;AAC9E,yDAAuF;AAgB1E,QAAA,qBAAqB,GAAG;IACnC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,iBAAiB,EAAE,MAAM,CAAC,mBAAmB,CAAC;YAC9C,WAAW,EAAE,MAAM,CAAC,aAAa,CAAC;YAClC,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,IAAI,EACF,MAAM,CAAC,MAAM,CAAC,IAAI,IAAI;gBACpB,CAAC,CAAC,uCAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;gBACzD,CAAC,CAAC,SAAS;YACf,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,WAAW,EACT,MAAM,CAAC,aAAa,CAAC,IAAI,IAAI;gBAC3B,CAAC,CAAC,6CAA0B,CAAC,eAAe,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;gBACnE,CAAC,CAAC,SAAS;YACf,cAAc,EAAE,MAAM,CAAC,gBAAgB,CAAC;YACxC,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC;SACnB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAiB;QAC7B,OAAO;YACL,iBAAiB,EAAE,IAAI,CAAC,iBAAiB;YACzC,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,IAAI,EACF,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,CAAC,uCAAuB,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS;YAClF,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,WAAW,EACT,IAAI,CAAC,WAAW,IAAI,IAAI;gBACtB,CAAC,CAAC,6CAA0B,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC;gBAC5D,CAAC,CAAC,SAAS;YACf,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,GAAG,EAAE,IAAI,CAAC,GAAG;SACd,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
24
node_modules/svix/dist/models/connectorKind.d.ts
generated
vendored
Normal file
24
node_modules/svix/dist/models/connectorKind.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
export declare enum ConnectorKind {
|
||||
Custom = "Custom",
|
||||
AgenticCommerceProtocol = "AgenticCommerceProtocol",
|
||||
CloseCrm = "CloseCRM",
|
||||
CustomerIo = "CustomerIO",
|
||||
Discord = "Discord",
|
||||
Hubspot = "Hubspot",
|
||||
Inngest = "Inngest",
|
||||
Loops = "Loops",
|
||||
Otel = "Otel",
|
||||
Resend = "Resend",
|
||||
Salesforce = "Salesforce",
|
||||
Segment = "Segment",
|
||||
Sendgrid = "Sendgrid",
|
||||
Slack = "Slack",
|
||||
Teams = "Teams",
|
||||
TriggerDev = "TriggerDev",
|
||||
Windmill = "Windmill",
|
||||
Zapier = "Zapier"
|
||||
}
|
||||
export declare const ConnectorKindSerializer: {
|
||||
_fromJsonObject(object: any): ConnectorKind;
|
||||
_toJsonObject(self: ConnectorKind): any;
|
||||
};
|
||||
33
node_modules/svix/dist/models/connectorKind.js
generated
vendored
Normal file
33
node_modules/svix/dist/models/connectorKind.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ConnectorKindSerializer = exports.ConnectorKind = void 0;
|
||||
var ConnectorKind;
|
||||
(function (ConnectorKind) {
|
||||
ConnectorKind["Custom"] = "Custom";
|
||||
ConnectorKind["AgenticCommerceProtocol"] = "AgenticCommerceProtocol";
|
||||
ConnectorKind["CloseCrm"] = "CloseCRM";
|
||||
ConnectorKind["CustomerIo"] = "CustomerIO";
|
||||
ConnectorKind["Discord"] = "Discord";
|
||||
ConnectorKind["Hubspot"] = "Hubspot";
|
||||
ConnectorKind["Inngest"] = "Inngest";
|
||||
ConnectorKind["Loops"] = "Loops";
|
||||
ConnectorKind["Otel"] = "Otel";
|
||||
ConnectorKind["Resend"] = "Resend";
|
||||
ConnectorKind["Salesforce"] = "Salesforce";
|
||||
ConnectorKind["Segment"] = "Segment";
|
||||
ConnectorKind["Sendgrid"] = "Sendgrid";
|
||||
ConnectorKind["Slack"] = "Slack";
|
||||
ConnectorKind["Teams"] = "Teams";
|
||||
ConnectorKind["TriggerDev"] = "TriggerDev";
|
||||
ConnectorKind["Windmill"] = "Windmill";
|
||||
ConnectorKind["Zapier"] = "Zapier";
|
||||
})(ConnectorKind = exports.ConnectorKind || (exports.ConnectorKind = {}));
|
||||
exports.ConnectorKindSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return object;
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return self;
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=connectorKind.js.map
|
||||
1
node_modules/svix/dist/models/connectorKind.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/connectorKind.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"connectorKind.js","sourceRoot":"","sources":["../../src/models/connectorKind.ts"],"names":[],"mappings":";;;AAEA,IAAY,aAmBX;AAnBD,WAAY,aAAa;IACvB,kCAAiB,CAAA;IACjB,oEAAmD,CAAA;IACnD,sCAAqB,CAAA;IACrB,0CAAyB,CAAA;IACzB,oCAAmB,CAAA;IACnB,oCAAmB,CAAA;IACnB,oCAAmB,CAAA;IACnB,gCAAe,CAAA;IACf,8BAAa,CAAA;IACb,kCAAiB,CAAA;IACjB,0CAAyB,CAAA;IACzB,oCAAmB,CAAA;IACnB,sCAAqB,CAAA;IACrB,gCAAe,CAAA;IACf,gCAAe,CAAA;IACf,0CAAyB,CAAA;IACzB,sCAAqB,CAAA;IACrB,kCAAiB,CAAA;AACnB,CAAC,EAnBW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAmBxB;AAEY,QAAA,uBAAuB,GAAG;IACrC,eAAe,CAAC,MAAW;QACzB,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,aAAa,CAAC,IAAmB;QAC/B,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAC"}
|
||||
23
node_modules/svix/dist/models/connectorOut.d.ts
generated
vendored
Normal file
23
node_modules/svix/dist/models/connectorOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import { type ConnectorKind } from "./connectorKind";
|
||||
import { type ConnectorProduct } from "./connectorProduct";
|
||||
export interface ConnectorOut {
|
||||
allowedEventTypes?: string[] | null;
|
||||
createdAt: Date;
|
||||
description: string;
|
||||
featureFlags?: string[] | null;
|
||||
id: string;
|
||||
instructions: string;
|
||||
kind: ConnectorKind;
|
||||
logo?: string | null;
|
||||
name: string;
|
||||
orgId: string;
|
||||
productType: ConnectorProduct;
|
||||
transformation: string;
|
||||
transformationUpdatedAt: Date;
|
||||
uid?: string | null;
|
||||
updatedAt: Date;
|
||||
}
|
||||
export declare const ConnectorOutSerializer: {
|
||||
_fromJsonObject(object: any): ConnectorOut;
|
||||
_toJsonObject(self: ConnectorOut): any;
|
||||
};
|
||||
46
node_modules/svix/dist/models/connectorOut.js
generated
vendored
Normal file
46
node_modules/svix/dist/models/connectorOut.js
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ConnectorOutSerializer = void 0;
|
||||
const connectorKind_1 = require("./connectorKind");
|
||||
const connectorProduct_1 = require("./connectorProduct");
|
||||
exports.ConnectorOutSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
allowedEventTypes: object["allowedEventTypes"],
|
||||
createdAt: new Date(object["createdAt"]),
|
||||
description: object["description"],
|
||||
featureFlags: object["featureFlags"],
|
||||
id: object["id"],
|
||||
instructions: object["instructions"],
|
||||
kind: connectorKind_1.ConnectorKindSerializer._fromJsonObject(object["kind"]),
|
||||
logo: object["logo"],
|
||||
name: object["name"],
|
||||
orgId: object["orgId"],
|
||||
productType: connectorProduct_1.ConnectorProductSerializer._fromJsonObject(object["productType"]),
|
||||
transformation: object["transformation"],
|
||||
transformationUpdatedAt: new Date(object["transformationUpdatedAt"]),
|
||||
uid: object["uid"],
|
||||
updatedAt: new Date(object["updatedAt"]),
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
allowedEventTypes: self.allowedEventTypes,
|
||||
createdAt: self.createdAt,
|
||||
description: self.description,
|
||||
featureFlags: self.featureFlags,
|
||||
id: self.id,
|
||||
instructions: self.instructions,
|
||||
kind: connectorKind_1.ConnectorKindSerializer._toJsonObject(self.kind),
|
||||
logo: self.logo,
|
||||
name: self.name,
|
||||
orgId: self.orgId,
|
||||
productType: connectorProduct_1.ConnectorProductSerializer._toJsonObject(self.productType),
|
||||
transformation: self.transformation,
|
||||
transformationUpdatedAt: self.transformationUpdatedAt,
|
||||
uid: self.uid,
|
||||
updatedAt: self.updatedAt,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=connectorOut.js.map
|
||||
1
node_modules/svix/dist/models/connectorOut.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/connectorOut.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"connectorOut.js","sourceRoot":"","sources":["../../src/models/connectorOut.ts"],"names":[],"mappings":";;;AACA,mDAA8E;AAC9E,yDAAuF;AAuB1E,QAAA,sBAAsB,GAAG;IACpC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,iBAAiB,EAAE,MAAM,CAAC,mBAAmB,CAAC;YAC9C,SAAS,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;YACxC,WAAW,EAAE,MAAM,CAAC,aAAa,CAAC;YAClC,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC;YAChB,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,IAAI,EAAE,uCAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAC7D,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC;YACtB,WAAW,EAAE,6CAA0B,CAAC,eAAe,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;YAC9E,cAAc,EAAE,MAAM,CAAC,gBAAgB,CAAC;YACxC,uBAAuB,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,yBAAyB,CAAC,CAAC;YACpE,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC;YAClB,SAAS,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;SACzC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAkB;QAC9B,OAAO;YACL,iBAAiB,EAAE,IAAI,CAAC,iBAAiB;YACzC,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,EAAE,EAAE,IAAI,CAAC,EAAE;YACX,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,IAAI,EAAE,uCAAuB,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;YACtD,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,WAAW,EAAE,6CAA0B,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC;YACvE,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,uBAAuB,EAAE,IAAI,CAAC,uBAAuB;YACrD,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
15
node_modules/svix/dist/models/connectorPatch.d.ts
generated
vendored
Normal file
15
node_modules/svix/dist/models/connectorPatch.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { type ConnectorKind } from "./connectorKind";
|
||||
export interface ConnectorPatch {
|
||||
allowedEventTypes?: string[] | null;
|
||||
description?: string;
|
||||
featureFlags?: string[] | null;
|
||||
instructions?: string;
|
||||
kind?: ConnectorKind;
|
||||
logo?: string | null;
|
||||
name?: string;
|
||||
transformation?: string;
|
||||
}
|
||||
export declare const ConnectorPatchSerializer: {
|
||||
_fromJsonObject(object: any): ConnectorPatch;
|
||||
_toJsonObject(self: ConnectorPatch): any;
|
||||
};
|
||||
33
node_modules/svix/dist/models/connectorPatch.js
generated
vendored
Normal file
33
node_modules/svix/dist/models/connectorPatch.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ConnectorPatchSerializer = void 0;
|
||||
const connectorKind_1 = require("./connectorKind");
|
||||
exports.ConnectorPatchSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
allowedEventTypes: object["allowedEventTypes"],
|
||||
description: object["description"],
|
||||
featureFlags: object["featureFlags"],
|
||||
instructions: object["instructions"],
|
||||
kind: object["kind"] != null
|
||||
? connectorKind_1.ConnectorKindSerializer._fromJsonObject(object["kind"])
|
||||
: undefined,
|
||||
logo: object["logo"],
|
||||
name: object["name"],
|
||||
transformation: object["transformation"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
allowedEventTypes: self.allowedEventTypes,
|
||||
description: self.description,
|
||||
featureFlags: self.featureFlags,
|
||||
instructions: self.instructions,
|
||||
kind: self.kind != null ? connectorKind_1.ConnectorKindSerializer._toJsonObject(self.kind) : undefined,
|
||||
logo: self.logo,
|
||||
name: self.name,
|
||||
transformation: self.transformation,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=connectorPatch.js.map
|
||||
1
node_modules/svix/dist/models/connectorPatch.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/connectorPatch.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"connectorPatch.js","sourceRoot":"","sources":["../../src/models/connectorPatch.ts"],"names":[],"mappings":";;;AACA,mDAA8E;AAajE,QAAA,wBAAwB,GAAG;IACtC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,iBAAiB,EAAE,MAAM,CAAC,mBAAmB,CAAC;YAC9C,WAAW,EAAE,MAAM,CAAC,aAAa,CAAC;YAClC,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,IAAI,EACF,MAAM,CAAC,MAAM,CAAC,IAAI,IAAI;gBACpB,CAAC,CAAC,uCAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;gBACzD,CAAC,CAAC,SAAS;YACf,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,cAAc,EAAE,MAAM,CAAC,gBAAgB,CAAC;SACzC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAoB;QAChC,OAAO;YACL,iBAAiB,EAAE,IAAI,CAAC,iBAAiB;YACzC,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,IAAI,EACF,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,CAAC,uCAAuB,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS;YAClF,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,cAAc,EAAE,IAAI,CAAC,cAAc;SACpC,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
8
node_modules/svix/dist/models/connectorProduct.d.ts
generated
vendored
Normal file
8
node_modules/svix/dist/models/connectorProduct.d.ts
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export declare enum ConnectorProduct {
|
||||
Dispatch = "Dispatch",
|
||||
Stream = "Stream"
|
||||
}
|
||||
export declare const ConnectorProductSerializer: {
|
||||
_fromJsonObject(object: any): ConnectorProduct;
|
||||
_toJsonObject(self: ConnectorProduct): any;
|
||||
};
|
||||
17
node_modules/svix/dist/models/connectorProduct.js
generated
vendored
Normal file
17
node_modules/svix/dist/models/connectorProduct.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ConnectorProductSerializer = exports.ConnectorProduct = void 0;
|
||||
var ConnectorProduct;
|
||||
(function (ConnectorProduct) {
|
||||
ConnectorProduct["Dispatch"] = "Dispatch";
|
||||
ConnectorProduct["Stream"] = "Stream";
|
||||
})(ConnectorProduct = exports.ConnectorProduct || (exports.ConnectorProduct = {}));
|
||||
exports.ConnectorProductSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return object;
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return self;
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=connectorProduct.js.map
|
||||
1
node_modules/svix/dist/models/connectorProduct.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/connectorProduct.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"connectorProduct.js","sourceRoot":"","sources":["../../src/models/connectorProduct.ts"],"names":[],"mappings":";;;AAEA,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IAC1B,yCAAqB,CAAA;IACrB,qCAAiB,CAAA;AACnB,CAAC,EAHW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAG3B;AAEY,QAAA,0BAA0B,GAAG;IACxC,eAAe,CAAC,MAAW;QACzB,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,aAAa,CAAC,IAAsB;QAClC,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAC"}
|
||||
15
node_modules/svix/dist/models/connectorUpdate.d.ts
generated
vendored
Normal file
15
node_modules/svix/dist/models/connectorUpdate.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { type ConnectorKind } from "./connectorKind";
|
||||
export interface ConnectorUpdate {
|
||||
allowedEventTypes?: string[] | null;
|
||||
description?: string;
|
||||
featureFlags?: string[] | null;
|
||||
instructions?: string;
|
||||
kind?: ConnectorKind;
|
||||
logo?: string | null;
|
||||
name?: string;
|
||||
transformation: string;
|
||||
}
|
||||
export declare const ConnectorUpdateSerializer: {
|
||||
_fromJsonObject(object: any): ConnectorUpdate;
|
||||
_toJsonObject(self: ConnectorUpdate): any;
|
||||
};
|
||||
33
node_modules/svix/dist/models/connectorUpdate.js
generated
vendored
Normal file
33
node_modules/svix/dist/models/connectorUpdate.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ConnectorUpdateSerializer = void 0;
|
||||
const connectorKind_1 = require("./connectorKind");
|
||||
exports.ConnectorUpdateSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
allowedEventTypes: object["allowedEventTypes"],
|
||||
description: object["description"],
|
||||
featureFlags: object["featureFlags"],
|
||||
instructions: object["instructions"],
|
||||
kind: object["kind"] != null
|
||||
? connectorKind_1.ConnectorKindSerializer._fromJsonObject(object["kind"])
|
||||
: undefined,
|
||||
logo: object["logo"],
|
||||
name: object["name"],
|
||||
transformation: object["transformation"],
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
allowedEventTypes: self.allowedEventTypes,
|
||||
description: self.description,
|
||||
featureFlags: self.featureFlags,
|
||||
instructions: self.instructions,
|
||||
kind: self.kind != null ? connectorKind_1.ConnectorKindSerializer._toJsonObject(self.kind) : undefined,
|
||||
logo: self.logo,
|
||||
name: self.name,
|
||||
transformation: self.transformation,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=connectorUpdate.js.map
|
||||
1
node_modules/svix/dist/models/connectorUpdate.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/connectorUpdate.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"connectorUpdate.js","sourceRoot":"","sources":["../../src/models/connectorUpdate.ts"],"names":[],"mappings":";;;AACA,mDAA8E;AAajE,QAAA,yBAAyB,GAAG;IACvC,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,iBAAiB,EAAE,MAAM,CAAC,mBAAmB,CAAC;YAC9C,WAAW,EAAE,MAAM,CAAC,aAAa,CAAC;YAClC,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,YAAY,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,IAAI,EACF,MAAM,CAAC,MAAM,CAAC,IAAI,IAAI;gBACpB,CAAC,CAAC,uCAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;gBACzD,CAAC,CAAC,SAAS;YACf,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;YACpB,cAAc,EAAE,MAAM,CAAC,gBAAgB,CAAC;SACzC,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAAqB;QACjC,OAAO;YACL,iBAAiB,EAAE,IAAI,CAAC,iBAAiB;YACzC,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,IAAI,EACF,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,CAAC,uCAAuB,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS;YAClF,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,cAAc,EAAE,IAAI,CAAC,cAAc;SACpC,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
10
node_modules/svix/dist/models/createStreamEventsIn.d.ts
generated
vendored
Normal file
10
node_modules/svix/dist/models/createStreamEventsIn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { type EventIn } from "./eventIn";
|
||||
import { type StreamIn } from "./streamIn";
|
||||
export interface CreateStreamEventsIn {
|
||||
events: EventIn[];
|
||||
stream?: StreamIn | null;
|
||||
}
|
||||
export declare const CreateStreamEventsInSerializer: {
|
||||
_fromJsonObject(object: any): CreateStreamEventsIn;
|
||||
_toJsonObject(self: CreateStreamEventsIn): any;
|
||||
};
|
||||
22
node_modules/svix/dist/models/createStreamEventsIn.js
generated
vendored
Normal file
22
node_modules/svix/dist/models/createStreamEventsIn.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CreateStreamEventsInSerializer = void 0;
|
||||
const eventIn_1 = require("./eventIn");
|
||||
const streamIn_1 = require("./streamIn");
|
||||
exports.CreateStreamEventsInSerializer = {
|
||||
_fromJsonObject(object) {
|
||||
return {
|
||||
events: object["events"].map((item) => eventIn_1.EventInSerializer._fromJsonObject(item)),
|
||||
stream: object["stream"] != null
|
||||
? streamIn_1.StreamInSerializer._fromJsonObject(object["stream"])
|
||||
: undefined,
|
||||
};
|
||||
},
|
||||
_toJsonObject(self) {
|
||||
return {
|
||||
events: self.events.map((item) => eventIn_1.EventInSerializer._toJsonObject(item)),
|
||||
stream: self.stream != null ? streamIn_1.StreamInSerializer._toJsonObject(self.stream) : undefined,
|
||||
};
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=createStreamEventsIn.js.map
|
||||
1
node_modules/svix/dist/models/createStreamEventsIn.js.map
generated
vendored
Normal file
1
node_modules/svix/dist/models/createStreamEventsIn.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"createStreamEventsIn.js","sourceRoot":"","sources":["../../src/models/createStreamEventsIn.ts"],"names":[],"mappings":";;;AACA,uCAA4D;AAC5D,yCAA+D;AAYlD,QAAA,8BAA8B,GAAG;IAC5C,eAAe,CAAC,MAAW;QACzB,OAAO;YACL,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC,IAAa,EAAE,EAAE,CAC7C,2BAAiB,CAAC,eAAe,CAAC,IAAI,CAAC,CACxC;YACD,MAAM,EACJ,MAAM,CAAC,QAAQ,CAAC,IAAI,IAAI;gBACtB,CAAC,CAAC,6BAAkB,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBACtD,CAAC,CAAC,SAAS;SAChB,CAAC;IACJ,CAAC;IAED,aAAa,CAAC,IAA0B;QACtC,OAAO;YACL,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,2BAAiB,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;YACxE,MAAM,EACJ,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,6BAAkB,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS;SAClF,CAAC;IACJ,CAAC;CACF,CAAC"}
|
||||
6
node_modules/svix/dist/models/createStreamEventsOut.d.ts
generated
vendored
Normal file
6
node_modules/svix/dist/models/createStreamEventsOut.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface CreateStreamEventsOut {
|
||||
}
|
||||
export declare const CreateStreamEventsOutSerializer: {
|
||||
_fromJsonObject(_object: any): CreateStreamEventsOut;
|
||||
_toJsonObject(_self: CreateStreamEventsOut): any;
|
||||
};
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user