@streamscloud/streams-api-client 1.0.0
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 +1 -0
- package/dist/adcampaignsquery.graphql +42 -0
- package/dist/articlequery.graphql +135 -0
- package/dist/contentlistsquery.graphql +12 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +347 -0
- package/dist/index.js.map +1 -0
- package/dist/postsquery.graphql +152 -0
- package/dist/streams-api-client-model.d.ts +5 -0
- package/dist/streams-api-client-model.js +2 -0
- package/dist/streams-api-client-model.js.map +1 -0
- package/dist/streams-content-api-client.d.ts +14 -0
- package/dist/streams-content-api-client.js +87 -0
- package/dist/streams-content-api-client.js.map +1 -0
- package/dist/types.d.ts +790 -0
- package/dist/types.js +221 -0
- package/dist/types.js.map +1 -0
- package/package.json +30 -0
package/dist/types.js
ADDED
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
export var AdType;
|
|
2
|
+
(function (AdType) {
|
|
3
|
+
AdType["BannerResponsive"] = "BANNER_RESPONSIVE";
|
|
4
|
+
AdType["MediaDialogPromotion"] = "MEDIA_DIALOG_PROMOTION";
|
|
5
|
+
AdType["Story"] = "STORY";
|
|
6
|
+
})(AdType || (AdType = {}));
|
|
7
|
+
export var AdPricingPlan;
|
|
8
|
+
(function (AdPricingPlan) {
|
|
9
|
+
AdPricingPlan["Free"] = "FREE";
|
|
10
|
+
AdPricingPlan["Paid"] = "PAID";
|
|
11
|
+
})(AdPricingPlan || (AdPricingPlan = {}));
|
|
12
|
+
export var AdStatus;
|
|
13
|
+
(function (AdStatus) {
|
|
14
|
+
AdStatus["Archived"] = "ARCHIVED";
|
|
15
|
+
AdStatus["Draft"] = "DRAFT";
|
|
16
|
+
AdStatus["Published"] = "PUBLISHED";
|
|
17
|
+
})(AdStatus || (AdStatus = {}));
|
|
18
|
+
export var SiteAdCampaignsOrderBy;
|
|
19
|
+
(function (SiteAdCampaignsOrderBy) {
|
|
20
|
+
SiteAdCampaignsOrderBy["Created"] = "CREATED";
|
|
21
|
+
SiteAdCampaignsOrderBy["Modified"] = "MODIFIED";
|
|
22
|
+
SiteAdCampaignsOrderBy["Name"] = "NAME";
|
|
23
|
+
})(SiteAdCampaignsOrderBy || (SiteAdCampaignsOrderBy = {}));
|
|
24
|
+
export var ArticleFieldType;
|
|
25
|
+
(function (ArticleFieldType) {
|
|
26
|
+
ArticleFieldType["Byline"] = "BYLINE";
|
|
27
|
+
ArticleFieldType["Image"] = "IMAGE";
|
|
28
|
+
ArticleFieldType["Media"] = "MEDIA";
|
|
29
|
+
ArticleFieldType["MediaGallery"] = "MEDIA_GALLERY";
|
|
30
|
+
ArticleFieldType["RichText"] = "RICH_TEXT";
|
|
31
|
+
ArticleFieldType["Text"] = "TEXT";
|
|
32
|
+
ArticleFieldType["Video"] = "VIDEO";
|
|
33
|
+
})(ArticleFieldType || (ArticleFieldType = {}));
|
|
34
|
+
export var ArticleLayoutType;
|
|
35
|
+
(function (ArticleLayoutType) {
|
|
36
|
+
ArticleLayoutType["Vertical"] = "VERTICAL";
|
|
37
|
+
})(ArticleLayoutType || (ArticleLayoutType = {}));
|
|
38
|
+
export var Currency;
|
|
39
|
+
(function (Currency) {
|
|
40
|
+
Currency["Eur"] = "EUR";
|
|
41
|
+
Currency["Nok"] = "NOK";
|
|
42
|
+
Currency["Usd"] = "USD";
|
|
43
|
+
})(Currency || (Currency = {}));
|
|
44
|
+
export var DisplayVariant;
|
|
45
|
+
(function (DisplayVariant) {
|
|
46
|
+
DisplayVariant["Variant1"] = "VARIANT1";
|
|
47
|
+
})(DisplayVariant || (DisplayVariant = {}));
|
|
48
|
+
export var GalleryFieldMode;
|
|
49
|
+
(function (GalleryFieldMode) {
|
|
50
|
+
GalleryFieldMode["Gallery"] = "GALLERY";
|
|
51
|
+
GalleryFieldMode["Slider"] = "SLIDER";
|
|
52
|
+
})(GalleryFieldMode || (GalleryFieldMode = {}));
|
|
53
|
+
export var ImageScale;
|
|
54
|
+
(function (ImageScale) {
|
|
55
|
+
ImageScale["Big"] = "BIG";
|
|
56
|
+
ImageScale["Medium"] = "MEDIUM";
|
|
57
|
+
ImageScale["OriginalEncoded"] = "ORIGINAL_ENCODED";
|
|
58
|
+
ImageScale["Small"] = "SMALL";
|
|
59
|
+
})(ImageScale || (ImageScale = {}));
|
|
60
|
+
export var LayoutMode;
|
|
61
|
+
(function (LayoutMode) {
|
|
62
|
+
LayoutMode["Horizontal"] = "HORIZONTAL";
|
|
63
|
+
LayoutMode["Standard"] = "STANDARD";
|
|
64
|
+
})(LayoutMode || (LayoutMode = {}));
|
|
65
|
+
export var MediaFormat;
|
|
66
|
+
(function (MediaFormat) {
|
|
67
|
+
MediaFormat["W4H3"] = "W4H3";
|
|
68
|
+
MediaFormat["W16H9"] = "W16H9";
|
|
69
|
+
})(MediaFormat || (MediaFormat = {}));
|
|
70
|
+
export var MediaType;
|
|
71
|
+
(function (MediaType) {
|
|
72
|
+
MediaType["Audio"] = "AUDIO";
|
|
73
|
+
MediaType["Image"] = "IMAGE";
|
|
74
|
+
MediaType["ShortVideo"] = "SHORT_VIDEO";
|
|
75
|
+
MediaType["Video"] = "VIDEO";
|
|
76
|
+
})(MediaType || (MediaType = {}));
|
|
77
|
+
export var MomentLifetime;
|
|
78
|
+
(function (MomentLifetime) {
|
|
79
|
+
MomentLifetime["Day"] = "DAY";
|
|
80
|
+
MomentLifetime["Week"] = "WEEK";
|
|
81
|
+
})(MomentLifetime || (MomentLifetime = {}));
|
|
82
|
+
export var PostCategory;
|
|
83
|
+
(function (PostCategory) {
|
|
84
|
+
PostCategory["Education"] = "EDUCATION";
|
|
85
|
+
PostCategory["Entertainment"] = "ENTERTAINMENT";
|
|
86
|
+
PostCategory["Events"] = "EVENTS";
|
|
87
|
+
PostCategory["News"] = "NEWS";
|
|
88
|
+
PostCategory["Shopping"] = "SHOPPING";
|
|
89
|
+
PostCategory["Sports"] = "SPORTS";
|
|
90
|
+
})(PostCategory || (PostCategory = {}));
|
|
91
|
+
export var PostSourceType;
|
|
92
|
+
(function (PostSourceType) {
|
|
93
|
+
PostSourceType["Channel"] = "CHANNEL";
|
|
94
|
+
PostSourceType["Group"] = "GROUP";
|
|
95
|
+
PostSourceType["MediaPage"] = "MEDIA_PAGE";
|
|
96
|
+
PostSourceType["Organization"] = "ORGANIZATION";
|
|
97
|
+
PostSourceType["UserProfile"] = "USER_PROFILE";
|
|
98
|
+
})(PostSourceType || (PostSourceType = {}));
|
|
99
|
+
export var PostType;
|
|
100
|
+
(function (PostType) {
|
|
101
|
+
PostType["Article"] = "ARTICLE";
|
|
102
|
+
PostType["Audio"] = "AUDIO";
|
|
103
|
+
PostType["Event"] = "EVENT";
|
|
104
|
+
PostType["Link"] = "LINK";
|
|
105
|
+
PostType["Media"] = "MEDIA";
|
|
106
|
+
PostType["Moment"] = "MOMENT";
|
|
107
|
+
PostType["ShortVideo"] = "SHORT_VIDEO";
|
|
108
|
+
PostType["Text"] = "TEXT";
|
|
109
|
+
PostType["Video"] = "VIDEO";
|
|
110
|
+
})(PostType || (PostType = {}));
|
|
111
|
+
export var PostedAs;
|
|
112
|
+
(function (PostedAs) {
|
|
113
|
+
PostedAs["AuthorProfile"] = "AUTHOR_PROFILE";
|
|
114
|
+
PostedAs["OwnerProfile"] = "OWNER_PROFILE";
|
|
115
|
+
})(PostedAs || (PostedAs = {}));
|
|
116
|
+
export var PricingMeasureUnit;
|
|
117
|
+
(function (PricingMeasureUnit) {
|
|
118
|
+
PricingMeasureUnit["Other"] = "OTHER";
|
|
119
|
+
PricingMeasureUnit["PerBag"] = "PER_BAG";
|
|
120
|
+
PricingMeasureUnit["PerBox"] = "PER_BOX";
|
|
121
|
+
PricingMeasureUnit["PerBucket"] = "PER_BUCKET";
|
|
122
|
+
PricingMeasureUnit["PerCentiliter"] = "PER_CENTILITER";
|
|
123
|
+
PricingMeasureUnit["PerCentimeter"] = "PER_CENTIMETER";
|
|
124
|
+
PricingMeasureUnit["PerCubicMeter"] = "PER_CUBIC_METER";
|
|
125
|
+
PricingMeasureUnit["PerFluidOunce"] = "PER_FLUID_OUNCE";
|
|
126
|
+
PricingMeasureUnit["PerFoot"] = "PER_FOOT";
|
|
127
|
+
PricingMeasureUnit["PerGallon"] = "PER_GALLON";
|
|
128
|
+
PricingMeasureUnit["PerGram"] = "PER_GRAM";
|
|
129
|
+
PricingMeasureUnit["PerInch"] = "PER_INCH";
|
|
130
|
+
PricingMeasureUnit["PerKilogram"] = "PER_KILOGRAM";
|
|
131
|
+
PricingMeasureUnit["PerLiter"] = "PER_LITER";
|
|
132
|
+
PricingMeasureUnit["PerMeter"] = "PER_METER";
|
|
133
|
+
PricingMeasureUnit["PerMilligram"] = "PER_MILLIGRAM";
|
|
134
|
+
PricingMeasureUnit["PerMilliliter"] = "PER_MILLILITER";
|
|
135
|
+
PricingMeasureUnit["PerOunce"] = "PER_OUNCE";
|
|
136
|
+
PricingMeasureUnit["PerPackage"] = "PER_PACKAGE";
|
|
137
|
+
PricingMeasureUnit["PerPair"] = "PER_PAIR";
|
|
138
|
+
PricingMeasureUnit["PerPint"] = "PER_PINT";
|
|
139
|
+
PricingMeasureUnit["PerPound"] = "PER_POUND";
|
|
140
|
+
PricingMeasureUnit["PerQuart"] = "PER_QUART";
|
|
141
|
+
PricingMeasureUnit["PerRoll"] = "PER_ROLL";
|
|
142
|
+
PricingMeasureUnit["PerRunningMeter"] = "PER_RUNNING_METER";
|
|
143
|
+
PricingMeasureUnit["PerSet"] = "PER_SET";
|
|
144
|
+
PricingMeasureUnit["PerSquareFoot"] = "PER_SQUARE_FOOT";
|
|
145
|
+
PricingMeasureUnit["PerSquareMeter"] = "PER_SQUARE_METER";
|
|
146
|
+
PricingMeasureUnit["PerTube"] = "PER_TUBE";
|
|
147
|
+
PricingMeasureUnit["PerUnit"] = "PER_UNIT";
|
|
148
|
+
PricingMeasureUnit["PerYard"] = "PER_YARD";
|
|
149
|
+
})(PricingMeasureUnit || (PricingMeasureUnit = {}));
|
|
150
|
+
export var ProductAnnotationPosition;
|
|
151
|
+
(function (ProductAnnotationPosition) {
|
|
152
|
+
ProductAnnotationPosition["BottomLeft"] = "BOTTOM_LEFT";
|
|
153
|
+
ProductAnnotationPosition["BottomRight"] = "BOTTOM_RIGHT";
|
|
154
|
+
ProductAnnotationPosition["TopLeft"] = "TOP_LEFT";
|
|
155
|
+
ProductAnnotationPosition["TopRight"] = "TOP_RIGHT";
|
|
156
|
+
})(ProductAnnotationPosition || (ProductAnnotationPosition = {}));
|
|
157
|
+
export var ProductAnnotationType;
|
|
158
|
+
(function (ProductAnnotationType) {
|
|
159
|
+
ProductAnnotationType["Svg"] = "SVG";
|
|
160
|
+
})(ProductAnnotationType || (ProductAnnotationType = {}));
|
|
161
|
+
export var ProductAvailability;
|
|
162
|
+
(function (ProductAvailability) {
|
|
163
|
+
ProductAvailability["Backorder"] = "BACKORDER";
|
|
164
|
+
ProductAvailability["InStock"] = "IN_STOCK";
|
|
165
|
+
ProductAvailability["OutOfStock"] = "OUT_OF_STOCK";
|
|
166
|
+
ProductAvailability["Preorder"] = "PREORDER";
|
|
167
|
+
})(ProductAvailability || (ProductAvailability = {}));
|
|
168
|
+
export var ProductStatus;
|
|
169
|
+
(function (ProductStatus) {
|
|
170
|
+
ProductStatus["Archived"] = "ARCHIVED";
|
|
171
|
+
ProductStatus["Draft"] = "DRAFT";
|
|
172
|
+
ProductStatus["Published"] = "PUBLISHED";
|
|
173
|
+
})(ProductStatus || (ProductStatus = {}));
|
|
174
|
+
export var ProfileType;
|
|
175
|
+
(function (ProfileType) {
|
|
176
|
+
ProfileType["Channel"] = "CHANNEL";
|
|
177
|
+
ProfileType["Group"] = "GROUP";
|
|
178
|
+
ProfileType["Organization"] = "ORGANIZATION";
|
|
179
|
+
ProfileType["User"] = "USER";
|
|
180
|
+
})(ProfileType || (ProfileType = {}));
|
|
181
|
+
export var PublishTargetType;
|
|
182
|
+
(function (PublishTargetType) {
|
|
183
|
+
PublishTargetType["Channel"] = "CHANNEL";
|
|
184
|
+
PublishTargetType["Group"] = "GROUP";
|
|
185
|
+
PublishTargetType["MediaPage"] = "MEDIA_PAGE";
|
|
186
|
+
PublishTargetType["User"] = "USER";
|
|
187
|
+
})(PublishTargetType || (PublishTargetType = {}));
|
|
188
|
+
export var ReactableType;
|
|
189
|
+
(function (ReactableType) {
|
|
190
|
+
ReactableType["ChatMessage"] = "CHAT_MESSAGE";
|
|
191
|
+
ReactableType["Comment"] = "COMMENT";
|
|
192
|
+
ReactableType["CommunityMessage"] = "COMMUNITY_MESSAGE";
|
|
193
|
+
ReactableType["Post"] = "POST";
|
|
194
|
+
})(ReactableType || (ReactableType = {}));
|
|
195
|
+
export var SitePostsOrderBy;
|
|
196
|
+
(function (SitePostsOrderBy) {
|
|
197
|
+
SitePostsOrderBy["Published"] = "PUBLISHED";
|
|
198
|
+
})(SitePostsOrderBy || (SitePostsOrderBy = {}));
|
|
199
|
+
export var Status;
|
|
200
|
+
(function (Status) {
|
|
201
|
+
Status["Archived"] = "ARCHIVED";
|
|
202
|
+
Status["Draft"] = "DRAFT";
|
|
203
|
+
Status["Published"] = "PUBLISHED";
|
|
204
|
+
Status["Scheduled"] = "SCHEDULED";
|
|
205
|
+
})(Status || (Status = {}));
|
|
206
|
+
export var TextFieldMode;
|
|
207
|
+
(function (TextFieldMode) {
|
|
208
|
+
TextFieldMode["Multiline"] = "MULTILINE";
|
|
209
|
+
TextFieldMode["SingleLine"] = "SINGLE_LINE";
|
|
210
|
+
})(TextFieldMode || (TextFieldMode = {}));
|
|
211
|
+
export var TextFieldWeight;
|
|
212
|
+
(function (TextFieldWeight) {
|
|
213
|
+
TextFieldWeight["Bold"] = "BOLD";
|
|
214
|
+
TextFieldWeight["Normal"] = "NORMAL";
|
|
215
|
+
TextFieldWeight["SemiBold"] = "SEMI_BOLD";
|
|
216
|
+
})(TextFieldWeight || (TextFieldWeight = {}));
|
|
217
|
+
export var SiteContentListsOrderBy;
|
|
218
|
+
(function (SiteContentListsOrderBy) {
|
|
219
|
+
SiteContentListsOrderBy["Name"] = "NAME";
|
|
220
|
+
})(SiteContentListsOrderBy || (SiteContentListsOrderBy = {}));
|
|
221
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AA6CA,MAAM,CAAN,IAAY,MAIX;AAJD,WAAY,MAAM;IAChB,gDAAsC,CAAA;IACtC,yDAA+C,CAAA;IAC/C,yBAAe,CAAA;AACjB,CAAC,EAJW,MAAM,KAAN,MAAM,QAIjB;AAED,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,8BAAa,CAAA;IACb,8BAAa,CAAA;AACf,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB;AAED,MAAM,CAAN,IAAY,QAIX;AAJD,WAAY,QAAQ;IAClB,iCAAqB,CAAA;IACrB,2BAAe,CAAA;IACf,mCAAuB,CAAA;AACzB,CAAC,EAJW,QAAQ,KAAR,QAAQ,QAInB;AAED,MAAM,CAAN,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IAChC,6CAAmB,CAAA;IACnB,+CAAqB,CAAA;IACrB,uCAAa,CAAA;AACf,CAAC,EAJW,sBAAsB,KAAtB,sBAAsB,QAIjC;AAkED,MAAM,CAAN,IAAY,gBAQX;AARD,WAAY,gBAAgB;IAC1B,qCAAiB,CAAA;IACjB,mCAAe,CAAA;IACf,mCAAe,CAAA;IACf,kDAA8B,CAAA;IAC9B,0CAAsB,CAAA;IACtB,iCAAa,CAAA;IACb,mCAAe,CAAA;AACjB,CAAC,EARW,gBAAgB,KAAhB,gBAAgB,QAQ3B;AAgBD,MAAM,CAAN,IAAY,iBAEX;AAFD,WAAY,iBAAiB;IAC3B,0CAAqB,CAAA;AACvB,CAAC,EAFW,iBAAiB,KAAjB,iBAAiB,QAE5B;AA+FD,MAAM,CAAN,IAAY,QAIX;AAJD,WAAY,QAAQ;IAClB,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;AACb,CAAC,EAJW,QAAQ,KAAR,QAAQ,QAInB;AAaD,MAAM,CAAN,IAAY,cAEX;AAFD,WAAY,cAAc;IACxB,uCAAqB,CAAA;AACvB,CAAC,EAFW,cAAc,KAAd,cAAc,QAEzB;AAWD,MAAM,CAAN,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IAC1B,uCAAmB,CAAA;IACnB,qCAAiB,CAAA;AACnB,CAAC,EAHW,gBAAgB,KAAhB,gBAAgB,QAG3B;AAgBD,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,yBAAW,CAAA;IACX,+BAAiB,CAAA;IACjB,kDAAoC,CAAA;IACpC,6BAAe,CAAA;AACjB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AAED,MAAM,CAAN,IAAY,UAGX;AAHD,WAAY,UAAU;IACpB,uCAAyB,CAAA;IACzB,mCAAqB,CAAA;AACvB,CAAC,EAHW,UAAU,KAAV,UAAU,QAGrB;AA4BD,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,4BAAa,CAAA;IACb,8BAAe,CAAA;AACjB,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB;AAoDD,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,uCAA0B,CAAA;IAC1B,4BAAe,CAAA;AACjB,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;AAWD,MAAM,CAAN,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,6BAAW,CAAA;IACX,+BAAa,CAAA;AACf,CAAC,EAHW,cAAc,KAAd,cAAc,QAGzB;AAqED,MAAM,CAAN,IAAY,YAOX;AAPD,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,+CAA+B,CAAA;IAC/B,iCAAiB,CAAA;IACjB,6BAAa,CAAA;IACb,qCAAqB,CAAA;IACrB,iCAAiB,CAAA;AACnB,CAAC,EAPW,YAAY,KAAZ,YAAY,QAOvB;AAwCD,MAAM,CAAN,IAAY,cAMX;AAND,WAAY,cAAc;IACxB,qCAAmB,CAAA;IACnB,iCAAe,CAAA;IACf,0CAAwB,CAAA;IACxB,+CAA6B,CAAA;IAC7B,8CAA4B,CAAA;AAC9B,CAAC,EANW,cAAc,KAAd,cAAc,QAMzB;AAED,MAAM,CAAN,IAAY,QAUX;AAVD,WAAY,QAAQ;IAClB,+BAAmB,CAAA;IACnB,2BAAe,CAAA;IACf,2BAAe,CAAA;IACf,yBAAa,CAAA;IACb,2BAAe,CAAA;IACf,6BAAiB,CAAA;IACjB,sCAA0B,CAAA;IAC1B,yBAAa,CAAA;IACb,2BAAe,CAAA;AACjB,CAAC,EAVW,QAAQ,KAAR,QAAQ,QAUnB;AAED,MAAM,CAAN,IAAY,QAGX;AAHD,WAAY,QAAQ;IAClB,4CAAgC,CAAA;IAChC,0CAA8B,CAAA;AAChC,CAAC,EAHW,QAAQ,KAAR,QAAQ,QAGnB;AAeD,MAAM,CAAN,IAAY,kBAgCX;AAhCD,WAAY,kBAAkB;IAC5B,qCAAe,CAAA;IACf,wCAAkB,CAAA;IAClB,wCAAkB,CAAA;IAClB,8CAAwB,CAAA;IACxB,sDAAgC,CAAA;IAChC,sDAAgC,CAAA;IAChC,uDAAiC,CAAA;IACjC,uDAAiC,CAAA;IACjC,0CAAoB,CAAA;IACpB,8CAAwB,CAAA;IACxB,0CAAoB,CAAA;IACpB,0CAAoB,CAAA;IACpB,kDAA4B,CAAA;IAC5B,4CAAsB,CAAA;IACtB,4CAAsB,CAAA;IACtB,oDAA8B,CAAA;IAC9B,sDAAgC,CAAA;IAChC,4CAAsB,CAAA;IACtB,gDAA0B,CAAA;IAC1B,0CAAoB,CAAA;IACpB,0CAAoB,CAAA;IACpB,4CAAsB,CAAA;IACtB,4CAAsB,CAAA;IACtB,0CAAoB,CAAA;IACpB,2DAAqC,CAAA;IACrC,wCAAkB,CAAA;IAClB,uDAAiC,CAAA;IACjC,yDAAmC,CAAA;IACnC,0CAAoB,CAAA;IACpB,0CAAoB,CAAA;IACpB,0CAAoB,CAAA;AACtB,CAAC,EAhCW,kBAAkB,KAAlB,kBAAkB,QAgC7B;AAsDD,MAAM,CAAN,IAAY,yBAKX;AALD,WAAY,yBAAyB;IACnC,uDAA0B,CAAA;IAC1B,yDAA4B,CAAA;IAC5B,iDAAoB,CAAA;IACpB,mDAAsB,CAAA;AACxB,CAAC,EALW,yBAAyB,KAAzB,yBAAyB,QAKpC;AAED,MAAM,CAAN,IAAY,qBAEX;AAFD,WAAY,qBAAqB;IAC/B,oCAAW,CAAA;AACb,CAAC,EAFW,qBAAqB,KAArB,qBAAqB,QAEhC;AAED,MAAM,CAAN,IAAY,mBAKX;AALD,WAAY,mBAAmB;IAC7B,8CAAuB,CAAA;IACvB,2CAAoB,CAAA;IACpB,kDAA2B,CAAA;IAC3B,4CAAqB,CAAA;AACvB,CAAC,EALW,mBAAmB,KAAnB,mBAAmB,QAK9B;AAmBD,MAAM,CAAN,IAAY,aAIX;AAJD,WAAY,aAAa;IACvB,sCAAqB,CAAA;IACrB,gCAAe,CAAA;IACf,wCAAuB,CAAA;AACzB,CAAC,EAJW,aAAa,KAAb,aAAa,QAIxB;AA2BD,MAAM,CAAN,IAAY,WAKX;AALD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,8BAAe,CAAA;IACf,4CAA6B,CAAA;IAC7B,4BAAa,CAAA;AACf,CAAC,EALW,WAAW,KAAX,WAAW,QAKtB;AAeD,MAAM,CAAN,IAAY,iBAKX;AALD,WAAY,iBAAiB;IAC3B,wCAAmB,CAAA;IACnB,oCAAe,CAAA;IACf,6CAAwB,CAAA;IACxB,kCAAa,CAAA;AACf,CAAC,EALW,iBAAiB,KAAjB,iBAAiB,QAK5B;AAWD,MAAM,CAAN,IAAY,aAKX;AALD,WAAY,aAAa;IACvB,6CAA4B,CAAA;IAC5B,oCAAmB,CAAA;IACnB,uDAAsC,CAAA;IACtC,8BAAa,CAAA;AACf,CAAC,EALW,aAAa,KAAb,aAAa,QAKxB;AAwDD,MAAM,CAAN,IAAY,gBAEX;AAFD,WAAY,gBAAgB;IAC1B,2CAAuB,CAAA;AACzB,CAAC,EAFW,gBAAgB,KAAhB,gBAAgB,QAE3B;AAOD,MAAM,CAAN,IAAY,MAKX;AALD,WAAY,MAAM;IAChB,+BAAqB,CAAA;IACrB,yBAAe,CAAA;IACf,iCAAuB,CAAA;IACvB,iCAAuB,CAAA;AACzB,CAAC,EALW,MAAM,KAAN,MAAM,QAKjB;AAmBD,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,wCAAuB,CAAA;IACvB,2CAA0B,CAAA;AAC5B,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB;AAED,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,gCAAa,CAAA;IACb,oCAAiB,CAAA;IACjB,yCAAsB,CAAA;AACxB,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B;AAiCD,MAAM,CAAN,IAAY,uBAEX;AAFD,WAAY,uBAAuB;IACjC,wCAAa,CAAA;AACf,CAAC,EAFW,uBAAuB,KAAvB,uBAAuB,QAElC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@streamscloud/streams-api-client",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "rollup -c",
|
|
12
|
+
"lint": "eslint 'src/**/*.{ts,tsx}'",
|
|
13
|
+
"format": "prettier --write 'src/**/*.{ts,tsx}'"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [],
|
|
16
|
+
"author": "StreamsCloud",
|
|
17
|
+
"description": "",
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
|
20
|
+
"@typescript-eslint/parser": "^8.28.0",
|
|
21
|
+
"eslint": "^9.23.0",
|
|
22
|
+
"eslint-config-prettier": "^10.1.1",
|
|
23
|
+
"eslint-plugin-prettier": "^5.2.5",
|
|
24
|
+
"prettier": "^3.5.3",
|
|
25
|
+
"rollup": "^4.37.0",
|
|
26
|
+
"rollup-plugin-string": "^3.0.0",
|
|
27
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
28
|
+
"typescript": "^5.8.2"
|
|
29
|
+
}
|
|
30
|
+
}
|