@ichos/sdk 1.0.13 → 1.0.14
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.
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export interface LinkTo {
|
|
2
|
-
|
|
2
|
+
type: LinkTo.Type;
|
|
3
3
|
id: string;
|
|
4
4
|
}
|
|
5
5
|
export declare namespace LinkTo {
|
|
6
|
-
const
|
|
6
|
+
const Type: {
|
|
7
7
|
readonly Episode: "episode";
|
|
8
8
|
readonly Ad: "ad";
|
|
9
9
|
readonly Segment: "segment";
|
|
10
10
|
};
|
|
11
|
-
type
|
|
11
|
+
type Type = (typeof Type)[keyof typeof Type];
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=LinkTo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LinkTo.d.ts","sourceRoot":"","sources":["../../../src/api/types/LinkTo.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,MAAM;IACnB,
|
|
1
|
+
{"version":3,"file":"LinkTo.d.ts","sourceRoot":"","sources":["../../../src/api/types/LinkTo.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,MAAM;IACnB,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC;IAClB,EAAE,EAAE,MAAM,CAAC;CACd;AAED,yBAAiB,MAAM,CAAC;IACb,MAAM,IAAI;;;;KAIP,CAAC;IACX,KAAY,IAAI,GAAG,CAAC,OAAO,IAAI,CAAC,CAAC,MAAM,OAAO,IAAI,CAAC,CAAC;CACvD"}
|
package/dist/api/types/LinkTo.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LinkTo.js","sourceRoot":"","sources":["../../../src/api/types/LinkTo.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAOhE,MAAM,KAAW,MAAM,CAOtB;AAPD,WAAiB,
|
|
1
|
+
{"version":3,"file":"LinkTo.js","sourceRoot":"","sources":["../../../src/api/types/LinkTo.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAOhE,MAAM,KAAW,MAAM,CAOtB;AAPD,WAAiB,MAAM;IACN,WAAI,GAAG;QAChB,OAAO,EAAE,SAAS;QAClB,EAAE,EAAE,IAAI;QACR,OAAO,EAAE,SAAS;KACZ,CAAC;AAEf,CAAC,EAPgB,MAAM,KAAN,MAAM,QAOtB"}
|
package/package.json
CHANGED
package/src/api/types/LinkTo.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
// This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
export interface LinkTo {
|
|
4
|
-
|
|
4
|
+
type: LinkTo.Type;
|
|
5
5
|
id: string;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export namespace LinkTo {
|
|
9
|
-
export const
|
|
9
|
+
export const Type = {
|
|
10
10
|
Episode: "episode",
|
|
11
11
|
Ad: "ad",
|
|
12
12
|
Segment: "segment",
|
|
13
13
|
} as const;
|
|
14
|
-
export type
|
|
14
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
15
15
|
}
|